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-05-29 21:26:43 +08:00
|
|
|
#include <QVector>
|
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-06-02 02:39:40 +08:00
|
|
|
#include "sortingboxlayout.h"
|
|
|
|
|
|
|
|
#include "circlewidget.h"
|
|
|
|
|
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);
|
2015-05-31 03:10:43 +08:00
|
|
|
void addFriendWidget(FriendWidget *w, Status s, int circleIndex);
|
|
|
|
void addCircleWidget(const QString &name);
|
2015-06-02 04:17:39 +08:00
|
|
|
void addCircleWidget(FriendWidget *widget = nullptr);
|
2015-05-29 06:36:21 +08:00
|
|
|
void removeCircleWidget(CircleWidget *widget);
|
2015-03-22 15:59:42 +08:00
|
|
|
|
2015-05-28 22:28:11 +08:00
|
|
|
void searchChatrooms(const QString &searchString, bool hideOnline = false, bool hideOffline = false, bool hideGroups = false);
|
|
|
|
|
2015-06-02 02:39:40 +08:00
|
|
|
void cycleContacts(int index);
|
2015-03-22 15:59:42 +08:00
|
|
|
QList<GenericChatroomWidget*> getAllFriends();
|
2015-05-29 21:26:43 +08:00
|
|
|
QVector<CircleWidget*> getAllCircles();
|
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
|
|
|
|
2015-06-02 04:17:39 +08:00
|
|
|
signals:
|
|
|
|
void onCompactChanged(bool compact);
|
|
|
|
|
2014-08-22 23:19:16 +08:00
|
|
|
public slots:
|
2015-06-02 02:39:40 +08:00
|
|
|
void renameCircleWidget(const QString &newName);
|
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
|
|
|
|
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;
|
2015-06-02 02:39:40 +08:00
|
|
|
VSortingBoxLayout<CircleWidget> circleLayout2;
|
2014-08-22 23:19:16 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // FRIENDLISTWIDGET_H
|