X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=homescreen%2Fsrc%2Fmain.cpp;h=8c7bb22e1662a2c7134c525fc9006f5ca9d339fe;hb=a37400d73417dc02511813833b8f4d9b91e40a11;hp=db9eafe867386dc50ac941dbc6b53cc72a4fe416;hpb=eb227c1da7bdd2d81c5a95881d7eef18369ca96a;p=apps%2Fhomescreen.git diff --git a/homescreen/src/main.cpp b/homescreen/src/main.cpp index db9eafe..8c7bb22 100644 --- a/homescreen/src/main.cpp +++ b/homescreen/src/main.cpp @@ -117,15 +117,33 @@ create_component(QPlatformNativeInterface *native, QQmlComponent *comp, return getWlSurface(native, win); } +static QScreen * +find_screen(const char *screen_name) +{ + QList screens = qApp->screens(); + QScreen *found = nullptr; + QString qstr_name = QString::fromUtf8(screen_name, -1); + + for (QScreen *xscreen : screens) { + if (qstr_name == xscreen->name()) { + found = xscreen; + break; + } + } + + return found; +} + static void load_agl_shell_app(QPlatformNativeInterface *native, QQmlApplicationEngine *engine, - struct agl_shell *agl_shell, QUrl &bindingAddress) + struct agl_shell *agl_shell, QUrl &bindingAddress, + const char *screen_name) { struct wl_surface *bg, *top, *bottom; struct wl_output *output; - QObject *qobj_bg, *qobj_top, *qobj_bottom; + QScreen *screen = nullptr; QQmlComponent bg_comp(engine, QUrl("qrc:/background.qml")); qInfo() << bg_comp.errors(); @@ -136,15 +154,18 @@ load_agl_shell_app(QPlatformNativeInterface *native, QQmlComponent bot_comp(engine, QUrl("qrc:/bottompanel.qml")); qInfo() << bot_comp.errors(); - QScreen *screen = qApp->screens().first(); - if (!screen) - return; + if (!screen_name) + screen = qApp->primaryScreen(); + else + screen = find_screen(screen_name); + qDebug() << "found primary screen " << qApp->primaryScreen()->name() << + "first screen " << qApp->screens().first()->name(); output = getWlOutput(native, screen); - bg = create_component(native, &bg_comp, screen, &qobj_bg); top = create_component(native, &top_comp, screen, &qobj_top); bottom = create_component(native, &bot_comp, screen, &qobj_bottom); + bg = create_component(native, &bg_comp, screen, &qobj_bg); /* engine.rootObjects() works only if we had a load() */ StatusBarModel *statusBar = qobj_top->findChild("statusBar"); @@ -155,6 +176,7 @@ load_agl_shell_app(QPlatformNativeInterface *native, agl_shell_set_panel(agl_shell, top, output, AGL_SHELL_EDGE_TOP); agl_shell_set_panel(agl_shell, bottom, output, AGL_SHELL_EDGE_BOTTOM); + qDebug() << "Setting homescreen to screen " << screen->name(); agl_shell_set_background(agl_shell, bg, output); @@ -165,17 +187,22 @@ load_agl_shell_app(QPlatformNativeInterface *native, }); } - int main(int argc, char *argv[]) { + setenv("QT_QPA_PLATFORM", "wayland", 1); QGuiApplication a(argc, argv); + const char *screen_name; + QPlatformNativeInterface *native = qApp->platformNativeInterface(); struct agl_shell *agl_shell = nullptr; + screen_name = getenv("HOMESCREEN_START_SCREEN"); QCoreApplication::setOrganizationDomain("LinuxFoundation"); QCoreApplication::setOrganizationName("AutomotiveGradeLinux"); QCoreApplication::setApplicationName("HomeScreen"); QCoreApplication::setApplicationVersion("0.7.0"); + /* we need to have an app_id */ + a.setDesktopFileName("homescreen"); QCommandLineParser parser; parser.addPositionalArgument("port", a.translate("main", "port for binding")); @@ -207,15 +234,14 @@ int main(int argc, char *argv[]) Shell *aglShell = new Shell(shell, &a); // import C++ class to QML - // qmlRegisterType("HomeScreen", 1, 0, "ApplicationLauncher"); qmlRegisterType("HomeScreen", 1, 0, "StatusBarModel"); qmlRegisterType("MasterVolume", 1, 0, "MasterVolume"); qmlRegisterUncreatableType("SpeechChrome", 1, 0, "SpeechChromeController", QLatin1String("SpeechChromeController is uncreatable.")); ApplicationLauncher *launcher = new ApplicationLauncher(); - - HomescreenHandler* homescreenHandler = new HomescreenHandler(aglShell); + launcher->setCurrent(QStringLiteral("launcher")); + HomescreenHandler* homescreenHandler = new HomescreenHandler(aglShell, launcher); homescreenHandler->init(port, token.toStdString().c_str()); QUrl bindingAddress; @@ -243,7 +269,7 @@ int main(int argc, char *argv[]) /* instead of loading main.qml we load one-by-one each of the QMLs, * divided now between several surfaces: panels, background. */ - load_agl_shell_app(native, &engine, agl_shell, bindingAddress); + load_agl_shell_app(native, &engine, agl_shell, bindingAddress, screen_name); return a.exec(); }