1 /**************************************************************************
2 * Otter Browser: Web browser controlled by the user, not vice-versa.
3 * Copyright (C) 2017 - 2018 Michal Dutkiewicz aka Emdek <michal@emdek.pl>
4 *
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 *
18 **************************************************************************/
19 
20 #ifndef OTTER_WINDOWSCONTENTSWIDGET_H
21 #define OTTER_WINDOWSCONTENTSWIDGET_H
22 
23 #include "../../../ui/ContentsWidget.h"
24 #include "../../../ui/ItemDelegate.h"
25 
26 namespace Otter
27 {
28 
29 namespace Ui
30 {
31 	class WindowsContentsWidget;
32 }
33 
34 class Window;
35 
36 
37 class EntryItemDelegate final : public ItemDelegate
38 {
39 public:
40 	explicit EntryItemDelegate(QObject *parent = nullptr);
41 
42 	void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const override;
43 
44 protected:
45 	void initStyleOption(QStyleOptionViewItem *option, const QModelIndex &index) const override;
46 	int calculateDecorationWidth(QStyleOptionViewItem *option, const QModelIndex &index) const;
47 
48 private:
49 	static int m_decorationSize;
50 };
51 
52 class WindowsContentsWidget final : public ContentsWidget
53 {
54 	Q_OBJECT
55 
56 public:
57 	explicit WindowsContentsWidget(const QVariantMap &parameters, Window *window, QWidget *parent);
58 	~WindowsContentsWidget();
59 
60 	void print(QPrinter *printer) override;
61 	QString getTitle() const override;
62 	QLatin1String getType() const override;
63 	QUrl getUrl() const override;
64 	QIcon getIcon() const override;
65 
66 public slots:
67 	void triggerAction(int identifier, const QVariantMap &parameters = {}, ActionsManager::TriggerType trigger = ActionsManager::UnknownTrigger) override;
68 
69 protected:
70 	void changeEvent(QEvent *event) override;
71 
72 protected slots:
73 	void activateWindow(const QModelIndex &index);
74 	void showContextMenu(const QPoint &position);
75 
76 private:
77 	Ui::WindowsContentsWidget *m_ui;
78 };
79 
80 }
81 
82 #endif
83