CodeView.st
author Claus Gittinger <cg@exept.de>
Wed, 02 Feb 2011 13:29:16 +0100
changeset 4222 53a2a6433f59
parent 3891 e1e2624accf8
child 4276 88d3182dc760
permissions -rw-r--r--
changed: #addLabelledField:label:adjust:tabable:from:to:separateAtX:nameAs:foregroundColor:
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
     1
"
4
88eb91574867 *** empty log message ***
claus
parents: 2
diff changeset
     2
 COPYRIGHT (c) 1989 by Claus Gittinger
70
14443a9ea4ec *** empty log message ***
claus
parents: 59
diff changeset
     3
	      All Rights Reserved
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
     4
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
     5
 This software is furnished under a license and may be used
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    10
 hereby transferred.
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    11
"
2300
68fc714627e8 Remove leading and trailing whitwpsace when accepting a method.
Stefan Vogel <sv@exept.de>
parents: 2097
diff changeset
    12
"{ Package: 'stx:libwidg' }"
68fc714627e8 Remove leading and trailing whitwpsace when accepting a method.
Stefan Vogel <sv@exept.de>
parents: 2097
diff changeset
    13
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    14
Workspace subclass:#CodeView
1749
0d0f27322523 hook for pointerOverWord actions (quick explain)
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
    15
	instanceVariableNames:'explainAction formatAction pointerOverWordAction'
3022
1b6d4d75a3d0 autoIndent
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
    16
	classVariableNames:''
419
2bd5f73fffd2 commentary
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
    17
	poolDictionaries:''
2097
66d564e3752a category change
Claus Gittinger <cg@exept.de>
parents: 2046
diff changeset
    18
	category:'Views-Text'
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    19
!
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    20
32
b6c23dfd5663 *** empty log message ***
claus
parents: 27
diff changeset
    21
!CodeView class methodsFor:'documentation'!
b6c23dfd5663 *** empty log message ***
claus
parents: 27
diff changeset
    22
38
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 32
diff changeset
    23
copyright
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 32
diff changeset
    24
"
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 32
diff changeset
    25
 COPYRIGHT (c) 1989 by Claus Gittinger
70
14443a9ea4ec *** empty log message ***
claus
parents: 59
diff changeset
    26
	      All Rights Reserved
38
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 32
diff changeset
    27
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 32
diff changeset
    28
 This software is furnished under a license and may be used
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 32
diff changeset
    29
 only in accordance with the terms of that license and with the
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 32
diff changeset
    30
 inclusion of the above copyright notice.   This software may not
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 32
diff changeset
    31
 be provided or otherwise made available to, or used by, any
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 32
diff changeset
    32
 other person.  No title to or ownership of the software is
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 32
diff changeset
    33
 hereby transferred.
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 32
diff changeset
    34
"
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 32
diff changeset
    35
!
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 32
diff changeset
    36
32
b6c23dfd5663 *** empty log message ***
claus
parents: 27
diff changeset
    37
documentation
b6c23dfd5663 *** empty log message ***
claus
parents: 27
diff changeset
    38
"
125
claus
parents: 123
diff changeset
    39
    a view for text which is known to be smalltalk code. 
419
2bd5f73fffd2 commentary
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
    40
    It adds 'explain' to the menu, and defines another action: 
125
claus
parents: 123
diff changeset
    41
      explainAction to be performed for explain.
32
b6c23dfd5663 *** empty log message ***
claus
parents: 27
diff changeset
    42
125
claus
parents: 123
diff changeset
    43
    This action is to be defined by the user of this view 
917
7b66af482567 generalized commenting/uncommenting.
Claus Gittinger <cg@exept.de>
parents: 880
diff changeset
    44
    (i.e. usually the owning browser)
121
claus
parents: 118
diff changeset
    45
419
2bd5f73fffd2 commentary
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
    46
    In addition, uncomment/comment are added to the controlMenu.
2bd5f73fffd2 commentary
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
    47
    These are smalltalk specific - if you plan to edit other language code,
2bd5f73fffd2 commentary
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
    48
    you need a different kind of CodeView for that.
2bd5f73fffd2 commentary
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
    49
125
claus
parents: 123
diff changeset
    50
    If used with a model, accept sends the changeMsg to it (as defined in EditTextView).
419
2bd5f73fffd2 commentary
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
    51
    (however, it is possible to define both changeMsg and acceptAction)
