BookmarkToolbarMenuBuilder.st
author Claus Gittinger <cg@exept.de>
Fri, 01 Jul 2011 15:14:47 +0200
changeset 9970 adb58666157b
child 10088 3aee34635589
permissions -rw-r--r--
initial checkin
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
9970
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
 COPYRIGHT (c) 2006 by eXept Software AG
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
              All Rights Reserved
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
 This software is furnished under a license and may be used
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
 hereby transferred.
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
"
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
"{ Package: 'stx:libtool' }"
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
BookmarkMenuBuilder subclass:#BookmarkToolbarMenuBuilder
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
	instanceVariableNames:''
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
	classVariableNames:''
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
	poolDictionaries:''
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
	category:'Interface-Bookmarks'
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
!
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
!BookmarkToolbarMenuBuilder class methodsFor:'documentation'!
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
copyright
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
"
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    25
 COPYRIGHT (c) 2006 by eXept Software AG
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    26
              All Rights Reserved
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    27
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    28
 This software is furnished under a license and may be used
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    29
 only in accordance with the terms of that license and with the
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    30
 inclusion of the above copyright notice.   This software may not
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    31
 be provided or otherwise made available to, or used by, any
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
 other person.  No title to or ownership of the software is
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    33
 hereby transferred.
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
"
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    35
! !
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    36
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
!BookmarkToolbarMenuBuilder methodsFor:'utilities'!
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
menuItemFolder:anObject 
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
    ^(super menuItemFolder:anObject)
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
        isButton:(stack top == menu);
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
        yourself
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
    "Created: / 21-06-2011 / 08:09:06 / Jan Vrany <jan.vrany@fit.cvut.cz>"
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
!
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48
menuItemGotoBookmark:anObject 
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    49
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    50
    ^(super menuItemGotoBookmark:anObject)
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    51
        isButton:(stack top == menu);
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    52
        yourself
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    53
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    54
    "Created: / 21-06-2011 / 08:01:52 / Jan Vrany <jan.vrany@fit.cvut.cz>"
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    55
! !
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    56
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    57
!BookmarkToolbarMenuBuilder class methodsFor:'documentation'!
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    58
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    59
version_CVS
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    60
    ^ '$Header: /cvs/stx/stx/libtool/BookmarkToolbarMenuBuilder.st,v 1.1 2011-07-01 13:14:47 cg Exp $'
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    61
!
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    62
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    63
version_SVN
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    64
    ^ '§Id§'
adb58666157b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    65
! !