testing v1
This commit is contained in:
24
mainwindow.h
Normal file
24
mainwindow.h
Normal file
@@ -0,0 +1,24 @@
|
||||
#ifndef MAINWINDOW_H
|
||||
#define MAINWINDOW_H
|
||||
|
||||
#include "declarations.h"
|
||||
|
||||
class MainWindow:public QMainWindow
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
void init_mainwindowobj(); //the function of this class
|
||||
explicit MainWindow(); //constructor
|
||||
void init_connections();
|
||||
~MainWindow(); //destructor
|
||||
|
||||
public slots:
|
||||
void test_tmkopen();
|
||||
|
||||
private:
|
||||
QWidget *Window = new QWidget;
|
||||
QLabel *Label;
|
||||
QPushButton *Button;
|
||||
};
|
||||
|
||||
#endif // MAINWINDOW_H
|
Reference in New Issue
Block a user