testing v1

This commit is contained in:
2025-08-06 21:51:47 +03:00
commit 416ab1ffb1
12 changed files with 3668 additions and 0 deletions

24
mainwindow.h Normal file
View 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