Add initial project structure with essential files including .gitignore, application resources, and various model and view components for the application. Implemented asynchronous parsing support and database structure checks.

This commit is contained in:
2025-12-08 15:21:18 +03:00
parent 4f8c90c15b
commit 3467003721
110 changed files with 35406 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
#ifndef PROJECTPARAMMODEL_H
#define PROJECTPARAMMODEL_H
#include <QObject>
#include <QString>
class ProjectParamModel : public QObject
{
Q_OBJECT
public:
explicit ProjectParamModel(QObject *parent = nullptr);
QString name() const;
void setName(const QString &newName);
QString value() const;
void setValue(const QString &newValue);
signals:
void nameChanged();
void valueChanged();
private:
QString m_name;
QString m_value;
};
#endif // PROJECTPARAMMODEL_H