summaryrefslogtreecommitdiff
path: root/vcl/source/window/splitwin.cxx
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2005-11-01 09:34:10 +0000
committerKurt Zenker <kz@openoffice.org>2005-11-01 09:34:10 +0000
commitb47f1753ec5b47d649703599b4c6ae13f723729a (patch)
tree0b7fc70ca3fe4c3c72ca5a387fffd29417797f70 /vcl/source/window/splitwin.cxx
parent4dcf62bb809584a6da989305c344eac29c05d639 (diff)
INTEGRATION: CWS vcl42 (1.10.176); FILE MERGED
2005/10/06 06:50:55 pl 1.10.176.2: RESYNC: (1.10-1.12); FILE MERGED 2005/08/08 12:46:16 pl 1.10.176.1: #i52777# remove ugly hack
Diffstat (limited to 'vcl/source/window/splitwin.cxx')
-rw-r--r--vcl/source/window/splitwin.cxx32
1 files changed, 15 insertions, 17 deletions
diff --git a/vcl/source/window/splitwin.cxx b/vcl/source/window/splitwin.cxx
index ca521f621fe4..e1be465362ab 100644
--- a/vcl/source/window/splitwin.cxx
+++ b/vcl/source/window/splitwin.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: splitwin.cxx,v $
*
- * $Revision: 1.12 $
+ * $Revision: 1.13 $
*
- * last change: $Author: hr $ $Date: 2005-09-28 14:53:30 $
+ * last change: $Author: kz $ $Date: 2005-11-01 10:34:10 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -72,11 +72,9 @@
#ifndef _SV_HELP_HXX
#include <help.hxx>
#endif
-#define private public
#ifndef _SV_SPLITWIN_HXX
#include <splitwin.hxx>
#endif
-#undef private
@@ -181,7 +179,7 @@ static void ImplCalcBorder( WindowAlign eAlign, BOOL bNoAlign,
// -----------------------------------------------------------------------
-static void ImplDrawBorder( SplitWindow* pWin )
+void SplitWindow::ImplDrawBorder( SplitWindow* pWin )
{
const StyleSettings& rStyleSettings = pWin->GetSettings().GetStyleSettings();
long nDX = pWin->mnDX;
@@ -284,7 +282,7 @@ static void ImplDrawBorder( SplitWindow* pWin )
// -----------------------------------------------------------------------
-static void ImplDrawBorderLine( SplitWindow* pWin )
+void SplitWindow::ImplDrawBorderLine( SplitWindow* pWin )
{
if ( pWin->mbFadeOut || pWin->mbAutoHide )
{
@@ -874,8 +872,8 @@ static void ImplCalcSet( ImplSplitSet* pSet,
// -----------------------------------------------------------------------
-static void ImplCalcSet2( SplitWindow* pWindow, ImplSplitSet* pSet, BOOL bHide,
- BOOL bRows, BOOL bDown = TRUE )
+void SplitWindow::ImplCalcSet2( SplitWindow* pWindow, ImplSplitSet* pSet, BOOL bHide,
+ BOOL bRows, BOOL bDown )
{
USHORT i;
USHORT nItems = pSet->mnItems;
@@ -1014,8 +1012,8 @@ static void ImplCalcLogSize( ImplSplitItem* pItems, USHORT nItems )
// -----------------------------------------------------------------------
-static void ImplDrawBack( SplitWindow* pWindow, const Rectangle& rRect,
- const Wallpaper* pWall, const Bitmap* pBitmap )
+void SplitWindow::ImplDrawBack( SplitWindow* pWindow, const Rectangle& rRect,
+ const Wallpaper* pWall, const Bitmap* pBitmap )
{
if ( pBitmap )
{
@@ -1043,7 +1041,7 @@ static void ImplDrawBack( SplitWindow* pWindow, const Rectangle& rRect,
// -----------------------------------------------------------------------
-static void ImplDrawBack( SplitWindow* pWindow, ImplSplitSet* pSet )
+void SplitWindow::ImplDrawBack( SplitWindow* pWindow, ImplSplitSet* pSet )
{
USHORT i;
USHORT nItems = pSet->mnItems;
@@ -1182,9 +1180,9 @@ static void ImplDrawSplit( SplitWindow* pWindow, ImplSplitSet* pSet,
// -----------------------------------------------------------------------
-static USHORT ImplTestSplit( ImplSplitSet* pSet, const Point& rPos,
- long& rMouseOff, ImplSplitSet** ppFoundSet, USHORT& rFoundPos,
- BOOL bRows, BOOL bDown = TRUE )
+USHORT SplitWindow::ImplTestSplit( ImplSplitSet* pSet, const Point& rPos,
+ long& rMouseOff, ImplSplitSet** ppFoundSet, USHORT& rFoundPos,
+ BOOL bRows, BOOL bDown )
{
if ( !pSet->mpItems )
return 0;
@@ -1262,8 +1260,8 @@ static USHORT ImplTestSplit( ImplSplitSet* pSet, const Point& rPos,
// -----------------------------------------------------------------------
-static USHORT ImplTestSplit( SplitWindow* pWindow, const Point& rPos,
- long& rMouseOff, ImplSplitSet** ppFoundSet, USHORT& rFoundPos )
+USHORT SplitWindow::ImplTestSplit( SplitWindow* pWindow, const Point& rPos,
+ long& rMouseOff, ImplSplitSet** ppFoundSet, USHORT& rFoundPos )
{
// Resizeable SplitWindow muss anders behandelt werden
if ( pWindow->mnWinStyle & WB_SIZEABLE )
@@ -1326,7 +1324,7 @@ static USHORT ImplTestSplit( SplitWindow* pWindow, const Point& rPos,
// -----------------------------------------------------------------------
-static void ImplDrawSplitTracking( SplitWindow* pThis, const Point& rPos )
+void SplitWindow::ImplDrawSplitTracking( SplitWindow* pThis, const Point& rPos )
{
Rectangle aRect;