123
claus
parents: 121
diff changeset
    52
419
2bd5f73fffd2 commentary
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
    53
    See how doIt/printIt/inspectIt are handled in the superclass: Workspace.
123
claus
parents: 121
diff changeset
    54
claus
parents: 121
diff changeset
    55
    Caveat:
419
2bd5f73fffd2 commentary
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
    56
        in this version, CodeView does not yet support MVC setups for doIt
2bd5f73fffd2 commentary
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
    57
        and explain.
2bd5f73fffd2 commentary
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
    58
        If required, simulate this by setting the doItAction and
2bd5f73fffd2 commentary
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
    59
        explainAction, to notify the model manually about whats going on.
583
2ec13b7ceba5 documentation
Claus Gittinger <cg@exept.de>
parents: 489
diff changeset
    60
917
7b66af482567 generalized commenting/uncommenting.
Claus Gittinger <cg@exept.de>
parents: 880
diff changeset
    61
    [instance variables:]
7b66af482567 generalized commenting/uncommenting.
Claus Gittinger <cg@exept.de>
parents: 880
diff changeset
    62
        commentStrings          <Array>         an array with 2 entries;
7b66af482567 generalized commenting/uncommenting.
Claus Gittinger <cg@exept.de>
parents: 880
diff changeset
    63
                                                the first defining the EOL-comment string,
7b66af482567 generalized commenting/uncommenting.
Claus Gittinger <cg@exept.de>
parents: 880
diff changeset
    64
                                                the 2nd (another array) defining opening
7b66af482567 generalized commenting/uncommenting.
Claus Gittinger <cg@exept.de>
parents: 880
diff changeset
    65
                                                and closing comment strings.
7b66af482567 generalized commenting/uncommenting.
Claus Gittinger <cg@exept.de>
parents: 880
diff changeset
    66
                                                Default to ST/X comments,
7b66af482567 generalized commenting/uncommenting.
Claus Gittinger <cg@exept.de>
parents: 880
diff changeset
    67
                                                can be changed in an instance for other
7b66af482567 generalized commenting/uncommenting.
Claus Gittinger <cg@exept.de>
parents: 880
diff changeset
    68
                                                programming languages.
7b66af482567 generalized commenting/uncommenting.
Claus Gittinger <cg@exept.de>
parents: 880
diff changeset
    69
583
2ec13b7ceba5 documentation
Claus Gittinger <cg@exept.de>
parents: 489
diff changeset
    70
    [author:]
2ec13b7ceba5 documentation
Claus Gittinger <cg@exept.de>
parents: 489
diff changeset
    71
        Claus Gittinger
2ec13b7ceba5 documentation
Claus Gittinger <cg@exept.de>
parents: 489
diff changeset
    72
2ec13b7ceba5 documentation
Claus Gittinger <cg@exept.de>
parents: 489
diff changeset
    73
    [see also:]
2ec13b7ceba5 documentation
Claus Gittinger <cg@exept.de>
parents: 489
diff changeset
    74
        Workspace EditTextView TextView
32
b6c23dfd5663 *** empty log message ***
claus
parents: 27
diff changeset
    75
"
201
d2888811c664 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
    76
! !
d2888811c664 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
    77
d2888811c664 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
    78
!CodeView methodsFor:'accessing'!
d2888811c664 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
    79
d2888811c664 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
    80
explainAction:aBlock
d2888811c664 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
    81
    "set the action to be performed on explain"
d2888811c664 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
    82
d2888811c664 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
    83
    explainAction := aBlock
1625
2203f9f0d3f3 preps for formatting;
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
    84
!
2203f9f0d3f3 preps for formatting;
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
    85
2203f9f0d3f3 preps for formatting;
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
    86
formatAction:aBlock
2203f9f0d3f3 preps for formatting;
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
    87
    "set the action to be performed on format"
2203f9f0d3f3 preps for formatting;
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
    88
2203f9f0d3f3 preps for formatting;
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
    89
    formatAction := aBlock
2203f9f0d3f3 preps for formatting;
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
    90
2203f9f0d3f3 preps for formatting;
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
    91
    "Created: / 17.2.1998 / 17:05:13 / cg"
1749
0d0f27322523 hook for pointerOverWord actions (quick explain)
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
    92
!
0d0f27322523 hook for pointerOverWord actions (quick explain)
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
    93
0d0f27322523 hook for pointerOverWord actions (quick explain)
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
    94
