2015-05-28 01:17:12 +08:00
|
|
|
/*
|
|
|
|
This file is part of qTox, a Qt-based graphical interface for Tox.
|
|
|
|
|
|
|
|
This program is libre software: you can redistribute it and/or modify
|
|
|
|
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.
|
|
|
|
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 COPYING file for more details.
|
|
|
|
*/
|
|
|
|
|
2015-06-06 00:57:05 +08:00
|
|
|
#ifndef FRIENDLISTLAYOUT_H
|
|
|
|
#define FRIENDLISTLAYOUT_H
|
2015-05-28 01:17:12 +08:00
|
|
|
|
2015-05-28 08:45:23 +08:00
|
|
|
#include <QBoxLayout>
|
|
|
|
#include "src/core/corestructs.h"
|
2015-06-05 00:30:24 +08:00
|
|
|
#include "genericchatitemlayout.h"
|
2015-05-28 01:17:12 +08:00
|
|
|
|
2015-05-28 08:45:23 +08:00
|
|
|
class FriendWidget;
|
2015-06-03 21:51:23 +08:00
|
|
|
class FriendListWidget;
|
2015-05-28 01:17:12 +08:00
|
|
|
|
2015-05-28 08:45:23 +08:00
|
|
|
class FriendListLayout : public QVBoxLayout
|
2015-05-28 01:17:12 +08:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2015-06-03 21:51:23 +08:00
|
|
|
explicit FriendListLayout();
|
2015-06-05 00:30:24 +08:00
|
|
|
explicit FriendListLayout(QWidget* parent);
|
2015-05-28 01:17:12 +08:00
|
|
|
|
2015-06-03 21:51:23 +08:00
|
|
|
void addFriendWidget(FriendWidget* widget, Status s);
|
2015-06-15 21:48:34 +08:00
|
|
|
void removeFriendWidget(FriendWidget* widget, Status s);
|
2015-06-30 00:26:49 +08:00
|
|
|
int indexOfFriendWidget(GenericChatItemWidget* widget, bool online) const;
|
2015-06-03 21:51:23 +08:00
|
|
|
void moveFriendWidgets(FriendListWidget* listWidget);
|
2015-05-29 00:58:44 +08:00
|
|
|
int friendOnlineCount() const;
|
2015-05-31 03:10:43 +08:00
|
|
|
int friendTotalCount() const;
|
2015-05-28 01:17:12 +08:00
|
|
|
|
2015-05-28 22:28:11 +08:00
|
|
|
bool hasChatrooms() const;
|
2015-06-03 21:51:23 +08:00
|
|
|
void searchChatrooms(const QString& searchString, bool hideOnline = false, bool hideOffline = false);
|
2015-05-28 01:17:12 +08:00
|
|
|
|
2015-06-03 21:51:23 +08:00
|
|
|
QLayout* getLayoutOnline() const;
|
|
|
|
QLayout* getLayoutOffline() const;
|
|
|
|
|
|
|
|
private:
|
2015-10-09 03:53:46 +08:00
|
|
|
void init();
|
2015-06-07 11:20:06 +08:00
|
|
|
QLayout* getFriendLayout(Status s) const;
|
2015-06-03 21:51:23 +08:00
|
|
|
|
2015-06-05 00:30:24 +08:00
|
|
|
GenericChatItemLayout friendOnlineLayout;
|
|
|
|
GenericChatItemLayout friendOfflineLayout;
|
2015-05-28 01:17:12 +08:00
|
|
|
};
|
|
|
|
|
2015-06-06 00:57:05 +08:00
|
|
|
#endif // FRIENDLISTLAYOUT_H
|