summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KCMultiDialogSignals.java
blob: 9574ec7056f757ffd48091aaed171127a1ff77cf (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;
import org.kde.qt.TQWidget;

public interface KCMultiDialogSignals {
	/**	
		 Emitted after all KCModules have been told to save their configuration.
			 The applyClicked and okClicked signals are emitted before the
		 configuration is saved.
		     		@short    Emitted after all KCModules have been told to save their configuration.
	*/
	void configCommitted();
	/**	
		 Emitted after the KCModules have been told to save their configuration.
		 It is emitted once for every instance the KCMs that were changed belong
		 to.
			 You can make use of this if you have more than one component in your
		 application. instanceName tells you the instance that has to reload its
		 configuration.
			 The applyClicked and okClicked signals are emitted before the
		 configuration is saved.
			@param instanceName The name of the instance that needs to reload its
		                     configuration.
		     		@short    Emitted after the KCModules have been told to save their configuration.
	*/
	void configCommitted(String instanceName);
}