2011-09-23 22:06:21 +02:00
|
|
|
/* ============================================================
|
|
|
|
* QupZilla - WebKit based browser
|
2014-01-11 16:11:42 +01:00
|
|
|
* Copyright (C) 2010-2014 David Rosca <nowrep@gmail.com>
|
2011-09-23 22:06:21 +02:00
|
|
|
*
|
|
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
|
|
* ============================================================ */
|
2011-09-11 19:15:06 +02:00
|
|
|
#ifndef NAVIGATIONBAR_H
|
|
|
|
#define NAVIGATIONBAR_H
|
|
|
|
|
|
|
|
#include <QWidget>
|
2012-02-29 18:33:50 +01:00
|
|
|
|
2014-02-26 20:03:20 +01:00
|
|
|
#include "qzcommon.h"
|
2012-02-29 18:33:50 +01:00
|
|
|
|
|
|
|
class QHBoxLayout;
|
|
|
|
class QSplitter;
|
2014-03-20 09:11:19 +01:00
|
|
|
class QWebHistoryItem;
|
2011-09-11 19:15:06 +02:00
|
|
|
|
|
|
|
class ToolButton;
|
|
|
|
class WebSearchBar;
|
2014-02-19 22:07:21 +01:00
|
|
|
class BrowserWindow;
|
2011-09-11 19:15:06 +02:00
|
|
|
class ReloadStopButton;
|
2011-12-12 18:07:07 +01:00
|
|
|
class Menu;
|
2012-10-01 11:26:07 +02:00
|
|
|
class QUrl;
|
|
|
|
|
2014-02-19 22:12:32 +01:00
|
|
|
class QUPZILLA_EXPORT NavigationBar : public QWidget
|
2011-09-11 19:15:06 +02:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2014-02-19 22:07:21 +01:00
|
|
|
explicit NavigationBar(BrowserWindow* window);
|
2011-09-11 19:15:06 +02:00
|
|
|
|
2013-04-27 13:51:08 +02:00
|
|
|
Q_PROPERTY(int layoutMargin READ layoutMargin WRITE setLayoutMargin)
|
|
|
|
Q_PROPERTY(int layoutSpacing READ layoutSpacing WRITE setLayoutSpacing)
|
|
|
|
|
2011-10-17 09:57:07 +02:00
|
|
|
void setSplitterSizes(int locationBar, int websearchBar);
|
|
|
|
|
2011-09-11 19:15:06 +02:00
|
|
|
void showReloadButton();
|
|
|
|
void showStopButton();
|
|
|
|
|
2013-02-09 14:08:12 +01:00
|
|
|
ToolButton* buttonBack() { return m_buttonBack; }
|
|
|
|
ToolButton* buttonNext() { return m_buttonNext; }
|
|
|
|
ToolButton* buttonHome() { return m_buttonHome; }
|
|
|
|
ToolButton* buttonAddTab() { return m_buttonAddTab; }
|
|
|
|
ToolButton* buttonExitFullscreen() { return m_exitFullscreen; }
|
|
|
|
ReloadStopButton* buttonReloadStop() { return m_reloadStop; }
|
2014-03-10 16:55:11 +01:00
|
|
|
WebSearchBar* webSearchBar() { return m_searchLine; }
|
2013-02-09 14:08:12 +01:00
|
|
|
QSplitter* splitter() { return m_navigationSplitter; }
|
2011-09-11 19:15:06 +02:00
|
|
|
|
2013-03-08 21:01:55 +01:00
|
|
|
void setSuperMenuVisible(bool visible);
|
|
|
|
|
2013-04-27 13:51:08 +02:00
|
|
|
int layoutMargin() const;
|
|
|
|
void setLayoutMargin(int margin);
|
|
|
|
|
|
|
|
int layoutSpacing() const;
|
|
|
|
void setLayoutSpacing(int spacing);
|
|
|
|
|
2011-09-11 19:15:06 +02:00
|
|
|
signals:
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
void refreshHistory();
|
|
|
|
|
2014-03-10 16:55:11 +01:00
|
|
|
void stop();
|
|
|
|
void reload();
|
2011-10-29 23:01:17 +02:00
|
|
|
void goBack();
|
2011-12-12 18:30:08 +01:00
|
|
|
void goBackInNewTab();
|
2011-10-29 23:01:17 +02:00
|
|
|
void goForward();
|
2011-12-12 18:30:08 +01:00
|
|
|
void goForwardInNewTab();
|
2011-10-29 23:01:17 +02:00
|
|
|
|
2011-09-11 19:15:06 +02:00
|
|
|
private slots:
|
|
|
|
void aboutToShowHistoryNextMenu();
|
|
|
|
void aboutToShowHistoryBackMenu();
|
2011-10-29 23:01:17 +02:00
|
|
|
|
2014-03-20 09:11:19 +01:00
|
|
|
void loadHistoryIndex();
|
|
|
|
void loadHistoryIndexInNewTab(int index = -1);
|
2011-12-12 18:07:07 +01:00
|
|
|
|
2011-10-29 23:01:17 +02:00
|
|
|
void clearHistory();
|
2013-02-09 14:08:12 +01:00
|
|
|
void contextMenuRequested(const QPoint &pos);
|
|
|
|
|
2011-09-11 19:15:06 +02:00
|
|
|
private:
|
2012-10-01 11:26:07 +02:00
|
|
|
QString titleForUrl(QString title, const QUrl &url);
|
|
|
|
QIcon iconForPage(const QUrl &url, const QIcon &sIcon);
|
|
|
|
|
2014-03-20 09:11:19 +01:00
|
|
|
void loadHistoryItem(const QWebHistoryItem &item);
|
|
|
|
void loadHistoryItemInNewTab(const QWebHistoryItem &item);
|
|
|
|
|
2014-02-19 22:07:21 +01:00
|
|
|
BrowserWindow* m_window;
|
2011-09-11 19:15:06 +02:00
|
|
|
|
|
|
|
QHBoxLayout* m_layout;
|
|
|
|
QSplitter* m_navigationSplitter;
|
|
|
|
ToolButton* m_buttonBack;
|
|
|
|
ToolButton* m_buttonNext;
|
|
|
|
ToolButton* m_buttonHome;
|
|
|
|
ToolButton* m_buttonAddTab;
|
|
|
|
ToolButton* m_supMenu;
|
|
|
|
ToolButton* m_exitFullscreen;
|
|
|
|
ReloadStopButton* m_reloadStop;
|
|
|
|
|
2011-12-12 18:07:07 +01:00
|
|
|
Menu* m_menuBack;
|
|
|
|
Menu* m_menuForward;
|
2011-09-11 19:15:06 +02:00
|
|
|
|
|
|
|
WebSearchBar* m_searchLine;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // NAVIGATIONBAR_H
|