From c114e8df178f19064c0b90ae162f062b25668fff Mon Sep 17 00:00:00 2001 From: Aqua-sama Date: Sun, 10 Sep 2017 22:59:47 +0200 Subject: Back/Forward NavigationButton class --- src/lib/navigation/navigationbutton.h | 58 +++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 src/lib/navigation/navigationbutton.h (limited to 'src/lib/navigation/navigationbutton.h') diff --git a/src/lib/navigation/navigationbutton.h b/src/lib/navigation/navigationbutton.h new file mode 100644 index 0000000..44e3ceb --- /dev/null +++ b/src/lib/navigation/navigationbutton.h @@ -0,0 +1,58 @@ +/******************************************************************************* + ** + ** smolbote: yet another qute browser + ** Copyright (C) 2017 Xian Nox + ** + ** This program is free 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 + ** GNU General Public License for more details. + ** + ** You should have received a copy of the GNU General Public License + ** along with this program. If not, see . + ** + ******************************************************************************/ + +#ifndef NAVIGATIONBUTTON_H +#define NAVIGATIONBUTTON_H + +#include +#include + +class QMenu; + +class NavigationButton : public QToolButton +{ + Q_OBJECT +public: + + enum Type { + BackButton, + ForwardButton + }; + + explicit NavigationButton(Type type, QWidget *parent = nullptr); + + void setView(const WebView *view); + +signals: + +private slots: + void updateEnableState(); + void doAction(); + void prepareMenu(); + +private: + Type m_type; + QMenu *menu; + const WebView *m_view; + + QMetaObject::Connection loadFinishedConnection; +}; + +#endif // NAVIGATIONBUTTON_H -- cgit v1.2.1