ImageEditor.st
author Claus Gittinger <cg@exept.de>
Fri, 31 Jul 1998 01:42:03 +0200
changeset 931 059ac9cea31f
parent 930 4cf126b710b3
child 932 7111238cda23
permissions -rw-r--r--
enterFields grouped.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
400
228524287573 intitial checkin
tz
parents:
diff changeset
     1
"
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
     2
 COPYRIGHT (c) 1997-1998 by eXept Software AG
400
228524287573 intitial checkin
tz
parents:
diff changeset
     3
              All Rights Reserved
228524287573 intitial checkin
tz
parents:
diff changeset
     4
228524287573 intitial checkin
tz
parents:
diff changeset
     5
 This software is furnished under a license and may be used
228524287573 intitial checkin
tz
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
405
8546da96ab11 widgets rearranged for different fonts
tz
parents: 401
diff changeset
     7
 inclusion of the above copyright notice. This software may not
400
228524287573 intitial checkin
tz
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
405
8546da96ab11 widgets rearranged for different fonts
tz
parents: 401
diff changeset
     9
 other person. No title to or ownership of the software is
400
228524287573 intitial checkin
tz
parents:
diff changeset
    10
 hereby transferred.
228524287573 intitial checkin
tz
parents:
diff changeset
    11
"
228524287573 intitial checkin
tz
parents:
diff changeset
    12
228524287573 intitial checkin
tz
parents:
diff changeset
    13
ToolApplicationModel subclass:#ImageEditor
929
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
    14
	instanceVariableNames:'imageEditView colorMapMode selectedColorIndex postOpenAction'
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
    15
	classVariableNames:''
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
    16
	poolDictionaries:''
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
    17
	category:'Interface-UIPainter'
400
228524287573 intitial checkin
tz
parents:
diff changeset
    18
!
228524287573 intitial checkin
tz
parents:
diff changeset
    19
228524287573 intitial checkin
tz
parents:
diff changeset
    20
!ImageEditor class methodsFor:'documentation'!
228524287573 intitial checkin
tz
parents:
diff changeset
    21
228524287573 intitial checkin
tz
parents:
diff changeset
    22
copyright
228524287573 intitial checkin
tz
parents:
diff changeset
    23
"
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
    24
 COPYRIGHT (c) 1997-1998 by eXept Software AG
400
228524287573 intitial checkin
tz
parents:
diff changeset
    25
              All Rights Reserved
228524287573 intitial checkin
tz
parents:
diff changeset
    26
228524287573 intitial checkin
tz
parents:
diff changeset
    27
 This software is furnished under a license and may be used
228524287573 intitial checkin
tz
parents:
diff changeset
    28
 only in accordance with the terms of that license and with the
405
8546da96ab11 widgets rearranged for different fonts
tz
parents: 401
diff changeset
    29
 inclusion of the above copyright notice. This software may not
400
228524287573 intitial checkin
tz
parents:
diff changeset
    30
 be provided or otherwise made available to, or used by, any
405
8546da96ab11 widgets rearranged for different fonts
tz
parents: 401
diff changeset
    31
 other person. No title to or ownership of the software is
400
228524287573 intitial checkin
tz
parents:
diff changeset
    32
 hereby transferred.
228524287573 intitial checkin
tz
parents:
diff changeset
    33
"
228524287573 intitial checkin
tz
parents:
diff changeset
    34
!
228524287573 intitial checkin
tz
parents:
diff changeset
    35
228524287573 intitial checkin
tz
parents:
diff changeset
    36
documentation
228524287573 intitial checkin
tz
parents:
diff changeset
    37
"
737
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
    38
    Image Editor allows you to create, design, modify or just inspect images.
400
228524287573 intitial checkin
tz
parents:
diff changeset
    39
228524287573 intitial checkin
tz
parents:
diff changeset
    40
    [start with:]
228524287573 intitial checkin
tz
parents:
diff changeset
    41
        ImageEditor open
228524287573 intitial checkin
tz
parents:
diff changeset
    42
        ImageEditor openOnClass:ImageEditor andSelector:#newImageIcon
228524287573 intitial checkin
tz
parents:
diff changeset
    43
228524287573 intitial checkin
tz
parents:
diff changeset
    44
    [see also:]
228524287573 intitial checkin
tz
parents:
diff changeset
    45
        ImageEditView Image
228524287573 intitial checkin
tz
parents:
diff changeset
    46
228524287573 intitial checkin
tz
parents:
diff changeset
    47
    [author:]
544
8fa6ee20c3cd help menu item aligned to the right
tz
parents: 535
diff changeset
    48
        Thomas Zwick, eXept Software AG
400
228524287573 intitial checkin
tz
parents:
diff changeset
    49
"
228524287573 intitial checkin
tz
parents:
diff changeset
    50
! !
228524287573 intitial checkin
tz
parents:
diff changeset
    51
228524287573 intitial checkin
tz
parents:
diff changeset
    52
!ImageEditor class methodsFor:'instance creation'!
228524287573 intitial checkin
tz
parents:
diff changeset
    53
228524287573 intitial checkin
tz
parents:
diff changeset
    54
openModalOnClass: aClass andSelector: aSelector
900
5dd8303a9bb5 opens an Image Editor in any case
tz
parents: 899
diff changeset
    55
    "opens modal a Image Editor on aClass and aSelector"
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
    56
    "
ed96f735dab1 comments added
tz
parents: 763
diff changeset
    57
     self openModalOnClass: self andSelector: #leftMouseKeyIcon
ed96f735dab1 comments added
tz
parents: 763
diff changeset
    58
    "
400
228524287573 intitial checkin
tz
parents:
diff changeset
    59
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
    60
    |imageEditor imageEditView className resourceClassName resourceSelector| 
ed96f735dab1 comments added
tz
parents: 763
diff changeset
    61
400
228524287573 intitial checkin
tz
parents:
diff changeset
    62
    imageEditor := self new.
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
    63
900
5dd8303a9bb5 opens an Image Editor in any case
tz
parents: 899
diff changeset
    64
    aClass isClass  ifTrue: [className := aClass name].
5dd8303a9bb5 opens an Image Editor in any case
tz
parents: 899
diff changeset
    65
    aClass isString ifTrue: [className := aClass].      
903
63203d996e61 openModal bug fixed
tz
parents: 901
diff changeset
    66
    aClass isNil    ifTrue: [className := ''].      
400
228524287573 intitial checkin
tz
parents:
diff changeset
    67
688
788fe83ab3c0 time clock removed
tz
parents: 679
diff changeset
    68
    imageEditor postOpenAction: [imageEditView := imageEditor imageEditView. imageEditor loadFromOrPrepareForMessage: className, ' ', aSelector].
400
228524287573 intitial checkin
tz
parents:
diff changeset
    69
    imageEditor openModal.
228524287573 intitial checkin
tz
parents:
diff changeset
    70
688
788fe83ab3c0 time clock removed
tz
parents: 679
diff changeset
    71
    resourceClassName := imageEditView resourceClass.
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
    72
    resourceSelector  := imageEditView resourceSelector.
415
f792d83774b3 with modal support
tz
parents: 405
diff changeset
    73
815
b2b9356a648c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 767
diff changeset
    74
    ((className asString ~= resourceClassName) 
b2b9356a648c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 767
diff changeset
    75
    or:[aSelector asString ~= resourceSelector])
415
f792d83774b3 with modal support
tz
parents: 405
diff changeset
    76
        ifTrue: [^resourceClassName, ' ', resourceSelector]
f792d83774b3 with modal support
tz
parents: 405
diff changeset
    77
        ifFalse:[^nil]
400
228524287573 intitial checkin
tz
parents:
diff changeset
    78
!
228524287573 intitial checkin
tz
parents:
diff changeset
    79
228524287573 intitial checkin
tz
parents:
diff changeset
    80
openOnClass: aClass andSelector: aSelector
900
5dd8303a9bb5 opens an Image Editor in any case
tz
parents: 899
diff changeset
    81
    "opens a Image Editor on aClass and aSelector"
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
    82
    "
ed96f735dab1 comments added
tz
parents: 763
diff changeset
    83
     self openOnClass: self andSelector: #leftMouseKeyIcon
ed96f735dab1 comments added
tz
parents: 763
diff changeset
    84
    "
400
228524287573 intitial checkin
tz
parents:
diff changeset
    85
228524287573 intitial checkin
tz
parents:
diff changeset
    86
    ^self open loadFromMessage: aClass name, ' ', aSelector
228524287573 intitial checkin
tz
parents:
diff changeset
    87
!
228524287573 intitial checkin
tz
parents:
diff changeset
    88
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
    89
openOnFile: aFileName
900
5dd8303a9bb5 opens an Image Editor in any case
tz
parents: 899
diff changeset
    90
    "opens a Image Editor on aFileName"
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
    91
    "
ed96f735dab1 comments added
tz
parents: 763
diff changeset
    92
     self openOnFile: 'bitmaps/SmalltalkX.xbm'
ed96f735dab1 comments added
tz
parents: 763
diff changeset
    93
    "
400
228524287573 intitial checkin
tz
parents:
diff changeset
    94
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
    95
    ^self open loadFromFile: aFileName
400
228524287573 intitial checkin
tz
parents:
diff changeset
    96
!
228524287573 intitial checkin
tz
parents:
diff changeset
    97
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
    98
openOnImage: anImage
900
5dd8303a9bb5 opens an Image Editor in any case
tz
parents: 899
diff changeset
    99
    "opens a Image Editor on anImage"
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   100
    "
895
69269bc88320 checkin from browser
tz
parents: 880
diff changeset
   101
     self openOnImage: Icon startIcon
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   102
    "
400
228524287573 intitial checkin
tz
parents:
diff changeset
   103
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   104
    ^self open loadFromImage: anImage
400
228524287573 intitial checkin
tz
parents:
diff changeset
   105
! !
228524287573 intitial checkin
tz
parents:
diff changeset
   106
228524287573 intitial checkin
tz
parents:
diff changeset
   107
!ImageEditor class methodsFor:'accessing'!
228524287573 intitial checkin
tz
parents:
diff changeset
   108
228524287573 intitial checkin
tz
parents:
diff changeset
   109
listOfColorMaps
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   110
    "returns the list of default color maps for a new image"
400
228524287573 intitial checkin
tz
parents:
diff changeset
   111
228524287573 intitial checkin
tz
parents:
diff changeset
   112
    |colorMap|
898
d2ae6ce33fec bugs fixed in undo/mask and pasting
tz
parents: 895
diff changeset
   113
400
228524287573 intitial checkin
tz
parents:
diff changeset
   114
    (colorMap := OrderedCollection new)
228524287573 intitial checkin
tz
parents:
diff changeset
   115
        add: Color black;
228524287573 intitial checkin
tz
parents:
diff changeset
   116
        add: Color white;
228524287573 intitial checkin
tz
parents:
diff changeset
   117
        add: Color red;
228524287573 intitial checkin
tz
parents:
diff changeset
   118
        add: Color green;
228524287573 intitial checkin
tz
parents:
diff changeset
   119
        add: Color blue;
228524287573 intitial checkin
tz
parents:
diff changeset
   120
        add: Color cyan;
228524287573 intitial checkin
tz
parents:
diff changeset
   121
        add: Color yellow;
228524287573 intitial checkin
tz
parents:
diff changeset
   122
        add: Color magenta;
898
d2ae6ce33fec bugs fixed in undo/mask and pasting
tz
parents: 895
diff changeset
   123
        add: (Color redByte: 127 greenByte:   0 blueByte:   0);
d2ae6ce33fec bugs fixed in undo/mask and pasting
tz
parents: 895
diff changeset
   124
        add: (Color redByte:   0 greenByte: 127 blueByte:   0);
d2ae6ce33fec bugs fixed in undo/mask and pasting
tz
parents: 895
diff changeset
   125
        add: (Color redByte:   0 greenByte:   0 blueByte: 127);
d2ae6ce33fec bugs fixed in undo/mask and pasting
tz
parents: 895
diff changeset
   126
        add: (Color redByte:   0 greenByte: 127 blueByte: 127);
d2ae6ce33fec bugs fixed in undo/mask and pasting
tz
parents: 895
diff changeset
   127
        add: (Color redByte: 127 greenByte: 127 blueByte:   0);
d2ae6ce33fec bugs fixed in undo/mask and pasting
tz
parents: 895
diff changeset
   128
        add: (Color redByte: 127 greenByte:   0 blueByte: 127);
d2ae6ce33fec bugs fixed in undo/mask and pasting
tz
parents: 895
diff changeset
   129
        add: (Color redByte: 127 greenByte: 127 blueByte: 127);
d2ae6ce33fec bugs fixed in undo/mask and pasting
tz
parents: 895
diff changeset
   130
        add: (Color redByte: 170 greenByte: 170 blueByte: 170).
d2ae6ce33fec bugs fixed in undo/mask and pasting
tz
parents: 895
diff changeset
   131
400
228524287573 intitial checkin
tz
parents:
diff changeset
   132
    0 to: 5 do:
