2014-07-07 00:19:45 +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.
|
|
|
|
*/
|
|
|
|
|
2014-06-25 04:11:11 +08:00
|
|
|
#ifndef WIDGET_H
|
|
|
|
#define WIDGET_H
|
|
|
|
|
2014-08-11 16:00:08 +08:00
|
|
|
#include <QMainWindow>
|
2014-10-21 02:03:44 +08:00
|
|
|
#include <QSystemTrayIcon>
|
2014-10-24 02:39:28 +08:00
|
|
|
#include <QMessageBox>
|
2015-02-20 03:14:19 +08:00
|
|
|
#include <QFileInfo>
|
2014-10-08 12:26:25 +08:00
|
|
|
#include "form/addfriendform.h"
|
|
|
|
#include "form/settingswidget.h"
|
2015-03-04 04:29:01 +08:00
|
|
|
#include "form/profileform.h"
|
2014-10-08 12:26:25 +08:00
|
|
|
#include "form/filesform.h"
|
2015-04-24 08:32:09 +08:00
|
|
|
#include "src/core/corestructs.h"
|
2014-06-25 04:11:11 +08:00
|
|
|
|
2014-07-05 14:50:18 +08:00
|
|
|
#define PIXELS_TO_ACT 7
|
2014-07-01 10:12:17 +08:00
|
|
|
|
2014-06-25 04:11:11 +08:00
|
|
|
namespace Ui {
|
2014-08-11 16:00:08 +08:00
|
|
|
class MainWindow;
|
2014-06-25 04:11:11 +08:00
|
|
|
}
|
|
|
|
|
2014-09-02 00:20:28 +08:00
|
|
|
class GenericChatroomWidget;
|
2014-06-25 04:11:11 +08:00
|
|
|
class Group;
|
2015-04-20 05:12:44 +08:00
|
|
|
class Friend;
|
2014-09-11 21:44:34 +08:00
|
|
|
class QSplitter;
|
2014-10-08 22:42:09 +08:00
|
|
|
class VideoSurface;
|
2014-09-11 21:44:34 +08:00
|
|
|
class QMenu;
|
|
|
|
class Core;
|
|
|
|
class Camera;
|
|
|
|
class FriendListWidget;
|
2014-09-26 22:39:29 +08:00
|
|
|
class MaskablePixmapWidget;
|
2014-10-16 17:47:58 +08:00
|
|
|
class QTimer;
|
2015-01-29 21:56:53 +08:00
|
|
|
class SystemTrayIcon;
|
2014-06-25 04:11:11 +08:00
|
|
|
|
2014-08-11 16:00:08 +08:00
|
|
|
class Widget : public QMainWindow
|
2014-06-25 04:11:11 +08:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
2015-03-20 03:24:06 +08:00
|
|
|
protected:
|
|
|
|
bool eventFilter(QObject *obj, QEvent *event);
|
|
|
|
|
2014-06-25 04:11:11 +08:00
|
|
|
public:
|
2015-04-09 00:18:07 +08:00
|
|
|
enum FilterCriteria
|
|
|
|
{
|
|
|
|
All=0,
|
|
|
|
Online,
|
|
|
|
Offline,
|
|
|
|
Friends,
|
|
|
|
Groups
|
|
|
|
};
|
2014-06-25 04:11:11 +08:00
|
|
|
explicit Widget(QWidget *parent = 0);
|
2015-02-19 04:22:03 +08:00
|
|
|
void init();
|
2014-07-01 10:12:17 +08:00
|
|
|
void setCentralWidget(QWidget *widget, const QString &widgetName);
|
2014-06-25 04:11:11 +08:00
|
|
|
QString getUsername();
|
2014-06-30 20:49:42 +08:00
|
|
|
Camera* getCamera();
|
2014-06-25 04:11:11 +08:00
|
|
|
static Widget* getInstance();
|
2014-11-10 16:09:20 +08:00
|
|
|
void newMessageAlert(GenericChatroomWidget* chat);
|
2014-07-01 03:14:51 +08:00
|
|
|
bool isFriendWidgetCurActiveWidget(Friend* f);
|
2014-09-01 00:29:55 +08:00
|
|
|
bool getIsWindowMinimized();
|
2015-03-12 02:04:29 +08:00
|
|
|
void updateIcons();
|
2015-06-04 22:36:08 +08:00
|
|
|
void clearContactsList();
|
2014-06-25 04:11:11 +08:00
|
|
|
~Widget();
|
2014-08-11 16:00:08 +08:00
|
|
|
|
|
|
|
virtual void closeEvent(QCloseEvent *event);
|
2014-10-20 19:50:12 +08:00
|
|
|
virtual void changeEvent(QEvent *event);
|
2014-11-28 17:16:37 +08:00
|
|
|
virtual void resizeEvent(QResizeEvent *event);
|
|
|
|
|
2015-02-22 20:21:42 +08:00
|
|
|
static void confirmExecutableOpen(const QFileInfo file);
|
2015-02-20 03:14:19 +08:00
|
|
|
|
2014-11-10 21:06:35 +08:00
|
|
|
void clearAllReceipts();
|
2015-02-03 07:56:51 +08:00
|
|
|
void reloadHistory();
|
2014-06-25 04:11:11 +08:00
|
|
|
|
2014-11-16 04:30:20 +08:00
|
|
|
void reloadTheme();
|
2015-02-12 20:18:04 +08:00
|
|
|
static QString getStatusIconPath(Status status);
|
|
|
|
static inline QIcon getStatusIcon(Status status, uint32_t w=0, uint32_t h=0);
|
|
|
|
static QPixmap getStatusIconPixmap(Status status, uint32_t w, uint32_t h);
|
|
|
|
static QString getStatusTitle(Status status);
|
|
|
|
static Status getStatusFromString(QString status);
|
2014-11-16 04:30:20 +08:00
|
|
|
|
2014-10-20 11:07:51 +08:00
|
|
|
public slots:
|
|
|
|
void onSettingsClicked();
|
2014-11-15 08:28:44 +08:00
|
|
|
void setWindowTitle(const QString& title);
|
2015-01-26 18:43:34 +08:00
|
|
|
void forceShow();
|
2014-06-25 04:11:11 +08:00
|
|
|
void onConnected();
|
|
|
|
void onDisconnected();
|
|
|
|
void onStatusSet(Status status);
|
|
|
|
void onFailedToStartCore();
|
2014-10-06 04:49:44 +08:00
|
|
|
void onBadProxyCore();
|
2014-09-24 22:51:16 +08:00
|
|
|
void onSelfAvatarLoaded(const QPixmap &pic);
|
2014-06-25 04:11:11 +08:00
|
|
|
void setUsername(const QString& username);
|
|
|
|
void setStatusMessage(const QString &statusMessage);
|
|
|
|
void addFriend(int friendId, const QString& userId);
|
2014-11-10 03:23:43 +08:00
|
|
|
void addFriendFailed(const QString& userId, const QString& errorInfo = QString());
|
2014-06-25 04:11:11 +08:00
|
|
|
void onFriendStatusChanged(int friendId, Status status);
|
|
|
|
void onFriendStatusMessageChanged(int friendId, const QString& message);
|
|
|
|
void onFriendUsernameChanged(int friendId, const QString& username);
|
2014-10-02 14:01:23 +08:00
|
|
|
void onFriendMessageReceived(int friendId, const QString& message, bool isAction);
|
2014-06-25 04:11:11 +08:00
|
|
|
void onFriendRequestReceived(const QString& userId, const QString& message);
|
2015-04-20 05:12:44 +08:00
|
|
|
void onMessageSendResult(uint32_t friendId, const QString& message, int messageId);
|
2014-11-01 22:19:11 +08:00
|
|
|
void onReceiptRecieved(int friendId, int receipt);
|
2014-06-30 05:38:48 +08:00
|
|
|
void onEmptyGroupCreated(int groupId);
|
2014-11-13 07:13:11 +08:00
|
|
|
void onGroupInviteReceived(int32_t friendId, uint8_t type, QByteArray invite);
|
2014-11-23 23:55:49 +08:00
|
|
|
void onGroupMessageReceived(int groupnumber, int peernumber, const QString& message, bool isAction);
|
2014-06-25 04:11:11 +08:00
|
|
|
void onGroupNamelistChanged(int groupnumber, int peernumber, uint8_t change);
|
2014-11-06 08:22:50 +08:00
|
|
|
void onGroupTitleChanged(int groupnumber, const QString& author, const QString& title);
|
2015-03-13 14:00:12 +08:00
|
|
|
void onGroupPeerAudioPlaying(int groupnumber, int peernumber);
|
2015-04-20 05:12:44 +08:00
|
|
|
void onGroupSendResult(int groupId, const QString& message, int result);
|
2015-02-06 19:28:49 +08:00
|
|
|
void playRingtone();
|
|
|
|
void onFriendTypingChanged(int friendId, bool isTyping);
|
2015-02-28 01:56:47 +08:00
|
|
|
void nextContact();
|
|
|
|
void previousContact();
|
2015-02-06 19:28:49 +08:00
|
|
|
|
|
|
|
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);
|
|
|
|
void resized();
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void onAddClicked();
|
|
|
|
void onGroupClicked();
|
|
|
|
void onTransferClicked();
|
2015-03-11 10:01:13 +08:00
|
|
|
void showProfile();
|
2015-02-06 19:28:49 +08:00
|
|
|
void onUsernameChanged(const QString& newUsername, const QString& oldUsername);
|
|
|
|
void onStatusMessageChanged(const QString& newStatusMessage, const QString& oldStatusMessage);
|
|
|
|
void onChatroomWidgetClicked(GenericChatroomWidget *);
|
2014-06-25 04:11:11 +08:00
|
|
|
void removeFriend(int friendId);
|
2014-07-02 05:50:07 +08:00
|
|
|
void copyFriendIdToClipboard(int friendId);
|
2014-06-25 04:11:11 +08:00
|
|
|
void removeGroup(int groupId);
|
2014-07-06 04:54:27 +08:00
|
|
|
void setStatusOnline();
|
|
|
|
void setStatusAway();
|
|
|
|
void setStatusBusy();
|
2014-10-21 02:03:44 +08:00
|
|
|
void onIconClick(QSystemTrayIcon::ActivationReason);
|
2014-11-26 20:34:08 +08:00
|
|
|
void onUserAwayCheck();
|
2014-12-12 00:49:11 +08:00
|
|
|
void onEventIconTick();
|
2015-02-20 18:56:20 +08:00
|
|
|
void onTryCreateTrayIcon();
|
2014-11-14 04:33:11 +08:00
|
|
|
void onSetShowSystemTray(bool newValue);
|
2014-11-28 17:16:37 +08:00
|
|
|
void onSplitterMoved(int pos, int index);
|
2015-02-13 13:27:49 +08:00
|
|
|
void processOfflineMsgs();
|
2015-04-09 00:18:07 +08:00
|
|
|
void searchContacts();
|
|
|
|
void hideFriends(QString searchString, Status status, bool hideAll = false);
|
|
|
|
void hideGroups(QString searchString, bool hideAll = false);
|
2014-07-01 10:12:17 +08:00
|
|
|
|
2014-06-25 04:11:11 +08:00
|
|
|
private:
|
2015-04-01 16:01:25 +08:00
|
|
|
enum ActiveToolMenuButton {
|
|
|
|
AddButton,
|
|
|
|
GroupButton,
|
|
|
|
TransferButton,
|
|
|
|
SettingButton,
|
|
|
|
None,
|
|
|
|
};
|
|
|
|
void setActiveToolMenuButton(ActiveToolMenuButton newActiveButton);
|
2014-06-25 04:11:11 +08:00
|
|
|
void hideMainForms();
|
2014-10-04 16:54:50 +08:00
|
|
|
virtual bool event(QEvent * e);
|
2015-02-28 01:56:47 +08:00
|
|
|
Group *createGroup(int groupId);
|
2014-11-12 07:00:24 +08:00
|
|
|
void removeFriend(Friend* f, bool fake = false);
|
|
|
|
void removeGroup(Group* g, bool fake = false);
|
2014-11-28 17:16:37 +08:00
|
|
|
void saveWindowGeometry();
|
|
|
|
void saveSplitterGeometry();
|
2015-03-22 15:59:42 +08:00
|
|
|
void cycleContacts(int offset);
|
2015-06-06 03:37:01 +08:00
|
|
|
void retranslateUi();
|
2015-01-29 21:56:53 +08:00
|
|
|
SystemTrayIcon *icon;
|
2014-10-21 02:03:44 +08:00
|
|
|
QMenu *trayMenu;
|
|
|
|
QAction *statusOnline,
|
|
|
|
*statusAway,
|
|
|
|
*statusBusy,
|
|
|
|
*actionQuit;
|
2014-06-25 04:11:11 +08:00
|
|
|
|
2014-08-11 16:00:08 +08:00
|
|
|
Ui::MainWindow *ui;
|
2014-07-03 14:43:23 +08:00
|
|
|
QSplitter *centralLayout;
|
2014-07-01 10:12:17 +08:00
|
|
|
QPoint dragPosition;
|
2015-02-28 01:56:47 +08:00
|
|
|
AddFriendForm *addFriendForm;
|
2015-03-05 03:43:46 +08:00
|
|
|
ProfileForm *profileForm;
|
2015-02-28 01:56:47 +08:00
|
|
|
SettingsWidget *settingsWidget;
|
|
|
|
FilesForm *filesForm;
|
|
|
|
static Widget *instance;
|
|
|
|
GenericChatroomWidget *activeChatroomWidget;
|
|
|
|
FriendListWidget *contactListWidget;
|
|
|
|
MaskablePixmapWidget *profilePicture;
|
2014-07-03 14:43:23 +08:00
|
|
|
bool notify(QObject *receiver, QEvent *event);
|
2014-10-16 17:47:58 +08:00
|
|
|
bool autoAwayActive = false;
|
2014-11-18 09:40:36 +08:00
|
|
|
Status beforeDisconnect = Status::Offline;
|
2015-02-28 01:56:47 +08:00
|
|
|
QTimer *timer, *offlineMsgTimer;
|
2015-01-23 01:43:44 +08:00
|
|
|
QRegExp nameMention, sanitizedNameMention;
|
2014-12-12 00:49:11 +08:00
|
|
|
bool eventFlag;
|
|
|
|
bool eventIcon;
|
2015-03-20 03:24:06 +08:00
|
|
|
bool wasMaximized = false;
|
2014-06-25 04:11:11 +08:00
|
|
|
};
|
|
|
|
|
2015-02-20 20:26:41 +08:00
|
|
|
bool toxActivateEventHandler(const QByteArray& data);
|
2014-11-26 01:11:05 +08:00
|
|
|
|
2014-06-25 04:11:11 +08:00
|
|
|
#endif // WIDGET_H
|