School Commit Init

This commit is contained in:
2024-08-31 12:07:21 +03:00
commit 0b130ee18c
2801 changed files with 4720552 additions and 0 deletions
@@ -0,0 +1,25 @@
#pragma once
#include "PresenterModel.h"
#include <QWidget>
#include <QTableView>
#include <QLineEdit>
#include <QPushButton>
class PresenterView : public QWidget
{
Q_OBJECT
private:
PresenterModel* model;
QTableView* view;
QLineEdit* idEdit;
QLineEdit* textEdit;
QLineEdit* answerEdit;
QLineEdit* scoreEdit;
QPushButton* addButton;
void initGUI();
void connectSignalsAndSlots();
public:
PresenterView(PresenterModel* model, QWidget* parent = nullptr);
~PresenterView();
};