1 Star 4 Fork 0

Zz_er/transaction_manager

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
subtasktable.h 881 Bytes
一键复制 编辑 原始数据 按行查看 历史
Zz_er 提交于 2022-07-05 12:14 . version 1.1.2
#ifndef SUBTASKTABLE_H
#define SUBTASKTABLE_H
#include <QObject>
#include <QTableWidget>
#include <QHeaderView>
#include <QDebug>
#include <QMessageBox>
#include "taskitem.h"
#include <QLabel>
#include <map>
#include "ndb.h"
class subTaskTable : public QObject
{
Q_OBJECT
public:
enum {STATE, ID, NAME, TOMATO, ACHIEVE};
QPixmap m_pix_add;
QPixmap m_pix_delete;
QPixmap m_pix_ready;
QPixmap m_pix_not_ready;
int m_currentTaskId;
public:
QTableWidget *m_table;
public:
explicit subTaskTable(QObject *parent = nullptr);
explicit subTaskTable(QTableWidget *table, QObject *parent = nullptr);
void showSubTask(taskItem &task);
void setCurrentSubTaskTable(taskItem &taskitem);
void addSubTask(int newRow, const subTask &subtask);
signals:
void selectCurrentSubTask(const subTask &subtask);
};
#endif // SUBTASKTABLE_H
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/zz_er/transaction_manager.git
git@gitee.com:zz_er/transaction_manager.git
zz_er
transaction_manager
transaction_manager
master

搜索帮助