228524287573 intitial checkin
tz
parents:
diff changeset
   133
    [:r|                                                    
228524287573 intitial checkin
tz
parents:
diff changeset
   134
        0 to: 5 do:         
228524287573 intitial checkin
tz
parents:
diff changeset
   135
        [:g|
228524287573 intitial checkin
tz
parents:
diff changeset
   136
            0 to: 5 do:                             
228524287573 intitial checkin
tz
parents:
diff changeset
   137
            [:b|
898
d2ae6ce33fec bugs fixed in undo/mask and pasting
tz
parents: 895
diff changeset
   138
                colorMap add: (Color redByte: (r*255//5) ceiling greenByte: (g*255//5) ceiling blueByte: (b*255//5) ceiling)
400
228524287573 intitial checkin
tz
parents:
diff changeset
   139
            ]
228524287573 intitial checkin
tz
parents:
diff changeset
   140
        ]
228524287573 intitial checkin
tz
parents:
diff changeset
   141
    ].
228524287573 intitial checkin
tz
parents:
diff changeset
   142
228524287573 intitial checkin
tz
parents:
diff changeset
   143
    1 to: 25 do:
228524287573 intitial checkin
tz
parents:
diff changeset
   144
    [:g|                             
898
d2ae6ce33fec bugs fixed in undo/mask and pasting
tz
parents: 895
diff changeset
   145
        colorMap add: (Color redByte: (g*255//26) ceiling greenByte: (g*255//26) ceiling blueByte: (g*255//26) ceiling)
400
228524287573 intitial checkin
tz
parents:
diff changeset
   146
    ].
228524287573 intitial checkin
tz
parents:
diff changeset
   147
228524287573 intitial checkin
tz
parents:
diff changeset
   148
    ^Dictionary new
228524287573 intitial checkin
tz
parents:
diff changeset
   149
        at: '8-plane' put: colorMap;
228524287573 intitial checkin
tz
parents:
diff changeset
   150
        at: '8-plane + mask' put: colorMap;
228524287573 intitial checkin
tz
parents:
diff changeset
   151
        at: '4-plane' put: (colorMap copyFrom: 1 to: 16);
228524287573 intitial checkin
tz
parents:
diff changeset
   152
        at: '4-plane + mask' put: (colorMap copyFrom: 1 to: 16);
228524287573 intitial checkin
tz
parents:
diff changeset
   153
        at: '2-plane' put: (colorMap copyFrom: 1 to: 4);
228524287573 intitial checkin
tz
parents:
diff changeset
   154
        at: '2-plane + mask' put: (colorMap copyFrom: 1 to: 4);
228524287573 intitial checkin
tz
parents:
diff changeset
   155
        at: '1-plane' put: (colorMap copyFrom: 1 to: 2);
228524287573 intitial checkin
tz
parents:
diff changeset
   156
        at: '1-plane + mask' put: (colorMap copyFrom: 1 to: 2);
228524287573 intitial checkin
tz
parents:
diff changeset
   157
        yourself
228524287573 intitial checkin
tz
parents:
diff changeset
   158
!
228524287573 intitial checkin
tz
parents:
diff changeset
   159
228524287573 intitial checkin
tz
parents:
diff changeset
   160
listOfDefaultSizes
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   161
    "returns the list of default sizes for a new image"
400
228524287573 intitial checkin
tz
parents:
diff changeset
   162
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   163
    ^#('22x22' '16x16' '32x32')
400
228524287573 intitial checkin
tz
parents:
diff changeset
   164
! !
228524287573 intitial checkin
tz
parents:
diff changeset
   165
460
9d141cb07d5e help texts added
tz
parents: 450
diff changeset
   166
!ImageEditor class methodsFor:'help specs'!
9d141cb07d5e help texts added
tz
parents: 450
diff changeset
   167
9d141cb07d5e help texts added
tz
parents: 450
diff changeset
   168
helpSpec
737
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   169
    "This resource specification was automatically generated
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   170
     by the UIHelpTool of ST/X."
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   171
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   172
    "Do not manually edit this!! If it is corrupted,
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   173
     the UIHelpTool may not be able to read the specification."
460
9d141cb07d5e help texts added
tz
parents: 450
diff changeset
   174
9d141cb07d5e help texts added
tz
parents: 450
diff changeset
   175
    "
737
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   176
     UIHelpTool openOnClass:ImageEditor    
460
9d141cb07d5e help texts added
tz
parents: 450
diff changeset
   177
    "
9d141cb07d5e help texts added
tz
parents: 450
diff changeset
   178
737
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   179
    <resource: #help>
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   180
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   181
    ^super helpSpec addPairsFrom:#(
460
9d141cb07d5e help texts added
tz
parents: 450
diff changeset
   182
9d141cb07d5e help texts added
tz
parents: 450
diff changeset
   183
#colorMap
929
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   184
'ColorMap functions.'
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   185
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   186
#colorMap1
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   187
'Convert to depth-1 image.'
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   188
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   189
#colorMap2
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   190
'Convert to depth-2 image.'
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   191
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   192
#colorMap4
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   193
'Convert to depth-4 image.'
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   194
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   195
#colorMap8
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   196
'Convert to depth-8 image.'
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   197
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   198
#colorMap1M
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   199
'Convert to depth-1 image plus mask.'
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   200
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   201
#colorMap2M
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   202
'Convert to depth-2 image plus mask.'
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   203
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   204
#colorMap4M
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   205
'Convert to depth-4 image plus mask.'
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   206
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   207
#colorMap8M
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   208
'Convert to depth-8 image plus mask.'
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   209
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   210
#compressColormap
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   211
'Remove unneeded entries from the colorMap.'
460
9d141cb07d5e help texts added
tz
parents: 450
diff changeset
   212
487
6c336c183330 info bar as subSpec to class ToolApplicationModel moved
tz
parents: 475
diff changeset
   213
#colorMapTable
675
25a770a729fc some help text changed
tz
parents: 674
diff changeset
   214
'Shows a list of used colors of the image.'
487
6c336c183330 info bar as subSpec to class ToolApplicationModel moved
tz
parents: 475
diff changeset
   215
460
9d141cb07d5e help texts added
tz
parents: 450
diff changeset
   216
#drawModeBox
914
b4f32d092c8b added paste-under;
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
   217
'Switches to box-drawing mode.'
460
9d141cb07d5e help texts added
tz
parents: 450
diff changeset
   218
9d141cb07d5e help texts added
tz
parents: 450
diff changeset
   219
#drawModeCopy
914
b4f32d092c8b added paste-under;
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
   220
'Switches to area-copy mode.'
460
9d141cb07d5e help texts added
tz
parents: 450
diff changeset
   221
9d141cb07d5e help texts added
tz
parents: 450
diff changeset
   222
#drawModeFill
914
b4f32d092c8b added paste-under;
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
   223
'Switches to flood-fill mode.'
460
9d141cb07d5e help texts added
tz
parents: 450
diff changeset
   224
9d141cb07d5e help texts added
tz
parents: 450
diff changeset
   225
#drawModeFilledBox
914
b4f32d092c8b added paste-under;
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
   226
'Switches to filled-box drawing mode.'
460
9d141cb07d5e help texts added
tz
parents: 450
diff changeset
   227
9d141cb07d5e help texts added
tz
parents: 450
diff changeset
   228
#drawModePaste
914
b4f32d092c8b added paste-under;
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
   229
'Switches to paste mode.'
b4f32d092c8b added paste-under;
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
   230
b4f32d092c8b added paste-under;
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
   231
#drawModePasteUnder
b4f32d092c8b added paste-under;
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
   232
'Switches to paste under mode.'
460
9d141cb07d5e help texts added
tz
parents: 450
diff changeset
   233
9d141cb07d5e help texts added
tz
parents: 450
diff changeset
   234
#drawModePoint
914
b4f32d092c8b added paste-under;
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
   235
'Switches to point-drawing mode.'
460
9d141cb07d5e help texts added
tz
parents: 450
diff changeset
   236
9d141cb07d5e help texts added
tz
parents: 450
diff changeset
   237
#editFlipHorizontal
914
b4f32d092c8b added paste-under;
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
   238
'Flips the image horizontally.'
460
9d141cb07d5e help texts added
tz
parents: 450
diff changeset
   239
9d141cb07d5e help texts added
tz
parents: 450
diff changeset
   240
#editFlipVertical
914
b4f32d092c8b added paste-under;
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
   241
'Flips the image vertically.'
460
9d141cb07d5e help texts added
tz
parents: 450
diff changeset
   242
9d141cb07d5e help texts added
tz
parents: 450
diff changeset
   243
#editMagnifyImage
914
b4f32d092c8b added paste-under;
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
   244
'Magnify the image.'
460
9d141cb07d5e help texts added
tz
parents: 450
diff changeset
   245
9d141cb07d5e help texts added
tz
parents: 450
diff changeset
   246
#editNegate
914
b4f32d092c8b added paste-under;
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
   247
'Invert the images colors.'
460
9d141cb07d5e help texts added
tz
parents: 450
diff changeset
   248
9d141cb07d5e help texts added
tz
parents: 450
diff changeset
   249
#editResize
914
b4f32d092c8b added paste-under;
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
   250
'Resize the image (preserving the old image).'
460
9d141cb07d5e help texts added
tz
parents: 450
diff changeset
   251
9d141cb07d5e help texts added
tz
parents: 450
diff changeset
   252
#editRotate
914
b4f32d092c8b added paste-under;
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
   253
'Rotate the image.'
460
9d141cb07d5e help texts added
tz
parents: 450
diff changeset
   254
929
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   255
#fileGrabImage
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   256
'Pick an image from the screen.'
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   257
460
9d141cb07d5e help texts added
tz
parents: 450
diff changeset
   258
#fileLoadFromClass
929
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   259
'Select and load an image from a resource method.'
460
9d141cb07d5e help texts added
tz
parents: 450
diff changeset
   260
9d141cb07d5e help texts added
tz
parents: 450
diff changeset
   261
#fileLoadFromFile
929
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   262
'Select and load an image from a file.'
460
9d141cb07d5e help texts added
tz
parents: 450
diff changeset
   263
9d141cb07d5e help texts added
tz
parents: 450
diff changeset
   264
#fileNewImage
914
b4f32d092c8b added paste-under;
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
   265
'Create a new image'
460
9d141cb07d5e help texts added
tz
parents: 450
diff changeset
   266
9d141cb07d5e help texts added
tz
parents: 450
diff changeset
   267
#filePrint
9d141cb07d5e help texts added
tz
parents: 450
diff changeset
   268
'Print the image on a postscript printer.'
9d141cb07d5e help texts added
tz
parents: 450
diff changeset
   269
9d141cb07d5e help texts added
tz
parents: 450
diff changeset
   270
#fileSaveAs
914
b4f32d092c8b added paste-under;
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
   271
'Save the image to a file.'
460
9d141cb07d5e help texts added
tz
parents: 450
diff changeset
   272
9d141cb07d5e help texts added
tz
parents: 450
diff changeset
   273
#fileSaveMaskAs
914
b4f32d092c8b added paste-under;
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
   274
'Save the mask of the image to a file.'
460
9d141cb07d5e help texts added
tz
parents: 450
diff changeset
   275
9d141cb07d5e help texts added
tz
parents: 450
diff changeset
   276
#fileSaveMethod
914
b4f32d092c8b added paste-under;
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
   277
'Save the image as resource method in the current class and selector.'
460
9d141cb07d5e help texts added
tz
parents: 450
diff changeset
   278
9d141cb07d5e help texts added
tz
parents: 450
diff changeset
   279
#fileSaveMethodAs
914
b4f32d092c8b added paste-under;
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
   280
'Save the image as resource method in a class.'
460
9d141cb07d5e help texts added
tz
parents: 450
diff changeset
   281
928
89bd2304da33 cleaned up imageEitViews interface to my infoPanel
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
   282
#historyMenuItem
89bd2304da33 cleaned up imageEitViews interface to my infoPanel
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
   283
'Edit this image.'
89bd2304da33 cleaned up imageEitViews interface to my infoPanel
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
   284
487
6c336c183330 info bar as subSpec to class ToolApplicationModel moved
tz
parents: 475
diff changeset
   285
#magnificationNumber
914
b4f32d092c8b added paste-under;
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
   286
'Shows the current magnification.'
487
6c336c183330 info bar as subSpec to class ToolApplicationModel moved
tz
parents: 475
diff changeset
   287
6c336c183330 info bar as subSpec to class ToolApplicationModel moved
tz
parents: 475
diff changeset
   288
#magnifyImageDown
914
b4f32d092c8b added paste-under;
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
   289
'Decrease magnification.'
487
6c336c183330 info bar as subSpec to class ToolApplicationModel moved
tz
parents: 475
diff changeset
   290
6c336c183330 info bar as subSpec to class ToolApplicationModel moved
tz
parents: 475
diff changeset
   291
#magnifyImageUp
914
b4f32d092c8b added paste-under;
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
   292
'Increase magnification.'
487
6c336c183330 info bar as subSpec to class ToolApplicationModel moved
tz
parents: 475
diff changeset
   293
6c336c183330 info bar as subSpec to class ToolApplicationModel moved
tz
parents: 475
diff changeset
   294
#mouseKeyColorMode
914
b4f32d092c8b added paste-under;
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
   295
'Toggles between left and right mouse button color.'
487
6c336c183330 info bar as subSpec to class ToolApplicationModel moved
tz
parents: 475
diff changeset
   296
6c336c183330 info bar as subSpec to class ToolApplicationModel moved
tz
parents: 475
diff changeset
   297
#previewView
914
b4f32d092c8b added paste-under;
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
   298
'Shows a preview of the image.'
487
6c336c183330 info bar as subSpec to class ToolApplicationModel moved
tz
parents: 475
diff changeset
   299
905
5f5d0a415c04 grid magnification can be changed
tz
parents: 903
diff changeset
   300
#settingsGridMagnification
914
b4f32d092c8b added paste-under;
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
   301
'Change the grid magnification of the edit view.'
905
5f5d0a415c04 grid magnification can be changed
tz
parents: 903
diff changeset
   302
460
9d141cb07d5e help texts added
tz
parents: 450
diff changeset
   303
)
928
89bd2304da33 cleaned up imageEitViews interface to my infoPanel
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
   304
929
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   305
    "Modified: / 29.7.1998 / 22:27:36 / cg"
460
9d141cb07d5e help texts added
tz
parents: 450
diff changeset
   306
! !
9d141cb07d5e help texts added
tz
parents: 450
diff changeset
   307
737
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   308
!ImageEditor class methodsFor:'image specs'!
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   309
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   310
leftMouseKeyIcon
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   311
    "This resource specification was automatically generated
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   312
     by the ImageEditor of ST/X."
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   313
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   314
    "Do not manually edit this!! If it is corrupted,
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   315
     the ImageEditor may not be able to read the specification."
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   316
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   317
    "
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   318
     ImageEditor openOnClass:self andSelector:#leftMouseKeyIcon
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   319
    "
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   320
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   321
    <resource: #image>
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   322
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   323
    ^Icon
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   324
        constantNamed:#'ImageEditor leftMouseKeyIcon'
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   325
        ifAbsentPut:[(Depth2Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@JEE@@B!!QP@@(TT@@@@@@@AUUP@@UUT@@EUU@@AUUP@@UUT@@EUU@@@UU@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 255 255 255 255 0 0 0 255 0]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@?0G? _>A?8G? _>A?8G? _>A?8G? O<@_ @@@b') ; yourself); yourself]!
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   326
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   327
rightMouseKeyIcon
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   328
    "This resource specification was automatically generated
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   329
     by the ImageEditor of ST/X."
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   330
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   331
    "Do not manually edit this!! If it is corrupted,
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   332
     the ImageEditor may not be able to read the specification."
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   333
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   334
    "
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   335
     ImageEditor openOnClass:self andSelector:#rightMouseKeyIcon
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   336
    "
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   337
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   338
    <resource: #image>
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   339
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   340
    ^Icon
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   341
        constantNamed:#'ImageEditor rightMouseKeyIcon'
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   342
        ifAbsentPut:[(Depth2Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@EEJ@@AQR @@TT(@@@@@@@AUUP@@UUT@@EUU@@AUUP@@UUT@@EUU@@@UU@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 255 255 255 255 0 0 0 255 0]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@?0G? _>A?8G? _>A?8G? _>A?8G? O<@_ @@@b') ; yourself); yourself]! !
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   343
400
228524287573 intitial checkin
tz
parents:
diff changeset
   344
!ImageEditor class methodsFor:'interface specs'!
228524287573 intitial checkin
tz
parents:
diff changeset
   345
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   346
dialogSpecForNewImage
737
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   347
    "This resource specification was automatically generated
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   348
     by the UIPainter of ST/X."
519
085cf69fcd6c single lines in tool bar removed
tz
parents: 503
diff changeset
   349
737
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   350
    "Do not manually edit this!! If it is corrupted,
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   351
     the UIPainter may not be able to read the specification."
519
085cf69fcd6c single lines in tool bar removed
tz
parents: 503
diff changeset
   352
085cf69fcd6c single lines in tool bar removed
tz
parents: 503
diff changeset
   353
    "
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   354
     UIPainter new openOnClass:ImageEditor andSelector:#dialogSpecForNewImage
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   355
     ImageEditor new openInterface:#dialogSpecForNewImage
519
085cf69fcd6c single lines in tool bar removed
tz
parents: 503
diff changeset
   356
    "
085cf69fcd6c single lines in tool bar removed
tz
parents: 503
diff changeset
   357
085cf69fcd6c single lines in tool bar removed
tz
parents: 503
diff changeset
   358
    <resource: #canvas>
085cf69fcd6c single lines in tool bar removed
tz
parents: 503
diff changeset
   359
085cf69fcd6c single lines in tool bar removed
tz
parents: 503
diff changeset
   360
    ^
085cf69fcd6c single lines in tool bar removed
tz
parents: 503
diff changeset
   361
     
085cf69fcd6c single lines in tool bar removed
tz
parents: 503
diff changeset
   362
       #(#FullSpec
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   363
          #window: 
519
085cf69fcd6c single lines in tool bar removed
tz
parents: 503
diff changeset
   364
           #(#WindowSpec
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   365
              #name: 'New Image'
737
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   366
              #layout: #(#LayoutFrame 240 0 278 0 540 0 382 0)
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   367
              #label: 'New Image'
738210a2fa06 revised version
tz
parents: 651
diff changeset
   368
              #min: #(#Point 10 10)
738210a2fa06 revised version
tz
parents: 651
diff changeset
   369
              #max: #(#Point 1152 900)
737
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   370
              #bounds: #(#Rectangle 240 278 541 383)
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   371
              #usePreferredExtent: false
519
085cf69fcd6c single lines in tool bar removed
tz
parents: 503
diff changeset
   372
          )
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   373
          #component: 
519
085cf69fcd6c single lines in tool bar removed
tz
parents: 503
diff changeset
   374
           #(#SpecCollection
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   375
              #collection: 
519
085cf69fcd6c single lines in tool bar removed
tz
parents: 503
diff changeset
   376
               #(
085cf69fcd6c single lines in tool bar removed
tz
parents: 503
diff changeset
   377
                 #(#ViewSpec
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   378
                    #name: 'View'
737
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   379
                    #layout: #(#LayoutFrame 0 0.0 0 0.0 0 1.0 -35 1.0)
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   380
                    #component: 
519
085cf69fcd6c single lines in tool bar removed
tz
parents: 503
diff changeset
   381
                     #(#SpecCollection
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   382
                        #collection: 
519
085cf69fcd6c single lines in tool bar removed
tz
parents: 503
diff changeset
   383
                         #(
085cf69fcd6c single lines in tool bar removed
tz
parents: 503
diff changeset
   384
                           #(#FramedBoxSpec
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   385
                              #name: 'framedBox1'
737
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   386
                              #layout: #(#LayoutFrame 1 0.0 7 0.0 0 0.4 66 0)
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   387
                              #component: 
519
085cf69fcd6c single lines in tool bar removed
tz
parents: 503
diff changeset
   388
                               #(#SpecCollection
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   389
                                  #collection: 
519
085cf69fcd6c single lines in tool bar removed
tz
parents: 503
diff changeset
   390
                                   #(
085cf69fcd6c single lines in tool bar removed
tz
parents: 503
diff changeset
   391
                                     #(#ComboBoxSpec
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   392
                                        #name: 'defaultSizesComboBox'
738210a2fa06 revised version
tz
parents: 651
diff changeset
   393
                                        #layout: #(#LayoutFrame 15 0.0 20 0.0 17 1.0 16 1.0)
738210a2fa06 revised version
tz
parents: 651
diff changeset
   394
                                        #model: #selectionOfSize
738210a2fa06 revised version
tz
parents: 651
diff changeset
   395
                                        #type: #string
738210a2fa06 revised version
tz
parents: 651
diff changeset
   396
                                        #comboList: #listOfDefaultSizes
519
085cf69fcd6c single lines in tool bar removed
tz
parents: 503
diff changeset
   397
                                    )
085cf69fcd6c single lines in tool bar removed
tz
parents: 503
diff changeset
   398
                                  )
085cf69fcd6c single lines in tool bar removed
tz
parents: 503
diff changeset
   399
                              )
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   400
                              #label: 'Size'
738210a2fa06 revised version
tz
parents: 651
diff changeset
   401
                              #labelPosition: #topLeft
738210a2fa06 revised version
tz
parents: 651
diff changeset
   402
                              #style: #(#FontDescription #helvetica #medium #roman 12)
519
085cf69fcd6c single lines in tool bar removed
tz
parents: 503
diff changeset
   403
                          )
085cf69fcd6c single lines in tool bar removed
tz
parents: 503
diff changeset
   404
                           #(#FramedBoxSpec
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   405
                              #name: 'framedBox2'
737
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   406
                              #layout: #(#LayoutFrame 0 0.4 7 0.0 -1 1.0 66 0)
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   407
                              #component: 
519
085cf69fcd6c single lines in tool bar removed
tz
parents: 503
diff changeset
   408
                               #(#SpecCollection
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   409
                                  #collection: 
519
085cf69fcd6c single lines in tool bar removed
tz
parents: 503
diff changeset
   410
                                   #(
085cf69fcd6c single lines in tool bar removed
tz
parents: 503
diff changeset
   411
                                     #(#ComboListSpec
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   412
                                        #name: 'colorMapComboBox'
738210a2fa06 revised version
tz
parents: 651
diff changeset
   413
                                        #layout: #(#LayoutFrame 15 0.0 20 0.0 18 1.0 16 1.0)
738210a2fa06 revised version
tz
parents: 651
diff changeset
   414
                                        #model: #selectionOfColorMap
738210a2fa06 revised version
tz
parents: 651
diff changeset
   415
                                        #comboList: #listOfColorMaps
738210a2fa06 revised version
tz
parents: 651
diff changeset
   416
                                        #useIndex: false
519
085cf69fcd6c single lines in tool bar removed
tz
parents: 503
diff changeset
   417
                                    )
085cf69fcd6c single lines in tool bar removed
tz
parents: 503
diff changeset
   418
                                  )
085cf69fcd6c single lines in tool bar removed
tz
parents: 503
diff changeset
   419
                              )
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   420
                              #label: 'Color Map'
738210a2fa06 revised version
tz
parents: 651
diff changeset
   421
                              #labelPosition: #topLeft
738210a2fa06 revised version
tz
parents: 651
diff changeset
   422
                              #style: #(#FontDescription #helvetica #medium #roman 12)
519
085cf69fcd6c single lines in tool bar removed
tz
parents: 503
diff changeset
   423
                          )
085cf69fcd6c single lines in tool bar removed
tz
parents: 503
diff changeset
   424
                        )
