DictionaryInspectorView.st
changeset 7805 a2d82b06d71b
parent 7373 6a42251b4415
child 7942 fce54ed1ef8b
equal deleted inserted replaced
7804:5e6721eb3845 7805:a2d82b06d71b
    57                        ('Inspect'              doInspect      )
    57                        ('Inspect'              doInspect      )
    58                        ('Inspect Key'          doInspectKey   )
    58                        ('Inspect Key'          doInspectKey   )
    59                        ('BasicInspect'         doBasicInspect )
    59                        ('BasicInspect'         doBasicInspect )
    60                        ('Inspect Hierarchical' doNewInspect   )
    60                        ('Inspect Hierarchical' doNewInspect   )
    61                        ('-')
    61                        ('-')
    62                        ('Ref chains'           showReferences )
    62                        ('Ref Chains'           showReferences )
    63                        ('References to Global' showKeyReferences )
    63                        ('References to Global' showKeyReferences )
    64                        ('-')
    64                        ('-')
    65                        ('Browse'               browse         )
    65                        ('Browse'               browse         )
    66                        ('-')
    66                        ('-')
    67                        ('Add Key'              doAddKey       )
    67                        ('Add Key'              doAddKey       )
    69                        ('-')
    69                        ('-')
    70                    ).
    70                    ).
    71 
    71 
    72         hideClassVars == true ifTrue:[
    72         hideClassVars == true ifTrue:[
    73             items := items , #(
    73             items := items , #(
    74                            ('Show classVars'   doShowClassVars )
    74                            ('Show ClassVars'   doShowClassVars )
    75                        ).
    75                        ).
    76         ] ifFalse:[
    76         ] ifFalse:[
    77             items := items , #(
    77             items := items , #(
    78                            ('Hide classVars'   doHideClassVars )
    78                            ('Hide ClassVars'   doHideClassVars )
    79                        ).
    79                        ).
    80         ].
    80         ].
    81         hideClasses == true ifTrue:[
    81         hideClasses == true ifTrue:[
    82             items := items , #(
    82             items := items , #(
    83                            ('Show classes'     doShowClasses )
    83                            ('Show Classes'     doShowClasses )
    84                        ).
    84                        ).
    85         ] ifFalse:[
    85         ] ifFalse:[
    86             items := items , #(
    86             items := items , #(
    87                            ('Hide classes'     doHideClasses )
    87                            ('Hide Classes'     doHideClasses )
    88                        ).
    88                        ).
    89         ].
    89         ].
    90         hideAliases == true ifTrue:[
    90         hideAliases == true ifTrue:[
    91             items := items , #(
    91             items := items , #(
    92                            ('Show aliases'     doShowAliases )
    92                            ('Show Aliases'     doShowAliases )
    93                        ).
    93                        ).
    94         ] ifFalse:[
    94         ] ifFalse:[
    95             items := items , #(
    95             items := items , #(
    96                            ('Hide aliases'     doHideAliases )
    96                            ('Hide Aliases'     doHideAliases )
    97                        ).
    97                        ).
    98         ]
    98         ]
    99     ] ifFalse:[
    99     ] ifFalse:[
   100         items := #(
   100         items := #(
   101                        ('Copy Key'             doCopyKey      )
   101                        ('Copy Key'             doCopyKey      )
   103                        ('Inspect'              doInspect      )
   103                        ('Inspect'              doInspect      )
   104                        ('Inspect Key'          doInspectKey   )
   104                        ('Inspect Key'          doInspectKey   )
   105                        ('BasicInspect'         doBasicInspect )
   105                        ('BasicInspect'         doBasicInspect )
   106                        ('Inspect Hierarchical' doNewInspect   )
   106                        ('Inspect Hierarchical' doNewInspect   )
   107                        ('-')
   107                        ('-')
   108                        ('Ref chains'           showReferences )
   108                        ('Ref Chains'           showReferences )
   109                        ('-')
   109                        ('-')
   110                        ('Browse'                       browse                 )
   110                        ('Browse'                       browse                 )
   111                        ('Browse class hierarchy'       browseClassHierarchy   )
   111                        ('Browse Class Hierarchy'       browseClassHierarchy   )
   112                        ('Browse full class protocol'   browseFullClassProtocol)
   112                        ('Browse Full Class Protocol'   browseFullClassProtocol)
   113                        ('-')
   113                        ('-')
   114                        ('Add Key'              doAddKey       )
   114                        ('Add Key'              doAddKey       )
   115                        ('Remove Key'           doRemoveKey    )
   115                        ('Remove Key'           doRemoveKey    )
   116                    ).
   116                    ).
   117     ].
   117     ].
   145         ]
   145         ]
   146     ].
   146     ].
   147 
   147 
   148     ^ m.
   148     ^ m.
   149 
   149 
   150     "Modified: / 21.5.1998 / 13:25:10 / cg"
   150     "Modified: / 29-05-2007 / 19:33:43 / cg"
   151 ! !
   151 ! !
   152 
   152 
   153 !DictionaryInspectorView methodsFor:'menu actions'!
   153 !DictionaryInspectorView methodsFor:'menu actions'!
   154 
   154 
   155 browse
   155 browse
   452 ! !
   452 ! !
   453 
   453 
   454 !DictionaryInspectorView class methodsFor:'documentation'!
   454 !DictionaryInspectorView class methodsFor:'documentation'!
   455 
   455 
   456 version
   456 version
   457     ^ '$Header: /cvs/stx/stx/libtool/DictionaryInspectorView.st,v 1.59 2006-10-06 16:50:16 cg Exp $'
   457     ^ '$Header: /cvs/stx/stx/libtool/DictionaryInspectorView.st,v 1.60 2007-05-29 17:32:18 cg Exp $'
   458 ! !
   458 ! !