Qyoto  4.0.5
Qyoto is a C# language binding for Qt
 All Classes Namespaces Functions Variables Typedefs Enumerations Properties
QtGui.IQUndoGroupSignals Interface Reference
Inheritance diagram for QtGui.IQUndoGroupSignals:
Collaboration diagram for QtGui.IQUndoGroupSignals:

Public Member Functions

void ActiveStackChanged (QUndoStack stack)
 
 
void IndexChanged (int idx)
 
 
void CleanChanged (bool clean)
 
 
void CanUndoChanged (bool canUndo)
 
 
void CanRedoChanged (bool canRedo)
 
 
void UndoTextChanged (string undoText)
 
 
void RedoTextChanged (string redoText)
 
 
- Public Member Functions inherited from QtCore.IQObjectSignals
void Destroyed (QObject arg1)
 
void Destroyed ()
 
 

Member Function Documentation

void QtGui.IQUndoGroupSignals.ActiveStackChanged ( QUndoStack  stack)

This signal is emitted whenever the active stack of the group changes. This can happen when setActiveStack() or QUndoStack::setActive() is called, or when the active stack is removed form the group. stack is the new active stack. If no stack is active, stack is 0.

See also setActiveStack() and QUndoStack::setActive().

void QtGui.IQUndoGroupSignals.CanRedoChanged ( bool  canRedo)

This signal is emitted whenever the active stack emits QUndoStack::canRedoChanged() or the active stack changes.

canRedo is the new state, or false if the active stack is 0.

See also QUndoStack::canRedoChanged() and setActiveStack().

void QtGui.IQUndoGroupSignals.CanUndoChanged ( bool  canUndo)

This signal is emitted whenever the active stack emits QUndoStack::canUndoChanged() or the active stack changes.

canUndo is the new state, or false if the active stack is 0.

See also QUndoStack::canUndoChanged() and setActiveStack().

void QtGui.IQUndoGroupSignals.CleanChanged ( bool  clean)

This signal is emitted whenever the active stack emits QUndoStack::cleanChanged() or the active stack changes.

clean is the new state, or true if the active stack is 0.

See also QUndoStack::cleanChanged() and setActiveStack().

void QtGui.IQUndoGroupSignals.IndexChanged ( int  idx)

This signal is emitted whenever the active stack emits QUndoStack::indexChanged() or the active stack changes.

idx is the new current index, or 0 if the active stack is 0.

See also QUndoStack::indexChanged() and setActiveStack().

void QtGui.IQUndoGroupSignals.RedoTextChanged ( string  redoText)

This signal is emitted whenever the active stack emits QUndoStack::redoTextChanged() or the active stack changes.

redoText is the new state, or an empty string if the active stack is 0.

See also QUndoStack::redoTextChanged() and setActiveStack().

void QtGui.IQUndoGroupSignals.UndoTextChanged ( string  undoText)

This signal is emitted whenever the active stack emits QUndoStack::undoTextChanged() or the active stack changes.

undoText is the new state, or an empty string if the active stack is 0.

See also QUndoStack::undoTextChanged() and setActiveStack().