2024-11-25 21:20:39 +00:00
|
|
|
#ifndef MAINWINDOW_H
|
|
|
|
#define MAINWINDOW_H
|
|
|
|
|
2025-01-23 10:25:07 +00:00
|
|
|
#include "panes/explorerview.h"
|
2024-12-01 12:08:45 +00:00
|
|
|
#include "qbasictimer.h"
|
|
|
|
#include "qcoreevent.h"
|
2025-01-20 10:50:47 +00:00
|
|
|
#include "qmenu.h"
|
2024-11-25 21:20:39 +00:00
|
|
|
#include <QMainWindow>
|
|
|
|
#include <QLineEdit>
|
|
|
|
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
namespace Ui {
|
|
|
|
class MainWindow;
|
|
|
|
}
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
|
|
|
class MainWindow : public QMainWindow
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
MainWindow(QWidget *parent = nullptr);
|
|
|
|
~MainWindow();
|
2024-12-02 10:01:51 +00:00
|
|
|
|
2024-11-25 21:20:39 +00:00
|
|
|
Ui::MainWindow *ui;
|
2025-01-23 10:25:07 +00:00
|
|
|
private:
|
2024-12-01 12:08:45 +00:00
|
|
|
QBasicTimer timer;
|
|
|
|
|
2025-02-02 23:23:25 +00:00
|
|
|
void updateSelectedTool();
|
2024-12-01 12:08:45 +00:00
|
|
|
void timerEvent(QTimerEvent*) override;
|
2025-02-07 00:11:09 +00:00
|
|
|
void ConnectSelectionChangeHandler();
|
2024-11-25 21:20:39 +00:00
|
|
|
};
|
|
|
|
#endif // MAINWINDOW_H
|