NewLauncher.st
changeset 1998 6fced9f5b645
parent 1985 b00a8853799b
child 2003 b44e8c80ec07
--- a/NewLauncher.st	Wed Feb 10 02:36:04 1999 +0100
+++ b/NewLauncher.st	Wed Feb 10 02:36:31 1999 +0100
@@ -3051,15 +3051,13 @@
 compilerSettings
     "open a dialog on compiler related settings"
 
-    Launcher::LauncherDialogs compilerSettingsFor:self.
-
-    "Modified: / 31.7.1998 / 22:45:16 / cg"
+    self settingsDialog:#compilerSettingsFor:
 !
 
 displaySettings
     "open a dialog on display related settings"
 
-    Launcher::LauncherDialogs displaySettingsFor:self.
+    self settingsDialog:#displaySettingsFor:
 
     "Modified: / 31.7.1998 / 22:45:38 / cg"
 !
@@ -3067,7 +3065,7 @@
 editSettings
     "open a dialog on edit settings"
 
-    Launcher::LauncherDialogs editSettingsFor:self.
+    self settingsDialog:#editSettingsFor:
 
     "Modified: / 31.7.1998 / 22:46:56 / cg"
     "Created: / 6.1.1999 / 14:14:48 / cg"
@@ -3076,7 +3074,7 @@
 fontSettings
     "open a dialog on font related settings"
 
-    Launcher::LauncherDialogs fontSettingsFor:self
+    self settingsDialog:#fontSettingsFor:
 
     "Modified: / 31.7.1998 / 22:45:44 / cg"
 !
@@ -3084,7 +3082,7 @@
 javaSettings
     "open a dialog on java-subsystem related settings"
 
-    Launcher::LauncherDialogs javaSettingsFor:self.
+    self settingsDialog:#javaSettingsFor:
 
     "Modified: / 31.7.1998 / 22:46:13 / cg"
 !
@@ -3092,7 +3090,7 @@
 keyboardSetting 
     "open a dialog on keyboard related settings"
 
-    Launcher::LauncherDialogs keyboardSettingsFor:self.
+    self settingsDialog:#keyboardSettingsFor:
 
     "Modified: / 31.7.1998 / 22:45:56 / cg"
 !
@@ -3100,7 +3098,7 @@
 languageSetting 
     "open a dialog on language related settings"
 
-    Launcher::LauncherDialogs languageSettingsFor:self.
+    self settingsDialog:#languageSettingsFor:
 
     "Modified: / 31.7.1998 / 22:46:13 / cg"
 !
@@ -3137,7 +3135,7 @@
 memorySettings
     "open a dialog on objectMemory related settings"
 
-    Launcher::LauncherDialogs memorySettingsFor:self.
+    self settingsDialog:#memorySettingsFor:
 
     "Modified: / 31.7.1998 / 22:46:33 / cg"
 !
@@ -3145,7 +3143,7 @@
 messageSettings
     "open a dialog on infoMessage related settings"
 
-    Launcher::LauncherDialogs messageSettingsFor:self.
+    self settingsDialog:#messageSettingsFor:
 
     "Modified: / 31.7.1998 / 22:46:45 / cg"
 !
@@ -3153,7 +3151,7 @@
 miscSettings
     "open a dialog on misc other settings"
 
-    Launcher::LauncherDialogs miscSettingsFor:self.
+    self settingsDialog:#miscSettingsFor:
 
     "Modified: / 31.7.1998 / 22:46:56 / cg"
 !
@@ -3161,7 +3159,7 @@
 printerSettings
     "open a dialog on printer related settings"
 
-    Launcher::LauncherDialogs printerSettingsFor:self.
+    self settingsDialog:#printerSettingsFor:
 
     "Modified: / 31.7.1998 / 22:47:05 / cg"
 !
@@ -3169,15 +3167,24 @@
 saveSettings
     "save settings to a settings-file."
 
-    Launcher::LauncherDialogs saveSettingsFor:self.
+    self settingsDialog:#saveSettingsFor:
 
     "Modified: / 31.7.1998 / 22:48:38 / cg"
 !
 
+settingsDialog:symbol 
+    "open a dialog on viewStyle related settings"
+
+    Launcher isLoaded ifFalse:[Launcher autoload].
+    Launcher::LauncherDialogs perform:symbol with:self.
+
+    "Modified: / 31.7.1998 / 22:47:33 / cg"
+!
+
 sourceAndDebuggerSettings
     "open a dialog on misc other settings"
 
-    Launcher::LauncherDialogs sourceAndDebuggerSettingsFor:self.
+    self settingsDialog:#sourceAndDebuggerSettingsFor:
 
     "Modified: / 31.7.1998 / 22:47:21 / cg"
 !
@@ -3185,7 +3192,7 @@
 toolSettings
     "open a dialog on tool settings"
 
-    Launcher::LauncherDialogs toolSettingsFor:self.
+    self settingsDialog:#toolSettingsFor:
 
     "Modified: / 31.7.1998 / 22:46:56 / cg"
     "Created: / 13.10.1998 / 15:50:53 / cg"
@@ -3194,7 +3201,7 @@
 viewStyleSetting 
     "open a dialog on viewStyle related settings"
 
-    Launcher::LauncherDialogs viewStyleSettingsFor:self.
+    self settingsDialog:#viewStyleSettingsFor:
 
     "Modified: / 31.7.1998 / 22:47:33 / cg"
 ! !
@@ -3633,5 +3640,5 @@
 !NewLauncher class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/NewLauncher.st,v 1.119 1999-01-29 14:52:18 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/NewLauncher.st,v 1.120 1999-02-10 01:36:31 cg Exp $'
 ! !