2014-08-22 23:19:16 +08:00
|
|
|
/*
|
2015-06-06 09:40:08 +08:00
|
|
|
Copyright © 2014-2015 by The qTox Project
|
|
|
|
|
2014-08-22 23:19:16 +08:00
|
|
|
This file is part of qTox, a Qt-based graphical interface for Tox.
|
|
|
|
|
2015-06-06 09:40:08 +08:00
|
|
|
qTox is libre software: you can redistribute it and/or modify
|
2014-08-22 23:19:16 +08:00
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
2015-06-06 09:40:08 +08:00
|
|
|
|
|
|
|
qTox is distributed in the hope that it will be useful,
|
2014-08-22 23:19:16 +08:00
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-06-06 09:40:08 +08:00
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
2014-08-22 23:19:16 +08:00
|
|
|
|
2015-06-06 09:40:08 +08:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with qTox. If not, see <http://www.gnu.org/licenses/>.
|
2014-08-22 23:19:16 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef FRIENDLISTWIDGET_H
|
|
|
|
#define FRIENDLISTWIDGET_H
|
|
|
|
|
|
|
|
#include <QWidget>
|
2014-09-11 21:44:34 +08:00
|
|
|
#include <QHash>
|
2015-03-22 15:59:42 +08:00
|
|
|
#include <QList>
|
2015-04-24 08:32:09 +08:00
|
|
|
#include "src/core/corestructs.h"
|
2015-03-22 15:59:42 +08:00
|
|
|
#include "src/widget/genericchatroomwidget.h"
|
2014-09-11 21:44:34 +08:00
|
|
|
|
2015-01-02 08:57:31 +08:00
|
|
|
class QVBoxLayout;
|
2014-09-11 21:44:34 +08:00
|
|
|
class QGridLayout;
|
2014-09-24 23:28:38 +08:00
|
|
|
class QPixmap;
|
2014-08-22 23:19:16 +08:00
|
|
|
|
2015-05-28 08:45:23 +08:00
|
|
|
class FriendWidget;
|
2015-05-28 01:17:12 +08:00
|
|
|
class GroupWidget;
|
|
|
|
class CircleWidget;
|
2015-05-28 08:45:23 +08:00
|
|
|
class FriendListLayout;
|
2015-05-28 01:17:12 +08:00
|
|
|
|
2014-08-22 23:19:16 +08:00
|
|
|
class FriendListWidget : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2015-05-28 08:45:23 +08:00
|
|
|
explicit FriendListWidget(QWidget *parent = 0, bool groupsOnTop = true);
|
|
|
|
|
2015-05-28 01:17:12 +08:00
|
|
|
void addGroupWidget(GroupWidget *widget);
|
|
|
|
void hideGroups(QString searchString, bool hideAll = false);
|
2015-05-28 08:45:23 +08:00
|
|
|
|
2015-05-28 01:17:12 +08:00
|
|
|
void addCircleWidget(CircleWidget *widget);
|
2015-03-22 15:59:42 +08:00
|
|
|
|
2015-05-28 08:45:23 +08:00
|
|
|
void hideFriends(QString searchString, Status status, bool hideAll = false);
|
2015-03-22 15:59:42 +08:00
|
|
|
QList<GenericChatroomWidget*> getAllFriends();
|
2015-05-28 08:45:23 +08:00
|
|
|
|
2015-06-03 18:26:48 +08:00
|
|
|
void reDraw();
|
2014-08-22 23:19:16 +08:00
|
|
|
|
|
|
|
public slots:
|
2015-03-12 08:41:18 +08:00
|
|
|
void onGroupchatPositionChanged(bool top);
|
2015-05-28 08:45:23 +08:00
|
|
|
void moveWidget(FriendWidget *w, Status s, bool add = false);
|
2014-08-22 23:19:16 +08:00
|
|
|
|
|
|
|
private:
|
2015-05-28 08:45:23 +08:00
|
|
|
QVBoxLayout* getFriendLayout(Status s);
|
2015-05-28 01:17:12 +08:00
|
|
|
enum FriendLayoutType
|
|
|
|
{
|
|
|
|
Online = 0,
|
|
|
|
Offline = 1
|
|
|
|
};
|
2015-05-28 08:45:23 +08:00
|
|
|
FriendListLayout *listLayout;
|
2014-08-22 23:19:16 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // FRIENDLISTWIDGET_H
|