CodeCompletionHelpMenuView.st
changeset 13478 78279a57b313
parent 13477 89fd61f3c821
child 13537 968b3d74a2b8
equal deleted inserted replaced
13477:89fd61f3c821 13478:78279a57b313
       
     1 "
       
     2  COPYRIGHT (c) 2013 by Claus Gittinger
       
     3               All Rights Reserved
       
     4 
       
     5  This software is furnished under a license and may be used
       
     6  only in accordance with the terms of that license and with the
       
     7  inclusion of the above copyright notice.   This software may not
       
     8  be provided or otherwise made available to, or used by, any
       
     9  other person.  No title to or ownership of the software is
       
    10  hereby transferred.
       
    11 "
     1 "{ Package: 'stx:libtool' }"
    12 "{ Package: 'stx:libtool' }"
     2 
    13 
     3 MenuView subclass:#CodeCompletionHelpMenuView
    14 MenuView subclass:#CodeCompletionHelpMenuView
     4 	instanceVariableNames:''
    15 	instanceVariableNames:''
     5 	classVariableNames:''
    16 	classVariableNames:''
     6 	poolDictionaries:''
    17 	poolDictionaries:''
     7 	category:'Interface-Help'
    18 	category:'Interface-Help'
     8 !
    19 !
     9 
    20 
       
    21 !CodeCompletionHelpMenuView class methodsFor:'documentation'!
       
    22 
       
    23 copyright
       
    24 "
       
    25  COPYRIGHT (c) 2013 by Claus Gittinger
       
    26               All Rights Reserved
       
    27 
       
    28  This software is furnished under a license and may be used
       
    29  only in accordance with the terms of that license and with the
       
    30  inclusion of the above copyright notice.   This software may not
       
    31  be provided or otherwise made available to, or used by, any
       
    32  other person.  No title to or ownership of the software is
       
    33  hereby transferred.
       
    34 "
       
    35 !
       
    36 
       
    37 documentation
       
    38 "
       
    39     used with code completion suggestions
       
    40 
       
    41     [author:]
       
    42         Claus Gittinger
       
    43 
       
    44     [See also:]
       
    45         Workspace::CodeCompletionService
       
    46 "
       
    47 ! !
    10 
    48 
    11 !CodeCompletionHelpMenuView methodsFor:'queries'!
    49 !CodeCompletionHelpMenuView methodsFor:'queries'!
    12 
    50 
    13 wantsFocusWithPointerEnter
    51 wantsFocusWithPointerEnter
    14     "DEFINITELY not, because if we do so,
    52     "DEFINITELY not, because if we do so,
    19 ! !
    57 ! !
    20 
    58 
    21 !CodeCompletionHelpMenuView class methodsFor:'documentation'!
    59 !CodeCompletionHelpMenuView class methodsFor:'documentation'!
    22 
    60 
    23 version
    61 version
    24     ^ '$Header: /cvs/stx/stx/libtool/CodeCompletionHelpMenuView.st,v 1.1 2013-09-03 12:18:01 cg Exp $'
    62     ^ '$Header: /cvs/stx/stx/libtool/CodeCompletionHelpMenuView.st,v 1.2 2013-09-03 12:19:27 cg Exp $'
    25 !
    63 !
    26 
    64 
    27 version_CVS
    65 version_CVS
    28     ^ '$Header: /cvs/stx/stx/libtool/CodeCompletionHelpMenuView.st,v 1.1 2013-09-03 12:18:01 cg Exp $'
    66     ^ '$Header: /cvs/stx/stx/libtool/CodeCompletionHelpMenuView.st,v 1.2 2013-09-03 12:19:27 cg Exp $'
    29 ! !
    67 ! !
    30 
    68