pointerOverWordAction:aBlock
0d0f27322523 hook for pointerOverWord actions (quick explain)
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
    95
    pointerOverWordAction := aBlock.
0d0f27322523 hook for pointerOverWord actions (quick explain)
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
    96
    pointerOverWordAction notNil ifTrue:[
0d0f27322523 hook for pointerOverWord actions (quick explain)
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
    97
        self enableMotionEvents.
0d0f27322523 hook for pointerOverWord actions (quick explain)
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
    98
    ] ifFalse:[
0d0f27322523 hook for pointerOverWord actions (quick explain)
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
    99
        self disableMotionEvents
0d0f27322523 hook for pointerOverWord actions (quick explain)
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   100
    ]
0d0f27322523 hook for pointerOverWord actions (quick explain)
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   101
0d0f27322523 hook for pointerOverWord actions (quick explain)
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   102
201
d2888811c664 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   103
! !
d2888811c664 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   104
3021
31557e9be5ec autoIndent
Claus Gittinger <cg@exept.de>
parents: 2922
diff changeset
   105
!CodeView methodsFor:'cursor handling'!
31557e9be5ec autoIndent
Claus Gittinger <cg@exept.de>
parents: 2922
diff changeset
   106
31557e9be5ec autoIndent
Claus Gittinger <cg@exept.de>
parents: 2922
diff changeset
   107
cursorReturn
31557e9be5ec autoIndent
Claus Gittinger <cg@exept.de>
parents: 2922
diff changeset
   108
    |wasOn line newCol |
31557e9be5ec autoIndent
Claus Gittinger <cg@exept.de>
parents: 2922
diff changeset
   109
31557e9be5ec autoIndent
Claus Gittinger <cg@exept.de>
parents: 2922
diff changeset
   110
    "/ make Jan's enhancement dependent on
3022
1b6d4d75a3d0 autoIndent
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   111
    "/ the st80EditMode-flag setting - to avoid confusing
3291
ec6a99aad5e8 comments
Stefan Vogel <sv@exept.de>
parents: 3252
diff changeset
   112
    "/ those who are used to the old behavior.
3021
31557e9be5ec autoIndent
Claus Gittinger <cg@exept.de>
parents: 2922
diff changeset
   113
    "/ for Jan: 
3291
ec6a99aad5e8 comments
Stefan Vogel <sv@exept.de>
parents: 3252
diff changeset
   114
    "/     st80EditMode is configured in the settings-Editor dialog
3022
1b6d4d75a3d0 autoIndent
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   115
    "/ and saved/restored with the userPreferences.
1b6d4d75a3d0 autoIndent
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   116
1b6d4d75a3d0 autoIndent
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   117
    (self st80EditMode not
3021
31557e9be5ec autoIndent
Claus Gittinger <cg@exept.de>
parents: 2922
diff changeset
   118
    or:[cursorLine == 1]) ifTrue:[
31557e9be5ec autoIndent
Claus Gittinger <cg@exept.de>
parents: 2922
diff changeset
   119
        super cursorReturn.
31557e9be5ec autoIndent
Claus Gittinger <cg@exept.de>
parents: 2922
diff changeset
   120
        ^ self.
31557e9be5ec autoIndent
Claus Gittinger <cg@exept.de>
parents: 2922
diff changeset
   121
    ].
31557e9be5ec autoIndent
Claus Gittinger <cg@exept.de>
parents: 2922
diff changeset
   122
    wasOn := self hideCursor .
31557e9be5ec autoIndent
Claus Gittinger <cg@exept.de>
parents: 2922
diff changeset
   123
    line := self listAt:cursorLine.
3022
1b6d4d75a3d0 autoIndent
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   124
    newCol := line size == 0
1b6d4d75a3d0 autoIndent
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   125
                    ifTrue:[1]
1b6d4d75a3d0 autoIndent
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   126
                    ifFalse:[line indexOfNonSeparator].
3021
31557e9be5ec autoIndent
Claus Gittinger <cg@exept.de>
parents: 2922
diff changeset
   127
    super cursorReturn.
31557e9be5ec autoIndent
Claus Gittinger <cg@exept.de>
parents: 2922
diff changeset
   128
    line := self listAt:cursorLine.
3022
1b6d4d75a3d0 autoIndent
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   129
3021
31557e9be5ec autoIndent
Claus Gittinger <cg@exept.de>
parents: 2922
diff changeset
   130
