加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
SearchWgt.h 638 Bytes
一键复制 编辑 原始数据 按行查看 历史
chaocc.wang 提交于 2019-11-04 17:46 . 版本更新
//
// Created by cc on 18-11-11.
//
#if _MSC_VER >= 1600
#pragma execution_character_set("utf-8")
#endif
#ifndef QTALK_V2_SEARCHWGT_H
#define QTALK_V2_SEARCHWGT_H
#include <QFrame>
#include <QLineEdit>
#include <QToolButton>
#include <QTimer>
class SearchWgt : public QFrame
{
Q_OBJECT
public:
explicit SearchWgt(QWidget* parent = nullptr);
~SearchWgt() override;
public:
void clearText();
Q_SIGNALS:
void textChanged(const QString&);
private:
void init();
bool eventFilter(QObject *o, QEvent *e) override;
private:
QLineEdit* _pSearchEdit;
QToolButton* _pBtn;
};
#endif //QTALK_V2_SEARCHWGT_H
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化