Lines Matching refs:m_pScrollBar
147 QScrollBar *m_pScrollBar; member in WidgetPainter
383 m_pScrollBar( NULL ), in WidgetPainter()
412 delete m_pScrollBar, m_pScrollBar = NULL; in ~WidgetPainter()
998 if ( !m_pScrollBar ) in scrollBar()
1000 m_pScrollBar = new QScrollBar( NULL, "scroll_bar" ); in scrollBar()
1001 m_pScrollBar->setTracking( false ); in scrollBar()
1002 m_pScrollBar->setLineStep( 1 ); in scrollBar()
1007 m_pScrollBar->move( qRect.topLeft() ); in scrollBar()
1008 m_pScrollBar->resize( qRect.size() ); in scrollBar()
1009 m_pScrollBar->setOrientation( bHorizontal? Qt::Horizontal: Qt::Vertical ); in scrollBar()
1014 m_pScrollBar->setMinValue( pValue->mnMin ); in scrollBar()
1015 m_pScrollBar->setMaxValue( pValue->mnMax - pValue->mnVisibleSize ); in scrollBar()
1016 m_pScrollBar->setValue( pValue->mnCur ); in scrollBar()
1017 m_pScrollBar->setPageStep( pValue->mnVisibleSize ); in scrollBar()
1020 return m_pScrollBar; in scrollBar()