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

51 lines
1.3 KiB
C
Raw Normal View History

2014-08-22 23:19:16 +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.
*/
#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;
2014-08-22 23:19:16 +08:00
class FriendListWidget : public QWidget
{
Q_OBJECT
public:
explicit FriendListWidget(QWidget *parent = 0, bool groupchatPosition = true);
QVBoxLayout* getGroupLayout();
QVBoxLayout* getFriendLayout(Status s);
QList<GenericChatroomWidget*> getAllFriends();
2014-08-22 23:19:16 +08:00
signals:
public slots:
void onGroupchatPositionChanged(bool top);
void moveWidget(QWidget *w, Status s);
2014-08-22 23:19:16 +08:00
private:
QHash<int, QVBoxLayout*> layouts;
QVBoxLayout *groupLayout;
2014-08-22 23:19:16 +08:00
QGridLayout *mainLayout;
};
#endif // FRIENDLISTWIDGET_H