You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdebindings/kdejava/koala/org/kde/koala/KCommandHistorySignals.java

31 lines
1.0 KiB

//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;
import org.kde.qt.TQMetaObject;
import org.kde.qt.QtSupport;
public interface KCommandHistorySignals {
/**
Emitted every time a command is executed
(whether by addCommand, undo or redo).
You can use this to update the GUI, for instance.
KDE4 TODO: remove
@short Emitted every time a command is executed (whether by addCommand, undo or redo).
*/
void commandExecuted();
/**
Emitted every time a command is executed
(whether by addCommand, undo or redo).
You can use this to update the GUI, for instance.
@param command was executed
@short Emitted every time a command is executed (whether by addCommand, undo or redo).
*/
void commandExecuted(KCommand command);
/**
Emitted every time we reach the index where you
saved the document for the last time. See documentSaved
@short Emitted every time we reach the index where you saved the document for the last time.
*/
void documentRestored();
}