summaryrefslogtreecommitdiff
path: root/include/vcl/seleng.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-02-21 12:53:51 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-02-21 12:53:51 +0100
commite8f8f24c8415898c787bbfb629247ed62e73a2b9 (patch)
treedae18a3acbf29c192118e7c003f80df8da8e21ae /include/vcl/seleng.hxx
parent1c8402465cfd4df862409dc310f5f099d044c4d8 (diff)
vcl: sal_Bool -> bool
Change-Id: I2a3e3d3e3266ea0f0fafdd91362076a4aa160f0e
Diffstat (limited to 'include/vcl/seleng.hxx')
-rw-r--r--include/vcl/seleng.hxx64
1 files changed, 32 insertions, 32 deletions
diff --git a/include/vcl/seleng.hxx b/include/vcl/seleng.hxx
index 0b3d6975b75f..d6bb2d3cd955 100644
--- a/include/vcl/seleng.hxx
+++ b/include/vcl/seleng.hxx
@@ -51,10 +51,10 @@ public:
// move cursor, at the same time match cursor position to the selection
// starting at anchor. sal_True == Ok
- virtual sal_Bool SetCursorAtPoint( const Point& rPointPixel,
+ virtual bool SetCursorAtPoint( const Point& rPointPixel,
sal_Bool bDontSelectAtCursor = sal_False ) = 0;
- virtual sal_Bool IsSelectionAtPoint( const Point& rPointPixel ) = 0;
+ virtual bool IsSelectionAtPoint( const Point& rPointPixel ) = 0;
virtual void DeselectAtPoint( const Point& rPointPixel ) = 0;
// delete anchor & deselect all
virtual void DeselectAll() = 0;
@@ -87,7 +87,7 @@ private:
sal_uInt16 nFlags;
DECL_DLLPRIVATE_LINK( ImpWatchDog, void* );
- inline sal_Bool ShouldDeselect( sal_Bool bModifierKey1 ) const;
+ inline bool ShouldDeselect( bool bModifierKey1 ) const;
// determines to deselect or not when Ctrl-key is pressed on CursorPosChanging
public:
@@ -97,12 +97,12 @@ public:
~SelectionEngine();
// sal_True: Event was processed by Selection Engine
- sal_Bool SelMouseButtonDown( const MouseEvent& rMEvt );
- sal_Bool SelMouseButtonUp( const MouseEvent& rMEvt );
- sal_Bool SelMouseMove( const MouseEvent& rMEvt );
+ bool SelMouseButtonDown( const MouseEvent& rMEvt );
+ bool SelMouseButtonUp( const MouseEvent& rMEvt );
+ bool SelMouseMove( const MouseEvent& rMEvt );
// Keyboard
- void CursorPosChanging( sal_Bool bShift, sal_Bool bMod1 );
+ void CursorPosChanging( bool bShift, bool bMod1 );
// is needed to generate a Move event via a Timer
// when the mouse is outside the area
@@ -110,13 +110,13 @@ public:
{ aArea = rNewArea; }
const Rectangle& GetVisibleArea() const { return aArea; }
- void SetAddMode( sal_Bool);
- sal_Bool IsAddMode() const;
+ void SetAddMode( bool);
+ bool IsAddMode() const;
- void AddAlways( sal_Bool bOn );
- sal_Bool IsAlwaysAdding() const;
+ void AddAlways( bool bOn );
+ bool IsAlwaysAdding() const;
- void EnableDrag( sal_Bool bOn );
+ void EnableDrag( bool bOn );
void SetSelectionMode( SelectionMode eMode );
SelectionMode GetSelectionMode() const { return eSelMode; }
@@ -136,18 +136,18 @@ public:
{ nLockedMods = nModifiers; }
sal_uInt16 GetLockedModifiers() const { return nLockedMods; }
- sal_Bool IsInSelection() const;
+ bool IsInSelection() const;
void Reset();
void Command( const CommandEvent& rCEvt );
- sal_Bool HasAnchor() const;
- void SetAnchor( sal_Bool bAnchor );
+ bool HasAnchor() const;
+ void SetAnchor( bool bAnchor );
void SetUpdateInterval( sal_uLong nInterval );
// wird im Ctor eingeschaltet
- void ExpandSelectionOnMouseMove( sal_Bool bExpand = sal_True )
+ void ExpandSelectionOnMouseMove( bool bExpand = true )
{
if( bExpand )
nFlags |= SELENG_EXPANDONMOVE;
@@ -156,15 +156,15 @@ public:
}
};
-inline sal_Bool SelectionEngine::IsAddMode() const
+inline bool SelectionEngine::IsAddMode() const
{
if ( nFlags & (SELENG_IN_ADD | SELENG_ADD_ALW) )
- return sal_True;
+ return true;
else
- return sal_False;
+ return false;
}
-inline void SelectionEngine::SetAddMode( sal_Bool bNewMode )
+inline void SelectionEngine::SetAddMode( bool bNewMode )
{
if ( bNewMode )
nFlags |= SELENG_IN_ADD;
@@ -172,7 +172,7 @@ inline void SelectionEngine::SetAddMode( sal_Bool bNewMode )
nFlags &= (~SELENG_IN_ADD);
}
-inline void SelectionEngine::EnableDrag( sal_Bool bOn )
+inline void SelectionEngine::EnableDrag( bool bOn )
{
if ( bOn )
nFlags |= SELENG_DRG_ENAB;
@@ -180,7 +180,7 @@ inline void SelectionEngine::EnableDrag( sal_Bool bOn )
nFlags &= (~SELENG_DRG_ENAB);
}
-inline void SelectionEngine::AddAlways( sal_Bool bOn )
+inline void SelectionEngine::AddAlways( bool bOn )
{
if( bOn )
nFlags |= SELENG_ADD_ALW;
@@ -188,31 +188,31 @@ inline void SelectionEngine::AddAlways( sal_Bool bOn )
nFlags &= (~SELENG_ADD_ALW);
}
-inline sal_Bool SelectionEngine::IsAlwaysAdding() const
+inline bool SelectionEngine::IsAlwaysAdding() const
{
if ( nFlags & SELENG_ADD_ALW )
- return sal_True;
+ return true;
else
- return sal_False;
+ return false;
}
-inline sal_Bool SelectionEngine::IsInSelection() const
+inline bool SelectionEngine::IsInSelection() const
{
if ( nFlags & SELENG_IN_SEL )
- return sal_True;
+ return true;
else
- return sal_False;
+ return false;
}
-inline sal_Bool SelectionEngine::HasAnchor() const
+inline bool SelectionEngine::HasAnchor() const
{
if ( nFlags & SELENG_HAS_ANCH )
- return sal_True;
+ return true;
else
- return sal_False;
+ return false;
}
-inline void SelectionEngine::SetAnchor( sal_Bool bAnchor )
+inline void SelectionEngine::SetAnchor( bool bAnchor )
{
if ( bAnchor )
nFlags |= SELENG_HAS_ANCH;