summaryrefslogtreecommitdiffstats
path: root/src/jrummikub/view/ISettingsPanel.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/jrummikub/view/ISettingsPanel.java')
-rw-r--r--src/jrummikub/view/ISettingsPanel.java20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/jrummikub/view/ISettingsPanel.java b/src/jrummikub/view/ISettingsPanel.java
index b00046f..4fca9ad 100644
--- a/src/jrummikub/view/ISettingsPanel.java
+++ b/src/jrummikub/view/ISettingsPanel.java
@@ -170,12 +170,32 @@ public interface ISettingsPanel {
*/
public IEvent1<Integer> getChangeJokerNumberEvent();
+ /**
+ * Emitted when totalTime for a turn is changed
+ *
+ * @return the event
+ */
public IEvent1<Integer> getChangeTimeEvent();
+ /**
+ * Emitted when no limits is chosen
+ *
+ * @return the event
+ */
public IEvent1<Boolean> getChangeNoLimitsEvent();
+ /**
+ * Emitted when the variables are reset to the default values
+ *
+ * @return the event
+ */
public IEvent getSetVariantDefaultEvent();
+ /**
+ * Emitted when the children variant is chosen
+ *
+ * @return the event
+ */
public IEvent getSetVariantChildrenEvent();
/**