summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KCMultiDialogSignals.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/KCMultiDialogSignals.java')
-rw-r--r--kdejava/koala/org/kde/koala/KCMultiDialogSignals.java30
1 files changed, 30 insertions, 0 deletions
diff --git a/kdejava/koala/org/kde/koala/KCMultiDialogSignals.java b/kdejava/koala/org/kde/koala/KCMultiDialogSignals.java
new file mode 100644
index 00000000..28a64927
--- /dev/null
+++ b/kdejava/koala/org/kde/koala/KCMultiDialogSignals.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;
+import org.kde.qt.QWidget;
+
+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);
+}