feat: finished version 0.0.1

This commit is contained in:
2026-01-22 13:42:34 +03:00
parent 3241dd674d
commit eb43364f0f
17 changed files with 1511 additions and 37 deletions

View File

@@ -2,12 +2,15 @@
#define LICENSEMANAGER_EDITCLIENTDIALOG_H
// Qt
#include <QDate>
#include <QDebug>
#include <QDialog>
#include <QDragEnterEvent>
#include <QLabel>
#include "LicenseModel/LicenseModel.h"
class QCalendarWidget;
class QCheckBox;
class QLineEdit;
class QTabWidget;
class QTextEdit;
@@ -55,9 +58,10 @@ private:
QLineEdit* m_sellerNameTextEdit{nullptr}; //!< Поле ввода названия продавца (если используется).
QLineEdit* m_cityLineEdit{nullptr}; //!< Поле ввода города.
QLineEdit* m_hardwareHashLineEdit{nullptr}; //!< Поле для отображения хеша оборудования.
QCheckBox* m_useTemporaryLicenseCheckBox{nullptr};//!<
QCalendarWidget* m_calendarWidget{nullptr}; //!<
QTextEdit* m_commentTextEdit{nullptr}; //!<
QPushButton* m_saveButton{nullptr}; //!<
QString m_createdAtUtc;
QString m_filesPath;
Type m_type = Type::None;
};