085cf69fcd6c single lines in tool bar removed
tz
parents: 503
diff changeset
   425
                    )
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   426
                    #level: 1
519
085cf69fcd6c single lines in tool bar removed
tz
parents: 503
diff changeset
   427
                )
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   428
                 #(#UISubSpecification
738210a2fa06 revised version
tz
parents: 651
diff changeset
   429
                    #name: 'UISubSpecification1'
737
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   430
                    #layout: #(#LayoutFrame 2 0.0 -26 1 -2 1.0 -2 1.0)
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   431
                    #majorKey: #ToolApplicationModel
738210a2fa06 revised version
tz
parents: 651
diff changeset
   432
                    #minorKey: #windowSpecForCommitWithoutChannels
519
085cf69fcd6c single lines in tool bar removed
tz
parents: 503
diff changeset
   433
                )
085cf69fcd6c single lines in tool bar removed
tz
parents: 503
diff changeset
   434
              )
085cf69fcd6c single lines in tool bar removed
tz
parents: 503
diff changeset
   435
          )
085cf69fcd6c single lines in tool bar removed
tz
parents: 503
diff changeset
   436
      )
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   437
!
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   438
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   439
windowSpec
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   440
    "This resource specification was automatically generated
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   441
     by the UIPainter of ST/X."
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   442
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   443
    "Do not manually edit this!! If it is corrupted,
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   444
     the UIPainter may not be able to read the specification."
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   445
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   446
    "
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   447
     UIPainter new openOnClass:ImageEditor andSelector:#windowSpec
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   448
     ImageEditor new openInterface:#windowSpec
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   449
     ImageEditor open
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   450
    "
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   451
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   452
    <resource: #canvas>
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   453
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   454
    ^
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   455
     
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   456
       #(#FullSpec
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   457
          #window: 
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   458
           #(#WindowSpec
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   459
              #name: 'Image Editor'
928
89bd2304da33 cleaned up imageEitViews interface to my infoPanel
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
   460
              #layout: #(#LayoutFrame 216 0 173 0 715 0 518 0)
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   461
              #label: 'Image Editor'
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   462
              #min: #(#Point 400 320)
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   463
              #max: #(#Point 1152 900)
928
89bd2304da33 cleaned up imageEitViews interface to my infoPanel
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
   464
              #bounds: #(#Rectangle 216 173 716 519)
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   465
              #menu: #menu
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   466
              #usePreferredExtent: false
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   467
          )
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   468
          #component: 
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   469
           #(#SpecCollection
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   470
              #collection: 
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   471
               #(
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   472
                 #(#MenuPanelSpec
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   473
                    #name: 'menuToolbarView'
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   474
                    #layout: #(#LayoutFrame 0 0.0 0 0 0 1.0 32 0)
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   475
                    #menu: #menuToolbar
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   476
                    #style: #(#FontDescription #helvetica #medium #roman 10)
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   477
                    #showSeparatingLines: true
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   478
                )
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   479
                 #(#VariableHorizontalPanelSpec
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   480
                    #name: 'variableHorizontalPanel1'
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   481
                    #layout: #(#LayoutFrame 0 0.0 34 0.0 0 1.0 -26 1.0)
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   482
                    #component: 
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   483
                     #(#SpecCollection
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   484
                        #collection: 
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   485
                         #(
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   486
                           #(#ViewSpec
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   487
                              #name: 'view1'
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   488
                              #component: 
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   489
                               #(#SpecCollection
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   490
                                  #collection: 
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   491
                                   #(
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   492
                                     #(#VariableVerticalPanelSpec
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   493
                                        #name: 'VariableVerticalPanel1'
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   494
                                        #layout: #(#LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0)
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   495
                                        #component: 
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   496
                                         #(#SpecCollection
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   497
                                            #collection: 
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   498
                                             #(
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   499
                                               #(#ViewSpec
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   500
                                                  #name: 'View1'
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   501
                                                  #component: 
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   502
                                                   #(#SpecCollection
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   503
                                                      #collection: 
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   504
                                                       #(
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   505
                                                         #(#MenuPanelSpec
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   506
                                                            #name: 'MouseButtonColorToolBar'
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   507
                                                            #layout: #(#LayoutFrame 0 0.0 0 0 0 1.0 24 0)
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   508
                                                            #menu: #menuMouseButtonColors
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   509
                                                        )
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   510
                                                         #(#DataSetSpec
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   511
                                                            #name: 'colorDataSetView'
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   512
                                                            #layout: #(#LayoutFrame 0 0.0 26 0.0 0 1.0 0 1.0)
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   513
                                                            #activeHelpKey: #colorMapTable
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   514
                                                            #model: #selectionOfColor
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   515
                                                            #style: #(#FontDescription #helvetica #medium #roman 10)
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   516
                                                            #hasHorizontalScrollBar: true
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   517
                                                            #hasVerticalScrollBar: true
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   518
                                                            #miniScrollerHorizontal: true
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   519
                                                            #miniScrollerVertical: true
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   520
                                                            #dataList: #listOfColors
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   521
                                                            #has3Dsepartors: true
905
5f5d0a415c04 grid magnification can be changed
tz
parents: 903
diff changeset
   522
                                                            #has3Dseparators: true
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   523
                                                            #verticalSpacing: 1
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   524
                                                            #columns: 
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   525
                                                             #(
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   526
                                                               #(#DataSetColumnSpec
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   527
                                                                  #rendererType: #rowSelector
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   528
                                                                  #backgroundSelector: #yourself
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   529
                                                              )
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   530
                                                               #(#DataSetColumnSpec
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   531
                                                                  #label: 'R'
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   532
                                                                  #labelAlignment: #left
915
99f8e19aab3a better use a columnAdaptor to fetch r/g/b values from a color.
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
   533
                                                                  #model: #redFromColor:
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   534
                                                                  #canSelect: false
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   535
                                                              )
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   536
                                                               #(#DataSetColumnSpec
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   537
                                                                  #label: 'G'
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   538
                                                                  #labelAlignment: #left
915
99f8e19aab3a better use a columnAdaptor to fetch r/g/b values from a color.
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
   539
                                                                  #model: #greenFromColor:
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   540
                                                                  #canSelect: false
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   541
                                                              )
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   542
                                                               #(#DataSetColumnSpec
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   543
                                                                  #label: 'B'
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   544
                                                                  #labelAlignment: #left
915
99f8e19aab3a better use a columnAdaptor to fetch r/g/b values from a color.
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
   545
                                                                  #model: #blueFromColor:
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   546
                                                                  #canSelect: false
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   547
                                                              )
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   548
                                                            )
915
99f8e19aab3a better use a columnAdaptor to fetch r/g/b values from a color.
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
   549
                                                            #columnAdaptor: #colorColumnAdaptor
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   550
                                                        )
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   551
                                                      )
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   552
                                                  )
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   553
                                              )
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   554
                                               #(#ArbitraryComponentSpec
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   555
                                                  #name: 'imagePreView'
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   556
                                                  #activeHelpKey: #previewView
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   557
                                                  #hasHorizontalScrollBar: true
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   558
                                                  #hasVerticalScrollBar: true
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   559
                                                  #miniScrollerHorizontal: true
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   560
                                                  #miniScrollerVertical: true
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   561
                                                  #component: #ImageView
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   562
                                                  #hasBorder: false
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   563
                                              )
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   564
                                            )
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   565
                                        )
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   566
                                        #handles: #(#Any 0.723776 1.0)
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   567
                                    )
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   568
                                  )
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   569
                              )
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   570
                          )
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   571
                           #(#ViewSpec
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   572
                              #name: 'view2'
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   573
                              #component: 
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   574
                               #(#SpecCollection
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   575
                                  #collection: 
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   576
                                   #(
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   577
                                     #(#ArbitraryComponentSpec
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   578
                                        #name: 'imageEditView'
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   579
                                        #layout: #(#LayoutFrame 2 0.0 2 0.0 -2 1.0 -24 1.0)
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   580
                                        #hasHorizontalScrollBar: true
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   581
                                        #hasVerticalScrollBar: true
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   582
                                        #component: #ImageEditView
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   583
                                        #hasBorder: false
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   584
                                    )
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   585
                                     #(#LabelSpec
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   586
                                        #name: 'coordLabel'
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   587
                                        #layout: #(#LayoutFrame 2 0.0 -22 1 -83 1.0 0 1.0)
928
89bd2304da33 cleaned up imageEitViews interface to my infoPanel
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
   588
                                        #labelChannel: #imageInfoHolder
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   589
                                        #level: -1
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   590
                                        #adjust: #left
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   591
                                        #resizeForLabel: false
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   592
                                    )
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   593
                                     #(#ArrowButtonSpec
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   594
                                        #name: 'magnifyDownButton'
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   595
                                        #layout: #(#LayoutFrame -80 1 -22 1 -58 1 0 1)
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   596
                                        #activeHelpKey: #magnifyImageDown
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   597
                                        #model: #doMagnifyDown
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   598
                                        #enableChannel: #imageIsLoaded
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   599
                                        #isTriggerOnDown: true
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   600
                                        #direction: #left
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   601
                                    )
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   602
                                     #(#ArrowButtonSpec
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   603
                                        #name: 'magnifyUpButton'
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   604
                                        #layout: #(#LayoutFrame -24 1 -22 1 -2 1 0 1)
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   605
                                        #activeHelpKey: #magnifyImageUp
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   606
                                        #model: #doMagnifyUp
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   607
                                        #enableChannel: #imageIsLoaded
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   608
                                        #isTriggerOnDown: true
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   609
                                        #direction: #right
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   610
                                    )
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   611
                                     #(#InputFieldSpec
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   612
                                        #name: 'magnificationInputField'
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   613
                                        #layout: #(#LayoutFrame -57 1 -22 1 -26 1 0 1)
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   614
                                        #activeHelpKey: #magnificationNumber
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   615
                                        #enableChannel: #imageIsLoaded
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   616
                                        #model: #valueOfMagnification
905
5f5d0a415c04 grid magnification can be changed
tz
parents: 903
diff changeset
   617
                                        #type: #numberInRange
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   618
                                        #acceptOnReturn: false
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   619
                                        #acceptOnTab: false
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   620
                                        #numChars: 2
905
5f5d0a415c04 grid magnification can be changed
tz
parents: 903
diff changeset
   621
                                        #minValue: 1
5f5d0a415c04 grid magnification can be changed
tz
parents: 903
diff changeset
   622
                                        #maxValue: 99
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   623
                                    )
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   624
                                  )
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   625
                              )
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   626
                              #level: -1
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   627
                          )
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   628
                        )
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   629
                    )
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   630
                    #handles: #(#Any 0.276 1.0)
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   631
                )
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   632
                 #(#UISubSpecification
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   633
                    #name: 'infoBarSubSpec'
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   634
                    #layout: #(#LayoutFrame 0 0.0 -24 1 0 1.0 0 1.0)
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   635
                    #majorKey: #ToolApplicationModel
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   636
                    #minorKey: #windowSpecForInfoBar
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   637
                )
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   638
              )
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   639
          )
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   640
      )
915
99f8e19aab3a better use a columnAdaptor to fetch r/g/b values from a color.
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
   641
928
89bd2304da33 cleaned up imageEitViews interface to my infoPanel
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
   642
    "Modified: / 29.7.1998 / 18:31:38 / cg"
519
085cf69fcd6c single lines in tool bar removed
tz
parents: 503
diff changeset
   643
! !
085cf69fcd6c single lines in tool bar removed
tz
parents: 503
diff changeset
   644
085cf69fcd6c single lines in tool bar removed
tz
parents: 503
diff changeset
   645
!ImageEditor class methodsFor:'menu specs'!
085cf69fcd6c single lines in tool bar removed
tz
parents: 503
diff changeset
   646
400
228524287573 intitial checkin
tz
parents:
diff changeset
   647
menu
737
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   648
    "This resource specification was automatically generated
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   649
     by the MenuEditor of ST/X."
400
228524287573 intitial checkin
tz
parents:
diff changeset
   650
737
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   651
    "Do not manually edit this!! If it is corrupted,
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   652
     the MenuEditor may not be able to read the specification."
400
228524287573 intitial checkin
tz
parents:
diff changeset
   653
228524287573 intitial checkin
tz
parents:
diff changeset
   654
    "
228524287573 intitial checkin
tz
parents:
diff changeset
   655
     MenuEditor new openOnClass:ImageEditor andSelector:#menu
228524287573 intitial checkin
tz
parents:
diff changeset
   656
     (Menu new fromLiteralArrayEncoding:(ImageEditor menu)) startUp
228524287573 intitial checkin
tz
parents:
diff changeset
   657
    "
228524287573 intitial checkin
tz
parents:
diff changeset
   658
228524287573 intitial checkin
tz
parents:
diff changeset
   659
    <resource: #menu>
228524287573 intitial checkin
tz
parents:
diff changeset
   660
228524287573 intitial checkin
tz
parents:
diff changeset
   661
    ^
228524287573 intitial checkin
tz
parents:
diff changeset
   662
     
228524287573 intitial checkin
tz
parents:
diff changeset
   663
       #(#Menu
228524287573 intitial checkin
tz
parents:
diff changeset
   664
          
228524287573 intitial checkin
tz
parents:
diff changeset
   665
           #(
228524287573 intitial checkin
tz
parents:
diff changeset
   666
             #(#MenuItem
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   667
                #label: 'About'
843
273d9a7c2712 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 815
diff changeset
   668
                #translateLabel: true
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   669
                #activeHelpKey: #about
738210a2fa06 revised version
tz
parents: 651
diff changeset
   670
                #labelImage: #(#ResourceRetriever nil #menuIcon)
738210a2fa06 revised version
tz
parents: 651
diff changeset
   671
                #submenuChannel: #menuAbout
400
228524287573 intitial checkin
tz
parents:
diff changeset
   672
            )
228524287573 intitial checkin
tz
parents:
diff changeset
   673
             #(#MenuItem
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   674
                #label: 'File'
738210a2fa06 revised version
tz
parents: 651
diff changeset
   675
                #translateLabel: true
738210a2fa06 revised version
tz
parents: 651
diff changeset
   676
                #activeHelpKey: #file
738210a2fa06 revised version
tz
parents: 651
diff changeset
   677
                #submenu: 
400
228524287573 intitial checkin
tz
parents:
diff changeset
   678
                 #(#Menu
228524287573 intitial checkin
tz
parents:
diff changeset
   679
                    
228524287573 intitial checkin
tz
parents:
diff changeset
   680
                     #(
228524287573 intitial checkin
tz
parents:
diff changeset
   681
                       #(#MenuItem
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   682
                          #label: 'New...'
843
273d9a7c2712 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 815
diff changeset
   683
                          #translateLabel: true
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   684
                          #value: #doNewImage
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   685
                          #activeHelpKey: #fileNewImage
400
228524287573 intitial checkin
tz
parents:
diff changeset
   686
                      )
228524287573 intitial checkin
tz
parents:
diff changeset
   687
                       #(#MenuItem
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   688
                          #label: '-'
400
228524287573 intitial checkin
tz
parents:
diff changeset
   689
                      )
228524287573 intitial checkin
tz
parents:
diff changeset
   690
                       #(#MenuItem
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   691
                          #label: 'Load...'
843
273d9a7c2712 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 815
diff changeset
   692
                          #translateLabel: true
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   693
                          #value: #doLoadFromClass
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   694
                          #activeHelpKey: #fileLoadFromClass
400
228524287573 intitial checkin
tz
parents:
diff changeset
   695
                      )
228524287573 intitial checkin
tz
parents:
diff changeset
   696
                       #(#MenuItem
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   697
                          #label: 'Load From File...'
843
273d9a7c2712 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 815
diff changeset
   698
                          #translateLabel: true
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   699
                          #value: #doLoadFromFile
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   700
                          #activeHelpKey: #fileLoadFromFile
400
228524287573 intitial checkin
tz
parents:
diff changeset
   701
                      )
228524287573 intitial checkin
tz
parents:
diff changeset
   702
                       #(#MenuItem
929
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   703
                          #label: 'Grab From Screen'
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   704
                          #translateLabel: true
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   705
                          #value: #grabScreenImage
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   706
                          #activeHelpKey: #fileGrabImage
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   707
                      )
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   708
                       #(#MenuItem
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   709
                          #label: '-'
400
228524287573 intitial checkin
tz
parents:
diff changeset
   710
                      )
228524287573 intitial checkin
tz
parents:
diff changeset
   711
                       #(#MenuItem
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   712
                          #label: 'Save'
843
273d9a7c2712 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 815
diff changeset
   713
                          #translateLabel: true
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   714
                          #value: #doSaveMethod
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   715
                          #activeHelpKey: #fileSaveMethod
738210a2fa06 revised version
tz
parents: 651
diff changeset
   716
                          #enabled: #imageIsLoaded
400
228524287573 intitial checkin
tz
parents:
diff changeset
   717
                      )
228524287573 intitial checkin
tz
parents:
diff changeset
   718
                       #(#MenuItem
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   719
                          #label: 'Save As...'
843
273d9a7c2712 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 815
diff changeset
   720
                          #translateLabel: true
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   721
                          #value: #doSaveMethodAs
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   722
                          #activeHelpKey: #fileSaveMethodAs
738210a2fa06 revised version
tz
parents: 651
diff changeset
   723
                          #enabled: #imageIsLoaded
738210a2fa06 revised version
tz
parents: 651
diff changeset
   724
                      )
738210a2fa06 revised version
tz
parents: 651
diff changeset
   725
                       #(#MenuItem
738210a2fa06 revised version
tz
parents: 651
diff changeset
   726
                          #label: '-'
400
228524287573 intitial checkin
tz
parents:
diff changeset
   727
                      )
228524287573 intitial checkin
tz
parents:
diff changeset
   728
                       #(#MenuItem
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   729
                          #label: 'Save To File...'
843
273d9a7c2712 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 815
diff changeset
   730
                          #translateLabel: true
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   731
                          #value: #doSaveImageFileAs
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   732
                          #activeHelpKey: #fileSaveAs
738210a2fa06 revised version
tz
parents: 651
diff changeset
   733
                          #enabled: #imageIsLoaded
400
228524287573 intitial checkin
tz
parents:
diff changeset
   734
                      )
228524287573 intitial checkin
tz
parents:
diff changeset
   735
                       #(#MenuItem
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   736
                          #label: 'Save Mask To File...'
