5 Star 23 Fork 6

Acreate / gamePlanTool

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
AlgorithmTopItemWidgetItem.h 815 Bytes
一键复制 编辑 原始数据 按行查看 历史
箜栢 提交于 2020-03-08 21:56 . 加入算法配置文件
#ifndef H_MY__ALGORITHMTOPITEMWIDGETITEM_H__H
#define H_MY__ALGORITHMTOPITEMWIDGETITEM_H__H
#include <qboxlayout.h>
#include <qcheckbox.h>
#include <qlabel.h>
#include <qpushbutton.h>
#include <QWidget>
class AlgorithmTopItemWidgetItem : public QWidget {
Q_OBJECT;
public:
QHBoxLayout* hLayout;
QLabel* expressLabel;
QCheckBox* checkBox;
QPushButton* pushButton;
public:
AlgorithmTopItemWidgetItem(const QString& name
, const QString& express
, QWidget* parent = Q_NULLPTR
, const Qt::WindowFlags& f = Qt::WindowFlags( ));
private:
void onBtnChicked(bool clicked);
void onCheckBox(int status);
signals:
void sigPushChicked(AlgorithmTopItemWidgetItem* item
, bool status);
void sigCheckChicked(AlgorithmTopItemWidgetItem* item
, int status);
};
#endif // H_MY__ALGORITHMTOPITEMWIDGETITEM_H__H
C++
1
https://gitee.com/ChenYLhuman/gamePlanTool.git
git@gitee.com:ChenYLhuman/gamePlanTool.git
ChenYLhuman
gamePlanTool
gamePlanTool
master

搜索帮助