summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KCommandHistorySignals.java
blob: 1bc4538067cf88605ae80798dbe95f1d860825b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
//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();
}