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:
15 explicit SlideSettings(DesktopMainWindow* parent = nullptr);
17
18private:
19 Ui::SlideSettings* ui;
20 DesktopMainWindow* window;
21 PageSwitchingLimiter* limitive_controller;
22};
23
24#endif // SLIDESETTINGS_H
DesktopMainWindow is the main frontend window of the application. For beginners, this is the starting...
Definition desktopmainwindow.h:33
Definition PageSwitchingLimiter.h:17
Definition SlideSettings.h:11