843
273d9a7c2712 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 815
diff changeset
   737
                          #translateLabel: true
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   738
                          #value: #doSaveImageMaskFileAs
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   739
                          #activeHelpKey: #fileSaveMaskAs
738210a2fa06 revised version
tz
parents: 651
diff changeset
   740
                          #enabled: #imageIsLoaded
400
228524287573 intitial checkin
tz
parents:
diff changeset
   741
                      )
228524287573 intitial checkin
tz
parents:
diff changeset
   742
                       #(#MenuItem
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   743
                          #label: '-'
400
228524287573 intitial checkin
tz
parents:
diff changeset
   744
                      )
228524287573 intitial checkin
tz
parents:
diff changeset
   745
                       #(#MenuItem
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   746
                          #label: 'Print'
843
273d9a7c2712 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 815
diff changeset
   747
                          #translateLabel: true
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   748
                          #value: #doPrint
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   749
                          #activeHelpKey: #filePrint
738210a2fa06 revised version
tz
parents: 651
diff changeset
   750
                          #enabled: #imageIsLoaded
400
228524287573 intitial checkin
tz
parents:
diff changeset
   751
                      )
228524287573 intitial checkin
tz
parents:
diff changeset
   752
                       #(#MenuItem
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   753
                          #label: '-'
400
228524287573 intitial checkin
tz
parents:
diff changeset
   754
                      )
228524287573 intitial checkin
tz
parents:
diff changeset
   755
                       #(#MenuItem
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   756
                          #label: 'Browse Class'
843
273d9a7c2712 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 815
diff changeset
   757
                          #translateLabel: true
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   758
                          #value: #doBrowseClass
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   759
                          #activeHelpKey: #fileBrowseClass
738210a2fa06 revised version
tz
parents: 651
diff changeset
   760
                          #enabled: #imageIsLoaded
400
228524287573 intitial checkin
tz
parents:
diff changeset
   761
                      )
228524287573 intitial checkin
tz
parents:
diff changeset
   762
                       #(#MenuItem
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   763
                          #label: '-'
400
228524287573 intitial checkin
tz
parents:
diff changeset
   764
                      )
228524287573 intitial checkin
tz
parents:
diff changeset
   765
                       #(#MenuItem
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   766
                          #label: 'Exit'
738210a2fa06 revised version
tz
parents: 651
diff changeset
   767
                          #translateLabel: true
738210a2fa06 revised version
tz
parents: 651
diff changeset
   768
                          #value: #closeRequest
738210a2fa06 revised version
tz
parents: 651
diff changeset
   769
                          #activeHelpKey: #fileExit
400
228524287573 intitial checkin
tz
parents:
diff changeset
   770
                      )
228524287573 intitial checkin
tz
parents:
diff changeset
   771
                    ) nil
228524287573 intitial checkin
tz
parents:
diff changeset
   772
                    nil
228524287573 intitial checkin
tz
parents:
diff changeset
   773
                )
228524287573 intitial checkin
tz
parents:
diff changeset
   774
            )
228524287573 intitial checkin
tz
parents:
diff changeset
   775
             #(#MenuItem
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   776
                #label: 'Edit'
843
273d9a7c2712 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 815
diff changeset
   777
                #translateLabel: true
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   778
                #activeHelpKey: #edit
738210a2fa06 revised version
tz
parents: 651
diff changeset
   779
                #enabled: #imageIsLoaded
738210a2fa06 revised version
tz
parents: 651
diff changeset
   780
                #submenu: 
400
228524287573 intitial checkin
tz
parents:
diff changeset
   781
                 #(#Menu
228524287573 intitial checkin
tz
parents:
diff changeset
   782
                    
228524287573 intitial checkin
tz
parents:
diff changeset
   783
                     #(
228524287573 intitial checkin
tz
parents:
diff changeset
   784
                       #(#MenuItem
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   785
                          #label: 'Undo'
843
273d9a7c2712 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 815
diff changeset
   786
                          #translateLabel: true
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   787
                          #value: #doUndo
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   788
                          #activeHelpKey: #editUndo
738210a2fa06 revised version
tz
parents: 651
diff changeset
   789
                          #enabled: #valueOfCanUndo
400
228524287573 intitial checkin
tz
parents:
diff changeset
   790
                      )
228524287573 intitial checkin
tz
parents:
diff changeset
   791
                       #(#MenuItem
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   792
                          #label: '-'
400
228524287573 intitial checkin
tz
parents:
diff changeset
   793
                      )
228524287573 intitial checkin
tz
parents:
diff changeset
   794
                       #(#MenuItem
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   795
                          #label: 'Flip - Vertical'
843
273d9a7c2712 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 815
diff changeset
   796
                          #translateLabel: true
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   797
                          #value: #doFlipVertical
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   798
                          #activeHelpKey: #editFlipVertical
400
228524287573 intitial checkin
tz
parents:
diff changeset
   799
                      )
228524287573 intitial checkin
tz
parents:
diff changeset
   800
                       #(#MenuItem
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   801
                          #label: 'Flip - Horizontal'
843
273d9a7c2712 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 815
diff changeset
   802
                          #translateLabel: true
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   803
                          #value: #doFlipHorizontal
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   804
                          #activeHelpKey: #editFlipHorizontal
400
228524287573 intitial checkin
tz
parents:
diff changeset
   805
                      )
228524287573 intitial checkin
tz
parents:
diff changeset
   806
                       #(#MenuItem
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   807
                          #label: '-'
400
228524287573 intitial checkin
tz
parents:
diff changeset
   808
                      )
228524287573 intitial checkin
tz
parents:
diff changeset
   809
                       #(#MenuItem
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   810
                          #label: 'Resize...'
843
273d9a7c2712 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 815
diff changeset
   811
                          #translateLabel: true
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   812
                          #value: #doResizeImage
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   813
                          #activeHelpKey: #editResize
400
228524287573 intitial checkin
tz
parents:
diff changeset
   814
                      )
228524287573 intitial checkin
tz
parents:
diff changeset
   815
                       #(#MenuItem
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   816
                          #label: 'Magnify...'
843
273d9a7c2712 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 815
diff changeset
   817
                          #translateLabel: true
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   818
                          #value: #doMagnifyImage
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   819
                          #activeHelpKey: #editMagnifyImage
400
228524287573 intitial checkin
tz
parents:
diff changeset
   820
                      )
228524287573 intitial checkin
tz
parents:
diff changeset
   821
                       #(#MenuItem
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   822
                          #label: 'Rotate...'
843
273d9a7c2712 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 815
diff changeset
   823
                          #translateLabel: true
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
   824
                          #value: #doRotateImage
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   825
                          #activeHelpKey: #editRotate
400
228524287573 intitial checkin
tz
parents:
diff changeset
   826
                      )
228524287573 intitial checkin
tz
parents:
diff changeset
   827
                    ) nil
228524287573 intitial checkin
tz
parents:
diff changeset
   828
                    nil
228524287573 intitial checkin
tz
parents:
diff changeset
   829
                )
228524287573 intitial checkin
tz
parents:
diff changeset
   830
            )
228524287573 intitial checkin
tz
parents:
diff changeset
   831
             #(#MenuItem
919
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
   832
                #label: 'ColorMap'
843
273d9a7c2712 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 815
diff changeset
   833
                #translateLabel: true
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   834
                #activeHelpKey: #colorMap
738210a2fa06 revised version
tz
parents: 651
diff changeset
   835
                #enabled: #imageIsLoaded
738210a2fa06 revised version
tz
parents: 651
diff changeset
   836
                #submenu: 
400
228524287573 intitial checkin
tz
parents:
diff changeset
   837
                 #(#Menu
228524287573 intitial checkin
tz
parents:
diff changeset
   838
                    
228524287573 intitial checkin
tz
parents:
diff changeset
   839
                     #(
228524287573 intitial checkin
tz
parents:
diff changeset
   840
                       #(#MenuItem
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   841
                          #label: '8-Plane'
843
273d9a7c2712 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 815
diff changeset
   842
                          #translateLabel: true
929
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   843
                          #activeHelpKey: #colorMap8
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   844
                          #argument: '8-plane'
738210a2fa06 revised version
tz
parents: 651
diff changeset
   845
                          #indication: #colorMapMode:value:
738210a2fa06 revised version
tz
parents: 651
diff changeset
   846
                      )
738210a2fa06 revised version
tz
parents: 651
diff changeset
   847
                       #(#MenuItem
738210a2fa06 revised version
tz
parents: 651
diff changeset
   848
                          #label: '4-Plane'
843
273d9a7c2712 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 815
diff changeset
   849
                          #translateLabel: true
929
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   850
                          #activeHelpKey: #colorMap4
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   851
                          #argument: '4-plane'
738210a2fa06 revised version
tz
parents: 651
diff changeset
   852
                          #indication: #colorMapMode:value:
400
228524287573 intitial checkin
tz
parents:
diff changeset
   853
                      )
228524287573 intitial checkin
tz
parents:
diff changeset
   854
                       #(#MenuItem
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   855
                          #label: '2-Plane'
843
273d9a7c2712 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 815
diff changeset
   856
                          #translateLabel: true
929
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   857
                          #activeHelpKey: #colorMap2
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   858
                          #argument: '2-plane'
738210a2fa06 revised version
tz
parents: 651
diff changeset
   859
                          #indication: #colorMapMode:value:
400
228524287573 intitial checkin
tz
parents:
diff changeset
   860
                      )
228524287573 intitial checkin
tz
parents:
diff changeset
   861
                       #(#MenuItem
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   862
                          #label: '1-Plane'
843
273d9a7c2712 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 815
diff changeset
   863
                          #translateLabel: true
929
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   864
                          #activeHelpKey: #colorMap1
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   865
                          #argument: '1-plane'
738210a2fa06 revised version
tz
parents: 651
diff changeset
   866
                          #indication: #colorMapMode:value:
400
228524287573 intitial checkin
tz
parents:
diff changeset
   867
                      )
228524287573 intitial checkin
tz
parents:
diff changeset
   868
                       #(#MenuItem
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   869
                          #label: '-'
738210a2fa06 revised version
tz
parents: 651
diff changeset
   870
                      )
738210a2fa06 revised version
tz
parents: 651
diff changeset
   871
                       #(#MenuItem
738210a2fa06 revised version
tz
parents: 651
diff changeset
   872
                          #label: '8-Plane + Mask'
843
273d9a7c2712 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 815
diff changeset
   873
                          #translateLabel: true
929
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   874
                          #activeHelpKey: #colorMap8M
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   875
                          #argument: '8-plane + mask'
738210a2fa06 revised version
tz
parents: 651
diff changeset
   876
                          #indication: #colorMapMode:value:
400
228524287573 intitial checkin
tz
parents:
diff changeset
   877
                      )
228524287573 intitial checkin
tz
parents:
diff changeset
   878
                       #(#MenuItem
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   879
                          #label: '4-Plane + Mask'
843
273d9a7c2712 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 815
diff changeset
   880
                          #translateLabel: true
929
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   881
                          #activeHelpKey: #colorMap4M
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   882
                          #argument: '4-plane + mask'
738210a2fa06 revised version
tz
parents: 651
diff changeset
   883
                          #indication: #colorMapMode:value:
400
228524287573 intitial checkin
tz
parents:
diff changeset
   884
                      )
228524287573 intitial checkin
tz
parents:
diff changeset
   885
                       #(#MenuItem
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   886
                          #label: '2-Plane + Mask'
843
273d9a7c2712 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 815
diff changeset
   887
                          #translateLabel: true
929
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   888
                          #activeHelpKey: #colorMap2M
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   889
                          #argument: '2-plane + mask'
738210a2fa06 revised version
tz
parents: 651
diff changeset
   890
                          #indication: #colorMapMode:value:
738210a2fa06 revised version
tz
parents: 651
diff changeset
   891
                      )
738210a2fa06 revised version
tz
parents: 651
diff changeset
   892
                       #(#MenuItem
738210a2fa06 revised version
tz
parents: 651
diff changeset
   893
                          #label: '1-Plane + Mask'
843
273d9a7c2712 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 815
diff changeset
   894
                          #translateLabel: true
929
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   895
                          #activeHelpKey: #colorMap1M
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   896
                          #argument: '1-plane + mask'
738210a2fa06 revised version
tz
parents: 651
diff changeset
   897
                          #indication: #colorMapMode:value:
400
228524287573 intitial checkin
tz
parents:
diff changeset
   898
                      )
919
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
   899
                       #(#MenuItem
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
   900
                          #label: '-'
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
   901
                      )
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
   902
                       #(#MenuItem
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
   903
                          #label: 'Compress colormap'
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
   904
                          #translateLabel: true
929
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   905
                          #activeHelpKey: #compressColormap
919
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
   906
                          #value: #compressColorMap
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
   907
                      )
400
228524287573 intitial checkin
tz
parents:
diff changeset
   908
                    ) nil
228524287573 intitial checkin
tz
parents:
diff changeset
   909
                    nil
228524287573 intitial checkin
tz
parents:
diff changeset
   910
                )
228524287573 intitial checkin
tz
parents:
diff changeset
   911
            )
228524287573 intitial checkin
tz
parents:
diff changeset
   912
             #(#MenuItem
737
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   913
                #label: 'Settings'
843
273d9a7c2712 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 815
diff changeset
   914
                #translateLabel: true
737
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   915
                #submenu: 
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   916
                 #(#Menu
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   917
                    
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   918
                     #(
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   919
                       #(#MenuItem
905
5f5d0a415c04 grid magnification can be changed
tz
parents: 903
diff changeset
   920
                          #label: 'Grid Magnification...'
5f5d0a415c04 grid magnification can be changed
tz
parents: 903
diff changeset
   921
                          #translateLabel: true
5f5d0a415c04 grid magnification can be changed
tz
parents: 903
diff changeset
   922
                          #value: #doChangeGridMagnification
5f5d0a415c04 grid magnification can be changed
tz
parents: 903
diff changeset
   923
                          #activeHelpKey: #settingsGridMagnification
5f5d0a415c04 grid magnification can be changed
tz
parents: 903
diff changeset
   924
                      )
5f5d0a415c04 grid magnification can be changed
tz
parents: 903
diff changeset
   925
                       #(#MenuItem
5f5d0a415c04 grid magnification can be changed
tz
parents: 903
diff changeset
   926
                          #label: '-'
5f5d0a415c04 grid magnification can be changed
tz
parents: 903
diff changeset
   927
                      )
5f5d0a415c04 grid magnification can be changed
tz
parents: 903
diff changeset
   928
                       #(#MenuItem
737
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   929
                          #label: 'Fonts'
843
273d9a7c2712 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 815
diff changeset
   930
                          #translateLabel: true
737
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   931
                          #submenuChannel: #menuFont
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   932
                      )
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   933
                    ) nil
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   934
                    nil
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   935
                )
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   936
            )
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   937
             #(#MenuItem
756
52a76ec8828d (image with colorMap size = 1)-bug fixed
tz
parents: 737
diff changeset
   938
                #label: 'History'
843
273d9a7c2712 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 815
diff changeset
   939
                #translateLabel: true
756
52a76ec8828d (image with colorMap size = 1)-bug fixed
tz
parents: 737
diff changeset
   940
                #activeHelpKey: #history
52a76ec8828d (image with colorMap size = 1)-bug fixed
tz
parents: 737
diff changeset
   941
                #submenuChannel: #menuHistory
52a76ec8828d (image with colorMap size = 1)-bug fixed
tz
parents: 737
diff changeset
   942
            )
52a76ec8828d (image with colorMap size = 1)-bug fixed
tz
parents: 737
diff changeset
   943
             #(#MenuItem
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   944
                #label: 'Help'
843
273d9a7c2712 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 815
diff changeset
   945
                #translateLabel: true
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
   946
                #startGroup: #right
738210a2fa06 revised version
tz
parents: 651
diff changeset
   947
                #activeHelpKey: #help
738210a2fa06 revised version
tz
parents: 651
diff changeset
   948
                #submenuChannel: #menuHelp
400
228524287573 intitial checkin
tz
parents:
diff changeset
   949
            )
228524287573 intitial checkin
tz
parents:
diff changeset
   950
          ) nil
228524287573 intitial checkin
tz
parents:
diff changeset
   951
          nil
228524287573 intitial checkin
tz
parents:
diff changeset
   952
      )
919
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
   953
929
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   954
    "Modified: / 29.7.1998 / 22:26:55 / cg"
400
228524287573 intitial checkin
tz
parents:
diff changeset
   955
!
228524287573 intitial checkin
tz
parents:
diff changeset
   956
679
9cd2115ac627 mouse button color menu readded below the color map
tz
parents: 676
diff changeset
   957
menuMouseButtonColors
737
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   958
    "This resource specification was automatically generated
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   959
     by the MenuEditor of ST/X."
679
9cd2115ac627 mouse button color menu readded below the color map
tz
parents: 676
diff changeset
   960
737
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   961
    "Do not manually edit this!! If it is corrupted,
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   962
     the MenuEditor may not be able to read the specification."
679
9cd2115ac627 mouse button color menu readded below the color map
tz
parents: 676
diff changeset
   963
9cd2115ac627 mouse button color menu readded below the color map
tz
parents: 676
diff changeset
   964
    "
9cd2115ac627 mouse button color menu readded below the color map
tz
parents: 676
diff changeset
   965
     MenuEditor new openOnClass:ImageEditor andSelector:#menuMouseButtonColors
9cd2115ac627 mouse button color menu readded below the color map
tz
parents: 676
diff changeset
   966
     (Menu new fromLiteralArrayEncoding:(ImageEditor menuMouseButtonColors)) startUp
9cd2115ac627 mouse button color menu readded below the color map
tz
parents: 676
diff changeset
   967
    "
9cd2115ac627 mouse button color menu readded below the color map
tz
parents: 676
diff changeset
   968
9cd2115ac627 mouse button color menu readded below the color map
tz
parents: 676
diff changeset
   969
    <resource: #menu>
9cd2115ac627 mouse button color menu readded below the color map
tz
parents: 676
diff changeset
   970
9cd2115ac627 mouse button color menu readded below the color map
tz
parents: 676
diff changeset
   971
    ^
9cd2115ac627 mouse button color menu readded below the color map
tz
parents: 676
diff changeset
   972
     
9cd2115ac627 mouse button color menu readded below the color map
tz
parents: 676
diff changeset
   973
       #(#Menu
