Lines Matching refs:WizardState

112 …::std::stack< WizardState >     aStateHistory;      // the history of all states (used for impleme…
114 WizardState nFirstUnknownPage;
255 for (WizardState i=0; i<m_pImpl->nFirstUnknownPage; ++i) in ~OWizardMachine()
291 TabPage* OWizardMachine::GetOrCreatePage( const WizardState i_nState ) in GetOrCreatePage()
323 WizardState nCurrentLevel = GetCurLevel(); in ActivatePage()
332 WizardState nCurrentState = getCurrentState(); in DeactivatePage()
418 void OWizardMachine::enterState(WizardState _nState) in enterState()
436 sal_Bool OWizardMachine::leaveState(WizardState) in leaveState() argument
465 OWizardMachine::WizardState OWizardMachine::determineNextState( WizardState _nCurrentState ) const in determineNextState()
479 sal_Bool OWizardMachine::skipBackwardUntil( WizardState _nTargetState ) in skipBackwardUntil()
486 ::std::stack< WizardState > aTravelVirtually = m_pImpl->aStateHistory; in skipBackwardUntil()
487 ::std::stack< WizardState > aOldStateHistory = m_pImpl->aStateHistory; in skipBackwardUntil()
489 WizardState nCurrentRollbackState = getCurrentState(); in skipBackwardUntil()
506 sal_Bool OWizardMachine::skipUntil( WizardState _nTargetState ) in skipUntil()
508 WizardState nCurrentState = getCurrentState(); in skipUntil()
515 ::std::stack< WizardState > aTravelVirtually = m_pImpl->aStateHistory; in skipUntil()
516 ::std::stack< WizardState > aOldStateHistory = m_pImpl->aStateHistory; in skipUntil()
519 WizardState nNextState = determineNextState( nCurrentState ); in skipUntil()
553 WizardState nCurrentState = getCurrentState(); in skip()
554 WizardState nNextState = determineNextState(nCurrentState); in skip()
593 WizardState nCurrentState = getCurrentState(); in travelNext()
594 WizardState nNextState = determineNextState(nCurrentState); in travelNext()
620 WizardState nPreviousState = m_pImpl->aStateHistory.top(); in travelPrevious()
636 void OWizardMachine::removePageFromHistory( WizardState nToRemove ) in removePageFromHistory()
639 ::std::stack< WizardState > aTemp; in removePageFromHistory()
642 WizardState nPreviousState = m_pImpl->aStateHistory.top(); in removePageFromHistory()
696 void OWizardMachine::getStateHistory( ::std::vector< WizardState >& _out_rHistory ) in getStateHistory()
698 ::std::stack< WizardState > aHistoryCopy( m_pImpl->aStateHistory ); in getStateHistory()