Lines Matching refs:pScrollBar
3089 ScrollBar* pScrollBar = (ScrollBar*) GetWindow(); in setValue() local
3090 if ( pScrollBar ) in setValue()
3091 pScrollBar->DoScroll( n ); in setValue()
3098 ScrollBar* pScrollBar = (ScrollBar*) GetWindow(); in setValues() local
3099 if ( pScrollBar ) in setValues()
3101 pScrollBar->SetVisibleSize( nVisible ); in setValues()
3102 pScrollBar->SetRangeMax( nMax ); in setValues()
3103 pScrollBar->DoScroll( nValue ); in setValues()
3111 ScrollBar* pScrollBar = (ScrollBar*) GetWindow(); in getValue() local
3112 return pScrollBar ? pScrollBar->GetThumbPos() : 0; in getValue()
3119 ScrollBar* pScrollBar = (ScrollBar*) GetWindow(); in setMaximum() local
3120 if ( pScrollBar ) in setMaximum()
3121 pScrollBar->SetRangeMax( n ); in setMaximum()
3128 ScrollBar* pScrollBar = (ScrollBar*) GetWindow(); in getMaximum() local
3129 return pScrollBar ? pScrollBar->GetRangeMax() : 0; in getMaximum()
3136 ScrollBar* pScrollBar = static_cast< ScrollBar* >( GetWindow() ); in setMinimum() local
3137 if ( pScrollBar ) in setMinimum()
3138 pScrollBar->SetRangeMin( n ); in setMinimum()
3145 ScrollBar* pScrollBar = static_cast< ScrollBar* >( GetWindow() ); in getMinimum() local
3146 return pScrollBar ? pScrollBar->GetRangeMin() : 0; in getMinimum()
3153 ScrollBar* pScrollBar = (ScrollBar*) GetWindow(); in setLineIncrement() local
3154 if ( pScrollBar ) in setLineIncrement()
3155 pScrollBar->SetLineSize( n ); in setLineIncrement()
3162 ScrollBar* pScrollBar = (ScrollBar*) GetWindow(); in getLineIncrement() local
3163 return pScrollBar ? pScrollBar->GetLineSize() : 0; in getLineIncrement()
3170 ScrollBar* pScrollBar = (ScrollBar*) GetWindow(); in setBlockIncrement() local
3171 if ( pScrollBar ) in setBlockIncrement()
3172 pScrollBar->SetPageSize( n ); in setBlockIncrement()
3179 ScrollBar* pScrollBar = (ScrollBar*) GetWindow(); in getBlockIncrement() local
3180 return pScrollBar ? pScrollBar->GetPageSize() : 0; in getBlockIncrement()
3187 ScrollBar* pScrollBar = (ScrollBar*) GetWindow(); in setVisibleSize() local
3188 if ( pScrollBar ) in setVisibleSize()
3189 pScrollBar->SetVisibleSize( n ); in setVisibleSize()
3196 ScrollBar* pScrollBar = (ScrollBar*) GetWindow(); in getVisibleSize() local
3197 return pScrollBar ? pScrollBar->GetVisibleSize() : 0; in getVisibleSize()
3242 ScrollBar* pScrollBar = (ScrollBar*)GetWindow(); in setProperty() local
3243 if ( pScrollBar ) in setProperty()
3257 AllSettings aSettings( pScrollBar->GetSettings() ); in setProperty()
3266 pScrollBar->SetSettings( aSettings ); in setProperty()
3341 ::toolkit::setButtonLikeFaceColor( pScrollBar, Value); in setProperty()
3358 ScrollBar* pScrollBar = (ScrollBar*)GetWindow(); in getProperty() local
3359 if ( pScrollBar ) in getProperty()
3367 …aProp <<= (sal_Bool)( 0 != ( pScrollBar->GetSettings().GetStyleSettings().GetDragFullOptions() & D… in getProperty()
3409 aProp = ::toolkit::getButtonLikeFaceColor( pScrollBar ); in getProperty()
3436 ScrollBar* pScrollBar = (ScrollBar*)GetWindow(); in ProcessWindowEvent() local
3438 if( pScrollBar ) in ProcessWindowEvent()
3442 aEvent.Value = pScrollBar->GetThumbPos(); in ProcessWindowEvent()
3445 ScrollType aType = pScrollBar->GetType(); in ProcessWindowEvent()