CCIMXDesktop
 
Loading...
Searching...
No Matches
AppLauncherApp.h
1#ifndef APPLAUNCHERAPP_H
2#define APPLAUNCHERAPP_H
3
4#include <appwidget.h>
5
6#include "app_wrapper/applicationwrapper.h"
7#include "appwidget.h"
8
10
17 Q_OBJECT
18public:
23 explicit AppLaunchLauncher(DesktopMainWindow* parent);
24
30 void depatch_app() override;
31
32signals:
37};
38
42class AppLauncherApp : public AppWidget {
43 Q_OBJECT
44public:
49 explicit AppLauncherApp(DesktopMainWindow* parent = nullptr);
50
56 void do_daptch() override;
57
58signals:
63};
64
65#endif // APPLAUNCHERAPP_H
Wrapper class to launch the settings application.
Definition AppLauncherApp.h:16
void depatch_app() override
Dispatches the settings application.
Definition AppLauncherApp.cpp:22
void indicate_open_launch_window()
Signal emitted to indicate that the launch window should be opened.
Widget class representing the settings application UI.
Definition AppLauncherApp.h:42
void indicate_open_launch_window()
Signal emitted to indicate that the settings window should be opened.
void do_daptch() override
Executes the dispatch operation for the settings app.
Definition AppLauncherApp.cpp:13
The AppWidget class represents an application widget placed on the desktop.
Definition appwidget.h:19
The ApplicationWrapper class is the process wrapper.
Definition applicationwrapper.h:16
DesktopMainWindow is the main frontend window of the application. For beginners, this is the starting...
Definition desktopmainwindow.h:33