3022
1b6d4d75a3d0 autoIndent
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   131
    newCol := line size == 0
1b6d4d75a3d0 autoIndent
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   132
                    ifTrue:[newCol]
1b6d4d75a3d0 autoIndent
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   133
                    ifFalse:[line indexOfNonSeparator].
3021
31557e9be5ec autoIndent
Claus Gittinger <cg@exept.de>
parents: 2922
diff changeset
   134
3022
1b6d4d75a3d0 autoIndent
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   135
    self setCursorCol:newCol.
1b6d4d75a3d0 autoIndent
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   136
    self makeCursorVisibleAndShowCursor:wasOn
3021
31557e9be5ec autoIndent
Claus Gittinger <cg@exept.de>
parents: 2922
diff changeset
   137
31557e9be5ec autoIndent
Claus Gittinger <cg@exept.de>
parents: 2922
diff changeset
   138
    "Created: / 8.8.2004 / 18:59:55 / janfrog"
31557e9be5ec autoIndent
Claus Gittinger <cg@exept.de>
parents: 2922
diff changeset
   139
    "Modified: / 8.8.2004 / 20:32:48 / janfrog"
31557e9be5ec autoIndent
Claus Gittinger <cg@exept.de>
parents: 2922
diff changeset
   140
! !
31557e9be5ec autoIndent
Claus Gittinger <cg@exept.de>
parents: 2922
diff changeset
   141
201
d2888811c664 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   142
!CodeView methodsFor:'event handling'!
d2888811c664 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   143
2382
f47c847636de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2300
diff changeset
   144
buttonMotion:buttonState x:x y:y
1749
0d0f27322523 hook for pointerOverWord actions (quick explain)
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   145
    |col line word|
0d0f27322523 hook for pointerOverWord actions (quick explain)
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   146
0d0f27322523 hook for pointerOverWord actions (quick explain)
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   147
    pointerOverWordAction notNil ifTrue:[
2382
f47c847636de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2300
diff changeset
   148
        buttonState == 0 ifTrue:[
1749
0d0f27322523 hook for pointerOverWord actions (quick explain)
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   149
            line := self visibleLineOfY:y.
0d0f27322523 hook for pointerOverWord actions (quick explain)
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   150
            col := self colOfX:x inVisibleLine:line.
0d0f27322523 hook for pointerOverWord actions (quick explain)
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   151
            line := self visibleLineToAbsoluteLine:line.
0d0f27322523 hook for pointerOverWord actions (quick explain)
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   152
3891
e1e2624accf8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3798
diff changeset
   153
            self wordAtLine:line col:col do:[
e1e2624accf8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3798
diff changeset
   154
                :selectLine :beginCol :endLine :endCol :flag |
e1e2624accf8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3798
diff changeset
   155
1749
0d0f27322523 hook for pointerOverWord actions (quick explain)
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   156
                word := self listAt:selectLine from:beginCol to:endCol.
0d0f27322523 hook for pointerOverWord actions (quick explain)
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   157
                word notNil ifTrue:[
0d0f27322523 hook for pointerOverWord actions (quick explain)
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   158
                    pointerOverWordAction value:word value:line value:col
0d0f27322523 hook for pointerOverWord actions (quick explain)
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   159
                ]
0d0f27322523 hook for pointerOverWord actions (quick explain)
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   160
            ].
0d0f27322523 hook for pointerOverWord actions (quick explain)
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   161
            ^ self
0d0f27322523 hook for pointerOverWord actions (quick explain)
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   162
        ].
0d0f27322523 hook for pointerOverWord actions (quick explain)
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   163
    ].
2382
f47c847636de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2300
diff changeset
   164
    super buttonMotion:buttonState x:x y:y
1749
0d0f27322523 hook for pointerOverWord actions (quick explain)
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   165
!
0d0f27322523 hook for pointerOverWord actions (quick explain)
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   166
201
d2888811c664 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   167
keyPress:key x:x y:y
d2888811c664 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   168
    "catch keyboard shortcuts"
d2888811c664 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   169
3224
9dd0891a2ff4 comment
Claus Gittinger <cg@exept.de>
parents: 3128
diff changeset
   170
    <resource: #keyboard (#Format #Explain #Help 
9dd0891a2ff4 comment
Claus Gittinger <cg@exept.de>
parents: 3128
diff changeset
   171
                          #CommentSelection #UncommentSelection)>
