CCIMXDesktop
 
Loading...
Searching...
No Matches
SettingsWindow.h
1#ifndef SETTINGSWINDOW_H
2#define SETTINGSWINDOW_H
3
4#include <QMainWindow>
5
6namespace Ui {
8}
9
12
18class SettingsWindow : public QMainWindow {
19 Q_OBJECT
20
21public:
27 explicit SettingsWindow(DesktopMainWindow* window, QWidget* parent = nullptr);
28
33
34private:
38 void setup_connections();
39
43 void setup_panel();
44
45 Ui::SettingsWindow* ui;
46 ConfigureUiPairs* pairs;
47 DesktopMainWindow* handling_window;
48};
49
50#endif // SETTINGSWINDOW_H
DesktopMainWindow is the main frontend window of the application. For beginners, this is the starting...
Definition desktopmainwindow.h:33
Main window class for the settings interface.
Definition SettingsWindow.h:18
~SettingsWindow()
Destructor for SettingsWindow.
Definition SettingsWindow.cpp:14
The ConfigureUiPairs struct Manages the mapping between tree items and UI panels for configuration vi...
Definition ConfigureUiPairs.h:19