Lines Matching refs:IUndoManager

75     using ::svl::IUndoManager;
256 IUndoManager& getUndoManager() const in getUndoManager()
492 IUndoManager& rUndoManager = getUndoManager(); in lock()
509 IUndoManager& rUndoManager = getUndoManager(); in unlock()
583 IUndoManager& rUndoManager = getUndoManager(); in impl_enterUndoContext()
588 if ( i_hidden && ( rUndoManager.GetUndoActionCount( IUndoManager::CurrentLevel ) == 0 ) ) in impl_enterUndoContext()
615 IUndoManager& rUndoManager = getUndoManager(); in impl_leaveUndoContext()
631 … const bool bHadRedoActions = ( rUndoManager.GetRedoActionCount( IUndoManager::TopLevel ) > 0 ); in impl_leaveUndoContext()
639 … const bool bHasRedoActions = ( rUndoManager.GetRedoActionCount( IUndoManager::TopLevel ) > 0 ); in impl_leaveUndoContext()
656 …aContextEvent.UndoActionTitle = rUndoManager.GetUndoActionComment( 0, IUndoManager::CurrentLevel ); in impl_leaveUndoContext()
679 IUndoManager& rUndoManager = getUndoManager(); in impl_doUndoRedo()
684 ? rUndoManager.GetUndoActionCount( IUndoManager::TopLevel ) in impl_doUndoRedo()
685 : rUndoManager.GetRedoActionCount( IUndoManager::TopLevel ); in impl_doUndoRedo()
723 IUndoManager& rUndoManager = getUndoManager(); in impl_addUndoAction()
731 …const bool bHadRedoActions = ( rUndoManager.GetRedoActionCount( IUndoManager::CurrentLevel ) > 0 ); in impl_addUndoAction()
736 …const bool bHasRedoActions = ( rUndoManager.GetRedoActionCount( IUndoManager::CurrentLevel ) > 0 ); in impl_addUndoAction()
753 IUndoManager& rUndoManager = getUndoManager(); in impl_clear()
776 IUndoManager& rUndoManager = getUndoManager(); in impl_clearRedo()
799 IUndoManager& rUndoManager = getUndoManager(); in impl_reset()
1024 IUndoManager& rUndoManager = m_pImpl->getUndoManager(); in isUndoPossible()
1027 return rUndoManager.GetUndoActionCount( IUndoManager::TopLevel ) > 0; in isUndoPossible()
1036 const IUndoManager& rUndoManager = m_pImpl->getUndoManager(); in isRedoPossible()
1039 return rUndoManager.GetRedoActionCount( IUndoManager::TopLevel ) > 0; in isRedoPossible()
1052 const IUndoManager& rUndoManager = i_impl.getUndoManager(); in lcl_getCurrentActionTitle()
1054 ? rUndoManager.GetUndoActionCount( IUndoManager::TopLevel ) in lcl_getCurrentActionTitle()
1055 : rUndoManager.GetRedoActionCount( IUndoManager::TopLevel ); in lcl_getCurrentActionTitle()
1063 ? rUndoManager.GetUndoActionComment( 0, IUndoManager::TopLevel ) in lcl_getCurrentActionTitle()
1064 : rUndoManager.GetRedoActionComment( 0, IUndoManager::TopLevel ); in lcl_getCurrentActionTitle()
1074 const IUndoManager& rUndoManager = i_impl.getUndoManager(); in lcl_getAllActionTitles()
1076 ? rUndoManager.GetUndoActionCount( IUndoManager::TopLevel ) in lcl_getAllActionTitles()
1077 : rUndoManager.GetRedoActionCount( IUndoManager::TopLevel ); in lcl_getAllActionTitles()
1083 ? rUndoManager.GetUndoActionComment( i, IUndoManager::TopLevel ) in lcl_getAllActionTitles()
1084 : rUndoManager.GetRedoActionComment( i, IUndoManager::TopLevel ); in lcl_getAllActionTitles()
1151 IUndoManager& rUndoManager = m_pImpl->getUndoManager(); in isLocked()