Lines Matching defs:event
21 #include "event.h"
30 * CompositeUndoStackObserver for each document. The event log is then notified on all commit, undo
33 * Consecutive events of the same type are grouped with the first event as a parent and following
36 * If a Gtk::TreeView is connected to the event log, the TreeView's selection and its nodes
38 * this happens, the event log will block the TreeView's callbacks to prevent circular updates.
55 Gtk::TreeModelColumn<Event *> event;
62 add(event); add(type); add(description); add(child_count);
84 void setCurrEvent(iterator event) { _curr_event = event; }
85 void setCurrEventParent(iterator event) { _curr_event_parent = event; }
125 iterator _curr_event; //< current event in _event_list_store
127 iterator _curr_event_parent; //< parent to current event, if any
135 const_iterator _getUndoEvent() const; //< returns the current undoable event or NULL if none
136 const_iterator _getRedoEvent() const; //< returns the current redoable event or NULL if none