BookmarkToolbarMenuBuilder.st
changeset 9970 adb58666157b
child 10088 3aee34635589
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/BookmarkToolbarMenuBuilder.st	Fri Jul 01 15:14:47 2011 +0200
@@ -0,0 +1,65 @@
+"
+ COPYRIGHT (c) 2006 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+"{ Package: 'stx:libtool' }"
+
+BookmarkMenuBuilder subclass:#BookmarkToolbarMenuBuilder
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Interface-Bookmarks'
+!
+
+!BookmarkToolbarMenuBuilder class methodsFor:'documentation'!
+
+copyright
+"
+ COPYRIGHT (c) 2006 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+! !
+
+!BookmarkToolbarMenuBuilder methodsFor:'utilities'!
+
+menuItemFolder:anObject 
+
+    ^(super menuItemFolder:anObject)
+        isButton:(stack top == menu);
+        yourself
+
+    "Created: / 21-06-2011 / 08:09:06 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+!
+
+menuItemGotoBookmark:anObject 
+
+    ^(super menuItemGotoBookmark:anObject)
+        isButton:(stack top == menu);
+        yourself
+
+    "Created: / 21-06-2011 / 08:01:52 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+! !
+
+!BookmarkToolbarMenuBuilder class methodsFor:'documentation'!
+
+version_CVS
+    ^ '$Header: /cvs/stx/stx/libtool/BookmarkToolbarMenuBuilder.st,v 1.1 2011-07-01 13:14:47 cg Exp $'
+!
+
+version_SVN
+    ^ '§Id§'
+! !