201
d2888811c664 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   172
3798
5c318886e8da code formatting
Claus Gittinger <cg@exept.de>
parents: 3784
diff changeset
   173
    (key == #Format)  ifTrue:[self format. ^ self].
5c318886e8da code formatting
Claus Gittinger <cg@exept.de>
parents: 3784
diff changeset
   174
    (key == #Explain) ifTrue:[self explain. ^ self].
5c318886e8da code formatting
Claus Gittinger <cg@exept.de>
parents: 3784
diff changeset
   175
    (key == #Help)    ifTrue:[self explain. ^ self].
5c318886e8da code formatting
Claus Gittinger <cg@exept.de>
parents: 3784
diff changeset
   176
    (key == #CommentSelection)    ifTrue:[self commentSelection. ^ self].
5c318886e8da code formatting
Claus Gittinger <cg@exept.de>
parents: 3784
diff changeset
   177
    (key == #UncommentSelection)  ifTrue:[self uncommentSelection. ^ self].
201
d2888811c664 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   178
d2888811c664 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   179
    super keyPress:key x:x y:y
922
e6a5e1cf9565 resource spec updated
Claus Gittinger <cg@exept.de>
parents: 918
diff changeset
   180
1625
2203f9f0d3f3 preps for formatting;
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
   181
    "Modified: / 17.2.1998 / 17:05:23 / cg"
32
b6c23dfd5663 *** empty log message ***
claus
parents: 27
diff changeset
   182
! !
b6c23dfd5663 *** empty log message ***
claus
parents: 27
diff changeset
   183
419
2bd5f73fffd2 commentary
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
   184
!CodeView methodsFor:'menu & menu actions'!
2bd5f73fffd2 commentary
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
   185
2bd5f73fffd2 commentary
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
   186
accept
2bd5f73fffd2 commentary
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
   187
    "redefined accept action;
2bd5f73fffd2 commentary
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
   188
     save cursor and selection to allow restore in case of an error
2bd5f73fffd2 commentary
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
   189
     (we are typically compiling here ... and the compiler may show
2bd5f73fffd2 commentary
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
   190
     errors by highlighting them)"
2bd5f73fffd2 commentary
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
   191
1106
7afde7c75396 added #disableAccept interface
Claus Gittinger <cg@exept.de>
parents: 922
diff changeset
   192
    acceptEnabled == false ifTrue:[
3047
24bcca846c20 Send #beep to window instead of device
Stefan Vogel <sv@exept.de>
parents: 3022
diff changeset
   193
        self beep.
1106
7afde7c75396 added #disableAccept interface
Claus Gittinger <cg@exept.de>
parents: 922
diff changeset
   194
        ^ self
7afde7c75396 added #disableAccept interface
Claus Gittinger <cg@exept.de>
parents: 922
diff changeset
   195
    ].
7afde7c75396 added #disableAccept interface
Claus Gittinger <cg@exept.de>
parents: 922
diff changeset
   196
419
2bd5f73fffd2 commentary
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
   197
    codeStartPosition := 1.
2bd5f73fffd2 commentary
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
   198
    [
1106
7afde7c75396 added #disableAccept interface
Claus Gittinger <cg@exept.de>
parents: 922
diff changeset
   199
        AbortSignal handle:[:ex |
7afde7c75396 added #disableAccept interface
Claus Gittinger <cg@exept.de>
parents: 922
diff changeset
   200
            self cursor:Cursor normal.
7afde7c75396 added #disableAccept interface
Claus Gittinger <cg@exept.de>
parents: 922
diff changeset
   201
            "redraw selection in normal color"
7afde7c75396 added #disableAccept interface
Claus Gittinger <cg@exept.de>
parents: 922
diff changeset
   202
            self selectFromLine:selectionStartLine col:selectionStartCol 
7afde7c75396 added #disableAccept interface
Claus Gittinger <cg@exept.de>
parents: 922
diff changeset
   203
                         toLine:selectionEndLine col:selectionEndCol.
7afde7c75396 added #disableAccept interface
Claus Gittinger <cg@exept.de>
parents: 922
diff changeset
   204
            ex return
7afde7c75396 added #disableAccept interface
Claus Gittinger <cg@exept.de>
parents: 922
diff changeset
   205
        ] do:[
7afde7c75396 added #disableAccept interface
Claus Gittinger <cg@exept.de>
parents: 922
diff changeset
   206
            super accept.
7afde7c75396 added #disableAccept interface
Claus Gittinger <cg@exept.de>
parents: 922
diff changeset
   207
        ]
2522
d80496af7eaf #valueNowOrOnUnwindDo: -> #ensure:
Claus Gittinger <cg@exept.de>
parents: 2460
diff changeset
   208
    ] ensure:[
1106
7afde7c75396 added #disableAccept interface
Claus Gittinger <cg@exept.de>
parents: 922
diff changeset
   209
        self unselect.
419
2bd5f73fffd2 commentary
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
   210
    ]
1106
7afde7c75396 added #disableAccept interface
Claus Gittinger <cg@exept.de>
parents: 922
diff changeset
   211
7afde7c75396 added #disableAccept interface
Claus Gittinger <cg@exept.de>
parents: 922
diff changeset
   212
    "Modified: 7.3.1997 / 11:06:13 / cg"
419
2bd5f73fffd2 commentary
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
   213
!
2bd5f73fffd2 commentary
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
   214
97
cbf495fe3b64 *** empty log message ***
claus
parents: 95
diff changeset
   215
editMenu
121
claus
parents: 118
diff changeset
   216
    "return the popUpMenu;
claus
parents: 118
diff changeset
   217
     to make this independent from what is defined in superclasses,
claus
parents: 118
diff changeset
   218
     get the superclass menu and add my functions."
131
claus
parents: 125
diff changeset
   219
2460
Claus Gittinger <cg@exept.de>
parents: 2403
diff changeset
   220
    <resource: #keyboard ( 
2046
3593143e38e3 added #format.
Claus Gittinger <cg@exept.de>
parents: 1749
diff changeset
   221
                          #Accept #Explain #Format)>
1261
bdb18f73205c resource flag: #menu -> #programMenu
Claus Gittinger <cg@exept.de>
parents: 1106
diff changeset
   222
    <resource: #programMenu>
489
5816aa12fec8 resources
Claus Gittinger <cg@exept.de>
parents: 464
diff changeset
   223
3252
b44361e6b97a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3224
diff changeset
   224
    |m sub subsub sensor|
38
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 32
diff changeset
   225
97
cbf495fe3b64 *** empty log message ***
claus
parents: 95
diff changeset
   226
    m := super editMenu.
3252
b44361e6b97a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3224
diff changeset
   227
    ((sensor := self sensor) notNil and:[sensor ctrlDown and:[sensor shiftDown not]]) ifTrue:[
2460
Claus Gittinger <cg@exept.de>
parents: 2403
diff changeset
   228
        sub := m.
Claus Gittinger <cg@exept.de>
parents: 2403
diff changeset
   229
        m := nil.
Claus Gittinger <cg@exept.de>
parents: 2403
diff changeset
   230
    ] ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 2403
diff changeset
   231
        sub := m subMenuAt:#others.
Claus Gittinger <cg@exept.de>
parents: 2403
diff changeset
   232
    ].
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   233
2460
Claus Gittinger <cg@exept.de>
parents: 2403
diff changeset
   234
    m notNil ifTrue:[
430
022b667e0d70 added accelerator display
Claus Gittinger <cg@exept.de>
parents: 419
diff changeset
   235
        "
022b667e0d70 added accelerator display
Claus Gittinger <cg@exept.de>
parents: 419
diff changeset
   236
         codeViews do support #accept
022b667e0d70 added accelerator display
Claus Gittinger <cg@exept.de>
parents: 419
diff changeset
   237
         ... add it after #inspectIt
022b667e0d70 added accelerator display
Claus Gittinger <cg@exept.de>
parents: 419
diff changeset
   238
        "
2867
4d21f141d0c9 menu reorganized
Claus Gittinger <cg@exept.de>
parents: 2730
diff changeset
   239
        m 
4d21f141d0c9 menu reorganized
Claus Gittinger <cg@exept.de>
parents: 2730
diff changeset
   240
          addItemList:#(
4d21f141d0c9 menu reorganized
Claus Gittinger <cg@exept.de>
parents: 2730
diff changeset
   241
                ('-')
4d21f141d0c9 menu reorganized
Claus Gittinger <cg@exept.de>
parents: 2730
diff changeset
   242
                ('Accept'       accept          Accept)       
4d21f141d0c9 menu reorganized
Claus Gittinger <cg@exept.de>
parents: 2730
diff changeset
   243
            )
2922
70e3f3ec7980 oops - doIt and friends were not translated
Claus Gittinger <cg@exept.de>
parents: 2867
diff changeset
   244
          resources:resources  
464
6bd2186ca548 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 430
diff changeset
   245
          after:#inspectIt.
131
claus
parents: 125
diff changeset
   246
1293
c0806b73dc48 disable accept menuItem, if there is no acceptAction
Claus Gittinger <cg@exept.de>
parents: 1261
diff changeset
   247
        (acceptEnabled == false 
c0806b73dc48 disable accept menuItem, if there is no acceptAction
Claus Gittinger <cg@exept.de>
parents: 1261
diff changeset
   248
        or:[acceptAction isNil]) ifTrue:[
1106
7afde7c75396 added #disableAccept interface
Claus Gittinger <cg@exept.de>
parents: 922
diff changeset
   249
            m disable:#accept
7afde7c75396 added #disableAccept interface
Claus Gittinger <cg@exept.de>
parents: 922
diff changeset
   250
        ].
2460
Claus Gittinger <cg@exept.de>
parents: 2403
diff changeset
   251
    ].
1106
7afde7c75396 added #disableAccept interface
Claus Gittinger <cg@exept.de>
parents: 922
diff changeset
   252
2460
Claus Gittinger <cg@exept.de>
parents: 2403
diff changeset
   253
    sub notNil ifTrue:[
430
022b667e0d70 added accelerator display
Claus Gittinger <cg@exept.de>
parents: 419
diff changeset
   254
        "
022b667e0d70 added accelerator display
Claus Gittinger <cg@exept.de>
parents: 419
diff changeset
   255
         and add #explain after $gotoLine in the extra menu
022b667e0d70 added accelerator display
Claus Gittinger <cg@exept.de>
parents: 419
diff changeset
   256
        "
2867
4d21f141d0c9 menu reorganized
Claus Gittinger <cg@exept.de>
parents: 2730
diff changeset
   257
        sub 
4d21f141d0c9 menu reorganized
Claus Gittinger <cg@exept.de>
parents: 2730
diff changeset
   258
          addItemList:#(
4d21f141d0c9 menu reorganized
Claus Gittinger <cg@exept.de>
parents: 2730
diff changeset
   259
                ('-')
4d21f141d0c9 menu reorganized
Claus Gittinger <cg@exept.de>
parents: 2730
diff changeset
   260
                ('Explain'       explain          Explain)       
4d21f141d0c9 menu reorganized
Claus Gittinger <cg@exept.de>
parents: 2730
diff changeset
   261
            )
2922
70e3f3ec7980 oops - doIt and friends were not translated
Claus Gittinger <cg@exept.de>
parents: 2867
diff changeset
   262
          resources:resources  
2867
4d21f141d0c9 menu reorganized
Claus Gittinger <cg@exept.de>
parents: 2730
diff changeset
   263
          after:#gotoLine.
430
022b667e0d70 added accelerator display
Claus Gittinger <cg@exept.de>
parents: 419
diff changeset
   264
2460
Claus Gittinger <cg@exept.de>
parents: 2403
diff changeset
   265
        formatAction notNil ifTrue:[
2867
4d21f141d0c9 menu reorganized
Claus Gittinger <cg@exept.de>
parents: 2730
diff changeset
   266
            subsub := sub subMenuAt:#tools.
4d21f141d0c9 menu reorganized
Claus Gittinger <cg@exept.de>
parents: 2730
diff changeset
   267
4d21f141d0c9 menu reorganized
Claus Gittinger <cg@exept.de>
parents: 2730
diff changeset
   268
            subsub notNil ifTrue:[
4d21f141d0c9 menu reorganized
Claus Gittinger <cg@exept.de>
parents: 2730
diff changeset
   269
                subsub
4d21f141d0c9 menu reorganized
Claus Gittinger <cg@exept.de>
parents: 2730
diff changeset
   270
                  addItemList:#(
4d21f141d0c9 menu reorganized
Claus Gittinger <cg@exept.de>
parents: 2730
diff changeset
   271
                        ('Format'       format          Format)       
4d21f141d0c9 menu reorganized
Claus Gittinger <cg@exept.de>
parents: 2730
diff changeset
   272
                    )
2922
70e3f3ec7980 oops - doIt and friends were not translated
Claus Gittinger <cg@exept.de>
parents: 2867
diff changeset
   273
                  resources:resources  
2867
4d21f141d0c9 menu reorganized
Claus Gittinger <cg@exept.de>
parents: 2730
diff changeset
   274
                  after:#indent.
4d21f141d0c9 menu reorganized
Claus Gittinger <cg@exept.de>
parents: 2730
diff changeset
   275
            ].
2460
Claus Gittinger <cg@exept.de>
parents: 2403
diff changeset
   276
        ].
Claus Gittinger <cg@exept.de>
parents: 2403
diff changeset
   277
        (self hasSelection not
Claus Gittinger <cg@exept.de>
parents: 2403
diff changeset
   278
        or:[explainAction isNil]) ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 2403
diff changeset
   279
            sub disable:#explain 
430
022b667e0d70 added accelerator display
Claus Gittinger <cg@exept.de>
parents: 419
diff changeset
   280
        ].
59
450ce95a72a4 *** empty log message ***
claus
parents: 38
diff changeset
   281
    ].
