/*************************************************************************** ** ** 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 #include #include #include #include #include #include #include #include #include #ifdef HAVE_MCOMPONENTCACHE #include #endif M_EXPORT 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(); const char *foobar = "foo!"; for (int i = 0; i < argc; ++i) { if (QString(argv[i]) == "-segfault") { const_cast(foobar)[3] = 'z'; } } // Explicitly state where to appear, just to be sure :-) mainPage->appear(window); _exit(app->exec()); }