┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/dolphincontroller.h
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2008-08-26 22:21:50 +0000
committerPeter Penz <[email protected]>2008-08-26 22:21:50 +0000
commitca7aaecbdbddb27f7442e69d2770b97b4307f338 (patch)
tree82e3ebf42148cebb706af41bc48dd2f7895d2f6a /src/dolphincontroller.h
parent71819c80bb79229da4c4a9c5fc57ae7fab3fd0d4 (diff)
Provide a common iconsize-widget for the settings dialog of the icons-, details- and column-view. The current version still requires some improvements (Labels on the left + right, preview, ...).
svn path=/trunk/KDE/kdebase/apps/; revision=852961
Diffstat (limited to 'src/dolphincontroller.h')
-rw-r--r--src/dolphincontroller.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/dolphincontroller.h b/src/dolphincontroller.h
index e8ca55e19..51099ff7a 100644
--- a/src/dolphincontroller.h
+++ b/src/dolphincontroller.h
@@ -185,23 +185,6 @@ public:
void setZoomLevel(int level);
int zoomLevel() const;
- int zoomLevelMinimum() const;
- int zoomLevelMaximum() const;
-
- /**
- * Helper method for the view implementation to get
- * the icon size for the zoom level \a level
- * (see DolphinController::zoomLevel()).
- */
- static int iconSizeForZoomLevel(int level);
-
- /**
- * Helper method for the view implementation to get
- * the zoom level for the icon size \a size
- * (see DolphinController::zoomLevel()).
- */
- static int zoomLevelForIconSize(const QSize& size);
-
/**
* Tells the view implementation to zoom out by emitting the signal zoomOut()
* and is invoked by the abstract Dolphin view.
@@ -383,14 +366,4 @@ inline int DolphinController::zoomLevel() const
return m_zoomLevel;
}
-inline int DolphinController::zoomLevelMinimum() const
-{
- return 0;
-}
-
-inline int DolphinController::zoomLevelMaximum() const
-{
- return 7;
-}
-
#endif