1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #ifndef MAINWND_H
- #define MAINWND_H
- #include <QMainWindow>
- #include <QToolButton>
- QT_BEGIN_NAMESPACE
- namespace Ui {
- class MainWnd;
- }
- QT_END_NAMESPACE
- class MainWnd : public QMainWindow
- {
- Q_OBJECT
- public:
- MainWnd(QWidget *parent = nullptr);
- ~MainWnd();
- void initForm();
- protected:
- bool eventFilter(QObject *obj,QEvent *event);
- void setTabIcon(QToolButton* tabBtn, const QString& deepIconPath, const QString& lightIconPath);
- private slots:
- void onCurrentWidgetChanged();
- void on_tabHomeBtn_clicked();
- void on_pushButton_clicked();
- private:
- Ui::MainWnd *ui;
- };
- #endif // MAINWND_H
|