summaryrefslogtreecommitdiffstats
path: root/sw/source/ui/inc/scroll.hxx
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2007-09-27 11:09:10 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2007-09-27 11:09:10 +0000
commit94f549a93c48e234c9c3922c0a635c2ce01f79a4 (patch)
tree1cc4d1649ab9899d71b3fe1a56dc00be7846e9c0 /sw/source/ui/inc/scroll.hxx
parentINTEGRATION: CWS swwarnings (1.3.710); FILE MERGED (diff)
downloadcore-94f549a93c48e234c9c3922c0a635c2ce01f79a4.tar.gz
core-94f549a93c48e234c9c3922c0a635c2ce01f79a4.zip
INTEGRATION: CWS swwarnings (1.4.242); FILE MERGED
2007/04/11 07:03:26 tl 1.4.242.3: #i69287# warning-free code 2007/03/05 12:45:48 tl 1.4.242.2: #i69287# warning-free code 2007/02/22 15:06:48 tl 1.4.242.1: #i69287# warning-free code
Diffstat (limited to 'sw/source/ui/inc/scroll.hxx')
-rw-r--r--sw/source/ui/inc/scroll.hxx17
1 files changed, 11 insertions, 6 deletions
diff --git a/sw/source/ui/inc/scroll.hxx b/sw/source/ui/inc/scroll.hxx
index 8cacdf785fb8..c1b2cfac4133 100644
--- a/sw/source/ui/inc/scroll.hxx
+++ b/sw/source/ui/inc/scroll.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: scroll.hxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: hr $ $Date: 2006-08-14 17:44:40 $
+ * last change: $Author: hr $ $Date: 2007-09-27 12:09:10 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -49,21 +49,26 @@ class SwScrollbar: public ScrollBar
void AutoShow();
public:
- void Show( BOOL bVisible = TRUE );
+
+ void ExtendedShow( BOOL bVisible = TRUE );
+ using Window::Hide;
void Hide() { Show( FALSE ); }
+ using Window::SetPosSizePixel;
void SetPosSizePixel( const Point& rNewPos, const Size& rNewSize );
- BOOL IsVisible(BOOL bReal = FALSE) const { return bReal ? ScrollBar::IsVisible() : bVisible; }
+ using Window::IsVisible;
+ BOOL IsVisible(BOOL bReal) const { return bReal ? ScrollBar::IsVisible() : bVisible; }
+
// Aenderung der Dokumentgroesse
void DocSzChgd(const Size &rNewSize);
// Aenderung des sichtbaren Bereiches
void ViewPortChgd(const Rectangle &rRectangle);
// was fuer einer ist es denn ??
- int IsHoriScroll() const { return bHori; }
+ BOOL IsHoriScroll() const { return bHori; }
void SetAuto(BOOL bSet);
BOOL IsAuto() { return bAuto;}
- SwScrollbar(Window *pParent, int bHori = TRUE );
+ SwScrollbar(Window *pParent, BOOL bHori = TRUE );
~SwScrollbar();
};