2460
Claus Gittinger <cg@exept.de>
parents: 2403
diff changeset
   282
    ^ m ? sub.
430
022b667e0d70 added accelerator display
Claus Gittinger <cg@exept.de>
parents: 419
diff changeset
   283
2460
Claus Gittinger <cg@exept.de>
parents: 2403
diff changeset
   284
    "Modified: / 12.11.2001 / 16:04:46 / cg"
136
claus
parents: 132
diff changeset
   285
!
claus
parents: 132
diff changeset
   286
201
d2888811c664 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   287
explain
d2888811c664 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   288
    "explain action;
d2888811c664 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   289
     evaluate the explainBlock passing whole contents and 
d2888811c664 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   290
     selection as arguments."
d2888811c664 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   291
d2888811c664 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   292
    |text|
d2888811c664 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   293
d2888811c664 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   294
    explainAction notNil ifTrue:[
d2888811c664 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   295
	text := self selection.
d2888811c664 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   296
	text notNil ifTrue:[
d2888811c664 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   297
	    explainAction value:(self contents) value:(text asString)
d2888811c664 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   298
	]
d2888811c664 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   299
    ]
1625
2203f9f0d3f3 preps for formatting;
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
   300
!
2203f9f0d3f3 preps for formatting;
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
   301
2203f9f0d3f3 preps for formatting;
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
   302
