category changes
authorClaus Gittinger <cg@exept.de>
Tue, 22 Aug 2000 00:45:25 +0200
changeset 2227 58426f7611f2
parent 2226 bf23595862d9
child 2228 d74b093fe48d
category changes
EnterBox.st
FramedBox.st
ListView.st
ObjectView.st
OptionBox.st
ScrollableView.st
SelectionInListView.st
--- a/EnterBox.st	Mon Aug 21 13:23:26 2000 +0200
+++ b/EnterBox.st	Tue Aug 22 00:45:25 2000 +0200
@@ -10,6 +10,8 @@
  hereby transferred.
 "
 
+"{ Package: 'stx:libwidg' }"
+
 DialogBox subclass:#EnterBox
 	instanceVariableNames:'labelField enterField trimBlanks'
 	classVariableNames:''
@@ -318,7 +320,7 @@
     "Created: 16.11.1995 / 21:25:08 / cg"
 ! !
 
-!EnterBox methodsFor:'accessing - behavior'!
+!EnterBox methodsFor:'accessing-behavior'!
 
 entryCompletionBlock:aBlock
     "define an entryCompletion block; if nonNil, that one
@@ -342,7 +344,7 @@
     "Created: 22.5.1996 / 15:23:45 / cg"
 ! !
 
-!EnterBox methodsFor:'accessing - components'!
+!EnterBox methodsFor:'accessing-components'!
 
 enterField
     "provide access to the entryfield"
@@ -360,7 +362,7 @@
     "Created: 16.11.1995 / 21:23:48 / cg"
 ! !
 
-!EnterBox methodsFor:'accessing - contents'!
+!EnterBox methodsFor:'accessing-contents'!
 
 contents
     "return my contents"
@@ -393,7 +395,7 @@
     enterField selectFromLine:1 col:start toLine:1 col:stop
 ! !
 
-!EnterBox methodsFor:'accessing - look'!
+!EnterBox methodsFor:'accessing-look'!
 
 noCancel
     "make the cancel button invisible - i.e. only the ok button is shown.
@@ -672,5 +674,5 @@
 !EnterBox class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg/EnterBox.st,v 1.52 1999-12-09 22:51:23 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg/EnterBox.st,v 1.53 2000-08-21 22:43:50 cg Exp $'
 ! !
--- a/FramedBox.st	Mon Aug 21 13:23:26 2000 +0200
+++ b/FramedBox.st	Tue Aug 22 00:45:25 2000 +0200
@@ -478,7 +478,7 @@
     "Modified: / 6.6.1998 / 20:04:39 / cg"
 ! !
 
-!FramedBox methodsFor:'accessing - channels'!
+!FramedBox methodsFor:'accessing-channels'!
 
 labelChannel
     "return the labelChannel - or nil"
@@ -502,7 +502,7 @@
     ].
 ! !
 
-!FramedBox methodsFor:'change and update'!
+!FramedBox methodsFor:'change & update'!
 
 update:what with:aPara from:aModel
     "the MVC way of changing the label ...
@@ -772,5 +772,5 @@
 !FramedBox class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg/FramedBox.st,v 1.41 2000-08-03 07:29:45 ca Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg/FramedBox.st,v 1.42 2000-08-21 22:44:08 cg Exp $'
 ! !
--- a/ListView.st	Mon Aug 21 13:23:26 2000 +0200
+++ b/ListView.st	Tue Aug 22 00:45:25 2000 +0200
@@ -1273,7 +1273,7 @@
     ^self on:aModel aspect:aspectSymbol change:nil list:aspectSymbol menu:menuSymbol 
 ! !
 
-!ListView methodsFor:'change and update '!
+!ListView methodsFor:'change & update'!
 
 update:something with:aParameter from:changedObject
     changedObject == model ifTrue:[
@@ -4127,5 +4127,5 @@
 !ListView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg/ListView.st,v 1.233 2000-08-21 11:20:27 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg/ListView.st,v 1.234 2000-08-21 22:44:38 cg Exp $'
 ! !
--- a/ObjectView.st	Mon Aug 21 13:23:26 2000 +0200
+++ b/ObjectView.st	Tue Aug 22 00:45:25 2000 +0200
@@ -10,6 +10,8 @@
  hereby transferred.
 "
 
+"{ Package: 'stx:libwidg' }"
+
 View subclass:#ObjectView
 	instanceVariableNames:'contents sorted lastButt pressAction releaseAction
 		shiftPressAction doublePressAction motionAction keyPressAction
@@ -311,7 +313,7 @@
     ^ gridShown
 ! !
 
-!ObjectView methodsFor:'accessing - behavior'!
+!ObjectView methodsFor:'accessing-behavior'!
 
 setDefaultActions
     "setup actions for default behavior (do - nothing)"
@@ -3227,5 +3229,5 @@
 !ObjectView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg/ObjectView.st,v 1.83 2000-02-12 15:35:54 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg/ObjectView.st,v 1.84 2000-08-21 22:45:02 cg Exp $'
 ! !
--- a/OptionBox.st	Mon Aug 21 13:23:26 2000 +0200
+++ b/OptionBox.st	Tue Aug 22 00:45:25 2000 +0200
@@ -229,7 +229,7 @@
     "Modified: 18.10.1996 / 14:54:30 / cg"
 ! !
 
-!OptionBox methodsFor:'accessing - look'!
+!OptionBox methodsFor:'accessing-look'!
 
 buttonTitles:titles
     "set the button titles"
@@ -409,5 +409,5 @@
 !OptionBox class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg/OptionBox.st,v 1.43 2000-08-15 14:11:53 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg/OptionBox.st,v 1.44 2000-08-21 22:45:04 cg Exp $'
 ! !
--- a/ScrollableView.st	Mon Aug 21 13:23:26 2000 +0200
+++ b/ScrollableView.st	Tue Aug 22 00:45:25 2000 +0200
@@ -1199,7 +1199,7 @@
     "Modified: / 21.5.1998 / 00:49:16 / cg"
 ! !
 
-!ScrollableView methodsFor:'changes'!
+!ScrollableView methodsFor:'change & update'!
 
 update:something with:argument from:changedObject
     "whenever the scrolledView changes its contents, the scroller(s) must
@@ -2165,5 +2165,5 @@
 !ScrollableView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg/ScrollableView.st,v 1.109 2000-07-15 14:42:33 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg/ScrollableView.st,v 1.110 2000-08-21 22:45:18 cg Exp $'
 ! !
--- a/SelectionInListView.st	Mon Aug 21 13:23:26 2000 +0200
+++ b/SelectionInListView.st	Tue Aug 22 00:45:25 2000 +0200
@@ -1079,7 +1079,7 @@
     "Created: / 4.2.2000 / 00:07:14 / cg"
 ! !
 
-!SelectionInListView methodsFor:'accessing - actions'!
+!SelectionInListView methodsFor:'accessing-actions'!
 
 action:aBlock
     "set the action block to be performed on select.
@@ -3781,5 +3781,5 @@
 !SelectionInListView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg/SelectionInListView.st,v 1.174 2000-08-11 17:40:23 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg/SelectionInListView.st,v 1.175 2000-08-21 22:45:25 cg Exp $'
 ! !