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

78 lines
2.2 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>
2015-05-29 21:26:43 +08:00
#include <QVector>
#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;
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 addFriendWidget(FriendWidget *w, Status s, int circleIndex);
void addCircleWidget(const QString &name);
CircleWidget *addCircleWidget(FriendWidget *widget = nullptr);
2015-05-29 06:36:21 +08:00
void removeCircleWidget(CircleWidget *widget);
2015-05-28 22:28:11 +08:00
void searchChatrooms(const QString &searchString, bool hideOnline = false, bool hideOffline = false, bool hideGroups = false);
QList<GenericChatroomWidget*> getAllFriends();
2015-05-29 21:26:43 +08:00
QVector<CircleWidget*> getAllCircles();
2015-05-28 08:45:23 +08:00
void reDraw();
2014-08-22 23:19:16 +08:00
public slots:
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
2015-05-29 00:58:44 +08:00
protected:
void dragEnterEvent(QDragEnterEvent* event) override;
void dropEvent(QDropEvent* event) override;
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;
2015-05-28 22:28:11 +08:00
QVBoxLayout *circleLayout;
2014-08-22 23:19:16 +08:00
};
#endif // FRIENDLISTWIDGET_H