Lines Matching refs:rPresentationSettings

78 	PresentationSettings& rPresentationSettings = mpDoc->getPresentationSettings();  in DoExecute()  local
82 const String& rPresPage = rPresentationSettings.maPresPage; in DoExecute()
121 aDlgSet.Put( SfxBoolItem( ATTR_PRESENT_ALL, rPresentationSettings.mbAll ) ); in DoExecute()
122 aDlgSet.Put( SfxBoolItem( ATTR_PRESENT_CUSTOMSHOW, rPresentationSettings.mbCustomShow ) ); in DoExecute()
124 aDlgSet.Put( SfxBoolItem( ATTR_PRESENT_ENDLESS, rPresentationSettings.mbEndless ) ); in DoExecute()
125 aDlgSet.Put( SfxBoolItem( ATTR_PRESENT_MANUEL, rPresentationSettings.mbManual ) ); in DoExecute()
126 aDlgSet.Put( SfxBoolItem( ATTR_PRESENT_MOUSE, rPresentationSettings.mbMouseVisible ) ); in DoExecute()
127 aDlgSet.Put( SfxBoolItem( ATTR_PRESENT_PEN, rPresentationSettings.mbMouseAsPen ) ); in DoExecute()
128 aDlgSet.Put( SfxBoolItem( ATTR_PRESENT_NAVIGATOR, rPresentationSettings.mbStartWithNavigator ) ); in DoExecute()
129 …aDlgSet.Put( SfxBoolItem( ATTR_PRESENT_ANIMATION_ALLOWED, rPresentationSettings.mbAnimationAllowed… in DoExecute()
130 aDlgSet.Put( SfxBoolItem( ATTR_PRESENT_CHANGE_PAGE, !rPresentationSettings.mbLockedPages ) ); in DoExecute()
131 aDlgSet.Put( SfxBoolItem( ATTR_PRESENT_ALWAYS_ON_TOP, rPresentationSettings.mbAlwaysOnTop ) ); in DoExecute()
132 aDlgSet.Put( SfxBoolItem( ATTR_PRESENT_FULLSCREEN, rPresentationSettings.mbFullScreen ) ); in DoExecute()
134 aDlgSet.Put( SfxUInt32Item( ATTR_PRESENT_PAUSE_TIMEOUT, rPresentationSettings.mnPauseTimeout ) ); in DoExecute()
135 aDlgSet.Put( SfxBoolItem( ATTR_PRESENT_SHOW_PAUSELOGO, rPresentationSettings.mbShowPauseLogo ) ); in DoExecute()
152 if( aPage != rPresentationSettings.maPresPage ) in DoExecute()
155 rPresentationSettings.maPresPage = aPage; in DoExecute()
159 if ( bValue != rPresentationSettings.mbAll ) in DoExecute()
162 rPresentationSettings.mbAll = bValue; in DoExecute()
166 if ( bValue != rPresentationSettings.mbCustomShow ) in DoExecute()
169 rPresentationSettings.mbCustomShow = bValue; in DoExecute()
173 if ( bValue != rPresentationSettings.mbEndless ) in DoExecute()
176 rPresentationSettings.mbEndless = bValue; in DoExecute()
180 if ( bValue != rPresentationSettings.mbManual ) in DoExecute()
183 rPresentationSettings.mbManual = bValue; in DoExecute()
187 if ( bValue != rPresentationSettings.mbMouseVisible ) in DoExecute()
190 rPresentationSettings.mbMouseVisible = bValue; in DoExecute()
194 if ( bValue != rPresentationSettings.mbMouseAsPen ) in DoExecute()
197 rPresentationSettings.mbMouseAsPen = bValue; in DoExecute()
201 if( bValue != rPresentationSettings.mbStartWithNavigator ) in DoExecute()
204 rPresentationSettings.mbStartWithNavigator = bValue; in DoExecute()
208 if ( bValue != rPresentationSettings.mbLockedPages ) in DoExecute()
211 rPresentationSettings.mbLockedPages = bValue; in DoExecute()
215 if ( bValue != rPresentationSettings.mbAnimationAllowed ) in DoExecute()
218 rPresentationSettings.mbAnimationAllowed = bValue; in DoExecute()
222 if ( bValue != rPresentationSettings.mbAlwaysOnTop ) in DoExecute()
225 rPresentationSettings.mbAlwaysOnTop = bValue; in DoExecute()
229 if ( bValue != rPresentationSettings.mbFullScreen ) in DoExecute()
232 rPresentationSettings.mbFullScreen = bValue; in DoExecute()
236 if( nValue32 != rPresentationSettings.mnPauseTimeout ) in DoExecute()
239 rPresentationSettings.mnPauseTimeout = nValue32; in DoExecute()
243 if ( bValue != rPresentationSettings.mbShowPauseLogo ) in DoExecute()
246 rPresentationSettings.mbShowPauseLogo = bValue; in DoExecute()