summaryrefslogtreecommitdiffstats
blob: b285831da98be2b2a249f060ab31edc784b6fb07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
/*
 * Copyright (c) 2010-2018 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */

#pragma once

#include <vector>

#include <QList>
#include <QMenu>
#include <QWidget>

#include <Swift/Controllers/Chat/Chattables.h>
#include <Swift/Controllers/UIInterfaces/MainWindow.h>

#include <Swift/QtUI/ChatList/QtChatListWindow.h>
#include <Swift/QtUI/EventViewer/QtEventWindow.h>
#include <Swift/QtUI/QtLoginWindow.h>
#include <Swift/QtUI/QtRosterHeader.h>

class QAction;
class QComboBox;
class QLineEdit;
class QMenu;
class QPushButton;
class QTabWidget;
class QToolBar;

namespace Swift {
    class QtChatOverview;
    class QtRosterWidget;
    class QtTabWidget;
    class QtUIPreferences;
    class SettingsProvider;
    class StatusCache;
    class TreeWidget;
    class UIEventStream;

    class QtMainWindow : public QWidget, public MainWindow {
        Q_OBJECT
        public:
            QtMainWindow(Chattables&, SettingsProvider*, UIEventStream* eventStream, QtLoginWindow::QtMenus loginMenus, StatusCache* statusCache, bool emoticonsExist, bool enableAdHocCommandOnJID);
            virtual ~QtMainWindow() override;
            std::vector<QMenu*> getMenus() {return menus_;}
            void setMyNick(const std::string& name) override;
            void setMyJID(const JID& jid) override;
            void setMyAvatarPath(const std::string& path) override;
            void setMyStatusText(const std::string& status) override;
            void setMyStatusType(StatusShow::Type type) override;
            void setMyContactRosterItem(std::shared_ptr<ContactRosterItem> contact) override;
            void setConnecting() override;
            void setStreamEncryptionStatus(bool tlsInPlaceAndValid) override;
            void openCertificateDialog(const std::vector<Certificate::ref>& chain) override;
            static void openCertificateDialog(const std::vector<Certificate::ref>& chain, QWidget* parent);
            QtEventWindow* getEventWindow();
            QtChatListWindow* getChatListWindow();
            void setRosterModel(Roster* roster) override;
            void setAvailableAdHocCommands(const std::vector<DiscoItems::Item>& commands) override;
            void setBlockingCommandAvailable(bool isAvailable) override;
        private slots:
            void handleStatusChanged(StatusShow::Type showType, const QString &statusMessage);
            void handleSettingChanged(const std::string& settingPath);
            void handleCompactRosterToggled(bool);
            void handleShowOfflineToggled(bool);
            void handleShowEmoticonsToggled(bool);
            void handleJoinMUCAction();
            void handleViewLogsAction();
            void handleSignOutAction();
            void handleEditProfileAction();
            void handleAddUserActionTriggered(bool checked);
            void handleChatUserActionTriggered(bool checked);
            void handleOtherAdHocActionTriggered();
            void handleAdHocActionTriggered(bool checked);
            void handleEventCountUpdated(int count);
            void handleChatCountUpdated(int count);
            void handleEditProfileRequest();
            void handleTabChanged(int index);
            void handleToggleRequestDeliveryReceipts(bool enabled);
            void handleShowCertificateInfo();
            void handleEditBlockingList();
            void handleSomethingSelectedChanged(bool itemSelected);
            void handleSubmitFormActionTriggered();

        private:
            Chattables& chattables_;
            SettingsProvider* settings_;
            QtLoginWindow::QtMenus loginMenus_;
            std::vector<QMenu*> menus_;
            QtRosterWidget* treeWidget_;
            QtRosterHeader* meView_;
            QAction* addUserAction_;
            QAction* editUserAction_;
            QAction* chatUserAction_;
            QAction* otherAdHocAction_;
            QAction* showOfflineAction_;
            QAction* compactRosterAction_;
            QAction* showEmoticonsAction_;
            QAction* openBlockingListEditor_;
            QAction* toggleRequestDeliveryReceipts_;
            QMenu* serverAdHocMenu_;
            QtTabWidget* tabs_;
            QComboBox* tabBarCombo_;
            QtChatOverview* chatOverview_;
            QWidget* contactsTabWidget_;
            QWidget* eventsTabWidget_;
            QtEventWindow* eventWindow_;
            QtChatListWindow* chatListWindow_;
            UIEventStream* uiEventStream_;
            std::vector<DiscoItems::Item> serverAdHocCommands_;
            QList<QAction*> serverAdHocCommandActions_;
            QList<QAction*> onlineOnlyActions_;
            QAction* submitFormAction_;
    };
}