Tools__BreakpointBrowser.st
changeset 8357 2fa277092d1c
parent 8354 9791dde64bd7
child 8362 1e7ce1305522
--- a/Tools__BreakpointBrowser.st	Mon Oct 20 16:31:36 2008 +0200
+++ b/Tools__BreakpointBrowser.st	Mon Oct 20 16:34:28 2008 +0200
@@ -79,67 +79,68 @@
 
     <resource: #canvas>
 
-    ^
+    ^ 
      #(FullSpec
-	name: windowSpec
-	window:
+        name: windowSpec
+        window: 
        (WindowSpec
-	  label: 'Breakpoint Browser'
-	  name: 'Breakpoint Browser'
-	  min: (Point 10 10)
-	  max: (Point 1024 768)
-	  bounds: (Rectangle 0 0 680 691)
-	  menu: mainMenu
-	)
-	component:
+          label: 'Breakpoint Browser'
+          name: 'Breakpoint Browser'
+          min: (Point 10 10)
+          max: (Point 1024 768)
+          bounds: (Rectangle 0 0 680 691)
+          menu: mainMenu
+        )
+        component: 
        (SpecCollection
-	  collection: (
-	   (MenuPanelSpec
-	      name: 'ToolBar1'
-	      layout: (LayoutFrame 0 0.0 0 0 0 1.0 40 0)
-	      menu: toolBarMenu
-	      textDefault: true
-	    )
-	   (VariableVerticalPanelSpec
-	      name: 'VariableVerticalPanel1'
-	      layout: (LayoutFrame 0 0 40 0 0 1 0 1)
-	      snapMode: both
-	      component:
-	     (SpecCollection
-		collection: (
-		 (DataSetSpec
-		    name: 'Table'
-		    model: selectionIndexHolder
-		    menu: itemMenu
-		    hasHorizontalScrollBar: true
-		    hasVerticalScrollBar: true
-		    dataList: shownCopyOfBreakpointList
-		    doubleClickSelector: itemDoubleClicked:
-		    columnHolder: tableColumns
-		  )
-		 (TextEditorSpec
-		    name: 'TextEditor1'
-		    hasHorizontalScrollBar: true
-		    hasVerticalScrollBar: true
-		    hasKeyboardFocusInitially: false
-		    viewClassName: 'CodeView'
-		    postBuildCallback: postBuildCodeView:
-		  )
-		 )
-
-	      )
-	      handles: (Any 0.5 1.0)
-	    )
-	   (LabelSpec
-	      label: 'Updating...'
-	      name: 'Label1'
-	      layout: (LayoutFrame 0 0 32 0 0 1 0 1)
-	      visibilityChannel: updatingLabelShown
-	      translateLabel: true
-	    )
-	   )
-
-	)
+          collection: (
+           (MenuPanelSpec
+              name: 'ToolBar1'
+              layout: (LayoutFrame 0 0.0 0 0 0 1.0 40 0)
+              menu: toolBarMenu
+              textDefault: true
+            )
+           (VariableVerticalPanelSpec
+              name: 'VariableVerticalPanel1'
+              layout: (LayoutFrame 0 0 40 0 0 1 0 1)
+              snapMode: both
+              component: 
+             (SpecCollection
+                collection: (
+                 (DataSetSpec
+                    name: 'Table'
+                    model: selectionIndexHolder
+                    menu: itemMenu
+                    hasHorizontalScrollBar: true
+                    hasVerticalScrollBar: true
+                    dataList: shownCopyOfBreakpointList
+                    doubleClickSelector: itemDoubleClicked:
+                    columnHolder: tableColumns
+                  )
+                 (TextEditorSpec
+                    name: 'TextEditor1'
+                    hasHorizontalScrollBar: true
+                    hasVerticalScrollBar: true
+                    hasKeyboardFocusInitially: false
+                    viewClassName: 'CodeView'
+                    postBuildCallback: postBuildCodeView:
+                  )
+                 )
+               
+              )
+              handles: (Any 0.5 1.0)
+            )
+           (LabelSpec
+              label: 'Updating - Please Wait...'
+              name: 'Label1'
+              layout: (LayoutFrame 0 0 40 0 0 1 0 1)
+              visibilityChannel: updatingLabelShown
+              backgroundColor: (Color 100.0 49.999237048905 49.999237048905)
+              translateLabel: true
+            )
+           )
+         
+        )
       )
 ! !
 
@@ -1313,5 +1314,5 @@
 !BreakpointBrowser class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/Tools__BreakpointBrowser.st,v 1.6 2008-10-20 13:46:57 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/Tools__BreakpointBrowser.st,v 1.7 2008-10-20 14:34:28 cg Exp $'
 ! !