mirror of https://github.com/cutefishos/appmotor
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
2.0 KiB
C++
66 lines
2.0 KiB
C++
/***************************************************************************
|
|
**
|
|
** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
|
|
** All rights reserved.
|
|
** Contact: Nokia Corporation (directui@nokia.com)
|
|
**
|
|
** This file is part of applauncherd
|
|
**
|
|
** If you have questions regarding the use of this file, please contact
|
|
** Nokia at directui@nokia.com.
|
|
**
|
|
** This library is free software; you can redistribute it and/or
|
|
** modify it under the terms of the GNU Lesser General Public
|
|
** License version 2.1 as published by the Free Software Foundation
|
|
** and appearing in the file LICENSE.LGPL included in the packaging
|
|
** of this file.
|
|
**
|
|
****************************************************************************/
|
|
|
|
#include <MApplication>
|
|
#include <MApplicationPage>
|
|
#include <MApplicationWindow>
|
|
#include <QDebug>
|
|
#include <MExport>
|
|
#include <MButton>
|
|
#include <MLabel>
|
|
#include <MSlider>
|
|
#include <MLayout>
|
|
#include <MLinearLayoutPolicy>
|
|
|
|
#ifdef HAVE_MCOMPONENTCACHE
|
|
#include <mcomponentcache.h>
|
|
#endif
|
|
|
|
M_EXPORT int main(int, char**);
|
|
|
|
int main(int argc, char ** argv)
|
|
{
|
|
#ifdef HAVE_MCOMPONENTCACHE
|
|
MApplication *app = MComponentCache::mApplication(argc, argv);
|
|
MApplicationWindow *window = MComponentCache::mApplicationWindow();
|
|
#else
|
|
MApplication *app = new MApplication(argc, argv);
|
|
MApplicationWindow *window = new MApplicationWindow;
|
|
#endif
|
|
|
|
MApplicationPage *mainPage = new MApplicationPage;
|
|
mainPage->setTitle("Hello World! (Now supports Launcher)");
|
|
mainPage->centralWidget()->setObjectName("centralWidget");
|
|
|
|
MLayout *layout = new MLayout(mainPage->centralWidget());
|
|
MLinearLayoutPolicy *linearPolicy = new MLinearLayoutPolicy(layout,
|
|
Qt::Vertical);
|
|
|
|
linearPolicy->addItem(new MLabel("I'm a label"));
|
|
linearPolicy->addItem(new MButton("Click me!"));
|
|
linearPolicy->addItem(new MSlider);
|
|
|
|
window->show();
|
|
|
|
// Explicitly state where to appear, just to be sure :-)
|
|
mainPage->appear(window);
|
|
|
|
return app->exec();
|
|
}
|