Lines Matching refs:aEvent
346 EventObject aEvent; in disposing() local
347 aEvent.Source = getXUndoManager(); in disposing()
348 m_aUndoListeners.disposeAndClear( aEvent ); in disposing()
349 m_aModifyListeners.disposeAndClear( aEvent ); in disposing()
361 UndoManagerEvent aEvent; in buildEvent() local
362 aEvent.Source = getXUndoManager(); in buildEvent()
363 aEvent.UndoActionTitle = i_title; in buildEvent()
364 aEvent.UndoContextDepth = getUndoManager().GetListActionDepth(); in buildEvent()
365 return aEvent; in buildEvent()
371 const EventObject aEvent( getXUndoManager() ); in impl_notifyModified() local
372 m_aModifyListeners.notifyEach( &XModifyListener::modified, aEvent ); in impl_notifyModified()
379 const UndoManagerEvent aEvent( buildEvent( i_title ) ); in notify() local
387 m_aUndoListeners.notifyEach( i_notificationMethod, aEvent ); in notify()
394 const EventObject aEvent( getXUndoManager() ); in notify() local
398 m_aUndoListeners.notifyEach( i_notificationMethod, aEvent ); in notify()
601 const UndoManagerEvent aEvent( buildEvent( i_title ) ); in impl_enterUndoContext() local
605 …en ? &XUndoManagerListener::enteredHiddenContext : &XUndoManagerListener::enteredContext, aEvent ); in impl_enterUndoContext()
762 const EventObject aEvent( getXUndoManager() ); in impl_clear() local
766 m_aUndoListeners.notifyEach( &XUndoManagerListener::allActionsCleared, aEvent ); in impl_clear()
785 const EventObject aEvent( getXUndoManager() ); in impl_clearRedo() local
789 m_aUndoListeners.notifyEach( &XUndoManagerListener::redoActionsCleared, aEvent ); in impl_clearRedo()
805 const EventObject aEvent( getXUndoManager() ); in impl_reset() local
809 m_aUndoListeners.notifyEach( &XUndoManagerListener::resetAll, aEvent ); in impl_reset()
816 UndoManagerEvent aEvent; in actionUndone() local
817 aEvent.Source = getXUndoManager(); in actionUndone()
818 aEvent.UndoActionTitle = i_actionComment; in actionUndone()
819 aEvent.UndoContextDepth = 0; // Undo can happen on level 0 only in actionUndone()
820 m_aUndoListeners.notifyEach( &XUndoManagerListener::actionUndone, aEvent ); in actionUndone()
827 UndoManagerEvent aEvent; in actionRedone() local
828 aEvent.Source = getXUndoManager(); in actionRedone()
829 aEvent.UndoActionTitle = i_actionComment; in actionRedone()
830 aEvent.UndoContextDepth = 0; // Redo can happen on level 0 only in actionRedone()
831 m_aUndoListeners.notifyEach( &XUndoManagerListener::actionRedone, aEvent ); in actionRedone()