blob: eb7973f681be3a78952bf86d9be8e7b7ad58fb21 (
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
 | /*
 * This file is part of smolbote. It's copyrighted by the contributors recorded
 * in the version control history of the file, available from its original
 * location: https://neueland.iserlohn-fortress.net/gitea/aqua/smolbote
 *
 * SPDX-License-Identifier: GPL-3.0
 */
#ifndef SMOLBOTE_SUBWINDOW_H
#define SMOLBOTE_SUBWINDOW_H
#include <QMdiSubWindow>
#include <QUrl>
#include <memory>
class TabWidget;
class WebView;
class WebProfile;
class Configuration;
class SubWindow : public QMdiSubWindow
{
    Q_OBJECT
public:
    struct TabData
    {
        bool closeLocked = false;
        bool refreshLocked = false;
    };
    explicit SubWindow(const Configuration *config, QWidget *parent = nullptr, Qt::WindowFlags flags = Qt::WindowFlags());
    ~SubWindow() override;
    int currentTabIndex() const;
    WebView *currentView();
    WebView *view(int index) const;
    int tabCount() const;
    void setProfile(WebProfile *profile);
    WebProfile *profile() const;
    void setTabData(TabData &data, int index);
    TabData tabData(int index) const;
signals:
    void currentViewChanged(WebView *view);
    void showStatusMessage(const QString &message, int timeout = 0);
public slots:
    int addTab(const QUrl &url = QUrl(), WebProfile *profile = nullptr);
    void closeTab(int index);
    void setCurrentTab(int index);
    void moveTab(int from, int to);
    int restoreLastTab();
    void restoreTabMenu(QMenu *menu);
private:
    WebProfile *m_profile;
    TabWidget *tabWidget;
    QMetaObject::Connection titleConnection;
    QMetaObject::Connection linkHoveredConnection;
};
Q_DECLARE_METATYPE(SubWindow::TabData)
#endif // SMOLBOTE_SUBWINDOW_H
 |