mirror of
https://github.com/gamecreature/QtAwesome.git
synced 2024-11-15 05:25:43 +08:00
28 lines
397 B
C++
28 lines
397 B
C++
#ifndef MAINWINDOW_H
|
|
#define MAINWINDOW_H
|
|
|
|
#include <QMainWindow>
|
|
#include "QtAwesome.h"
|
|
|
|
namespace Ui {
|
|
class MainWindow;
|
|
}
|
|
|
|
class MainWindow : public QMainWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit MainWindow(QWidget *parent = nullptr);
|
|
~MainWindow();
|
|
|
|
public slots:
|
|
void styleChanged(int index);
|
|
|
|
private:
|
|
Ui::MainWindow *ui;
|
|
fa::QtAwesome* awesome;
|
|
};
|
|
|
|
#endif // MAINWINDOW_H
|