summaryrefslogtreecommitdiff
path: root/sd/source/ui/slidesorter/inc/controller/SlsProperties.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/slidesorter/inc/controller/SlsProperties.hxx')
-rw-r--r--sd/source/ui/slidesorter/inc/controller/SlsProperties.hxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/sd/source/ui/slidesorter/inc/controller/SlsProperties.hxx b/sd/source/ui/slidesorter/inc/controller/SlsProperties.hxx
index 46c8b61fdaf2..7d70c203fe9a 100644
--- a/sd/source/ui/slidesorter/inc/controller/SlsProperties.hxx
+++ b/sd/source/ui/slidesorter/inc/controller/SlsProperties.hxx
@@ -40,21 +40,21 @@ public:
/** When this method returns <TRUE/> then the current slide is
highlighted in the view. The default value is <FALSE/>.
*/
- bool IsHighlightCurrentSlide (void) const;
+ bool IsHighlightCurrentSlide (void) const { return mbIsHighlightCurrentSlide;}
void SetHighlightCurrentSlide (const bool bIsHighlightCurrentSlide);
/** When this method returns <TRUE/> then the selection is indicated in
the view (typically by drawing rectangles around the selected
slides.) The default value is <TRUE/>.
*/
- bool IsShowSelection (void) const;
+ bool IsShowSelection (void) const { return mbIsShowSelection;}
void SetShowSelection (const bool bIsShowSelection);
/** When this method returns <TRUE/> then the focusdselection is indicated in
the view (typically by drawing dotted rectangles around the selected
slides.) The default value is <TRUE/>.
*/
- bool IsShowFocus (void) const;
+ bool IsShowFocus (void) const { return mbIsShowFocus;}
void SetShowFocus (const bool bIsShowFocus);
/** When this method returns <TRUE/> then on a selection change the
@@ -62,21 +62,21 @@ public:
centered in the view. This can be used to center the current slide
by selecting only the current slide. The default value is <FALSE/>.
*/
- bool IsCenterSelection (void) const;
+ bool IsCenterSelection (void) const { return mbIsCenterSelection;}
void SetCenterSelection (const bool bIsCenterSelection);
/** When this mehod returns <TRUE/> then the view may try to change the
visible area by scrolling it smoothly on the screen. Experimental.
Default value is <FALSE/>.
*/
- bool IsSmoothSelectionScrolling (void) const;
+ bool IsSmoothSelectionScrolling (void) const { return mbIsSmoothSelectionScrolling;}
void SetSmoothSelectionScrolling (const bool bIsSmoothSelectionScrolling);
/** When this method returns <TRUE/> then during a full screen
presentation the previews in a slide sorter are not updated.
Default value is <TRUE/>.
*/
- bool IsSuspendPreviewUpdatesDuringFullScreenPresentation (void) const;
+ bool IsSuspendPreviewUpdatesDuringFullScreenPresentation (void) const { return mbIsSuspendPreviewUpdatesDuringFullScreenPresentation;}
void SetSuspendPreviewUpdatesDuringFullScreenPresentation (const bool bFlag);
/** Return the background color.
@@ -102,14 +102,14 @@ public:
/** The UI can be set to be read only indepently from the model status.
Used for instance in the presenter view.
*/
- bool IsUIReadOnly (void) const;
+ bool IsUIReadOnly (void) const { return mbIsUIReadOnly;}
void SetUIReadOnly (const bool bIsUIReadOnly);
/** The mouse over effect (and whether a mouse motion starts a multi
selection or a drag-and-drop) can be triggered by just the preview
area or the whole page object area.
*/
- bool IsOnlyPreviewTriggersMouseOver (void) const;
+ bool IsOnlyPreviewTriggersMouseOver (void) const { return mbIsOnlyPreviewTriggersMouseOver;}
private: