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-05-28 08:45:23 +08:00
|
|
|
#ifndef GENERICFRIENDLISTWIDGET_H
|
|
|
|
#define GENERICFRIENDLISTWIDGET_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-06-03 21:51:23 +08:00
|
|
|
#include "friendwidget.h"
|
2015-05-28 01:17:12 +08:00
|
|
|
|
2015-05-28 08:45:23 +08:00
|
|
|
class GroupWidget;
|
|
|
|
class CircleWidget;
|
|
|
|
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);
|
|
|
|
int indexOfFriendWidget(FriendWidget* widget, bool online) const;
|
|
|
|
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
|
|
|
template <typename WidgetType>
|
|
|
|
static void searchLayout(const QString& searchString, QLayout* boxLayout, bool hideAll);
|
2015-05-28 01:17:12 +08:00
|
|
|
|
2015-06-03 21:51:23 +08:00
|
|
|
QLayout* getLayoutOnline() const;
|
|
|
|
QLayout* getLayoutOffline() const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
QLayout* getFriendLayout(Status s);
|
|
|
|
|
2015-06-05 00:30:24 +08:00
|
|
|
GenericChatItemLayout friendOnlineLayout;
|
|
|
|
GenericChatItemLayout friendOfflineLayout;
|
2015-05-28 01:17:12 +08:00
|
|
|
};
|
|
|
|
|
2015-06-03 21:51:23 +08:00
|
|
|
template <typename WidgetType>
|
|
|
|
void FriendListLayout::searchLayout(const QString &searchString, QLayout *boxLayout, bool hideAll)
|
|
|
|
{
|
|
|
|
for (int index = 0; index < boxLayout->count(); ++index)
|
|
|
|
{
|
|
|
|
WidgetType* widgetAt = static_cast<WidgetType*>(boxLayout->itemAt(index)->widget());
|
|
|
|
QString widgetName = widgetAt->getName();
|
|
|
|
|
|
|
|
widgetAt->setVisible(!hideAll && widgetName.contains(searchString, Qt::CaseInsensitive));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-28 08:45:23 +08:00
|
|
|
#endif // GENERICFRIENDLISTWIDGET_H
|