5 Star 4 Fork 4

zhjun5337 / kopete-qq

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
qqloginverifywidget.h 1.38 KB
一键复制 编辑 原始数据 按行查看 历史
zhjun5337 提交于 2014-07-16 21:27 . Merge old to master
/*
qqloginverifywidget.h - QQ verify widget
Copyright (c) 2014 by Jun Zhang <jun.zhang@i-soft.com.cn>
Kopete (c) 2002-2006 by the Kopete developers <kopete-devel@kde.org>
*************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
*************************************************************************
*/
#ifndef WEBQQ_LOGIN_VERIFY_WIDGET
#define WEBQQ_LOGIN_VERIFY_WIDGET
#include <QDialog>
class QLabel;
class QLineEdit;
class QPushButton;
class QString;
class LoginVerifyDialog : public QDialog
{
Q_OBJECT
public:
LoginVerifyDialog(QWidget *parent = 0);
virtual ~LoginVerifyDialog(){};
QString getVerifyString();
void setImage(QString fullPath);
private:
QLineEdit* m_inputCodeEdit;
QPushButton* m_okButton;
QLabel* m_picLabel;
QLabel* m_infoLabel;
private slots:
void onButtonClicked();
};
#endif
C++
1
https://gitee.com/zhjun5337/kopete-qq.git
git@gitee.com:zhjun5337/kopete-qq.git
zhjun5337
kopete-qq
kopete-qq
master

搜索帮助