5 Star 4 Fork 4

zhjun5337 / kopete-qq

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
qqshowgetinfo.h 1.86 KB
一键复制 编辑 原始数据 按行查看 历史
zhjun5337 提交于 2014-07-16 21:27 . Merge old to master
/*
qqshowgetinfo.h - QQ show info
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 WEBQQSHOWGETINFO_H
#define WEBQQSHOWGETINFO_H
#include <QDialog>
#include "type.h"
class QLabel;
class QLineEdit;
class QPushButton;
class QString;
class QTextEdit;
class QRadioButton;
class QGroupBox;
class QVBoxLayout;
class ShowGetInfoDialog : public QDialog
{
Q_OBJECT
public:
ShowGetInfoDialog(QWidget *parent = 0);
virtual ~ShowGetInfoDialog(){};
QString getVerificationString();
void setVerifify();
void setLongNick(const QString &inputStr);
void setAddInfo(QString info);
void setUserInfo(QString info);
void setRequired(QString info);
QString okOrCancle(){
return m_okOrCancle;
}
LwqqAnswer qqAnswer();
private:
QLineEdit* m_inputverififyEdit;
QPushButton* m_okButton;
QPushButton* m_cancelButton;
QTextEdit* m_infoEdit;
QLabel* m_showLabel;
QString m_okOrCancle;
QRadioButton *m_refuseButton;
QRadioButton *m_agreeButton;
QRadioButton *m_agreeAddButton;
private slots:
void onOkButtonClicked();
void onCancleButtonClicked();
};
#endif // WEBQQSHOWGETINFO_H
C++
1
https://gitee.com/zhjun5337/kopete-qq.git
git@gitee.com:zhjun5337/kopete-qq.git
zhjun5337
kopete-qq
kopete-qq
master

搜索帮助