提交测试,基本完成

This commit is contained in:
Mike Solar
2023-08-13 12:16:22 +08:00
parent b8da134809
commit 098e06a39b
40 changed files with 3219 additions and 1782 deletions

View File

@ -0,0 +1,25 @@
#pragma once
#include <QDialog>
#include <QComboBox>
#include <QPushButton>
#include "sqlitehelper.h"
#include "ui_addcategory.h"
class AddCategory : public QDialog
{
Q_OBJECT
public:
AddCategory(QWidget *parent = nullptr);
~AddCategory();
QList<Categrory> categrories;
bool changed = false;
private:
Ui::AddCategoryClass ui;
SQLiteHelper sqlite_helper;
QPushButton* submit_btn;
QList<QComboBox *> combo_boxes;
private slots:
void submit();
};