┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/dolphinstatusbar.h
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2008-10-07 18:38:53 +0000
committerPeter Penz <[email protected]>2008-10-07 18:38:53 +0000
commitf0b8e6518506c7d3b8d2beb2b391d6f4301608cf (patch)
tree1ceccdfe1d9dba12f92e0209ce55d36bfa717838 /src/dolphinstatusbar.h
parent84f25c4503997f8a6646b6fa322ecf93ab0e0a94 (diff)
provide zoom-out and zoom-in buttons beside the zoom slider
svn path=/trunk/KDE/kdebase/apps/; revision=868953
Diffstat (limited to 'src/dolphinstatusbar.h')
-rw-r--r--src/dolphinstatusbar.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/dolphinstatusbar.h b/src/dolphinstatusbar.h
index e64312b48..c959410aa 100644
--- a/src/dolphinstatusbar.h
+++ b/src/dolphinstatusbar.h
@@ -29,6 +29,7 @@ class StatusBarMessageLabel;
class StatusBarSpaceInfo;
class QLabel;
class QProgressBar;
+class QToolButton;
class QSlider;
class QTimer;
@@ -147,6 +148,9 @@ private slots:
*/
void assureVisibleText();
+ void zoomOut();
+ void zoomIn();
+
private:
/**
* Makes the space information widget and zoom slider widget
@@ -160,7 +164,11 @@ private:
DolphinView* m_view;
StatusBarMessageLabel* m_messageLabel;
StatusBarSpaceInfo* m_spaceInfo;
+
+ QWidget* m_zoomWidget;
+ QToolButton* m_zoomOut;
QSlider* m_zoomSlider;
+ QToolButton* m_zoomIn;
QLabel* m_progressText;
QProgressBar* m_progressBar;