blob: e63168199b8a5428f50abcb1191c8a033d80c3ba (
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
|
/* ============================================================
* The rekonq project
* ============================================================
* SPDX-License-Identifier: GPL-2.0-or-later
* Copyright (C) 2013 by Andrea Diamantini <adjam7 at gmail dot com>
* SPDX-License-Identifier: GPL-3.0-only
* Copyright (C) 2022 aqua <aqua@iserlohn-fortress.net>
* ============================================================
* Description: Main Window class
* ============================================================ */
#pragma once
#include "rekonq.hpp"
//#include "rwindow.h"
//#include "tabwidget.h"
//#include "bookmarkspanel.h"
//#include "historypanel.h"
#include <QMainWindow>
#include <QSplitter>
// Forward Declarations
class RekonqView;
// class TabBar;
// class WebPage;
// class WebWindow;
namespace Ui {
class RekonqWindow;
}
class RekonqWindow : public QMainWindow {
Q_OBJECT
public:
explicit RekonqWindow(QWidget *parent = nullptr);
// explicit RekonqWindow(WebPage *pg, QWidget *parent = 0);
~RekonqWindow() override;
// TabWidget *tabWidget();
// TabBar *tabBar();
// WebWindow *currentWebWindow() const;
// bool isPrivateBrowsingMode();
private:
// void init();
public slots:
void addView(RekonqView *view);
// void loadUrl(const KUrl &, Rekonq::OpenType type = Rekonq::CurrentTab, TabHistory *history = 0);
private slots:
// void showBookmarksPanel(bool);
// void showHistoryPanel(bool);
private:
Ui::RekonqWindow *ui;
// TabWidget *_tabWidget;
QSplitter *_splitter = nullptr;
// QWeakPointer<HistoryPanel> _historyPanel;
// QWeakPointer<BookmarksPanel> _bookmarksPanel;
};
|