25 lines
384 B
C
Raw Normal View History

2026-01-12 18:58:51 +04:00
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
class QCloseEvent;
2026-01-22 17:11:17 +04:00
class MainWindow : public QMainWindow {
2026-01-12 18:58:51 +04:00
Q_OBJECT
2026-01-22 17:11:17 +04:00
public:
MainWindow(QWidget* parent = nullptr);
2026-01-12 18:58:51 +04:00
~MainWindow();
2026-01-30 21:20:41 +04:00
void destroy();
2026-01-12 18:58:51 +04:00
2026-01-22 17:11:17 +04:00
private:
2026-01-12 18:58:51 +04:00
void setupUi();
2026-01-22 17:11:17 +04:00
void setupMenu();
2026-01-12 18:58:51 +04:00
2026-01-22 17:11:17 +04:00
QWidget* storageWidget = nullptr;
2026-01-30 21:20:41 +04:00
QObject* plugin = nullptr;
2026-01-12 18:58:51 +04:00
};
#endif // MAINWINDOW_H