format
2203f9f0d3f3 preps for formatting;
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
   303
    "format action;
2203f9f0d3f3 preps for formatting;
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
   304
     evaluate the formatBlock passing whole contents as argument."
2203f9f0d3f3 preps for formatting;
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
   305
2203f9f0d3f3 preps for formatting;
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
   306
    |text|
2203f9f0d3f3 preps for formatting;
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
   307
2203f9f0d3f3 preps for formatting;
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
   308
    formatAction notNil ifTrue:[
3128
a800566f5662 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3047
diff changeset
   309
        text := self contents.
a800566f5662 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3047
diff changeset
   310
        text notNil ifTrue:[
a800566f5662 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3047
diff changeset
   311
            self 
a800566f5662 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3047
diff changeset
   312
                undoableDo:[ formatAction value:(text asString) ]
3784
5e8b5e4102af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3291
diff changeset
   313
                info:'Format'
3128
a800566f5662 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3047
diff changeset
   314
        ]
1625
2203f9f0d3f3 preps for formatting;
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
   315
    ]
2203f9f0d3f3 preps for formatting;
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
   316
2203f9f0d3f3 preps for formatting;
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
   317
    "Created: / 17.2.1998 / 17:06:18 / cg"
2203f9f0d3f3 preps for formatting;
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
   318
    "Modified: / 17.2.1998 / 18:25:33 / cg"
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   319
! !
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   320
206
2363a64a7c88 version at the end
Claus Gittinger <cg@exept.de>
parents: 201
diff changeset
   321
!CodeView class methodsFor:'documentation'!
2363a64a7c88 version at the end
Claus Gittinger <cg@exept.de>
parents: 201
diff changeset
   322
2363a64a7c88 version at the end
Claus Gittinger <cg@exept.de>
parents: 201
diff changeset
   323
version
3891
e1e2624accf8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3798
diff changeset
   324
    ^ '$Header: /cvs/stx/stx/libwidg/CodeView.st,v 1.61 2009-05-18 14:30:25 cg Exp $'
206
2363a64a7c88 version at the end
Claus Gittinger <cg@exept.de>
parents: 201
diff changeset
   325
! !