diff options
author | lionelc <lionelc@lionelc.(none)> | 2010-08-09 19:44:19 +0200 |
---|---|---|
committer | lionelc <lionelc@lionelc.(none)> | 2010-08-09 19:44:19 +0200 |
commit | 06583dfe2267b676c85b5aa479b80bf6a502b9fb (patch) | |
tree | a224a88cd77b611e154caf8ec06983577c848890 /src/mainwindow.h | |
parent | SVN_SILENT made messages (.desktop file) (diff) | |
download | rekonq-06583dfe2267b676c85b5aa479b80bf6a502b9fb.tar.xz |
add zoom bar at the bottom of rekonq, remove zoom widgets from the tool button menu
Diffstat (limited to 'src/mainwindow.h')
-rw-r--r-- | src/mainwindow.h | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/src/mainwindow.h b/src/mainwindow.h index 96fe0f2d..e5a43649 100644 --- a/src/mainwindow.h +++ b/src/mainwindow.h @@ -45,6 +45,7 @@ // Forward Declarations class FindBar; +class ZoomBar; class HistoryPanel; class BookmarksPanel; class WebInspectorPanel; @@ -102,8 +103,6 @@ public slots: void updateActions(); - void setZoomSliderFactor(qreal factor); - signals: // switching tabs void ctrlTabPressed(); @@ -135,12 +134,6 @@ private slots: void findPrevious(); void highlightAll(); - // Zoom slots - void zoomIn(); - void zoomNormal(); - void zoomOut(); - void setZoomFactor(int factor); - // File Menu slots void openLocation(); void fileOpen(); @@ -170,6 +163,7 @@ private slots: private: MainView *m_view; FindBar *m_findBar; + ZoomBar *m_zoomBar; HistoryPanel *m_historyPanel; BookmarksPanel *m_bookmarksPanel; @@ -181,8 +175,6 @@ private: KMenu *m_encodingMenu; BookmarkToolBar *m_bookmarksBar; - - QSlider *m_zoomSlider; QString m_lastSearch; |