class: AbstractSettingsApplication
authorClaus Gittinger <cg@exept.de>
Sat, 29 Nov 2014 02:52:56 +0100
changeset 14954 75e430536342
parent 14953 419282f99749
child 14955 eabba6548e60
class: AbstractSettingsApplication dialog geometry
AbstractSettingsApplication.st
--- a/AbstractSettingsApplication.st	Sat Nov 29 00:22:19 2014 +0100
+++ b/AbstractSettingsApplication.st	Sat Nov 29 02:52:56 2014 +0100
@@ -14849,96 +14849,97 @@
 
     <resource: #canvas>
 
-    ^
-     #(FullSpec
-	name: windowSpec
-	window:
-       (WindowSpec
-	  label: 'Per Module Source Code Manager'
-	  name: 'Per Module Source Code Manager'
-	  min: (Point 10 10)
-	  bounds: (Rectangle 0 0 581 98)
-	)
-	component:
-       (SpecCollection
-	  collection: (
-	   (ViewSpec
-	      name: 'Content'
-	      layout: (LayoutFrame 0 0 0 0 0 1 -30 1)
-	      component:
-	     (SpecCollection
-		collection: (
-		 (ComboBoxSpec
-		    name: 'ComboBox1'
-		    layout: (LayoutFrame 184 0 9 0 -9 1 31 0)
-		    activeHelpKey: packageMatchPattern
-		    enableChannel: useManager
-		    model: packageHolder
-		    comboList: samplePackageList
-		  )
-		 (LabelSpec
-		    label: 'Package ID (Matchpattern):'
-		    name: 'Label15'
-		    layout: (LayoutFrame 9 0 9 0 178 0 31 0)
-		    activeHelpKey: packageMatchPattern
-		    translateLabel: true
-		    adjust: right
-		  )
-		 (LabelSpec
-		    label: 'Manager:'
-		    name: 'Label16'
-		    layout: (LayoutFrame 9 0 37 0 178 0 59 0)
-		    activeHelpKey: manager
-		    translateLabel: true
-		    adjust: right
-		  )
-		 (ComboListSpec
-		    name: 'ComboList2'
-		    layout: (LayoutFrame 184 0 39 0 -9 1 61 0)
-		    activeHelpKey: manager
-		    model: managerNameHolder
-		    comboList: availableManagerTypeNames
-		    useIndex: false
-		    hidePullDownMenuButton: true
-		  )
-		 )
-
-	      )
-	    )
-	   (HorizontalPanelViewSpec
-	      name: 'Buttons'
-	      layout: (LayoutFrame 0 0 -30 1 0 1 0 1)
-	      horizontalLayout: fit
-	      verticalLayout: center
-	      horizontalSpace: 3
-	      verticalSpace: 3
-	      reverseOrderIfOKAtLeft: true
-	      component:
-	     (SpecCollection
-		collection: (
-		 (ActionButtonSpec
-		    label: 'Cancel'
-		    name: 'Button2'
-		    translateLabel: true
-		    model: doCancel
-		    extent: (Point 289 22)
-		  )
-		 (ActionButtonSpec
-		    label: 'OK'
-		    name: 'Button1'
-		    translateLabel: true
-		    model: doAccept
-		    enableChannel: doAcceptEnabled
-		    extent: (Point 289 22)
-		  )
-		 )
-
-	      )
-	    )
-	   )
-
-	)
-      )
+    ^ 
+    #(FullSpec
+       name: windowSpec
+       window: 
+      (WindowSpec
+         label: 'Per Module Source Code Manager'
+         name: 'Per Module Source Code Manager'
+         min: (Point 10 10)
+         bounds: (Rectangle 0 0 581 98)
+       )
+       component: 
+      (SpecCollection
+         collection: (
+          (ViewSpec
+             name: 'Content'
+             layout: (LayoutFrame 0 0 0 0 0 1 -30 1)
+             component: 
+            (SpecCollection
+               collection: (
+                (ComboBoxSpec
+                   name: 'ComboBox1'
+                   layout: (LayoutFrame 216 0 9 0 -2 1 31 0)
+                   activeHelpKey: packageMatchPattern
+                   enableChannel: useManager
+                   model: packageHolder
+                   comboList: samplePackageList
+                 )
+                (LabelSpec
+                   label: 'Package ID (Matchpattern):'
+                   name: 'Label15'
+                   layout: (LayoutFrame 9 0 9 0 214 0 31 0)
+                   activeHelpKey: packageMatchPattern
+                   translateLabel: true
+                   adjust: right
+                 )
+                (LabelSpec
+                   label: 'Manager:'
+                   name: 'Label16'
+                   layout: (LayoutFrame 9 0 37 0 214 0 59 0)
+                   activeHelpKey: manager
+                   translateLabel: true
+                   adjust: right
+                 )
+                (ComboListSpec
+                   name: 'ComboList2'
+                   layout: (LayoutFrame 216 0 39 0 -2 1 61 0)
+                   activeHelpKey: manager
+                   model: managerNameHolder
+                   comboList: availableManagerTypeNames
+                   useIndex: false
+                   hidePullDownMenuButton: true
+                 )
+                )
+              
+             )
+           )
+          (HorizontalPanelViewSpec
+             name: 'Buttons'
+             layout: (LayoutFrame 0 0 -30 1 0 1 0 1)
+             horizontalLayout: fit
+             verticalLayout: center
+             horizontalSpace: 3
+             verticalSpace: 3
+             reverseOrderIfOKAtLeft: true
+             component: 
+            (SpecCollection
+               collection: (
+                (ActionButtonSpec
+                   label: 'Cancel'
+                   name: 'Button2'
+                   translateLabel: true
+                   model: doCancel
+                   extent: (Point 289 22)
+                 )
+                (ActionButtonSpec
+                   label: 'OK'
+                   name: 'Button1'
+                   translateLabel: true
+                   model: doAccept
+                   enableChannel: doAcceptEnabled
+                   extent: (Point 289 22)
+                 )
+                )
+              
+             )
+             keepSpaceForOSXResizeHandleH: true
+           )
+          )
+        
+       )
+     )
 ! !
 
 !AbstractSettingsApplication::SourceCodeManagementSettingsAppl::PerModuleManagerSettingDialog methodsFor:'accessing'!
@@ -18800,10 +18801,10 @@
 !AbstractSettingsApplication class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/AbstractSettingsApplication.st,v 1.572 2014-11-27 00:10:26 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/AbstractSettingsApplication.st,v 1.573 2014-11-29 01:52:56 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libtool/AbstractSettingsApplication.st,v 1.572 2014-11-27 00:10:26 cg Exp $'
-! !
-
+    ^ '$Header: /cvs/stx/stx/libtool/AbstractSettingsApplication.st,v 1.573 2014-11-29 01:52:56 cg Exp $'
+! !
+