diff options
author | Philipp Lohmann [pl] <Philipp.Lohmann@Oracle.COM> | 2011-02-14 16:17:22 +0100 |
---|---|---|
committer | Philipp Lohmann [pl] <Philipp.Lohmann@Oracle.COM> | 2011-02-14 16:17:22 +0100 |
commit | 1fb042333fe6287756ff1fac11d18cd7c150730d (patch) | |
tree | 595de5d187177832ce656d7832af9dce9dce2d99 /sfx2/source/inc/splitwin.hxx | |
parent | 5b3e910e926c7dd1e8dcfe8e0a5c6cb5bd17480a (diff) | |
parent | cd0d6a5a6775f197fdb7e78b54c8133074a7a236 (diff) |
rebase to DEV300_m100
Diffstat (limited to 'sfx2/source/inc/splitwin.hxx')
-rw-r--r-- | sfx2/source/inc/splitwin.hxx | 66 |
1 files changed, 33 insertions, 33 deletions
diff --git a/sfx2/source/inc/splitwin.hxx b/sfx2/source/inc/splitwin.hxx index 5105d27dd536..4c4ad9cf9390 100644 --- a/sfx2/source/inc/splitwin.hxx +++ b/sfx2/source/inc/splitwin.hxx @@ -46,21 +46,21 @@ private: SfxChildAlignment eAlign; SfxWorkWindow* pWorkWin; SfxDockArr_Impl* pDockArr; - BOOL bLocked; - BOOL bPinned; + sal_Bool bLocked; + sal_Bool bPinned; SfxEmptySplitWin_Impl* pEmptyWin; SfxDockingWindow* pActive; void InsertWindow_Impl( SfxDock_Impl* pDockWin, const Size& rSize, - USHORT nLine, - USHORT nPos, - BOOL bNewLine=FALSE ); + sal_uInt16 nLine, + sal_uInt16 nPos, + sal_Bool bNewLine=sal_False ); DECL_LINK( TimerHdl, Timer* ); - BOOL CursorIsOverRect( BOOL bForceAdding = FALSE ) const; - void SetPinned_Impl( BOOL ); - void SetFadeIn_Impl( BOOL ); + sal_Bool CursorIsOverRect( sal_Bool bForceAdding = sal_False ) const; + void SetPinned_Impl( sal_Bool ); + void SetFadeIn_Impl( sal_Bool ); void SaveConfig_Impl(); void FadeOut_Impl(); @@ -74,57 +74,57 @@ protected: public: SfxSplitWindow( Window* pParent, SfxChildAlignment eAl, - SfxWorkWindow *pW, BOOL bWithButtons, + SfxWorkWindow *pW, sal_Bool bWithButtons, WinBits nBits = WB_BORDER | WB_SIZEABLE | WB_3DLOOK ); ~SfxSplitWindow(); - void ReleaseWindow_Impl(SfxDockingWindow *pWin, BOOL bSaveConfig=TRUE); + void ReleaseWindow_Impl(SfxDockingWindow *pWin, sal_Bool bSaveConfig=sal_True); void InsertWindow( SfxDockingWindow* pDockWin, const Size& rSize); void InsertWindow( SfxDockingWindow* pDockWin, const Size& rSize, - USHORT nLine, - USHORT nPos, - BOOL bNewLine=FALSE ); + sal_uInt16 nLine, + sal_uInt16 nPos, + sal_Bool bNewLine=sal_False ); void MoveWindow( SfxDockingWindow* pDockWin, const Size& rSize, - USHORT nLine, - USHORT nPos, - BOOL bNewLine=FALSE ); + sal_uInt16 nLine, + sal_uInt16 nPos, + sal_Bool bNewLine=sal_False ); - void RemoveWindow( SfxDockingWindow* pDockWin, BOOL bHide=TRUE); + void RemoveWindow( SfxDockingWindow* pDockWin, sal_Bool bHide=sal_True); - void Lock( BOOL bLock=TRUE ) + void Lock( sal_Bool bLock=sal_True ) { bLocked = bLock; SetUpdateMode( !bLock ); } using Window::IsLocked; - BOOL IsLocked() const { return bLocked; } - BOOL GetWindowPos( const SfxDockingWindow* pWindow, - USHORT& rLine, USHORT& rPos ) const; - BOOL GetWindowPos( const Point& rTestPos, - USHORT& rLine, USHORT& rPos ) const; - USHORT GetLineCount() const; - long GetLineSize( USHORT ) const; - USHORT GetWindowCount(USHORT nLine) const; - USHORT GetWindowCount() const; - - BOOL IsPinned() const { return bPinned; } - BOOL IsFadeIn() const; - BOOL IsAutoHide( BOOL bSelf = FALSE ) const; + sal_Bool IsLocked() const { return bLocked; } + sal_Bool GetWindowPos( const SfxDockingWindow* pWindow, + sal_uInt16& rLine, sal_uInt16& rPos ) const; + sal_Bool GetWindowPos( const Point& rTestPos, + sal_uInt16& rLine, sal_uInt16& rPos ) const; + sal_uInt16 GetLineCount() const; + long GetLineSize( sal_uInt16 ) const; + sal_uInt16 GetWindowCount(sal_uInt16 nLine) const; + sal_uInt16 GetWindowCount() const; + + sal_Bool IsPinned() const { return bPinned; } + sal_Bool IsFadeIn() const; + sal_Bool IsAutoHide( sal_Bool bSelf = sal_False ) const; SplitWindow* GetSplitWindow(); virtual void AutoHide(); virtual void FadeOut(); virtual void FadeIn(); void Show_Impl(); - void Pin_Impl( BOOL bPinned ); - BOOL ActivateNextChild_Impl( BOOL bForward = TRUE ); + void Pin_Impl( sal_Bool bPinned ); + sal_Bool ActivateNextChild_Impl( sal_Bool bForward = sal_True ); void SetActiveWindow_Impl( SfxDockingWindow* pWin ); }; |