9cd2115ac627 mouse button color menu readded below the color map
tz
parents: 676
diff changeset
   974
          
9cd2115ac627 mouse button color menu readded below the color map
tz
parents: 676
diff changeset
   975
           #(
9cd2115ac627 mouse button color menu readded below the color map
tz
parents: 676
diff changeset
   976
             #(#MenuItem
9cd2115ac627 mouse button color menu readded below the color map
tz
parents: 676
diff changeset
   977
                #label: 'Left Mouse Button'
9cd2115ac627 mouse button color menu readded below the color map
tz
parents: 676
diff changeset
   978
                #nameKey: #leftMouseKeyButton
9cd2115ac627 mouse button color menu readded below the color map
tz
parents: 676
diff changeset
   979
                #activeHelpKey: #mouseKeyColorMode
9cd2115ac627 mouse button color menu readded below the color map
tz
parents: 676
diff changeset
   980
                #argument: '1'
9cd2115ac627 mouse button color menu readded below the color map
tz
parents: 676
diff changeset
   981
                #labelImage: #(#ResourceRetriever nil #leftMouseKeyIcon)
9cd2115ac627 mouse button color menu readded below the color map
tz
parents: 676
diff changeset
   982
                #indication: #mouseKeyColorMode:value:
9cd2115ac627 mouse button color menu readded below the color map
tz
parents: 676
diff changeset
   983
            )
9cd2115ac627 mouse button color menu readded below the color map
tz
parents: 676
diff changeset
   984
             #(#MenuItem
9cd2115ac627 mouse button color menu readded below the color map
tz
parents: 676
diff changeset
   985
                #label: 'Right Mouse Button'
9cd2115ac627 mouse button color menu readded below the color map
tz
parents: 676
diff changeset
   986
                #nameKey: #rightMouseKeyButton
9cd2115ac627 mouse button color menu readded below the color map
tz
parents: 676
diff changeset
   987
                #activeHelpKey: #mouseKeyColorMode
9cd2115ac627 mouse button color menu readded below the color map
tz
parents: 676
diff changeset
   988
                #argument: '2'
9cd2115ac627 mouse button color menu readded below the color map
tz
parents: 676
diff changeset
   989
                #labelImage: #(#ResourceRetriever nil #rightMouseKeyIcon)
9cd2115ac627 mouse button color menu readded below the color map
tz
parents: 676
diff changeset
   990
                #indication: #mouseKeyColorMode:value:
9cd2115ac627 mouse button color menu readded below the color map
tz
parents: 676
diff changeset
   991
            )
9cd2115ac627 mouse button color menu readded below the color map
tz
parents: 676
diff changeset
   992
          ) nil
9cd2115ac627 mouse button color menu readded below the color map
tz
parents: 676
diff changeset
   993
          nil
9cd2115ac627 mouse button color menu readded below the color map
tz
parents: 676
diff changeset
   994
      )
9cd2115ac627 mouse button color menu readded below the color map
tz
parents: 676
diff changeset
   995
!
9cd2115ac627 mouse button color menu readded below the color map
tz
parents: 676
diff changeset
   996
400
228524287573 intitial checkin
tz
parents:
diff changeset
   997
menuToolbar
737
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   998
    "This resource specification was automatically generated
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
   999
     by the MenuEditor of ST/X."
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1000
737
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
  1001
    "Do not manually edit this!! If it is corrupted,
ed5b109a0f91 user can define own fonts
tz
parents: 732
diff changeset
  1002
     the MenuEditor may not be able to read the specification."
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1003
228524287573 intitial checkin
tz
parents:
diff changeset
  1004
    "
228524287573 intitial checkin
tz
parents:
diff changeset
  1005
     MenuEditor new openOnClass:ImageEditor andSelector:#menuToolbar
228524287573 intitial checkin
tz
parents:
diff changeset
  1006
     (Menu new fromLiteralArrayEncoding:(ImageEditor menuToolbar)) startUp
228524287573 intitial checkin
tz
parents:
diff changeset
  1007
    "
228524287573 intitial checkin
tz
parents:
diff changeset
  1008
228524287573 intitial checkin
tz
parents:
diff changeset
  1009
    <resource: #menu>
228524287573 intitial checkin
tz
parents:
diff changeset
  1010
228524287573 intitial checkin
tz
parents:
diff changeset
  1011
    ^
228524287573 intitial checkin
tz
parents:
diff changeset
  1012
     
228524287573 intitial checkin
tz
parents:
diff changeset
  1013
       #(#Menu
228524287573 intitial checkin
tz
parents:
diff changeset
  1014
          
228524287573 intitial checkin
tz
parents:
diff changeset
  1015
           #(
228524287573 intitial checkin
tz
parents:
diff changeset
  1016
             #(#MenuItem
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
  1017
                #label: 'newImage'
738210a2fa06 revised version
tz
parents: 651
diff changeset
  1018
                #isButton: true
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1019
                #value: #doNewImage
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
  1020
                #activeHelpKey: #fileNewImage
880
a344e9ef09dc images moved to class Icon
tz
parents: 843
diff changeset
  1021
                #labelImage: #(#ResourceRetriever #Icon #newIcon)
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1022
            )
228524287573 intitial checkin
tz
parents:
diff changeset
  1023
             #(#MenuItem
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
  1024
                #label: 'loadFromClass'
738210a2fa06 revised version
tz
parents: 651
diff changeset
  1025
                #isButton: true
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1026
                #value: #doLoadFromClass
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
  1027
                #activeHelpKey: #fileLoadFromClass
880
a344e9ef09dc images moved to class Icon
tz
parents: 843
diff changeset
  1028
                #labelImage: #(#ResourceRetriever #Icon #loadIcon)
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
  1029
            )
738210a2fa06 revised version
tz
parents: 651
diff changeset
  1030
             #(#MenuItem
738210a2fa06 revised version
tz
parents: 651
diff changeset
  1031
                #label: 'saveMethod'
738210a2fa06 revised version
tz
parents: 651
diff changeset
  1032
                #isButton: true
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1033
                #value: #doSaveMethod
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
  1034
                #activeHelpKey: #fileSaveMethod
738210a2fa06 revised version
tz
parents: 651
diff changeset
  1035
                #enabled: #imageIsLoaded
880
a344e9ef09dc images moved to class Icon
tz
parents: 843
diff changeset
  1036
                #labelImage: #(#ResourceRetriever #Icon #saveIcon)
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1037
            )
228524287573 intitial checkin
tz
parents:
diff changeset
  1038
             #(#MenuItem
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
  1039
                #label: ''
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1040
            )
228524287573 intitial checkin
tz
parents:
diff changeset
  1041
             #(#MenuItem
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
  1042
                #label: ''
738210a2fa06 revised version
tz
parents: 651
diff changeset
  1043
            )
738210a2fa06 revised version
tz
parents: 651
diff changeset
  1044
             #(#MenuItem
738210a2fa06 revised version
tz
parents: 651
diff changeset
  1045
                #label: ''
738210a2fa06 revised version
tz
parents: 651
diff changeset
  1046
            )
738210a2fa06 revised version
tz
parents: 651
diff changeset
  1047
             #(#MenuItem
738210a2fa06 revised version
tz
parents: 651
diff changeset
  1048
                #label: ''
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1049
            )
228524287573 intitial checkin
tz
parents:
diff changeset
  1050
             #(#MenuItem
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
  1051
                #label: 'Point'
738210a2fa06 revised version
tz
parents: 651
diff changeset
  1052
                #activeHelpKey: #drawModePoint
738210a2fa06 revised version
tz
parents: 651
diff changeset
  1053
                #enabled: #imageIsLoaded
738210a2fa06 revised version
tz
parents: 651
diff changeset
  1054
                #argument: 'point'
738210a2fa06 revised version
tz
parents: 651
diff changeset
  1055
                #indication: #editMode:value:
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1056
            )
228524287573 intitial checkin
tz
parents:
diff changeset
  1057
             #(#MenuItem
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
  1058
                #label: 'Box'
738210a2fa06 revised version
tz
parents: 651
diff changeset
  1059
                #activeHelpKey: #drawModeBox
738210a2fa06 revised version
tz
parents: 651
diff changeset
  1060
                #enabled: #imageIsLoaded
738210a2fa06 revised version
tz
parents: 651
diff changeset
  1061
                #argument: 'box'
738210a2fa06 revised version
tz
parents: 651
diff changeset
  1062
                #indication: #editMode:value:
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1063
            )
228524287573 intitial checkin
tz
parents:
diff changeset
  1064
             #(#MenuItem
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
  1065
                #label: 'Filled Box'
738210a2fa06 revised version
tz
parents: 651
diff changeset
  1066
                #activeHelpKey: #drawModeFilledBox
738210a2fa06 revised version
tz
parents: 651
diff changeset
  1067
                #enabled: #imageIsLoaded
738210a2fa06 revised version
tz
parents: 651
diff changeset
  1068
                #argument: 'filledBox'
738210a2fa06 revised version
tz
parents: 651
diff changeset
  1069
                #indication: #editMode:value:
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1070
            )
228524287573 intitial checkin
tz
parents:
diff changeset
  1071
             #(#MenuItem
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
  1072
                #label: 'Fill'
738210a2fa06 revised version
tz
parents: 651
diff changeset
  1073
                #activeHelpKey: #drawModeFill
738210a2fa06 revised version
tz
parents: 651
diff changeset
  1074
                #enabled: #imageIsLoaded
738210a2fa06 revised version
tz
parents: 651
diff changeset
  1075
                #argument: 'fill'
738210a2fa06 revised version
tz
parents: 651
diff changeset
  1076
                #indication: #editMode:value:
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1077
            )
228524287573 intitial checkin
tz
parents:
diff changeset
  1078
             #(#MenuItem
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
  1079
                #label: 'Copy'
738210a2fa06 revised version
tz
parents: 651
diff changeset
  1080
                #activeHelpKey: #drawModeCopy
738210a2fa06 revised version
tz
parents: 651
diff changeset
  1081
                #enabled: #imageIsLoaded
738210a2fa06 revised version
tz
parents: 651
diff changeset
  1082
                #argument: 'copy'
738210a2fa06 revised version
tz
parents: 651
diff changeset
  1083
                #indication: #editMode:value:
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1084
            )
228524287573 intitial checkin
tz
parents:
diff changeset
  1085
             #(#MenuItem
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
  1086
                #label: 'Paste'
738210a2fa06 revised version
tz
parents: 651
diff changeset
  1087
                #activeHelpKey: #drawModePaste
738210a2fa06 revised version
tz
parents: 651
diff changeset
  1088
                #enabled: #imageIsLoaded
738210a2fa06 revised version
tz
parents: 651
diff changeset
  1089
                #argument: 'paste'
738210a2fa06 revised version
tz
parents: 651
diff changeset
  1090
                #indication: #editMode:value:
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1091
            )
914
b4f32d092c8b added paste-under;
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  1092
             #(#MenuItem
b4f32d092c8b added paste-under;
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  1093
                #label: 'Paste Under'
b4f32d092c8b added paste-under;
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  1094
                #activeHelpKey: #drawModePasteUnder
b4f32d092c8b added paste-under;
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  1095
                #enabled: #imageIsLoaded
b4f32d092c8b added paste-under;
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  1096
                #argument: 'pasteUnder'
b4f32d092c8b added paste-under;
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  1097
                #indication: #editMode:value:
b4f32d092c8b added paste-under;
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
  1098
            )
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1099
          ) nil
228524287573 intitial checkin
tz
parents:
diff changeset
  1100
          nil
228524287573 intitial checkin
tz
parents:
diff changeset
  1101
      )
228524287573 intitial checkin
tz
parents:
diff changeset
  1102
! !
228524287573 intitial checkin
tz
parents:
diff changeset
  1103
228524287573 intitial checkin
tz
parents:
diff changeset
  1104
!ImageEditor methodsFor:'accessing'!
228524287573 intitial checkin
tz
parents:
diff changeset
  1105
228524287573 intitial checkin
tz
parents:
diff changeset
  1106
image
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1107
    "returns the current editing image"
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1108
911
ec8db5b62352 unnecessary calls removed
tz
parents: 905
diff changeset
  1109
    ^imageEditView image
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1110
!
228524287573 intitial checkin
tz
parents:
diff changeset
  1111
228524287573 intitial checkin
tz
parents:
diff changeset
  1112
postOpenAction: anAction
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1113
   "sets an action which is evaluated after opening"
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1114
228524287573 intitial checkin
tz
parents:
diff changeset
  1115
    postOpenAction := anAction
228524287573 intitial checkin
tz
parents:
diff changeset
  1116
! !
228524287573 intitial checkin
tz
parents:
diff changeset
  1117
228524287573 intitial checkin
tz
parents:
diff changeset
  1118
!ImageEditor methodsFor:'accessing - views'!
228524287573 intitial checkin
tz
parents:
diff changeset
  1119
915
99f8e19aab3a better use a columnAdaptor to fetch r/g/b values from a color.
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
  1120
colorDataSetView
99f8e19aab3a better use a columnAdaptor to fetch r/g/b values from a color.
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
  1121
    "returns the view of the colormap"
99f8e19aab3a better use a columnAdaptor to fetch r/g/b values from a color.
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
  1122
