[Service]Collapse a window

Alexandre Bergel bergel at iam.unibe.ch
Wed Oct 6 11:41:52 UTC 2004


c-x to collapse a window.

I like that!

Alexandre

-- 
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.iam.unibe.ch/~bergel
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
-------------- next part --------------
'From Squeak3.8alpha of 8 September 2004 [latest update: #5987] on 6 October 2004 at 1:40:26 pm'!

!SystemWindow class methodsFor: '*services-base' stamp: 'ab 10/6/2004 13:39'!
registeredServices
	"Service initialize  "

	^ {
		Service new
		label: 'colapse window';
		shortLabel: 'colapse';
		description: 'Colapse the focused window';
		action:  [SystemWindow focusedWindow collapseOrExpand];
		shortcut: '<c-x>';
		categories: self worldwincat
		}
! !


More information about the Squeak-dev mailing list