userwgt.h

来自「用qt4 编写的局域网聊天工具」· C头文件 代码 · 共 47 行

H
47
字号
/*************************************************************************** *   Copyright (C) 2007 by Anistratov Oleg                                 * *   ower@users.sourceforge.net                                            * *                                                                         * *   This program is free software; you can redistribute it and/or modify  * *   it under the terms of the GNU General Public License version 2        * *   as published by the Free Software Foundation;                         * *                                                                         * *   This program is distributed in the hope that it will be useful,       * *   but WITHOUT ANY WARRANTY; without even the implied warranty of        * *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         * *   GNU General Public License for more details.                          * *                                                                         * ***************************************************************************/#ifndef USERWGT_H#define USERWGT_H#include <QListWidgetItem>#include <QObject>class UserInfo;class UserStatistics;/**	@author Anistratov Oleg <ower@users.sourceforge.net>*/class UserWgt : public QObject, public QListWidgetItem{  Q_OBJECT  private:    UserInfo* m_info;    UserStatistics* m_stats;  public:    UserWgt(QListWidget* parent = 0);    ~UserWgt();    void setInfo(UserInfo* info);    UserInfo* info() const {return m_info;}    void setStats(UserStatistics* value){m_stats = value;}    UserStatistics* stats() const {return m_stats;}};#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?