mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
152 lines
5.0 KiB
C++
152 lines
5.0 KiB
C++
/*
|
|
Copyright (C) 2014 by Project Tox <https://tox.im>
|
|
|
|
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 WIDGET_H
|
|
#define WIDGET_H
|
|
|
|
#include <QThread>
|
|
#include <QMainWindow>
|
|
#include <QString>
|
|
#include <QHBoxLayout>
|
|
#include <QMenu>
|
|
#include "core.h"
|
|
#include "widget/form/addfriendform.h"
|
|
#include "widget/form/settingsform.h"
|
|
#include "widget/form/filesform.h"
|
|
#include "camera.h"
|
|
#include "friendlistwidget.h"
|
|
|
|
#define PIXELS_TO_ACT 7
|
|
|
|
namespace Ui {
|
|
class MainWindow;
|
|
}
|
|
|
|
class GenericChatroomWidget;
|
|
class Group;
|
|
struct Friend;
|
|
|
|
class Widget : public QMainWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit Widget(QWidget *parent = 0);
|
|
enum TitleMode { CleanTitle = 0, OnlyCloseButton, MenuOff, MaxMinOff, FullScreenMode, MaximizeModeOff, MinimizeModeOff, FullTitle };
|
|
void setTitlebarMode(const TitleMode &flag);
|
|
void setTitlebarMenu(QMenu *menu, const QString &icon = "");
|
|
void setCentralWidget(QWidget *widget, const QString &widgetName);
|
|
QString getUsername();
|
|
Core* getCore();
|
|
QThread* getCoreThread();
|
|
Camera* getCamera();
|
|
static Widget* getInstance();
|
|
void showTestCamview();
|
|
void newMessageAlert();
|
|
bool isFriendWidgetCurActiveWidget(Friend* f);
|
|
bool getIsWindowMinimized();
|
|
~Widget();
|
|
|
|
virtual void closeEvent(QCloseEvent *event);
|
|
|
|
signals:
|
|
void friendRequestAccepted(const QString& userId);
|
|
void friendRequested(const QString& friendAddress, const QString& message);
|
|
void statusSet(Status status);
|
|
void statusSelected(Status status);
|
|
void usernameChanged(const QString& username);
|
|
void statusMessageChanged(const QString& statusMessage);
|
|
|
|
private slots:
|
|
void maximizeBtnClicked();
|
|
void minimizeBtnClicked();
|
|
void onConnected();
|
|
void onDisconnected();
|
|
void onStatusSet(Status status);
|
|
void onAddClicked();
|
|
void onGroupClicked();
|
|
void onTransferClicked();
|
|
void onSettingsClicked();
|
|
void onFailedToStartCore();
|
|
void onUsernameChanged(const QString& newUsername, const QString& oldUsername);
|
|
void onStatusMessageChanged(const QString& newStatusMessage, const QString& oldStatusMessage);
|
|
void onUsernameChanged();
|
|
void onStatusMessageChanged();
|
|
void setUsername(const QString& username);
|
|
void setStatusMessage(const QString &statusMessage);
|
|
void addFriend(int friendId, const QString& userId);
|
|
void addFriendFailed(const QString& userId);
|
|
void onFriendStatusChanged(int friendId, Status status);
|
|
void onFriendStatusMessageChanged(int friendId, const QString& message);
|
|
void onFriendUsernameChanged(int friendId, const QString& username);
|
|
void onFriendStatusMessageLoaded(int friendId, const QString& message);
|
|
void onFriendUsernameLoaded(int friendId, const QString& username);
|
|
void onChatroomWidgetClicked(GenericChatroomWidget *);
|
|
void onFriendMessageReceived(int friendId, const QString& message);
|
|
void onFriendRequestReceived(const QString& userId, const QString& message);
|
|
void onEmptyGroupCreated(int groupId);
|
|
void onGroupInviteReceived(int32_t friendId, const uint8_t *publicKey);
|
|
void onGroupMessageReceived(int groupnumber, int friendgroupnumber, const QString& message);
|
|
void onGroupNamelistChanged(int groupnumber, int peernumber, uint8_t change);
|
|
void removeFriend(int friendId);
|
|
void copyFriendIdToClipboard(int friendId);
|
|
void removeGroup(int groupId);
|
|
void setStatusOnline();
|
|
void setStatusAway();
|
|
void setStatusBusy();
|
|
|
|
protected slots:
|
|
void moveWindow(QMouseEvent *e);
|
|
|
|
private:
|
|
void hideMainForms();
|
|
Group* createGroup(int groupId);
|
|
|
|
private:
|
|
Ui::MainWindow *ui;
|
|
QSplitter *centralLayout;
|
|
QPoint dragPosition;
|
|
TitleMode m_titleMode;
|
|
bool moveWidget;
|
|
bool inResizeZone;
|
|
bool allowToResize;
|
|
bool resizeVerSup;
|
|
bool resizeHorEsq;
|
|
bool resizeDiagSupEsq;
|
|
bool resizeDiagSupDer;
|
|
void mousePressEvent(QMouseEvent *e);
|
|
void mouseReleaseEvent(QMouseEvent *e);
|
|
void mouseDoubleClickEvent(QMouseEvent *e);
|
|
void paintEvent (QPaintEvent *);
|
|
void resizeWindow(QMouseEvent *e);
|
|
bool event(QEvent *event);
|
|
int isWindowMinimized;
|
|
Core* core;
|
|
QThread* coreThread;
|
|
AddFriendForm friendForm;
|
|
SettingsForm settingsForm;
|
|
FilesForm filesForm;
|
|
static Widget* instance;
|
|
GenericChatroomWidget* activeChatroomWidget;
|
|
FriendListWidget* contactListWidget;
|
|
SelfCamView* camview;
|
|
Camera* camera;
|
|
bool notify(QObject *receiver, QEvent *event);
|
|
bool eventFilter(QObject *, QEvent *event);
|
|
};
|
|
|
|
#endif // WIDGET_H
|