summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KCommandHistorySignals.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/KCommandHistorySignals.java')
-rw-r--r--kdejava/koala/org/kde/koala/KCommandHistorySignals.java30
1 files changed, 30 insertions, 0 deletions
diff --git a/kdejava/koala/org/kde/koala/KCommandHistorySignals.java b/kdejava/koala/org/kde/koala/KCommandHistorySignals.java
new file mode 100644
index 00000000..c31503c8
--- /dev/null
+++ b/kdejava/koala/org/kde/koala/KCommandHistorySignals.java
@@ -0,0 +1,30 @@
+//Auto-generated by kalyptus. DO NOT EDIT.
+package org.kde.koala;
+
+import org.kde.qt.QMetaObject;
+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();
+}