Hello world! First commit.
This commit is contained in:
commit
263c65ac46
2435 changed files with 30491 additions and 0 deletions
25
mainwindow.h
Normal file
25
mainwindow.h
Normal file
|
@ -0,0 +1,25 @@
|
|||
#ifndef MAINWINDOW_H
|
||||
#define MAINWINDOW_H
|
||||
|
||||
#include <QMainWindow>
|
||||
|
||||
namespace Ui {
|
||||
class MainWindow;
|
||||
}
|
||||
|
||||
class MainWindow : public QMainWindow
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit MainWindow(QWidget *parent = 0);
|
||||
~MainWindow();
|
||||
|
||||
void EnableThemeDark();
|
||||
void EnableThemeLight();
|
||||
|
||||
private:
|
||||
Ui::MainWindow *ui;
|
||||
};
|
||||
|
||||
#endif // MAINWINDOW_H
|
Loading…
Add table
Add a link
Reference in a new issue