CCIMXDesktop
 
Loading...
Searching...
No Matches
SettingsApp.h
1#ifndef SETTINGSAPP_H
2#define SETTINGSAPP_H
3
4#include "app_wrapper/applicationwrapper.h"
5#include "appwidget.h"
6
8
15 Q_OBJECT
16public:
21 explicit SettingsLaunch(DesktopMainWindow* parent);
22
28 void depatch_app() override;
29
30signals:
35};
36
40class SettingsApp : public AppWidget {
41 Q_OBJECT
42public:
47 explicit SettingsApp(DesktopMainWindow* parent = nullptr);
48
54 void do_daptch() override;
55
56signals:
61};
62
63#endif // SETTINGSAPP_H
64
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
Widget class representing the settings application UI.
Definition SettingsApp.h:40
void do_daptch() override
Executes the dispatch operation for the settings app.
Definition SettingsApp.cpp:15
void indicate_open_settings_window()
Signal emitted to indicate that the settings window should be opened.
Wrapper class to launch the settings application.
Definition SettingsApp.h:14
void depatch_app() override
Dispatches the settings application.
Definition SettingsApp.cpp:20
void indicate_open_settings_window()
Signal emitted to indicate that the settings window should be opened.