Lines Matching refs:m_pPrevPage
157 ,m_pPrevPage(NULL) in OWizardMachine()
170 ,m_pPrevPage(NULL) in OWizardMachine()
195 m_pPrevPage = new PushButton(this, WB_TABSTOP); in implConstruct()
196 m_pPrevPage->SetHelpId( HID_WIZARD_PREVIOUS ); in implConstruct()
197 m_pPrevPage->SetSizePixel( LogicToPixel( Size( 50, 14 ), MAP_APPFONT ) ); in implConstruct()
198 m_pPrevPage->SetText(String(SvtResId(STR_WIZDLG_PREVIOUS))); in implConstruct()
199 m_pPrevPage->Show(); in implConstruct()
202 …AddButton( m_pPrevPage, ( WIZARDDIALOG_BUTTON_SMALLSTDOFFSET_X) ); // half x-offset to the ne… in implConstruct()
204 AddButton( m_pPrevPage, WIZARDDIALOG_BUTTON_STDOFFSET_X ); in implConstruct()
205 SetPrevButton( m_pPrevPage ); in implConstruct()
206 m_pPrevPage->SetClickHdl( LINK( this, OWizardMachine, OnPrevPage ) ); in implConstruct()
252 delete m_pPrevPage; in ~OWizardMachine()
347 if (m_pPrevPage && (_nWizardButtonFlags & WZB_PREVIOUS)) in defaultButton()
348 pNewDefButton = m_pPrevPage; in defaultButton()
409 if (m_pPrevPage && (_nWizardButtonFlags & WZB_PREVIOUS)) in enableButtons()
410 m_pPrevPage->Enable(_bEnable); in enableButtons()