1 Star 0 Fork 1

东海龙子/QT_EMB_RES_PACK

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
FileDialogWidget.h 755 Bytes
一键复制 编辑 原始数据 按行查看 历史
东海龙子 提交于 2024-07-15 03:49 . 初步上传
#ifndef FILEDIALOGWIDGET_H
#define FILEDIALOGWIDGET_H
#include <QWidget>
#include <QPushButton>
#include <QLineEdit>
#include <QGroupBox>
#include <QDragEnterEvent>
#include <QDropEvent>
class FileDialogWidget : public QWidget
{
Q_OBJECT
public: FileDialogWidget(void);
~FileDialogWidget();
void set(QWidget *parent, int x, int y, const char *str, const char *bot_name);
bool is_path(void);
QString get_path(void);
signals:
// 声明一个信号,不需要实现
void ctrl_Signal(void);
void path_Signal(bool);
private slots:
void openFileDialog();
void but_ctr_sloot();
private:
QGroupBox box;
QLineEdit *lineEdit;
QPushButton *but_open;
QPushButton *but_ctr;
};
#endif // FILEDIALOGWIDGET_H
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/dhlz/qt_-emb_-res_-pack.git
[email protected]:dhlz/qt_-emb_-res_-pack.git
dhlz
qt_-emb_-res_-pack
QT_EMB_RES_PACK
master

搜索帮助