MainWnd.h 632 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. #ifndef MAINWND_H
  2. #define MAINWND_H
  3. #include <QMainWindow>
  4. #include <QToolButton>
  5. QT_BEGIN_NAMESPACE
  6. namespace Ui {
  7. class MainWnd;
  8. }
  9. QT_END_NAMESPACE
  10. class MainWnd : public QMainWindow
  11. {
  12. Q_OBJECT
  13. public:
  14. MainWnd(QWidget *parent = nullptr);
  15. ~MainWnd();
  16. void initForm();
  17. protected:
  18. bool eventFilter(QObject *obj,QEvent *event);
  19. void setTabIcon(QToolButton* tabBtn, const QString& deepIconPath, const QString& lightIconPath);
  20. private slots:
  21. void onCurrentWidgetChanged();
  22. void on_tabHomeBtn_clicked();
  23. void on_pushButton_clicked();
  24. private:
  25. Ui::MainWnd *ui;
  26. };
  27. #endif // MAINWND_H