CCIMXDesktop
 
Loading...
Searching...
No Matches
AppWidgetConfigures.h
1#ifndef APPWIDGETCONFIGURES_H
2#define APPWIDGETCONFIGURES_H
3
4#include "builtin/window/settings_window/cores/SettingsPack.h"
5#include <QWidget>
6
7class AppWidget;
9
10namespace Ui {
12}
13
22class AppWidgetConfigures : public QWidget {
23 Q_OBJECT
24
25public:
31 explicit AppWidgetConfigures(DesktopMainWindow* window, QWidget* parent = nullptr);
32
37
38private slots:
43 void process_spinbox_change(int size);
44
48 void on_btn_select_font_clicked();
49
53 void on_btn_select_color_clicked();
54
55private:
56 Ui::AppWidgetConfigures* ui;
57 DesktopMainWindow* window;
58 AppWidget* appWidget;
60
64 void process_default_init_load();
65};
66
67#endif // APPWIDGETCONFIGURES_H
The AppWidgetConfigures class Provides a settings panel for customizing the appearance and behavior o...
Definition AppWidgetConfigures.h:22
~AppWidgetConfigures()
Destructor.
Definition AppWidgetConfigures.cpp:38
The AppWidget class represents an application widget placed on the desktop.
Definition appwidget.h:19
DesktopMainWindow is the main frontend window of the application. For beginners, this is the starting...
Definition desktopmainwindow.h:33
The AppWidgetsSettingsInfoPack struct Stores configuration parameters for AppWidget appearance.
Definition SettingsPack.h:13