1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00
qTox/src/widget/friendlistwidget.h

70 lines
1.9 KiB
C
Raw Normal View History

2014-08-22 23:19:16 +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.
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.
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
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
2014-08-22 23:19:16 +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>
#include <QList>
#include "src/core/corestructs.h"
#include "src/widget/genericchatroomwidget.h"
2014-09-11 21:44:34 +08:00
class QVBoxLayout;
2014-09-11 21:44:34 +08:00
class QGridLayout;
2014-09-24 23:28:38 +08:00
class QPixmap;
2015-06-08 02:24:55 +08:00
struct FriendWidget;
2014-08-22 23:19:16 +08:00
2015-05-28 01:17:12 +08:00
class GroupWidget;
class CircleWidget;
2014-08-22 23:19:16 +08:00
class FriendListWidget : public QWidget
{
Q_OBJECT
public:
explicit FriendListWidget(QWidget *parent = 0, bool groupchatPosition = true);
2015-05-28 01:17:12 +08:00
void addGroupWidget(GroupWidget *widget);
void hideGroups(QString searchString, bool hideAll = false);
void addCircleWidget(CircleWidget *widget);
void hideFriends(QString searchString, Status status, bool hideAll = false);
QVBoxLayout* getFriendLayout(Status s);
QList<GenericChatroomWidget*> getAllFriends();
void reDraw();
2014-08-22 23:19:16 +08:00
signals:
public slots:
void onGroupchatPositionChanged(bool top);
2015-06-08 02:24:55 +08:00
void moveWidget(FriendWidget *w, Status s);
2014-08-22 23:19:16 +08:00
private:
2015-05-28 01:17:12 +08:00
enum FriendLayoutType
{
Online = 0,
Offline = 1
};
QVBoxLayout *friendLayouts[2];
QVBoxLayout *groupLayout;
2015-05-28 01:17:12 +08:00
QVBoxLayout *circleLayout;
QVBoxLayout *mainLayout;
QList<CircleWidget*> circles;
2014-08-22 23:19:16 +08:00
};
#endif // FRIENDLISTWIDGET_H