99f8e19aab3a better use a columnAdaptor to fetch r/g/b values from a color.
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
  1123
    ^(builder componentAt: #colorDataSetView)
99f8e19aab3a better use a columnAdaptor to fetch r/g/b values from a color.
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
  1124
99f8e19aab3a better use a columnAdaptor to fetch r/g/b values from a color.
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
  1125
    "Created: / 26.7.1998 / 12:02:14 / cg"
99f8e19aab3a better use a columnAdaptor to fetch r/g/b values from a color.
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
  1126
!
99f8e19aab3a better use a columnAdaptor to fetch r/g/b values from a color.
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
  1127
487
6c336c183330 info bar as subSpec to class ToolApplicationModel moved
tz
parents: 475
diff changeset
  1128
coordLabel
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1129
    "returns the view the coord label"
487
6c336c183330 info bar as subSpec to class ToolApplicationModel moved
tz
parents: 475
diff changeset
  1130
6c336c183330 info bar as subSpec to class ToolApplicationModel moved
tz
parents: 475
diff changeset
  1131
    ^builder componentAt: #coordLabel
6c336c183330 info bar as subSpec to class ToolApplicationModel moved
tz
parents: 475
diff changeset
  1132
!
6c336c183330 info bar as subSpec to class ToolApplicationModel moved
tz
parents: 475
diff changeset
  1133
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1134
imageEditView
911
ec8db5b62352 unnecessary calls removed
tz
parents: 905
diff changeset
  1135
    "returns the view of the image"
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1136
911
ec8db5b62352 unnecessary calls removed
tz
parents: 905
diff changeset
  1137
    ^imageEditView := (builder componentAt: #imageEditView) subViews first 
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1138
!
228524287573 intitial checkin
tz
parents:
diff changeset
  1139
228524287573 intitial checkin
tz
parents:
diff changeset
  1140
imagePreView
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1141
    "returns the preview of the image"
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1142
228524287573 intitial checkin
tz
parents:
diff changeset
  1143
    ^(builder componentAt: #imagePreView) subViews first 
475
0d5a50fe59f4 default value of info label set
tz
parents: 468
diff changeset
  1144
! !
0d5a50fe59f4 default value of info label set
tz
parents: 468
diff changeset
  1145
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1146
!ImageEditor methodsFor:'aspects'!
228524287573 intitial checkin
tz
parents:
diff changeset
  1147
928
89bd2304da33 cleaned up imageEitViews interface to my infoPanel
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  1148
activityInfoHolder
89bd2304da33 cleaned up imageEitViews interface to my infoPanel
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  1149
    ^ self valueOfInfoLabel
89bd2304da33 cleaned up imageEitViews interface to my infoPanel
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  1150
89bd2304da33 cleaned up imageEitViews interface to my infoPanel
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  1151
    "Modified: / 29.7.1998 / 18:49:03 / cg"
89bd2304da33 cleaned up imageEitViews interface to my infoPanel
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  1152
!
89bd2304da33 cleaned up imageEitViews interface to my infoPanel
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  1153
915
99f8e19aab3a better use a columnAdaptor to fetch r/g/b values from a color.
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
  1154
colorColumnAdaptor
99f8e19aab3a better use a columnAdaptor to fetch r/g/b values from a color.
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
  1155
    ^ self
99f8e19aab3a better use a columnAdaptor to fetch r/g/b values from a color.
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
  1156
99f8e19aab3a better use a columnAdaptor to fetch r/g/b values from a color.
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
  1157
    "Created: / 26.7.1998 / 12:17:03 / cg"
99f8e19aab3a better use a columnAdaptor to fetch r/g/b values from a color.
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
  1158
!
99f8e19aab3a better use a columnAdaptor to fetch r/g/b values from a color.
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
  1159
928
89bd2304da33 cleaned up imageEitViews interface to my infoPanel
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  1160
imageInfoHolder
89bd2304da33 cleaned up imageEitViews interface to my infoPanel
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  1161
    |holder|
89bd2304da33 cleaned up imageEitViews interface to my infoPanel
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  1162
    (holder := builder bindingAt:#imageInfoHolder) isNil ifTrue:[
89bd2304da33 cleaned up imageEitViews interface to my infoPanel
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  1163
        builder aspectAt:#imageInfoHolder put:(holder :=  '' asValue).
89bd2304da33 cleaned up imageEitViews interface to my infoPanel
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  1164
    ].
89bd2304da33 cleaned up imageEitViews interface to my infoPanel
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  1165
    ^ holder
89bd2304da33 cleaned up imageEitViews interface to my infoPanel
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  1166
89bd2304da33 cleaned up imageEitViews interface to my infoPanel
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  1167
    "Modified: / 29.7.1998 / 18:32:08 / cg"
89bd2304da33 cleaned up imageEitViews interface to my infoPanel
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  1168
!
89bd2304da33 cleaned up imageEitViews interface to my infoPanel
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  1169
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1170
imageIsLoaded
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1171
    "returns whether an image is loaded as value holder"
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1172
228524287573 intitial checkin
tz
parents:
diff changeset
  1173
    |holder|
228524287573 intitial checkin
tz
parents:
diff changeset
  1174
    (holder := builder bindingAt:#imageIsLoaded) isNil ifTrue:[
228524287573 intitial checkin
tz
parents:
diff changeset
  1175
        builder aspectAt:#imageIsLoaded put:(holder :=  false asValue).
228524287573 intitial checkin
tz
parents:
diff changeset
  1176
    ].
228524287573 intitial checkin
tz
parents:
diff changeset
  1177
    ^ holder
228524287573 intitial checkin
tz
parents:
diff changeset
  1178
!
228524287573 intitial checkin
tz
parents:
diff changeset
  1179
228524287573 intitial checkin
tz
parents:
diff changeset
  1180
listOfColors
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1181
    "returns the list of colors in a List"
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1182
228524287573 intitial checkin
tz
parents:
diff changeset
  1183
    |holder|
228524287573 intitial checkin
tz
parents:
diff changeset
  1184
    (holder := builder bindingAt:#listOfColors) isNil ifTrue:[
228524287573 intitial checkin
tz
parents:
diff changeset
  1185
        builder aspectAt:#listOfColors put:(holder :=  List new).
228524287573 intitial checkin
tz
parents:
diff changeset
  1186
    ].
228524287573 intitial checkin
tz
parents:
diff changeset
  1187
    ^ holder
228524287573 intitial checkin
tz
parents:
diff changeset
  1188
!
228524287573 intitial checkin
tz
parents:
diff changeset
  1189
228524287573 intitial checkin
tz
parents:
diff changeset
  1190
selectionOfColor
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1191
    "returns current selection of the edit color as an AspectAdaptor"
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1192
228524287573 intitial checkin
tz
parents:
diff changeset
  1193
    |holder|
228524287573 intitial checkin
tz
parents:
diff changeset
  1194
    (holder := builder bindingAt:#selectionOfColor) isNil ifTrue:[
228524287573 intitial checkin
tz
parents:
diff changeset
  1195
        builder aspectAt:#selectionOfColor put:(
228524287573 intitial checkin
tz
parents:
diff changeset
  1196
        holder := AspectAdaptor new subject:self; forAspect:#selectedColorIndex).
228524287573 intitial checkin
tz
parents:
diff changeset
  1197
    ].
228524287573 intitial checkin
tz
parents:
diff changeset
  1198
    ^ holder
228524287573 intitial checkin
tz
parents:
diff changeset
  1199
!
228524287573 intitial checkin
tz
parents:
diff changeset
  1200
228524287573 intitial checkin
tz
parents:
diff changeset
  1201
valueOfMagnification
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1202
    "returns current magnification of the image as an AspectAdaptor"
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1203
228524287573 intitial checkin
tz
parents:
diff changeset
  1204
    |holder|
228524287573 intitial checkin
tz
parents:
diff changeset
  1205
    (holder := builder bindingAt:#valueOfMagnification) isNil ifTrue:[
228524287573 intitial checkin
tz
parents:
diff changeset
  1206
        builder aspectAt:#valueOfMagnification put:(
228524287573 intitial checkin
tz
parents:
diff changeset
  1207
        holder := AspectAdaptor new subject:self; forAspect:#magnification)
228524287573 intitial checkin
tz
parents:
diff changeset
  1208
    ].
228524287573 intitial checkin
tz
parents:
diff changeset
  1209
    ^ holder
228524287573 intitial checkin
tz
parents:
diff changeset
  1210
! !
228524287573 intitial checkin
tz
parents:
diff changeset
  1211
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1212
!ImageEditor methodsFor:'change & update'!
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1213
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1214
findColorMapMode
899
43b744c647ba comment grammar
tz
parents: 898
diff changeset
  1215
    "finds the colorMapMode for a new image"
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1216
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1217
    self image depth > 8 ifTrue: [colorMapMode := ''. self listOfColors removeAll. ^nil].
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1218
    colorMapMode := self image depth printString, '-plane'.
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1219
    self listOfColors isEmpty
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1220
    ifTrue:
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1221
    [   
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1222
         self colorMapMode: colorMapMode value: nil
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1223
    ].                               
911
ec8db5b62352 unnecessary calls removed
tz
parents: 905
diff changeset
  1224
    imageEditView selectColors: (Array with: (self listOfColors at: 1) with: (self listOfColors at: 2 ifAbsent: [self listOfColors at: 1])).
898
d2ae6ce33fec bugs fixed in undo/mask and pasting
tz
parents: 895
diff changeset
  1225
d2ae6ce33fec bugs fixed in undo/mask and pasting
tz
parents: 895
diff changeset
  1226
    self image mask notNil
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1227
    ifTrue:
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1228
    [         
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1229
        colorMapMode := colorMapMode, ' + mask'.
898
d2ae6ce33fec bugs fixed in undo/mask and pasting
tz
parents: 895
diff changeset
  1230
        (self listOfColors detect: [:clr| clr = (Color basicNew setColorId:0)] ifNone: nil) isNil
d2ae6ce33fec bugs fixed in undo/mask and pasting
tz
parents: 895
diff changeset
  1231
        ifTrue:
d2ae6ce33fec bugs fixed in undo/mask and pasting
tz
parents: 895
diff changeset
  1232
        [
d2ae6ce33fec bugs fixed in undo/mask and pasting
tz
parents: 895
diff changeset
  1233
            self listOfColors addFirst: (Color basicNew setColorId:0).
911
ec8db5b62352 unnecessary calls removed
tz
parents: 905
diff changeset
  1234
            imageEditView selectColors: (Array with: (self listOfColors at: 2 ifAbsent: [self listOfColors at: 1]) with: (self listOfColors at: 1)).
898
d2ae6ce33fec bugs fixed in undo/mask and pasting
tz
parents: 895
diff changeset
  1235
        ]
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1236
    ].
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1237
    self selectionOfColor value: 0.
911
ec8db5b62352 unnecessary calls removed
tz
parents: 905
diff changeset
  1238
    self selectionOfColor value: (self listOfColors indexOf: imageEditView selectedColor).
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1239
!
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1240
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1241
updateForNoneImage
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1242
    "updates channels and view, if image is loaded"
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1243
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1244
    self imageIsLoaded value: false.
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1245
    self listOfColors removeAll.
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1246
    self imagePreView image: nil
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1247
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1248
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1249
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1250
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1251
!
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1252
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1253
updateLabelsAndHistory
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1254
    "updates labels and history, if something has changed"
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1255
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1256
    self imageIsLoaded value: self image notNil.
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1257
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1258
    self image isNil ifTrue: [^nil].
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1259
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1260
    self updateInfoLabel.
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1261
911
ec8db5b62352 unnecessary calls removed
tz
parents: 905
diff changeset
  1262
    imageEditView resourceMessage asCollectionOfWords size = 2
ec8db5b62352 unnecessary calls removed
tz
parents: 905
diff changeset
  1263
        ifTrue: [self addToHistory: imageEditView resourceMessage -> #loadFromMessage:].
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1264
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1265
    self image fileName notNil
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1266
        ifTrue: [self addToHistory: self image fileName -> #loadFromFile:].
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1267
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1268
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1269
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1270
! !
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1271
915
99f8e19aab3a better use a columnAdaptor to fetch r/g/b values from a color.
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
  1272
!ImageEditor methodsFor:'data access'!
99f8e19aab3a better use a columnAdaptor to fetch r/g/b values from a color.
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
  1273
99f8e19aab3a better use a columnAdaptor to fetch r/g/b values from a color.
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
  1274
blueFromColor:aColor
99f8e19aab3a better use a columnAdaptor to fetch r/g/b values from a color.
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
  1275
    "helper used to access a color as a row in the dataSet view"
99f8e19aab3a better use a columnAdaptor to fetch r/g/b values from a color.
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
  1276
930
4cf126b710b3 handle errors when grabbing
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  1277
    aColor isNil ifTrue:[^ 'none'].
915
99f8e19aab3a better use a columnAdaptor to fetch r/g/b values from a color.
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
  1278
    ^ aColor blueByte ? 'mask'
99f8e19aab3a better use a columnAdaptor to fetch r/g/b values from a color.
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
  1279
99f8e19aab3a better use a columnAdaptor to fetch r/g/b values from a color.
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
  1280
    "Created: / 26.7.1998 / 12:30:35 / cg"
930
4cf126b710b3 handle errors when grabbing
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  1281
    "Modified: / 31.7.1998 / 01:11:18 / cg"
915
99f8e19aab3a better use a columnAdaptor to fetch r/g/b values from a color.
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
  1282
!
99f8e19aab3a better use a columnAdaptor to fetch r/g/b values from a color.
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
  1283
99f8e19aab3a better use a columnAdaptor to fetch r/g/b values from a color.
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
  1284
greenFromColor:aColor
99f8e19aab3a better use a columnAdaptor to fetch r/g/b values from a color.
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
  1285
    "helper used to access a color as a row in the dataSet view"
99f8e19aab3a better use a columnAdaptor to fetch r/g/b values from a color.
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
  1286
930
4cf126b710b3 handle errors when grabbing
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  1287
    aColor isNil ifTrue:[^ 'none'].
915
99f8e19aab3a better use a columnAdaptor to fetch r/g/b values from a color.
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
  1288
    ^ aColor greenByte ? 'mask'
99f8e19aab3a better use a columnAdaptor to fetch r/g/b values from a color.
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
  1289
99f8e19aab3a better use a columnAdaptor to fetch r/g/b values from a color.
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
  1290
    "Created: / 26.7.1998 / 12:30:29 / cg"
930
4cf126b710b3 handle errors when grabbing
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  1291
    "Modified: / 31.7.1998 / 01:11:31 / cg"
915
99f8e19aab3a better use a columnAdaptor to fetch r/g/b values from a color.
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
  1292
!
99f8e19aab3a better use a columnAdaptor to fetch r/g/b values from a color.
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
  1293
99f8e19aab3a better use a columnAdaptor to fetch r/g/b values from a color.
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
  1294
redFromColor:aColor
99f8e19aab3a better use a columnAdaptor to fetch r/g/b values from a color.
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
  1295
    "helper used to access a color as a row in the dataSet view"
99f8e19aab3a better use a columnAdaptor to fetch r/g/b values from a color.
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
  1296
930
4cf126b710b3 handle errors when grabbing
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  1297
    aColor isNil ifTrue:[^ 'none'].
915
99f8e19aab3a better use a columnAdaptor to fetch r/g/b values from a color.
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
  1298
    ^ aColor redByte ? 'mask'
99f8e19aab3a better use a columnAdaptor to fetch r/g/b values from a color.
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
  1299
930
4cf126b710b3 handle errors when grabbing
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  1300
    "Modified: / 31.7.1998 / 01:11:35 / cg"
915
99f8e19aab3a better use a columnAdaptor to fetch r/g/b values from a color.
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
  1301
! !
99f8e19aab3a better use a columnAdaptor to fetch r/g/b values from a color.
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
  1302
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
  1303
!ImageEditor methodsFor:'help'!
738210a2fa06 revised version
tz
parents: 651
diff changeset
  1304
738210a2fa06 revised version
tz
parents: 651
diff changeset
  1305
defaultInfoLabel
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1306
    "returns the default info label"
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
  1307
911
ec8db5b62352 unnecessary calls removed
tz
parents: 905
diff changeset
  1308
    (imageEditView resourceClass isSymbol and: [(Smalltalk at: imageEditView resourceClass) isClass])
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
  1309
    ifTrue:
738210a2fa06 revised version
tz
parents: 651
diff changeset
  1310
    [
911
ec8db5b62352 unnecessary calls removed
tz
parents: 905
diff changeset
  1311
        ^imageEditView resourceClass, ' >> ', imageEditView resourceSelector
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
  1312
    ].
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1313
    ^'No class and selector defined.'
674
d49e23b768e6 unused method found + help file access added
tz
parents: 673
diff changeset
  1314
!
d49e23b768e6 unused method found + help file access added
tz
parents: 673
diff changeset
  1315
702
c9de7a9bc416 docu call changed
tz
parents: 694
diff changeset
  1316
openDocumentation
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1317
    "opens the documentation file of the Image Editor"
674
d49e23b768e6 unused method found + help file access added
tz
parents: 673
diff changeset
  1318
763
19b3e479e0b8 docu call
tz
parents: 756
diff changeset
  1319
    self openHTMLDocument: 'tools/uipainter/ImageEditor.html'
19b3e479e0b8 docu call
tz
parents: 756
diff changeset
  1320
672
738210a2fa06 revised version
tz
parents: 651
diff changeset
  1321
! !
738210a2fa06 revised version
tz
parents: 651
diff changeset
  1322
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1323
!ImageEditor methodsFor:'loading'!
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1324
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1325
loadFromFile: aFileName
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1326
    "loads an image from aFileName and sets up color map list and other info labels"
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1327
911
ec8db5b62352 unnecessary calls removed
tz
parents: 905
diff changeset
  1328
    (imageEditView loadFromFile: aFileName) notNil
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1329
    ifTrue:
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1330
    [
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1331
        self image notNil
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1332
        ifTrue:
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1333
        [          
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1334
            self image colorMap notNil
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1335
            ifTrue:
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1336
            [
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1337
                self listOfColors contents: self image usedColors asSet.
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1338
            ]
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1339
            ifFalse:
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1340
            [
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1341
                self listOfColors removeAll.
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1342
            ].
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1343
            self findColorMapMode.     
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1344
            self updateLabelsAndHistory.
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1345
        ]
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1346
        ifFalse:
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1347
        [
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1348
            self updateForNoneImage
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1349
        ]
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1350
    ]
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1351
!
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1352
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1353
loadFromImage: anImage
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1354
    "loads an image from anImage and sets up color map list and other info labels"
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1355
911
ec8db5b62352 unnecessary calls removed
tz
parents: 905
diff changeset
  1356
    imageEditView image: anImage.
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1357
    self image notNil
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1358
    ifTrue:
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1359
    [    
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1360
        self image colorMap notNil
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1361
        ifTrue:
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1362
        [
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1363
            self listOfColors contents: self image usedColors asSet asOrderedCollection.
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1364
        ]
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1365
        ifFalse:
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1366
        [
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1367
            self listOfColors removeAll.
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1368
        ].
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1369
        self findColorMapMode.
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1370
        self updateLabelsAndHistory.
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1371
    ]
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1372
    ifFalse:
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1373
    [
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1374
        self updateForNoneImage
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1375
    ]
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1376
!
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1377
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1378
loadFromMessage: aMessage
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1379
    "loads an image by evaluating aMessage and sets up color map list and other info labels"
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1380
911
ec8db5b62352 unnecessary calls removed
tz
parents: 905
diff changeset
  1381
    (imageEditView loadFromMessage: aMessage) notNil
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1382
    ifTrue:
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1383
    [
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1384
        self image notNil
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1385
        ifTrue:
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1386
        [
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1387
            self listOfColors contents: self image usedColors asSet asOrderedCollection.
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1388
            self findColorMapMode.
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1389
            self updateLabelsAndHistory.
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1390
        ]
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1391
        ifFalse:
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1392
        [
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1393
            self updateForNoneImage
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1394
        ]
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1395
    ]
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1396
!
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1397
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1398
loadFromOrPrepareForMessage: aMessage
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1399
    "loads an image by evaluating aMessage;
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1400
     if no image could extract from aMessage; do set the class and the selector from 
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1401
     the aMessage for a saving at the end of editing"
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1402
911
ec8db5b62352 unnecessary calls removed
tz
parents: 905
diff changeset
  1403
    (imageEditView loadFromMessage: aMessage) notNil
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1404
    ifTrue:
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1405
    [
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1406
        self listOfColors contents: self image usedColors asSet asOrderedCollection.
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1407
        self findColorMapMode.
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1408
    ]
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1409
    ifFalse:
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1410
    [
911
ec8db5b62352 unnecessary calls removed
tz
parents: 905
diff changeset
  1411
        imageEditView resourceMessage: aMessage.
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1412
    ].
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1413
    self updateLabelsAndHistory.
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1414
! !
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1415
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1416
!ImageEditor methodsFor:'menu modes'!
228524287573 intitial checkin
tz
parents:
diff changeset
  1417
228524287573 intitial checkin
tz
parents:
diff changeset
  1418
colorMapMode: aMode
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1419
    "returns whether colorMapMode is equal to aMode"
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1420
228524287573 intitial checkin
tz
parents:
diff changeset
  1421
    ^colorMapMode = aMode
228524287573 intitial checkin
tz
parents:
diff changeset
  1422
!
228524287573 intitial checkin
tz
parents:
diff changeset
  1423
228524287573 intitial checkin
tz
parents:
diff changeset
  1424
editMode: aMode
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1425
    "returns whether editMode is equal to aMode"
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1426
928
89bd2304da33 cleaned up imageEitViews interface to my infoPanel
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  1427
    ^ imageEditView notNil and:[imageEditView editMode = aMode]
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1428
!
228524287573 intitial checkin
tz
parents:
diff changeset
  1429
228524287573 intitial checkin
tz
parents:
diff changeset
  1430
editMode: aMode value: aValue
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1431
    "sets the editMode to aMode"
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1432
911
ec8db5b62352 unnecessary calls removed
tz
parents: 905
diff changeset
  1433
    imageEditView editMode: aMode
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1434
!
228524287573 intitial checkin
tz
parents:
diff changeset
  1435
228524287573 intitial checkin
tz
parents:
diff changeset
  1436
mouseKeyColorMode: aMode
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1437
    "sets the mouseKeyColorMode to aMode"
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1438
911
ec8db5b62352 unnecessary calls removed
tz
parents: 905
diff changeset
  1439
    ^imageEditView mouseKeyColorMode = aMode
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1440
!
228524287573 intitial checkin
tz
parents:
diff changeset
  1441
228524287573 intitial checkin
tz
parents:
diff changeset
  1442
mouseKeyColorMode: aMode value: aValue
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1443
    "sets the mouseKeyColorMode to aMode"
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1444
911
ec8db5b62352 unnecessary calls removed
tz
parents: 905
diff changeset
  1445
    imageEditView mouseKeyColorMode: aMode.
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1446
911
ec8db5b62352 unnecessary calls removed
tz
parents: 905
diff changeset
  1447
    self selectionOfColor value: (self listOfColors indexOf: imageEditView selectedColor).
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1448
! !
228524287573 intitial checkin
tz
parents:
diff changeset
  1449
535
1caf545614c5 info bar subspec changed
tz
parents: 519
diff changeset
  1450
!ImageEditor methodsFor:'queries'!
1caf545614c5 info bar subspec changed
tz
parents: 519
diff changeset
  1451
1caf545614c5 info bar subspec changed
tz
parents: 519
diff changeset
  1452
preferredExtent
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1453
    "returns the preferred extent"
535
1caf545614c5 info bar subspec changed
tz
parents: 519
diff changeset
  1454
1caf545614c5 info bar subspec changed
tz
parents: 519
diff changeset
  1455
    ^super preferredExtent max: (Screen current width//3)@(Screen current height//3.5)
1caf545614c5 info bar subspec changed
tz
parents: 519
diff changeset
  1456
1caf545614c5 info bar subspec changed
tz
parents: 519
diff changeset
  1457
1caf545614c5 info bar subspec changed
tz
parents: 519
diff changeset
  1458
! !
1caf545614c5 info bar subspec changed
tz
parents: 519
diff changeset
  1459
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1460
!ImageEditor methodsFor:'selection'!
228524287573 intitial checkin
tz
parents:
diff changeset
  1461
228524287573 intitial checkin
tz
parents:
diff changeset
  1462
magnification
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1463
    "returns the magnification of the image"
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1464
911
ec8db5b62352 unnecessary calls removed
tz
parents: 905
diff changeset
  1465
    self imageEditView isNil ifTrue: [^1].
ec8db5b62352 unnecessary calls removed
tz
parents: 905
diff changeset
  1466
    ^imageEditView magnification x
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1467
!
228524287573 intitial checkin
tz
parents:
diff changeset
  1468
228524287573 intitial checkin
tz
parents:
diff changeset
  1469
magnification: aValue
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1470
    "sets the magnification of the image"
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1471
905
5f5d0a415c04 grid magnification can be changed
tz
parents: 903
diff changeset
  1472
    |magnification|        
5f5d0a415c04 grid magnification can be changed
tz
parents: 903
diff changeset
  1473
    magnification := (aValue ? 1) asPoint.
911
ec8db5b62352 unnecessary calls removed
tz
parents: 905
diff changeset
  1474
    (magnification = imageEditView magnification or: [magnification = (0@0)]) ifTrue: [^nil].
ec8db5b62352 unnecessary calls removed
tz
parents: 905
diff changeset
  1475
    imageEditView magnification: magnification
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1476
!
228524287573 intitial checkin
tz
parents:
diff changeset
  1477
228524287573 intitial checkin
tz
parents:
diff changeset
  1478
selectedColorIndex
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1479
    "returns the index of the selected color"
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1480
228524287573 intitial checkin
tz
parents:
diff changeset
  1481
    ^selectedColorIndex
228524287573 intitial checkin
tz
parents:
diff changeset
  1482
!
228524287573 intitial checkin
tz
parents:
diff changeset
  1483
228524287573 intitial checkin
tz
parents:
diff changeset
  1484
selectedColorIndex: anIndex
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1485
    "sets the index of the selected color"
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1486
228524287573 intitial checkin
tz
parents:
diff changeset
  1487
    selectedColorIndex := anIndex.    
911
ec8db5b62352 unnecessary calls removed
tz
parents: 905
diff changeset
  1488
    imageEditView selectedColor: (self listOfColors at: anIndex ifAbsent: [^nil])
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1489
228524287573 intitial checkin
tz
parents:
diff changeset
  1490
! !
228524287573 intitial checkin
tz
parents:
diff changeset
  1491
228524287573 intitial checkin
tz
parents:
diff changeset
  1492
!ImageEditor methodsFor:'startup / release'!
228524287573 intitial checkin
tz
parents:
diff changeset
  1493
228524287573 intitial checkin
tz
parents:
diff changeset
  1494
closeRequest
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1495
    "close request"
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1496
911
ec8db5b62352 unnecessary calls removed
tz
parents: 905
diff changeset
  1497
    imageEditView checkModified ifTrue:[super closeRequest]
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1498
228524287573 intitial checkin
tz
parents:
diff changeset
  1499
!
228524287573 intitial checkin
tz
parents:
diff changeset
  1500
228524287573 intitial checkin
tz
parents:
diff changeset
  1501
open
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1502
    "after opening, sets the masterApplication of the imageEditView to self"
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1503
228524287573 intitial checkin
tz
parents:
diff changeset
  1504
    super open.
444
cd7959cb70dd some clean ups
tz
parents: 420
diff changeset
  1505
911
ec8db5b62352 unnecessary calls removed
tz
parents: 905
diff changeset
  1506
    imageEditView := (builder componentAt: #imageEditView) subViews first.
ec8db5b62352 unnecessary calls removed
tz
parents: 905
diff changeset
  1507
    imageEditView masterApplication: self
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1508
!
228524287573 intitial checkin
tz
parents:
diff changeset
  1509
228524287573 intitial checkin
tz
parents:
diff changeset
  1510
postOpenWith:aBuilder
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1511
    "after opening, sets the masterApplication of the imageEditView to self;
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1512
     evaluate the postOpenAction"
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1513
911
ec8db5b62352 unnecessary calls removed
tz
parents: 905
diff changeset
  1514
    imageEditView masterApplication: self.
928
89bd2304da33 cleaned up imageEitViews interface to my infoPanel
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  1515
    imageEditView imageInfoHolder:(self imageInfoHolder).
89bd2304da33 cleaned up imageEitViews interface to my infoPanel
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  1516
    imageEditView activityInfoHolder:(self activityInfoHolder).
89bd2304da33 cleaned up imageEitViews interface to my infoPanel
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  1517
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1518
    postOpenAction notNil ifTrue: [postOpenAction value].
228524287573 intitial checkin
tz
parents:
diff changeset
  1519
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1520
    super postOpenWith:aBuilder
915
99f8e19aab3a better use a columnAdaptor to fetch r/g/b values from a color.
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
  1521
928
89bd2304da33 cleaned up imageEitViews interface to my infoPanel
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  1522
    "Modified: / 29.7.1998 / 18:49:20 / cg"
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1523
! !
228524287573 intitial checkin
tz
parents:
diff changeset
  1524
919
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1525
!ImageEditor methodsFor:'user actions - colormap'!
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1526
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1527
colorMapMode:aMode value: aValue
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1528
    "calculates a new color map for the image from aMode"
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1529
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1530
    |depth numColors newColorMap newImage 
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1531
     oldImage image newColors realColorMap oldFileName
928
89bd2304da33 cleaned up imageEitViews interface to my infoPanel
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  1532
     usedColors useNearest usageCounts tmpBits tmpMap quest| 
919
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1533
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1534
    self withExecuteCursorDo:[
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1535
        oldImage := self image.
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1536
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1537
        newColorMap := self class listOfColorMaps at:aMode.
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1538
        depth       := (newColorMap size log: 2) asInteger. 
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1539
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1540
        useNearest := false.
928
89bd2304da33 cleaned up imageEitViews interface to my infoPanel
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  1541
        depth == 1 ifTrue:[
89bd2304da33 cleaned up imageEitViews interface to my infoPanel
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  1542
            quest := 'Keep colormap (or use standard B&W)'
89bd2304da33 cleaned up imageEitViews interface to my infoPanel
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  1543
        ] ifFalse:[
89bd2304da33 cleaned up imageEitViews interface to my infoPanel
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  1544
            quest := 'Keep colormap (or use standard)'
89bd2304da33 cleaned up imageEitViews interface to my infoPanel
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  1545
        ].
89bd2304da33 cleaned up imageEitViews interface to my infoPanel
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  1546
        (self confirm:(resources string:quest)) ifTrue:[
919
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1547
            "/ keep the colormap
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1548
            depth > oldImage depth ifTrue:[
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1549
                "/ easy - simply copy the part
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1550
                numColors := 1 bitShift:oldImage depth.
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1551
                0 to:numColors-1 do:[:pixel |
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1552
                    newColorMap at:(pixel+1) put:(oldImage colorFromValue:pixel)
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1553
                ].
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1554
            ] ifFalse:[
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1555
                "/ see if all used color fit the new colormap
920
bde5b9369ef8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 919
diff changeset
  1556
                usedColors := oldImage usedColors asArray.
919
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1557
                usedColors size <= (1 bitShift:depth) ifTrue:[
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1558
                    "/ yea - just install them
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1559
                    usedColors keysAndValuesDo:[:idx :clr |
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1560
                        newColorMap at:idx put:clr
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1561
                    ]
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1562
                ] ifFalse:[
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1563
                    "/ copy over those that are most often used.
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1564
                    oldImage depth ~~ 8 ifTrue:[
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1565
                        tmpBits := ByteArray uninitializedNew:(oldImage width*oldImage height).
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1566
                        oldImage bits
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1567
                            expandPixels:(oldImage depth)
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1568
                            width:oldImage width
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1569
                            height:oldImage height 
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1570
                            into:tmpBits
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1571
                            mapping:nil.
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1572
                    ] ifFalse:[
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1573
                        tmpBits := oldImage bits
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1574
                    ].
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1575
                    usageCounts := tmpBits usageCounts.
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1576
                    tmpMap := Array new:usageCounts size.
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1577
                    oldImage colorMap asArray keysAndValuesDo:[:i :clr |
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1578
                        tmpMap at:i put:clr
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1579
                    ].
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1580
                    usageCounts sort:[:a :b | a > b] with:tmpMap.
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1581
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1582
                    1 to:(1 bitShift:depth) do:[:idx |
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1583
                        newColorMap at:idx put:(tmpMap at:idx)
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1584
                    ].
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1585
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1586
                    useNearest := Dialog 
928
89bd2304da33 cleaned up imageEitViews interface to my infoPanel
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  1587
                                        confirmWithCancel:(resources 
89bd2304da33 cleaned up imageEitViews interface to my infoPanel
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  1588
                                                              string:'Image requires %1 colors.\ColorMap has only space for %2\\Use nearest (or map to first color) ?'
89bd2304da33 cleaned up imageEitViews interface to my infoPanel
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  1589
                                                              with:usedColors size
89bd2304da33 cleaned up imageEitViews interface to my infoPanel
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  1590
                                                              with:(1 bitShift:depth)) withCRs
89bd2304da33 cleaned up imageEitViews interface to my infoPanel
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  1591
                                        labels:(resources array:#('cancel' 'first' 'nearest')).
919
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1592
                    useNearest isNil ifTrue:[
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1593
                        ^ self   "/ cancel
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1594
                    ].
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1595
                ]
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1596
            ]
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1597
        ] ifFalse:[
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1598
            "/ standard colormap
921
a5aca21ea803 also allow nearest-color mode for standard colormap.
Claus Gittinger <cg@exept.de>
parents: 920
diff changeset
  1599
            usedColors := oldImage usedColors.
a5aca21ea803 also allow nearest-color mode for standard colormap.
Claus Gittinger <cg@exept.de>
parents: 920
diff changeset
  1600
            (usedColors conform:[:clr | newColorMap includes:clr]) ifFalse:[
a5aca21ea803 also allow nearest-color mode for standard colormap.
Claus Gittinger <cg@exept.de>
parents: 920
diff changeset
  1601
                useNearest := Dialog 
928
89bd2304da33 cleaned up imageEitViews interface to my infoPanel
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  1602
                                    confirmWithCancel:(resources 
89bd2304da33 cleaned up imageEitViews interface to my infoPanel
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  1603
                                                           string:'Not all colors are present in the new colormap.\\Map missing ones to nearest (or map to first color) ?'
921
a5aca21ea803 also allow nearest-color mode for standard colormap.
Claus Gittinger <cg@exept.de>
parents: 920
diff changeset
  1604
                                                       ) withCRs
928
89bd2304da33 cleaned up imageEitViews interface to my infoPanel
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  1605
                                    labels:(resources string:#('cancel' 'first' 'nearest')).
921
a5aca21ea803 also allow nearest-color mode for standard colormap.
Claus Gittinger <cg@exept.de>
parents: 920
diff changeset
  1606
                useNearest isNil ifTrue:[
a5aca21ea803 also allow nearest-color mode for standard colormap.
Claus Gittinger <cg@exept.de>
parents: 920
diff changeset
  1607
                    ^ self   "/ cancel
a5aca21ea803 also allow nearest-color mode for standard colormap.
Claus Gittinger <cg@exept.de>
parents: 920
diff changeset
  1608
                ].
a5aca21ea803 also allow nearest-color mode for standard colormap.
Claus Gittinger <cg@exept.de>
parents: 920
diff changeset
  1609
            ].
919
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1610
        ].
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1611
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1612
        imageEditView makeUndo.
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1613
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1614
        newImage    := (Image implementorForDepth: depth) new.  
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1615
        oldFileName := oldImage fileName.
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1616
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1617
        Object errorSignal handle:
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1618
        [:ex|
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1619
            Object errorSignal handle:
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1620
            [:ex|
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1621
                imageEditView undo.
928
89bd2304da33 cleaned up imageEitViews interface to my infoPanel
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  1622
                ^self warn:(resources string:'Conversion failed !!')
919
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1623
            ]
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1624
            do:
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1625
            [
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1626
                newImage := (Image implementorForDepth: depth) new.
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1627
                newImage width:oldImage width height:oldImage height depth:depth.
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1628
                newImage colorMap:newColorMap.
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1629
                newImage photometric:#palette.
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1630
                newImage bits:(ByteArray new:(newImage bytesPerRow * newImage height)).
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1631
            
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1632
                oldImage colorsFromX:0 y:0 toX:(oldImage width-1) y:(oldImage height-1) do:
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1633
                [:x :y :clr |
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1634
                    |newColor|
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1635
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1636
                    (newColorMap includes:clr)
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1637
                        ifTrue: [newColor := clr]
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1638
                        ifFalse: [
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1639
                            useNearest ifTrue:[
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1640
                                newColor := clr nearestIn:newColorMap
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1641
                            ] ifFalse:[
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1642
                                newColor := oldImage colorMap first
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1643
                            ]
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1644
                        ].
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1645
                    newImage colorAtX:x y:y put:newColor.
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1646
                ].
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1647
                image := newImage
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1648
            ].
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1649
        ] 
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1650
        do:
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1651
        [ 
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1652
            image := newImage fromImage: oldImage
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1653
        ].
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1654
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1655
        (String fromString: aMode) reverse readStream nextWord reverse = 'mask'
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1656
        ifTrue:
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1657
        [
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1658
            image mask isNil
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1659
            ifTrue:
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1660
            [
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1661
                image mask: (Depth1Image fromImage: (image asThresholdMonochromeImage: 0.1)). 
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1662
            ].
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1663
        ]
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1664
        ifFalse:
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1665
        [ 
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1666
            image mask: nil.
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1667
        ]. 
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1668
        realColorMap := OrderedCollection new.
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1669
        image realColorMap do:
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1670
        [:clr|
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1671
            (realColorMap includes: clr) ifFalse: [realColorMap add: clr]
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1672
        ].
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1673
        newColors := realColorMap copyFrom: 1 to: (newColorMap size min: realColorMap size).
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1674
        newColorMap do:
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1675
        [:clr|
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1676
            ((newColors size < newColorMap size) and: [(newColors includes: clr) not]) 
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1677
            ifTrue:
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1678
            [      
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1679
                newColors add: clr
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1680
            ]
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1681
        ].                  
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1682
        image colorMap: newColors.
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1683
        colorMapMode := aMode.            
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1684
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1685
        (imageEditView image: image) notNil ifTrue:
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1686
        [
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1687
            image fileName: oldFileName.
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1688
            self listOfColors contents: image colorMap.
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1689
            self findColorMapMode.
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1690
            self updateLabelsAndHistory.
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1691
        ]
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1692
    ]
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1693
928
89bd2304da33 cleaned up imageEitViews interface to my infoPanel
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  1694
    "Modified: / 29.7.1998 / 18:15:10 / cg"
919
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1695
!
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1696
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1697
compressColorMap
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1698
    "calculates a new color map for the image, using only used colors"
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1699
927
74a71f2c5ef8 obsolete locals removed
tz
parents: 926
diff changeset
  1700
    |depth newColorMap newImage oldImage usedColors oldToNew oldBits newBits tmpBits| 
919
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1701
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1702
    oldImage := self image.
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1703
    depth := oldImage depth.
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1704
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1705
    oldImage photometric ~~ #palette ifTrue:[
930
4cf126b710b3 handle errors when grabbing
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  1706
        self information:'Compress colorMap: Only palette images have colormaps.'.
919
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1707
        ^ self
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1708
    ].
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1709
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1710
    usedColors := oldImage usedColors.
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1711
    usedColors size == (1 bitShift:depth) ifTrue:[
930
4cf126b710b3 handle errors when grabbing
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  1712
        self information:'Compress colorMap: All colors are used - no compression.'.
919
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1713
        ^ self
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1714
    ].
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1715
    usedColors size == oldImage colorMap size ifTrue:[
930
4cf126b710b3 handle errors when grabbing
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  1716
        self information:'Compress colorMap: Colormap already compressed - no compression.'.
919
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1717
        ^ self
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1718
    ].
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1719
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1720
    imageEditView makeUndo.
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1721
930
4cf126b710b3 handle errors when grabbing
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  1722
    self information:('Compress colorMap: %1 colors used.' bindWith:usedColors size).
919
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1723
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1724
    self withExecuteCursorDo:[
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1725
        newColorMap := Array new:usedColors size.
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1726
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1727
        "/ translation table
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1728
        oldToNew := ByteArray new:(1 bitShift:depth).
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1729
        newColorMap := usedColors asArray.
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1730
        oldImage colorMap asArray keysAndValuesDo:[:oldIdx :clr |
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1731
            |newPixel|
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1732
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1733
            (usedColors includes:clr) ifTrue:[
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1734
                newPixel := newColorMap indexOf:clr.
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1735
                oldToNew at:oldIdx put:newPixel-1.
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1736
            ]
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1737
        ].
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1738
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1739
        oldBits := oldImage bits.
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1740
        newBits := ByteArray new:(oldBits size).
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1741
        depth ~~ 8 ifTrue:[
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1742
            "/ expand/compress can only handle 8bits
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1743
            tmpBits := ByteArray uninitializedNew:(oldImage width*oldImage height).
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1744
            oldBits
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1745
                expandPixels:depth
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1746
                width:oldImage width
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1747
                height:oldImage height 
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1748
                into:tmpBits
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1749
                mapping:oldToNew.
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1750
            tmpBits
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1751
                compressPixels:depth 
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1752
                width:oldImage width 
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1753
                height:oldImage height 
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1754
                into:newBits 
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1755
                mapping:nil
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1756
        ] ifFalse:[
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1757
            oldBits
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1758
                expandPixels:depth
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1759
                width:oldImage width
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1760
                height:oldImage height 
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1761
                into:newBits
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1762
                mapping:oldToNew.
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1763
        ].
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1764
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1765
        newImage := oldImage species new
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1766
                        width:oldImage width
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1767
                        height:oldImage height
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1768
                        depth:depth
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1769
                        fromArray:newBits.
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1770
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1771
        newImage colorMap:newColorMap.  
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1772
        newImage fileName:oldImage fileName.
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1773
        newImage mask:(oldImage mask copy).
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1774
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1775
        (imageEditView image:newImage) notNil ifTrue:
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1776
        [
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1777
            self listOfColors contents: newImage colorMap.
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1778
            self findColorMapMode.
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1779
            self updateLabelsAndHistory.
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1780
        ]
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1781
    ]
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1782
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1783
    "Created: / 28.7.1998 / 20:03:11 / cg"
930
4cf126b710b3 handle errors when grabbing
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  1784
    "Modified: / 31.7.1998 / 01:13:57 / cg"
919
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1785
! !
4e50c3164625 more options (preserving colorMap) when changing the colorMapMode;
Claus Gittinger <cg@exept.de>
parents: 917
diff changeset
  1786
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1787
!ImageEditor methodsFor:'user actions - editing'!
228524287573 intitial checkin
tz
parents:
diff changeset
  1788
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1789
doBrowseClass
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1790
    "opens a System Browser on the resourceClass and the resourceSelector"
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1791
911
ec8db5b62352 unnecessary calls removed
tz
parents: 905
diff changeset
  1792
    SystemBrowser openInClass: (Smalltalk at: imageEditView resourceClass ifAbsent: [^nil]) class selector: imageEditView resourceSelector
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1793
!
228524287573 intitial checkin
tz
parents:
diff changeset
  1794
905
5f5d0a415c04 grid magnification can be changed
tz
parents: 903
diff changeset
  1795
doChangeGridMagnification
5f5d0a415c04 grid magnification can be changed
tz
parents: 903
diff changeset
  1796
    "change grid magnification"
5f5d0a415c04 grid magnification can be changed
tz
parents: 903
diff changeset
  1797
911
ec8db5b62352 unnecessary calls removed
tz
parents: 905
diff changeset
  1798
    imageEditView changeGridMagnification
905
5f5d0a415c04 grid magnification can be changed
tz
parents: 903
diff changeset
  1799
!
5f5d0a415c04 grid magnification can be changed
tz
parents: 903
diff changeset
  1800
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1801
doFlipHorizontal
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1802
    "flips horizontally current image"
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1803
911
ec8db5b62352 unnecessary calls removed
tz
parents: 905
diff changeset
  1804
    imageEditView flipHorizontal
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1805
!
228524287573 intitial checkin
tz
parents:
diff changeset
  1806
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1807
doFlipVertical
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1808
    "flips vertically current image"
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1809
911
ec8db5b62352 unnecessary calls removed
tz
parents: 905
diff changeset
  1810
    imageEditView flipVertical
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1811
!
228524287573 intitial checkin
tz
parents:
diff changeset
  1812
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1813
doMagnifyDown
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1814
    "magnifies current image one step down"
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1815
915
99f8e19aab3a better use a columnAdaptor to fetch r/g/b values from a color.
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
  1816
    |magHolder mag|
99f8e19aab3a better use a columnAdaptor to fetch r/g/b values from a color.
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
  1817
99f8e19aab3a better use a columnAdaptor to fetch r/g/b values from a color.
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
  1818
    magHolder := self valueOfMagnification.
99f8e19aab3a better use a columnAdaptor to fetch r/g/b values from a color.
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
  1819
    (mag := magHolder value) > 1 ifTrue: [
99f8e19aab3a better use a columnAdaptor to fetch r/g/b values from a color.
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
  1820
        magHolder value: mag - 1
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1821
    ]
915
99f8e19aab3a better use a columnAdaptor to fetch r/g/b values from a color.
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
  1822
99f8e19aab3a better use a columnAdaptor to fetch r/g/b values from a color.
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
  1823
    "Modified: / 26.7.1998 / 20:24:08 / cg"
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1824
!
228524287573 intitial checkin
tz
parents:
diff changeset
  1825
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1826
doMagnifyImage
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1827
    "magnifies current image"
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1828
911
ec8db5b62352 unnecessary calls removed
tz
parents: 905
diff changeset
  1829
    imageEditView magnifyImage.   
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1830
    self updateInfoLabel
228524287573 intitial checkin
tz
parents:
diff changeset
  1831
!
228524287573 intitial checkin
tz
parents:
diff changeset
  1832
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1833
doMagnifyUp
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1834
    "magnifies current image one step up"
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1835
915
99f8e19aab3a better use a columnAdaptor to fetch r/g/b values from a color.
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
  1836
    |magHolder mag|
99f8e19aab3a better use a columnAdaptor to fetch r/g/b values from a color.
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
  1837
99f8e19aab3a better use a columnAdaptor to fetch r/g/b values from a color.
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
  1838
    magHolder := self valueOfMagnification.
99f8e19aab3a better use a columnAdaptor to fetch r/g/b values from a color.
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
  1839
    (mag := magHolder value) < 99 ifTrue: [
99f8e19aab3a better use a columnAdaptor to fetch r/g/b values from a color.
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
  1840
        magHolder value: mag + 1
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1841
    ]
915
99f8e19aab3a better use a columnAdaptor to fetch r/g/b values from a color.
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
  1842
99f8e19aab3a better use a columnAdaptor to fetch r/g/b values from a color.
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
  1843
    "Modified: / 26.7.1998 / 20:23:52 / cg"
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1844
!
228524287573 intitial checkin
tz
parents:
diff changeset
  1845
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1846
doNegativeImage
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1847
    "negates current image by negating the color map"
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1848
911
ec8db5b62352 unnecessary calls removed
tz
parents: 905
diff changeset
  1849
    imageEditView negativeImage.
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1850
    self listOfColors removeAll.
901
ce482227787d several undos
tz
parents: 900
diff changeset
  1851
    self findColorMapMode.     
911
ec8db5b62352 unnecessary calls removed
tz
parents: 905
diff changeset
  1852
    imageEditView undoImages removeLast
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1853
!
228524287573 intitial checkin
tz
parents:
diff changeset
  1854
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1855
doResizeImage
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1856
    "resizes current image"
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1857
911
ec8db5b62352 unnecessary calls removed
tz
parents: 905
diff changeset
  1858
    imageEditView resizeImage.   
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1859
    self updateInfoLabel
228524287573 intitial checkin
tz
parents:
diff changeset
  1860
!
228524287573 intitial checkin
tz
parents:
diff changeset
  1861
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1862
doRotateImage
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1863
    "rotates current image"
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1864
911
ec8db5b62352 unnecessary calls removed
tz
parents: 905
diff changeset
  1865
    imageEditView rotateImage.
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1866
    self updateInfoLabel
228524287573 intitial checkin
tz
parents:
diff changeset
  1867
!
228524287573 intitial checkin
tz
parents:
diff changeset
  1868
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1869
doUndo
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1870
    "reverses last edit action"
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1871
911
ec8db5b62352 unnecessary calls removed
tz
parents: 905
diff changeset
  1872
    imageEditView undo
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1873
! !
228524287573 intitial checkin
tz
parents:
diff changeset
  1874
228524287573 intitial checkin
tz
parents:
diff changeset
  1875
!ImageEditor methodsFor:'user actions - loading'!
228524287573 intitial checkin
tz
parents:
diff changeset
  1876
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1877
doLoadFromClass
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1878
    "opens a dialog for loading an image from class and a (resource-) selector"
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1879
911
ec8db5b62352 unnecessary calls removed
tz
parents: 905
diff changeset
  1880
    (imageEditView loadFromClass) notNil
574
8d82e8f101c1 undo disabling
tz
parents: 573
diff changeset
  1881
    ifTrue:
8d82e8f101c1 undo disabling
tz
parents: 573
diff changeset
  1882
    [
8d82e8f101c1 undo disabling
tz
parents: 573
diff changeset
  1883
        self image notNil
8d82e8f101c1 undo disabling
tz
parents: 573
diff changeset
  1884
        ifTrue:
8d82e8f101c1 undo disabling
tz
parents: 573
diff changeset
  1885
        [
8d82e8f101c1 undo disabling
tz
parents: 573
diff changeset
  1886
            self listOfColors contents: self image usedColors asSet asOrderedCollection.
8d82e8f101c1 undo disabling
tz
parents: 573
diff changeset
  1887
            self findColorMapMode.
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1888
            self updateLabelsAndHistory
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1889
        ]
228524287573 intitial checkin
tz
parents:
diff changeset
  1890
        ifFalse:
228524287573 intitial checkin
tz
parents:
diff changeset
  1891
        [
461
aed297a2d395 load errors removed
tz
parents: 460
diff changeset
  1892
            self updateForNoneImage
aed297a2d395 load errors removed
tz
parents: 460
diff changeset
  1893
        ]
449
dac8dc1f9dc8 if none image found for loading clear all
tz
parents: 444
diff changeset
  1894
    ]
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1895
!
228524287573 intitial checkin
tz
parents:
diff changeset
  1896
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1897
doLoadFromFile
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1898
    "opens a dialog for loading an image from a file"
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1899
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1900
    self loadFromFile:
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1901
        (FileSelectionBrowser
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1902
            request: 'Load Image From'
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1903
            fileName: (self image notNil ifTrue: [self image fileName] ifFalse: [nil])
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1904
            withFileFilters: FileSelectionBrowser loadImageFileNameFilters)
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1905
!
228524287573 intitial checkin
tz
parents:
diff changeset
  1906
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1907
doNewImage
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1908
    "opens a dialog with choices of size and color map for creating a new image"
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1909
228524287573 intitial checkin
tz
parents:
diff changeset
  1910
    |aspects|
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1911
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1912
    aspects  := IdentityDictionary new
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1913
        at:#listOfSizes         put: self class listOfDefaultSizes asValue;
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1914
        at:#listOfColorMaps     put: self class listOfColorMaps keys asSortedCollection asValue;
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1915
        at:#selectionOfSize     put: self class listOfDefaultSizes first copy asValue;
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1916
        at:#selectionOfColorMap put: self class listOfColorMaps keys asSortedCollection first asValue;
228524287573 intitial checkin
tz
parents:
diff changeset
  1917
        yourself.
228524287573 intitial checkin
tz
parents:
diff changeset
  1918
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1919
    (self openDialogInterface:#dialogSpecForNewImage withBindings:aspects)
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1920
    ifTrue:
228524287573 intitial checkin
tz
parents:
diff changeset
  1921
    [
228524287573 intitial checkin
tz
parents:
diff changeset
  1922
        |width height cMap imageClass image|
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1923
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1924
        width  := 128 min: (Integer readFromString: ((aspects at:#selectionOfSize) value upTo: $x) onError:[24]).
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1925
        height := 128 min: (Integer readFromString: ((aspects at:#selectionOfSize) value copy reverse upTo: $x) reverse onError:[24]).
228524287573 intitial checkin
tz
parents:
diff changeset
  1926
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1927
        cMap       := (self class listOfColorMaps at: (colorMapMode := (aspects at:#selectionOfColorMap) value)).
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1928
        imageClass := Image implementorForDepth: ((cMap size log: 2) asInteger).
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1929
        image      := imageClass width: width height: height fromArray: (ByteArray new: width*height).
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1930
228524287573 intitial checkin
tz
parents:
diff changeset
  1931
        (colorMapMode copy reverse readStream nextWord reverse = 'mask')
228524287573 intitial checkin
tz
parents:
diff changeset
  1932
        ifTrue:
228524287573 intitial checkin
tz
parents:
diff changeset
  1933
        [
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1934
            image mask: (Depth1Image width: width height: height depth: 1 fromArray: (ByteArray new: width*height)) clearMaskedPixels
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1935
        ].
228524287573 intitial checkin
tz
parents:
diff changeset
  1936
        image colorMap: cMap.
228524287573 intitial checkin
tz
parents:
diff changeset
  1937
        image fillRectangleX:0 y:0 width:width height:height with:Color white.
911
ec8db5b62352 unnecessary calls removed
tz
parents: 905
diff changeset
  1938
        (imageEditView image: image) notNil
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1939
        ifTrue:
228524287573 intitial checkin
tz
parents:
diff changeset
  1940
        [
228524287573 intitial checkin
tz
parents:
diff changeset
  1941
            self listOfColors contents: cMap.
228524287573 intitial checkin
tz
parents:
diff changeset
  1942
            self findColorMapMode.
694
88c7004cfb6c updateLabelsAndHistory
tz
parents: 688
diff changeset
  1943
            self updateLabelsAndHistory
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1944
        ]
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1945
    ]
929
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
  1946
!
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
  1947
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
  1948
grabScreenImage
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
  1949
    "let user choose an area and grab that are for editing"
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
  1950
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
  1951
    |image img|
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
  1952
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
  1953
    image := Image fromUser.
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
  1954
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
  1955
    image depth > 8 ifTrue:[
930
4cf126b710b3 handle errors when grabbing
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  1956
        Object errorSignal handle:[:ex |
4cf126b710b3 handle errors when grabbing
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  1957
            self warn:'Could not convert to depth8 image (too many colors)'.
4cf126b710b3 handle errors when grabbing
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  1958
            ^ self
4cf126b710b3 handle errors when grabbing
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  1959
        ] do:[
4cf126b710b3 handle errors when grabbing
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  1960
            image := Depth8Image fromImage:image.
4cf126b710b3 handle errors when grabbing
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  1961
        ]
929
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
  1962
    ].
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
  1963
    (imageEditView image: image) notNil
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
  1964
    ifTrue:
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
  1965
    [
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
  1966
        self listOfColors contents:(image colorMap).
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
  1967
        self findColorMapMode.
930
4cf126b710b3 handle errors when grabbing
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  1968
        self updateLabelsAndHistory.
929
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
  1969
    ]
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
  1970
7be532d91b87 help spec.
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
  1971
    "Created: / 29.7.1998 / 21:24:42 / cg"
930
4cf126b710b3 handle errors when grabbing
Claus Gittinger <cg@exept.de>
parents: 929
diff changeset
  1972
    "Modified: / 31.7.1998 / 01:14:33 / cg"
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1973
! !
228524287573 intitial checkin
tz
parents:
diff changeset
  1974
228524287573 intitial checkin
tz
parents:
diff changeset
  1975
!ImageEditor methodsFor:'user actions - saving'!
228524287573 intitial checkin
tz
parents:
diff changeset
  1976
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1977
doPrint
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1978
    "prints current image on the current printer"
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1979
911
ec8db5b62352 unnecessary calls removed
tz
parents: 905
diff changeset
  1980
    imageEditView print
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1981
!
228524287573 intitial checkin
tz
parents:
diff changeset
  1982
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1983
doSaveImageFile
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1984
    "saves current image to current file"
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1985
911
ec8db5b62352 unnecessary calls removed
tz
parents: 905
diff changeset
  1986
    imageEditView save
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1987
!
228524287573 intitial checkin
tz
parents:
diff changeset
  1988
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1989
doSaveImageFileAs
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1990
    "opens a dialog for saving current image to a file"
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1991
911
ec8db5b62352 unnecessary calls removed
tz
parents: 905
diff changeset
  1992
    imageEditView saveImageFileAs.
694
88c7004cfb6c updateLabelsAndHistory
tz
parents: 688
diff changeset
  1993
    self updateLabelsAndHistory
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1994
!
228524287573 intitial checkin
tz
parents:
diff changeset
  1995
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1996
doSaveImageMaskFileAs
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  1997
    "opens a dialog for saving mask of current image to a file"
400
228524287573 intitial checkin
tz
parents:
diff changeset
  1998
911
ec8db5b62352 unnecessary calls removed
tz
parents: 905
diff changeset
  1999
    imageEditView saveImageMaskFileAs
400
228524287573 intitial checkin
tz
parents:
diff changeset
  2000
!
228524287573 intitial checkin
tz
parents:
diff changeset
  2001
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  2002
doSaveMethod
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  2003
    "saves current image on current class and selector"
400
228524287573 intitial checkin
tz
parents:
diff changeset
  2004
911
ec8db5b62352 unnecessary calls removed
tz
parents: 905
diff changeset
  2005
    imageEditView saveMethod notNil
400
228524287573 intitial checkin
tz
parents:
diff changeset
  2006
    ifTrue:
228524287573 intitial checkin
tz
parents:
diff changeset
  2007
    [
694
88c7004cfb6c updateLabelsAndHistory
tz
parents: 688
diff changeset
  2008
        self updateLabelsAndHistory
400
228524287573 intitial checkin
tz
parents:
diff changeset
  2009
    ]
228524287573 intitial checkin
tz
parents:
diff changeset
  2010
!
228524287573 intitial checkin
tz
parents:
diff changeset
  2011
767
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  2012
doSaveMethodAs
ed96f735dab1 comments added
tz
parents: 763
diff changeset
  2013
    "opens a dialog for saving current image on a class and a selector"
400
228524287573 intitial checkin
tz
parents:
diff changeset
  2014
911
ec8db5b62352 unnecessary calls removed
tz
parents: 905
diff changeset
  2015
    imageEditView saveMethodAs notNil
400
228524287573 intitial checkin
tz
parents:
diff changeset
  2016
    ifTrue:
228524287573 intitial checkin
tz
parents:
diff changeset
  2017
    [
694
88c7004cfb6c updateLabelsAndHistory
tz
parents: 688
diff changeset
  2018
        self updateLabelsAndHistory
400
228524287573 intitial checkin
tz
parents:
diff changeset
  2019
    ]
228524287573 intitial checkin
tz
parents:
diff changeset
  2020
! !
228524287573 intitial checkin
tz
parents:
diff changeset
  2021
228524287573 intitial checkin
tz
parents:
diff changeset
  2022
!ImageEditor class methodsFor:'documentation'!
228524287573 intitial checkin
tz
parents:
diff changeset
  2023
228524287573 intitial checkin
tz
parents:
diff changeset
  2024
version
228524287573 intitial checkin
tz
parents:
diff changeset
  2025
    ^ '$Header$'
228524287573 intitial checkin
tz
parents:
diff changeset
  2026
! !