Ai
81 Star 380 Fork 168

LibQQt应用程序开发组织/LibQQt

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
qqtlineeditwithsearch.h 627 Bytes
一键复制 编辑 原始数据 按行查看 历史
tianduanrui 提交于 2020-04-09 16:49 +08:00 . update lineeditwithsearch
#ifndef QSEARCHLINEEDIT_H
#define QSEARCHLINEEDIT_H
#include <QLineEdit>
#include <QPushButton>
#include <qqt-local.h>
/**
* @brief The QQtLineEditWithSearch class
* 带搜索按钮的输入框
*/
class QQTSHARED_EXPORT QQtLineEditWithSearch : public QLineEdit
{
Q_OBJECT
public:
explicit QQtLineEditWithSearch ( QWidget* parent = 0 );
void setButtonText ( QString text );
void setButtonIcon ( QString image );
void setObjectName ( const QString& name );
signals:
void btnClicked();
public slots:
private:
QPushButton* m_btnBrower;
// QObject interface
};
#endif // QSEARCHLINEEDIT_H
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C/C++
1
https://gitee.com/drabel/LibQQt.git
git@gitee.com:drabel/LibQQt.git
drabel
LibQQt
LibQQt
master

搜索帮助