Home
last modified time | relevance | path

Searched refs:isRedo (Results 1 – 5 of 5) sorted by relevance

/haiku/src/apps/people/
H A DPersonWindow.cpp139 bool isRedo = false; in MenusBeginning() local
145 undo_state state = textView->UndoState(&isRedo); in MenusBeginning()
151 if (isRedo) in MenusBeginning()
/haiku/src/apps/mail/
H A DSignature.cpp154 bool isRedo = false; in MenusBeginning() local
159 undoState = focusTextView->UndoState(&isRedo); in MenusBeginning()
161 fUndo->SetLabel(isRedo ? kRedoStrings[undoState] : kUndoStrings[undoState]); in MenusBeginning()
H A DMailWindow.cpp1010 bool isRedo = false; in MenusBeginning() local
1015 undoState = focusTextView->UndoState(&isRedo); in MenusBeginning()
/haiku/headers/os/interface/
H A DTextView.h236 undo_state UndoState(bool* isRedo) const;
/haiku/src/kits/interface/
H A DTextView.cpp3112 BTextView::UndoState(bool* isRedo) const in UndoState()
3114 return fUndo == NULL ? B_UNDO_UNAVAILABLE : fUndo->State(isRedo); in UndoState()
5922 bool isRedo; in _ShowContextMenu() local
5923 undo_state state = UndoState(&isRedo); in _ShowContextMenu()
5924 bool isUndo = state != B_UNDO_UNAVAILABLE && !isRedo; in _ShowContextMenu()
5939 .SetEnabled(canEdit && isRedo) in _ShowContextMenu()