CCIMXDesktop
 
Loading...
Searching...
No Matches
SlideSettings.h
1#ifndef SLIDESETTINGS_H
2#define SLIDESETTINGS_H
3
6#include <QWidget>
7namespace Ui {
8class SlideSettings;
9}
10
11class SlideSettings : public QWidget {
12 Q_OBJECT
13
14public:
19 explicit SlideSettings(DesktopMainWindow* parent = nullptr);
21
22private:
23 Ui::SlideSettings* ui;
24 DesktopMainWindow* window;
25 PageSwitchingLimiter* limitive_controller;
26};
27
28#endif // SLIDESETTINGS_H
DesktopMainWindow is the main frontend window of the application. For beginners, this is the starting...
Definition desktopmainwindow.h:39
Definition PageSwitchingLimiter.h:17
Definition SlideSettings.h:11