ImageEditView.st
author Stefan Vogel <sv@exept.de>
Fri, 07 Oct 2016 10:15:51 +0200
changeset 5266 527277fcb66c
parent 5163 955f893d03f2
child 5277 4d6ef5c2aa64
permissions -rw-r--r--
#UI_ENHANCEMENT by stefan class: ImageEditView changed: #imageInfoString show number of used colors for >8bit images
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5163
955f893d03f2 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 5093
diff changeset
     1
"{ Encoding: utf8 }"
955f893d03f2 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 5093
diff changeset
     2
636
d53428252193 revised version
tz
parents: 633
diff changeset
     3
"
704
01140e14c065 Fix copyright.
Stefan Vogel <sv@exept.de>
parents: 694
diff changeset
     4
 COPYRIGHT (c) 1997 by eXept Software AG
1116
441ff42c1472 fixes to allow 24bit images to be (at least) displayed
Claus Gittinger <cg@exept.de>
parents: 1106
diff changeset
     5
	      All Rights Reserved
636
d53428252193 revised version
tz
parents: 633
diff changeset
     6
d53428252193 revised version
tz
parents: 633
diff changeset
     7
 This software is furnished under a license and may be used
d53428252193 revised version
tz
parents: 633
diff changeset
     8
 only in accordance with the terms of that license and with the
d53428252193 revised version
tz
parents: 633
diff changeset
     9
 inclusion of the above copyright notice. This software may not
d53428252193 revised version
tz
parents: 633
diff changeset
    10
 be provided or otherwise made available to, or used by, any
d53428252193 revised version
tz
parents: 633
diff changeset
    11
 other person. No title to or ownership of the software is
d53428252193 revised version
tz
parents: 633
diff changeset
    12
 hereby transferred.
d53428252193 revised version
tz
parents: 633
diff changeset
    13
"
1763
7d6d64622ee4 change & updates fixed (monochrome bitmaps)
Claus Gittinger <cg@exept.de>
parents: 1706
diff changeset
    14
"{ Package: 'stx:libwidg2' }"
7d6d64622ee4 change & updates fixed (monochrome bitmaps)
Claus Gittinger <cg@exept.de>
parents: 1706
diff changeset
    15
4714
69df9f744066 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4646
diff changeset
    16
"{ NameSpace: Smalltalk }"
69df9f744066 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4646
diff changeset
    17
1
c6ca7bfedf31 Initial revision
claus
parents:
diff changeset
    18
ImageView subclass:#ImageEditView
4041
2d635ff57406 class definition
Claus Gittinger <cg@exept.de>
parents: 4032
diff changeset
    19
	instanceVariableNames:'readOnly magnification imageReaderClass resourceClass
2d635ff57406 class definition
Claus Gittinger <cg@exept.de>
parents: 4032
diff changeset
    20
		resourceSelector mouseKeyColorMode undoImages modifiedHolder
2d635ff57406 class definition
Claus Gittinger <cg@exept.de>
parents: 4032
diff changeset
    21
		editMode lastPastePoint imageInfoHolder activityInfoHolder
2747
818a513a64c3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2690
diff changeset
    22
		pickedColorHolder drawingColors drawingPixels drawingColorHolders
3476
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
    23
		drawingPixelHolders clickInfoCallBack penWidth sprayProcess
3730
3f07e7082aff preps for aloha channel
Claus Gittinger <cg@exept.de>
parents: 3729
diff changeset
    24
		sprayPosition spraySpot drawingAlpha'
2440
a9abeb0e3562 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2415
diff changeset
    25
	classVariableNames:'Clipboard ClipboardMagnified LastMagnification
2889
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
    26
		GridMagnificationLimit MaxUndos LastSaveDirectory LastSaveClass
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
    27
		EditModePoint EditModeBox EditModeFilledBox EditModeFill
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
    28
		EditModeCopy EditModePasteUnder EditModePaste
3476
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
    29
		EditModePasteWithMask EditModeSpecialOperation EditModeSpray
4715
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
    30
		EditModeCircle EditModeSmooth'
1035
5da83bdbd65e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1031
diff changeset
    31
	poolDictionaries:''
1706
a954781f4440 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1693
diff changeset
    32
	category:'Views-Misc'
1
c6ca7bfedf31 Initial revision
claus
parents:
diff changeset
    33
!
c6ca7bfedf31 Initial revision
claus
parents:
diff changeset
    34
636
d53428252193 revised version
tz
parents: 633
diff changeset
    35
!ImageEditView class methodsFor:'documentation'!
d53428252193 revised version
tz
parents: 633
diff changeset
    36
d53428252193 revised version
tz
parents: 633
diff changeset
    37
copyright
d53428252193 revised version
tz
parents: 633
diff changeset
    38
"
704
01140e14c065 Fix copyright.
Stefan Vogel <sv@exept.de>
parents: 694
diff changeset
    39
 COPYRIGHT (c) 1997 by eXept Software AG
1116
441ff42c1472 fixes to allow 24bit images to be (at least) displayed
Claus Gittinger <cg@exept.de>
parents: 1106
diff changeset
    40
	      All Rights Reserved
636
d53428252193 revised version
tz
parents: 633
diff changeset
    41
d53428252193 revised version
tz
parents: 633
diff changeset
    42
 This software is furnished under a license and may be used
d53428252193 revised version
tz
parents: 633
diff changeset
    43
 only in accordance with the terms of that license and with the
d53428252193 revised version
tz
parents: 633
diff changeset
    44
 inclusion of the above copyright notice. This software may not
d53428252193 revised version
tz
parents: 633
diff changeset
    45
 be provided or otherwise made available to, or used by, any
d53428252193 revised version
tz
parents: 633
diff changeset
    46
 other person. No title to or ownership of the software is
d53428252193 revised version
tz
parents: 633
diff changeset
    47
 hereby transferred.
d53428252193 revised version
tz
parents: 633
diff changeset
    48
"
d53428252193 revised version
tz
parents: 633
diff changeset
    49
!
d53428252193 revised version
tz
parents: 633
diff changeset
    50
d53428252193 revised version
tz
parents: 633
diff changeset
    51
documentation
d53428252193 revised version
tz
parents: 633
diff changeset
    52
"
2747
818a513a64c3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2690
diff changeset
    53
    An ImageEditView is a view which can be used by applications
818a513a64c3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2690
diff changeset
    54
    like the Image Editor for editing or inspecting (bitmap-) images.
636
d53428252193 revised version
tz
parents: 633
diff changeset
    55
d53428252193 revised version
tz
parents: 633
diff changeset
    56
    [see also:]
2747
818a513a64c3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2690
diff changeset
    57
        ImageEditor Image
636
d53428252193 revised version
tz
parents: 633
diff changeset
    58
d53428252193 revised version
tz
parents: 633
diff changeset
    59
    [author:]
2747
818a513a64c3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2690
diff changeset
    60
        Thomas Zwick
636
d53428252193 revised version
tz
parents: 633
diff changeset
    61
"
d53428252193 revised version
tz
parents: 633
diff changeset
    62
! !
353
0442fc169b82 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 322
diff changeset
    63
1245
68581e6aaf23 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
    64
!ImageEditView class methodsFor:'initialization'!
68581e6aaf23 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
    65
68581e6aaf23 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
    66
initialize
2915
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
    67
    MaxUndos := 10.
1706
a954781f4440 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1693
diff changeset
    68
    GridMagnificationLimit := 8 @ 8.
1245
68581e6aaf23 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
    69
2889
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
    70
    EditModePoint := #point.
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
    71
    EditModeBox := #box.
3476
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
    72
    EditModeCircle := #circle.
2889
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
    73
    EditModePaste := #paste.
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
    74
    EditModePasteUnder := #pasteUnder.
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
    75
    EditModePasteWithMask := #pasteWithMask.
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
    76
    EditModeFilledBox := #filledBox.
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
    77
    EditModeFill := #fill.
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
    78
    EditModeCopy := #copy.
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
    79
    EditModeSpecialOperation := #specialOperation.
3476
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
    80
    EditModeSpray := #spray.
4715
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
    81
    EditModeSmooth := #smooth.
2889
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
    82
1245
68581e6aaf23 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
    83
    "
68581e6aaf23 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
    84
     self initialize
68581e6aaf23 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
    85
    "
68581e6aaf23 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
    86
! !
68581e6aaf23 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
    87
1706
a954781f4440 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1693
diff changeset
    88
!ImageEditView class methodsFor:'accessing'!
a954781f4440 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1693
diff changeset
    89
2889
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
    90
editModeBox
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
    91
    ^ EditModeBox
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
    92
!
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
    93
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
    94
editModeCopy
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
    95
    ^ EditModeCopy
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
    96
!
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
    97
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
    98
editModeFill
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
    99
    ^ EditModeFill
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
   100
!
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
   101
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
   102
editModeFilledBox
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
   103
    ^ EditModeFilledBox
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
   104
!
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
   105
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
   106
editModePaste
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
   107
    ^ EditModePaste
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
   108
!
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
   109
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
   110
editModePasteUnder
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
   111
    ^ EditModePasteUnder
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
   112
!
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
   113
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
   114
editModePasteWithMask
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
   115
    ^ EditModePasteWithMask
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
   116
!
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
   117
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
   118
editModePoint
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
   119
    ^ EditModePoint
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
   120
!
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
   121
4715
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
   122
editModeSmooth
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
   123
    ^ EditModeSmooth
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
   124
!
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
   125
2889
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
   126
editModeSpecialOperation
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
   127
    ^ EditModeSpecialOperation
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
   128
!
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
   129
1706
a954781f4440 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1693
diff changeset
   130
gridMagnificationLimit
a954781f4440 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1693
diff changeset
   131
    ^ GridMagnificationLimit
a954781f4440 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1693
diff changeset
   132
!
a954781f4440 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1693
diff changeset
   133
a954781f4440 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1693
diff changeset
   134
gridMagnificationLimit:anInteger
a954781f4440 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1693
diff changeset
   135
    GridMagnificationLimit := anInteger
3980
Claus Gittinger <cg@exept.de>
parents: 3972
diff changeset
   136
!
Claus Gittinger <cg@exept.de>
parents: 3972
diff changeset
   137
Claus Gittinger <cg@exept.de>
parents: 3972
diff changeset
   138
lastSaveDirectory
Claus Gittinger <cg@exept.de>
parents: 3972
diff changeset
   139
    ^ LastSaveDirectory
Claus Gittinger <cg@exept.de>
parents: 3972
diff changeset
   140
Claus Gittinger <cg@exept.de>
parents: 3972
diff changeset
   141
    "Created: / 14-12-2010 / 14:49:01 / cg"
Claus Gittinger <cg@exept.de>
parents: 3972
diff changeset
   142
!
Claus Gittinger <cg@exept.de>
parents: 3972
diff changeset
   143
Claus Gittinger <cg@exept.de>
parents: 3972
diff changeset
   144
lastSaveDirectory:aStringOrFilename
Claus Gittinger <cg@exept.de>
parents: 3972
diff changeset
   145
    LastSaveDirectory := aStringOrFilename
Claus Gittinger <cg@exept.de>
parents: 3972
diff changeset
   146
Claus Gittinger <cg@exept.de>
parents: 3972
diff changeset
   147
    "Created: / 14-12-2010 / 14:49:18 / cg"
1706
a954781f4440 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1693
diff changeset
   148
! !
a954781f4440 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1693
diff changeset
   149
2480
6b82ad413d70 added copyToClipboard
Claus Gittinger <cg@exept.de>
parents: 2442
diff changeset
   150
!ImageEditView class methodsFor:'helpers'!
6b82ad413d70 added copyToClipboard
Claus Gittinger <cg@exept.de>
parents: 2442
diff changeset
   151
6b82ad413d70 added copyToClipboard
Claus Gittinger <cg@exept.de>
parents: 2442
diff changeset
   152
copyImageToClipboard:copiedImage
6b82ad413d70 added copyToClipboard
Claus Gittinger <cg@exept.de>
parents: 2442
diff changeset
   153
    ClipboardMagnified := nil.
6b82ad413d70 added copyToClipboard
Claus Gittinger <cg@exept.de>
parents: 2442
diff changeset
   154
    Clipboard := copiedImage.
6b82ad413d70 added copyToClipboard
Claus Gittinger <cg@exept.de>
parents: 2442
diff changeset
   155
! !
6b82ad413d70 added copyToClipboard
Claus Gittinger <cg@exept.de>
parents: 2442
diff changeset
   156
2634
dc5098a445d4 resources
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
   157
!ImageEditView class methodsFor:'resources'!
dc5098a445d4 resources
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
   158
dc5098a445d4 resources
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
   159
classResources
dc5098a445d4 resources
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
   160
    ^ ImageEditor classResources
dc5098a445d4 resources
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
   161
! !
dc5098a445d4 resources
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
   162
7
19b36b78ee01 *** empty log message ***
claus
parents: 5
diff changeset
   163
!ImageEditView methodsFor:'accessing'!
19b36b78ee01 *** empty log message ***
claus
parents: 5
diff changeset
   164
1031
a5ab5869b2ba cleaned up the interface to the apps infoPanel
Claus Gittinger <cg@exept.de>
parents: 1030
diff changeset
   165
activityInfoHolder
a5ab5869b2ba cleaned up the interface to the apps infoPanel
Claus Gittinger <cg@exept.de>
parents: 1030
diff changeset
   166
    "return the value of the instance variable 'activityInfoHolder' (automatically generated)"
a5ab5869b2ba cleaned up the interface to the apps infoPanel
Claus Gittinger <cg@exept.de>
parents: 1030
diff changeset
   167
a5ab5869b2ba cleaned up the interface to the apps infoPanel
Claus Gittinger <cg@exept.de>
parents: 1030
diff changeset
   168
    ^ activityInfoHolder
a5ab5869b2ba cleaned up the interface to the apps infoPanel
Claus Gittinger <cg@exept.de>
parents: 1030
diff changeset
   169
a5ab5869b2ba cleaned up the interface to the apps infoPanel
Claus Gittinger <cg@exept.de>
parents: 1030
diff changeset
   170
    "Created: / 29.7.1998 / 18:49:39 / cg"
a5ab5869b2ba cleaned up the interface to the apps infoPanel
Claus Gittinger <cg@exept.de>
parents: 1030
diff changeset
   171
!
a5ab5869b2ba cleaned up the interface to the apps infoPanel
Claus Gittinger <cg@exept.de>
parents: 1030
diff changeset
   172
a5ab5869b2ba cleaned up the interface to the apps infoPanel
Claus Gittinger <cg@exept.de>
parents: 1030
diff changeset
   173
activityInfoHolder:something
a5ab5869b2ba cleaned up the interface to the apps infoPanel
Claus Gittinger <cg@exept.de>
parents: 1030
diff changeset
   174
    "set the value of the instance variable 'activityInfoHolder' (automatically generated)"
a5ab5869b2ba cleaned up the interface to the apps infoPanel
Claus Gittinger <cg@exept.de>
parents: 1030
diff changeset
   175
a5ab5869b2ba cleaned up the interface to the apps infoPanel
Claus Gittinger <cg@exept.de>
parents: 1030
diff changeset
   176
    activityInfoHolder := something.
a5ab5869b2ba cleaned up the interface to the apps infoPanel
Claus Gittinger <cg@exept.de>
parents: 1030
diff changeset
   177
a5ab5869b2ba cleaned up the interface to the apps infoPanel
Claus Gittinger <cg@exept.de>
parents: 1030
diff changeset
   178
    "Created: / 29.7.1998 / 18:49:39 / cg"
a5ab5869b2ba cleaned up the interface to the apps infoPanel
Claus Gittinger <cg@exept.de>
parents: 1030
diff changeset
   179
!
a5ab5869b2ba cleaned up the interface to the apps infoPanel
Claus Gittinger <cg@exept.de>
parents: 1030
diff changeset
   180
2590
b811d560e00a modified flag after edit operations
Claus Gittinger <cg@exept.de>
parents: 2589
diff changeset
   181
clearModified
2915
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
   182
    self modified:false
2590
b811d560e00a modified flag after edit operations
Claus Gittinger <cg@exept.de>
parents: 2589
diff changeset
   183
!
b811d560e00a modified flag after edit operations
Claus Gittinger <cg@exept.de>
parents: 2589
diff changeset
   184
1693
5f8be1b4f856 de-uglified
Claus Gittinger <cg@exept.de>
parents: 1510
diff changeset
   185
clickInfoCallBack:aTwoArgBlock
5f8be1b4f856 de-uglified
Claus Gittinger <cg@exept.de>
parents: 1510
diff changeset
   186
     clickInfoCallBack := aTwoArgBlock
5f8be1b4f856 de-uglified
Claus Gittinger <cg@exept.de>
parents: 1510
diff changeset
   187
5f8be1b4f856 de-uglified
Claus Gittinger <cg@exept.de>
parents: 1510
diff changeset
   188
    "Created: / 10.2.2000 / 23:07:14 / cg"
5f8be1b4f856 de-uglified
Claus Gittinger <cg@exept.de>
parents: 1510
diff changeset
   189
!
5f8be1b4f856 de-uglified
Claus Gittinger <cg@exept.de>
parents: 1510
diff changeset
   190
2440
a9abeb0e3562 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2415
diff changeset
   191
clipBoard
4264
6e31e342f38c class: ImageEditView
Stefan Vogel <sv@exept.de>
parents: 4249
diff changeset
   192
    ^ self getClipboardObject.
6e31e342f38c class: ImageEditView
Stefan Vogel <sv@exept.de>
parents: 4249
diff changeset
   193
"/    ^ Clipboard
2440
a9abeb0e3562 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2415
diff changeset
   194
!
a9abeb0e3562 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2415
diff changeset
   195
3610
11e215de80a0 color selection when undoing
Claus Gittinger <cg@exept.de>
parents: 3564
diff changeset
   196
drawingColorHolders
11e215de80a0 color selection when undoing
Claus Gittinger <cg@exept.de>
parents: 3564
diff changeset
   197
    ^ drawingColorHolders
11e215de80a0 color selection when undoing
Claus Gittinger <cg@exept.de>
parents: 3564
diff changeset
   198
!
11e215de80a0 color selection when undoing
Claus Gittinger <cg@exept.de>
parents: 3564
diff changeset
   199
11e215de80a0 color selection when undoing
Claus Gittinger <cg@exept.de>
parents: 3564
diff changeset
   200
drawingColors
11e215de80a0 color selection when undoing
Claus Gittinger <cg@exept.de>
parents: 3564
diff changeset
   201
    ^ drawingColorHolders collect:[:each | each value].
11e215de80a0 color selection when undoing
Claus Gittinger <cg@exept.de>
parents: 3564
diff changeset
   202
!
11e215de80a0 color selection when undoing
Claus Gittinger <cg@exept.de>
parents: 3564
diff changeset
   203
2009
4f556ff9fec5 pick with SHIFT-click in the mag-view
Claus Gittinger <cg@exept.de>
parents: 2007
diff changeset
   204
drawingColors:anArrayTwoColors
4f556ff9fec5 pick with SHIFT-click in the mag-view
Claus Gittinger <cg@exept.de>
parents: 2007
diff changeset
   205
    (drawingColorHolders at:1) value:(anArrayTwoColors at:1).
4f556ff9fec5 pick with SHIFT-click in the mag-view
Claus Gittinger <cg@exept.de>
parents: 2007
diff changeset
   206
    (drawingColorHolders at:2) value:(anArrayTwoColors at:2).
4f556ff9fec5 pick with SHIFT-click in the mag-view
Claus Gittinger <cg@exept.de>
parents: 2007
diff changeset
   207
!
4f556ff9fec5 pick with SHIFT-click in the mag-view
Claus Gittinger <cg@exept.de>
parents: 2007
diff changeset
   208
2915
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
   209
image:anImage scroll:doScroll
3706
e95e7f0e4f82 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   210
    self image:anImage scroll:doScroll invalidate:true
e95e7f0e4f82 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   211
!
e95e7f0e4f82 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   212
e95e7f0e4f82 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   213
image:anImage scroll:doScroll invalidate:doInvalidate
2915
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
   214
    |retVal fileName|
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
   215
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
   216
    anImage isImage ifTrue:[           
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
   217
        true "(image isNil or: [self checkModified])" ifTrue: [
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
   218
            image notNil ifTrue: [
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
   219
                fileName := image fileName.
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
   220
                anImage fileName isNil ifTrue: [anImage fileName: fileName].
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
   221
            ].
3706
e95e7f0e4f82 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   222
            super image:anImage scroll:doScroll invalidate:doInvalidate.
2915
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
   223
            retVal := self.
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
   224
        ].
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
   225
    ] ifFalse: [
3706
e95e7f0e4f82 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   226
        super image:nil scroll:true invalidate:doInvalidate.
2915
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
   227
    ].
3706
e95e7f0e4f82 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   228
2915
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
   229
    "/ self changed:#image.
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
   230
    image isNil ifTrue:[
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
   231
        self clearModified.
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
   232
    ] ifFalse:[
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
   233
        self setModified.
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
   234
    ].
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
   235
    self updateImageInfo: self imageInfoString. 
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
   236
    ^ retVal
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
   237
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
   238
    "Modified: / 10.2.2000 / 23:33:12 / cg"
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
   239
!
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
   240
1031
a5ab5869b2ba cleaned up the interface to the apps infoPanel
Claus Gittinger <cg@exept.de>
parents: 1030
diff changeset
   241
imageInfoHolder
a5ab5869b2ba cleaned up the interface to the apps infoPanel
Claus Gittinger <cg@exept.de>
parents: 1030
diff changeset
   242
    ^ imageInfoHolder
a5ab5869b2ba cleaned up the interface to the apps infoPanel
Claus Gittinger <cg@exept.de>
parents: 1030
diff changeset
   243
a5ab5869b2ba cleaned up the interface to the apps infoPanel
Claus Gittinger <cg@exept.de>
parents: 1030
diff changeset
   244
    "Created: / 29.7.1998 / 18:29:50 / cg"
a5ab5869b2ba cleaned up the interface to the apps infoPanel
Claus Gittinger <cg@exept.de>
parents: 1030
diff changeset
   245
!
a5ab5869b2ba cleaned up the interface to the apps infoPanel
Claus Gittinger <cg@exept.de>
parents: 1030
diff changeset
   246
a5ab5869b2ba cleaned up the interface to the apps infoPanel
Claus Gittinger <cg@exept.de>
parents: 1030
diff changeset
   247
imageInfoHolder:something
a5ab5869b2ba cleaned up the interface to the apps infoPanel
Claus Gittinger <cg@exept.de>
parents: 1030
diff changeset
   248
    imageInfoHolder := something.
a5ab5869b2ba cleaned up the interface to the apps infoPanel
Claus Gittinger <cg@exept.de>
parents: 1030
diff changeset
   249
a5ab5869b2ba cleaned up the interface to the apps infoPanel
Claus Gittinger <cg@exept.de>
parents: 1030
diff changeset
   250
    "Created: / 29.7.1998 / 18:29:50 / cg"
a5ab5869b2ba cleaned up the interface to the apps infoPanel
Claus Gittinger <cg@exept.de>
parents: 1030
diff changeset
   251
!
a5ab5869b2ba cleaned up the interface to the apps infoPanel
Claus Gittinger <cg@exept.de>
parents: 1030
diff changeset
   252
624
d98fe4700fc2 checkin from browser
tz
parents: 606
diff changeset
   253
magnification
d98fe4700fc2 checkin from browser
tz
parents: 606
diff changeset
   254
d98fe4700fc2 checkin from browser
tz
parents: 606
diff changeset
   255
    ^magnification
d98fe4700fc2 checkin from browser
tz
parents: 606
diff changeset
   256
255
1dfa8deddaef checkin from browser
Claus Gittinger <cg@exept.de>
parents: 251
diff changeset
   257
!
1dfa8deddaef checkin from browser
Claus Gittinger <cg@exept.de>
parents: 251
diff changeset
   258
636
d53428252193 revised version
tz
parents: 633
diff changeset
   259
magnification: aPoint
1037
3735af6b5b24 remmeber scrollOffset
Claus Gittinger <cg@exept.de>
parents: 1036
diff changeset
   260
    |oldOrg|
255
1dfa8deddaef checkin from browser
Claus Gittinger <cg@exept.de>
parents: 251
diff changeset
   261
627
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   262
    magnification ~= aPoint
624
d98fe4700fc2 checkin from browser
tz
parents: 606
diff changeset
   263
    ifTrue:
d98fe4700fc2 checkin from browser
tz
parents: 606
diff changeset
   264
    [
1116
441ff42c1472 fixes to allow 24bit images to be (at least) displayed
Claus Gittinger <cg@exept.de>
parents: 1106
diff changeset
   265
	oldOrg := self viewOrigin / magnification.
441ff42c1472 fixes to allow 24bit images to be (at least) displayed
Claus Gittinger <cg@exept.de>
parents: 1106
diff changeset
   266
	magnification := aPoint asPoint.
1037
3735af6b5b24 remmeber scrollOffset
Claus Gittinger <cg@exept.de>
parents: 1036
diff changeset
   267
1116
441ff42c1472 fixes to allow 24bit images to be (at least) displayed
Claus Gittinger <cg@exept.de>
parents: 1106
diff changeset
   268
	self scrollTo:(oldOrg * magnification) rounded redraw:false.        
1037
3735af6b5b24 remmeber scrollOffset
Claus Gittinger <cg@exept.de>
parents: 1036
diff changeset
   269
"/        self scrollToTopLeft.
1116
441ff42c1472 fixes to allow 24bit images to be (at least) displayed
Claus Gittinger <cg@exept.de>
parents: 1106
diff changeset
   270
	self contentsChanged.
441ff42c1472 fixes to allow 24bit images to be (at least) displayed
Claus Gittinger <cg@exept.de>
parents: 1106
diff changeset
   271
	self invalidate.
2440
a9abeb0e3562 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2415
diff changeset
   272
	ClipboardMagnified := nil.
686
33833bcbb5cd some cleans
tz
parents: 678
diff changeset
   273
    ]
1037
3735af6b5b24 remmeber scrollOffset
Claus Gittinger <cg@exept.de>
parents: 1036
diff changeset
   274
3735af6b5b24 remmeber scrollOffset
Claus Gittinger <cg@exept.de>
parents: 1036
diff changeset
   275
    "Modified: / 31.7.1998 / 02:38:47 / cg"
624
d98fe4700fc2 checkin from browser
tz
parents: 606
diff changeset
   276
!
255
1dfa8deddaef checkin from browser
Claus Gittinger <cg@exept.de>
parents: 251
diff changeset
   277
2913
7e07bb5586e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2910
diff changeset
   278
modified
7e07bb5586e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2910
diff changeset
   279
    ^ modifiedHolder value
7e07bb5586e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2910
diff changeset
   280
!
7e07bb5586e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2910
diff changeset
   281
2747
818a513a64c3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2690
diff changeset
   282
modified:aBoolean
818a513a64c3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2690
diff changeset
   283
    modifiedHolder value:aBoolean
818a513a64c3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2690
diff changeset
   284
!
818a513a64c3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2690
diff changeset
   285
818a513a64c3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2690
diff changeset
   286
modifiedHolder
818a513a64c3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2690
diff changeset
   287
    ^ modifiedHolder
818a513a64c3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2690
diff changeset
   288
!
818a513a64c3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2690
diff changeset
   289
3265
f22de2c4383d pen width
Claus Gittinger <cg@exept.de>
parents: 2917
diff changeset
   290
penWidth
f22de2c4383d pen width
Claus Gittinger <cg@exept.de>
parents: 2917
diff changeset
   291
    ^ penWidth ? 1
f22de2c4383d pen width
Claus Gittinger <cg@exept.de>
parents: 2917
diff changeset
   292
f22de2c4383d pen width
Claus Gittinger <cg@exept.de>
parents: 2917
diff changeset
   293
    "Created: / 01-11-2007 / 23:34:49 / cg"
f22de2c4383d pen width
Claus Gittinger <cg@exept.de>
parents: 2917
diff changeset
   294
!
f22de2c4383d pen width
Claus Gittinger <cg@exept.de>
parents: 2917
diff changeset
   295
f22de2c4383d pen width
Claus Gittinger <cg@exept.de>
parents: 2917
diff changeset
   296
penWidth:n
f22de2c4383d pen width
Claus Gittinger <cg@exept.de>
parents: 2917
diff changeset
   297
    penWidth := n
f22de2c4383d pen width
Claus Gittinger <cg@exept.de>
parents: 2917
diff changeset
   298
f22de2c4383d pen width
Claus Gittinger <cg@exept.de>
parents: 2917
diff changeset
   299
    "Created: / 01-11-2007 / 23:34:56 / cg"
f22de2c4383d pen width
Claus Gittinger <cg@exept.de>
parents: 2917
diff changeset
   300
!
f22de2c4383d pen width
Claus Gittinger <cg@exept.de>
parents: 2917
diff changeset
   301
4041
2d635ff57406 class definition
Claus Gittinger <cg@exept.de>
parents: 4032
diff changeset
   302
readOnly
2d635ff57406 class definition
Claus Gittinger <cg@exept.de>
parents: 4032
diff changeset
   303
    ^ readOnly
2d635ff57406 class definition
Claus Gittinger <cg@exept.de>
parents: 4032
diff changeset
   304
!
2d635ff57406 class definition
Claus Gittinger <cg@exept.de>
parents: 4032
diff changeset
   305
2d635ff57406 class definition
Claus Gittinger <cg@exept.de>
parents: 4032
diff changeset
   306
readOnly:something
2d635ff57406 class definition
Claus Gittinger <cg@exept.de>
parents: 4032
diff changeset
   307
    readOnly := something.
2d635ff57406 class definition
Claus Gittinger <cg@exept.de>
parents: 4032
diff changeset
   308
!
2d635ff57406 class definition
Claus Gittinger <cg@exept.de>
parents: 4032
diff changeset
   309
2915
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
   310
removelastUndo
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
   311
    undoImages removeLast
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
   312
!
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
   313
627
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   314
resourceClass
2915
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
   315
    ^ resourceClass
627
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   316
!
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   317
2915
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
   318
resourceClass: aClassOrClassNameString
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
   319
    "support for names will vanish - obsolete left over from tz"
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
   320
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
   321
    resourceClass := aClassOrClassNameString.
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
   322
    resourceClass notNil ifTrue:[
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
   323
        resourceClass isBehavior ifFalse: [ 
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
   324
            resourceClass := Smalltalk classNamed:aClassOrClassNameString 
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
   325
        ]
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
   326
    ]
2908
a759fa87d598 some code cleanup (resourceClass was actually its name)
Claus Gittinger <cg@exept.de>
parents: 2889
diff changeset
   327
!
a759fa87d598 some code cleanup (resourceClass was actually its name)
Claus Gittinger <cg@exept.de>
parents: 2889
diff changeset
   328
a759fa87d598 some code cleanup (resourceClass was actually its name)
Claus Gittinger <cg@exept.de>
parents: 2889
diff changeset
   329
resourceClassName
a759fa87d598 some code cleanup (resourceClass was actually its name)
Claus Gittinger <cg@exept.de>
parents: 2889
diff changeset
   330
    resourceClass isNil ifTrue:[^ ''].
a759fa87d598 some code cleanup (resourceClass was actually its name)
Claus Gittinger <cg@exept.de>
parents: 2889
diff changeset
   331
    ^ resourceClass name
627
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   332
!
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   333
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   334
resourceMessage
2909
7d6f5d4ba273 some code cleanup
Claus Gittinger <cg@exept.de>
parents: 2908
diff changeset
   335
    (resourceClass isNil or:[resourceSelector isNil]) ifTrue:[^ ''].
2908
a759fa87d598 some code cleanup (resourceClass was actually its name)
Claus Gittinger <cg@exept.de>
parents: 2889
diff changeset
   336
    ^ resourceClass name, ' ', resourceSelector
627
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   337
!
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   338
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   339
resourceSelector
2915
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
   340
    ^ resourceSelector
627
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   341
!
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   342
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   343
resourceSelector: aStringOrSymbol
2909
7d6f5d4ba273 some code cleanup
Claus Gittinger <cg@exept.de>
parents: 2908
diff changeset
   344
    aStringOrSymbol isNil ifTrue:[
7d6f5d4ba273 some code cleanup
Claus Gittinger <cg@exept.de>
parents: 2908
diff changeset
   345
        resourceSelector := nil
7d6f5d4ba273 some code cleanup
Claus Gittinger <cg@exept.de>
parents: 2908
diff changeset
   346
    ] ifFalse:[
7d6f5d4ba273 some code cleanup
Claus Gittinger <cg@exept.de>
parents: 2908
diff changeset
   347
        resourceSelector := aStringOrSymbol asSymbol
7d6f5d4ba273 some code cleanup
Claus Gittinger <cg@exept.de>
parents: 2908
diff changeset
   348
    ]
627
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   349
!
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   350
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   351
selectedColor
3730
3f07e7082aff preps for aloha channel
Claus Gittinger <cg@exept.de>
parents: 3729
diff changeset
   352
    |clr|
3f07e7082aff preps for aloha channel
Claus Gittinger <cg@exept.de>
parents: 3729
diff changeset
   353
3f07e7082aff preps for aloha channel
Claus Gittinger <cg@exept.de>
parents: 3729
diff changeset
   354
    clr := (drawingColorHolders at:mouseKeyColorMode) value.
3931
d2a15871d837 changed: #selectedColor
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
   355
    clr isNil ifTrue:[ clr := Color black ].
3730
3f07e7082aff preps for aloha channel
Claus Gittinger <cg@exept.de>
parents: 3729
diff changeset
   356
    image hasAlphaChannel ifTrue:[
3f07e7082aff preps for aloha channel
Claus Gittinger <cg@exept.de>
parents: 3729
diff changeset
   357
        ^ (TranslucentColor 
3f07e7082aff preps for aloha channel
Claus Gittinger <cg@exept.de>
parents: 3729
diff changeset
   358
                scaledRed:clr scaledRed
3f07e7082aff preps for aloha channel
Claus Gittinger <cg@exept.de>
parents: 3729
diff changeset
   359
                scaledGreen:clr scaledGreen
3f07e7082aff preps for aloha channel
Claus Gittinger <cg@exept.de>
parents: 3729
diff changeset
   360
                scaledBlue:clr scaledBlue)
3f07e7082aff preps for aloha channel
Claus Gittinger <cg@exept.de>
parents: 3729
diff changeset
   361
                alpha:(drawingAlpha ? 1.0)
3f07e7082aff preps for aloha channel
Claus Gittinger <cg@exept.de>
parents: 3729
diff changeset
   362
    ].
3f07e7082aff preps for aloha channel
Claus Gittinger <cg@exept.de>
parents: 3729
diff changeset
   363
    ^ clr
3931
d2a15871d837 changed: #selectedColor
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
   364
d2a15871d837 changed: #selectedColor
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
   365
    "Modified: / 20-09-2010 / 11:34:07 / cg"
1246
0cd36bffc789 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1245
diff changeset
   366
!
0cd36bffc789 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1245
diff changeset
   367
0cd36bffc789 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1245
diff changeset
   368
selectedColor: aColor
4853
Claus Gittinger <cg@exept.de>
parents: 4730
diff changeset
   369
    (drawingColorHolders at:(mouseKeyColorMode min:drawingColorHolders size)) value:aColor
627
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   370
!
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   371
1246
0cd36bffc789 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1245
diff changeset
   372
selectedColorIndex
2915
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
   373
    ^ (drawingPixelHolders at:mouseKeyColorMode) value
1246
0cd36bffc789 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1245
diff changeset
   374
!
0cd36bffc789 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1245
diff changeset
   375
0cd36bffc789 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1245
diff changeset
   376
selectedColorIndex: aPixelIndex
4853
Claus Gittinger <cg@exept.de>
parents: 4730
diff changeset
   377
    (drawingPixelHolders at:(mouseKeyColorMode min:drawingPixelHolders size)) value: aPixelIndex
995
cd84d6f8c449 several undos
tz
parents: 994
diff changeset
   378
!
cd84d6f8c449 several undos
tz
parents: 994
diff changeset
   379
2590
b811d560e00a modified flag after edit operations
Claus Gittinger <cg@exept.de>
parents: 2589
diff changeset
   380
setModified
2915
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
   381
    self modified:true
2590
b811d560e00a modified flag after edit operations
Claus Gittinger <cg@exept.de>
parents: 2589
diff changeset
   382
!
b811d560e00a modified flag after edit operations
Claus Gittinger <cg@exept.de>
parents: 2589
diff changeset
   383
4111
Claus Gittinger <cg@exept.de>
parents: 4041
diff changeset
   384
spraySpot
Claus Gittinger <cg@exept.de>
parents: 4041
diff changeset
   385
    ^ spraySpot
Claus Gittinger <cg@exept.de>
parents: 4041
diff changeset
   386
Claus Gittinger <cg@exept.de>
parents: 4041
diff changeset
   387
    "Created: / 15-02-2012 / 22:38:04 / cg"
Claus Gittinger <cg@exept.de>
parents: 4041
diff changeset
   388
!
Claus Gittinger <cg@exept.de>
parents: 4041
diff changeset
   389
3476
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   390
spraySpot:something
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   391
    spraySpot := something.
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   392
!
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   393
995
cd84d6f8c449 several undos
tz
parents: 994
diff changeset
   394
undoImages
2915
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
   395
    ^ undoImages
627
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   396
! !
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   397
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   398
!ImageEditView methodsFor:'drawing'!
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   399
1036
d860072f3b49 gridMag default.
Claus Gittinger <cg@exept.de>
parents: 1035
diff changeset
   400
drawFrame
5163
955f893d03f2 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 5093
diff changeset
   401
    self paint:self blackColor.
1036
d860072f3b49 gridMag default.
Claus Gittinger <cg@exept.de>
parents: 1035
diff changeset
   402
    self lineWidth: (magnification x//3 min: 3).
1104
a7101d656dab use margin in #drawFrame
tz
parents: 1103
diff changeset
   403
    self displayRectangle: ((0@0) extent:(image extent * magnification) + margin).
1036
d860072f3b49 gridMag default.
Claus Gittinger <cg@exept.de>
parents: 1035
diff changeset
   404
    self lineWidth:1.
d860072f3b49 gridMag default.
Claus Gittinger <cg@exept.de>
parents: 1035
diff changeset
   405
!
d860072f3b49 gridMag default.
Claus Gittinger <cg@exept.de>
parents: 1035
diff changeset
   406
d860072f3b49 gridMag default.
Claus Gittinger <cg@exept.de>
parents: 1035
diff changeset
   407
drawFramesIn: aRectangle
d860072f3b49 gridMag default.
Claus Gittinger <cg@exept.de>
parents: 1035
diff changeset
   408
1706
a954781f4440 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1693
diff changeset
   409
    magnification >= GridMagnificationLimit
1036
d860072f3b49 gridMag default.
Claus Gittinger <cg@exept.de>
parents: 1035
diff changeset
   410
    ifTrue:
d860072f3b49 gridMag default.
Claus Gittinger <cg@exept.de>
parents: 1035
diff changeset
   411
    [   
1706
a954781f4440 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1693
diff changeset
   412
        |origin lineStartingPoint lineEndingPoint oldColor|
a954781f4440 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1693
diff changeset
   413
        origin := aRectangle origin - 1.
a954781f4440 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1693
diff changeset
   414
        lineStartingPoint := origin + (0@magnification y).
a954781f4440 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1693
diff changeset
   415
        lineEndingPoint   := lineStartingPoint + (aRectangle width@0).
a954781f4440 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1693
diff changeset
   416
        oldColor := self paint.
a954781f4440 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1693
diff changeset
   417
        self xoring:
a954781f4440 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1693
diff changeset
   418
        [
a954781f4440 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1693
diff changeset
   419
            self displayLineFrom: lineStartingPoint to: lineEndingPoint.
a954781f4440 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1693
diff changeset
   420
            lineStartingPoint x to: lineStartingPoint x + aRectangle width - magnification x by: magnification x do:
a954781f4440 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1693
diff changeset
   421
            [:x|   
a954781f4440 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1693
diff changeset
   422
                self displayLineFrom: x@(origin y) to: x@(origin y + magnification y)
a954781f4440 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1693
diff changeset
   423
            ].
a954781f4440 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1693
diff changeset
   424
        ].
a954781f4440 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1693
diff changeset
   425
        self paint: oldColor.
1036
d860072f3b49 gridMag default.
Claus Gittinger <cg@exept.de>
parents: 1035
diff changeset
   426
    ]
d860072f3b49 gridMag default.
Claus Gittinger <cg@exept.de>
parents: 1035
diff changeset
   427
d860072f3b49 gridMag default.
Claus Gittinger <cg@exept.de>
parents: 1035
diff changeset
   428
d860072f3b49 gridMag default.
Claus Gittinger <cg@exept.de>
parents: 1035
diff changeset
   429
d860072f3b49 gridMag default.
Claus Gittinger <cg@exept.de>
parents: 1035
diff changeset
   430
!
d860072f3b49 gridMag default.
Claus Gittinger <cg@exept.de>
parents: 1035
diff changeset
   431
1380
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   432
drawPasteRectangleAt: aPoint
2889
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
   433
    |currentPoint gridCorrection extent|
1380
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   434
1706
a954781f4440 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1693
diff changeset
   435
    magnification >= GridMagnificationLimit ifFalse: [gridCorrection := 0] ifTrue: [gridCorrection := 1].
1449
e5852c20c18a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1411
diff changeset
   436
    currentPoint := aPoint // magnification*magnification + margin. 
1380
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   437
2085
4cf52f994f0a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2072
diff changeset
   438
    self repairDamage.
4cf52f994f0a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2072
diff changeset
   439
1380
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   440
    currentPoint ~= lastPastePoint ifTrue:[              
2440
a9abeb0e3562 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2415
diff changeset
   441
        ClipboardMagnified isNil ifTrue:[
4999
e0111330133e device access
Claus Gittinger <cg@exept.de>
parents: 4967
diff changeset
   442
            ClipboardMagnified := (Clipboard magnifiedBy: magnification) onDevice:device
1380
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   443
        ].   
3278
c42700648b31 shift-paste
Claus Gittinger <cg@exept.de>
parents: 3277
diff changeset
   444
        extent := ClipboardMagnified extent.
1380
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   445
1967
1b4524f3105f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1957
diff changeset
   446
        "/ currentPoint := currentPoint - self viewOrigin.
1380
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   447
2085
4cf52f994f0a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2072
diff changeset
   448
        self redraw: (((lastPastePoint ? currentPoint)"-self viewOrigin") extent: extent).
3267
ee55a3b2f6fc changed #pointAt:
Claus Gittinger <cg@exept.de>
parents: 3266
diff changeset
   449
        "/ self repairDamage.
1380
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   450
2085
4cf52f994f0a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2072
diff changeset
   451
false "        (extent x > 400 or: [extent y > 400])" ifTrue:[
1380
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   452
            self xoring: [
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   453
                self fillRectangle: (currentPoint extent: extent)
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   454
            ]   
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   455
        ] ifFalse:[
2440
a9abeb0e3562 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2415
diff changeset
   456
            ClipboardMagnified notNil ifTrue:[
a9abeb0e3562 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2415
diff changeset
   457
                self displayDeviceForm: ClipboardMagnified 
2089
8c0aed9152c4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2086
diff changeset
   458
                                     x: currentPoint x - self viewOrigin x 
8c0aed9152c4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2086
diff changeset
   459
                                     y: currentPoint y - self viewOrigin y.
8c0aed9152c4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2086
diff changeset
   460
            ].
2889
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
   461
            editMode == EditModePastUnder ifTrue:[
1380
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   462
                self redrawImageX:currentPoint x y:currentPoint y width:extent x height:extent y unmaskedOnly:true
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   463
            ]
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   464
        ]  
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   465
    ]. 
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   466
    lastPastePoint := currentPoint.
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   467
3278
c42700648b31 shift-paste
Claus Gittinger <cg@exept.de>
parents: 3277
diff changeset
   468
    "Modified: / 20-11-2007 / 17:17:14 / cg"
1380
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   469
!
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   470
662
61b7601829ea with modal support
tz
parents: 636
diff changeset
   471
fillFramedRectangle: aRectangle
61b7601829ea with modal support
tz
parents: 636
diff changeset
   472
61b7601829ea with modal support
tz
parents: 636
diff changeset
   473
    self fillRectangle: aRectangle.
61b7601829ea with modal support
tz
parents: 636
diff changeset
   474
    self drawFramesIn: aRectangle
61b7601829ea with modal support
tz
parents: 636
diff changeset
   475
!
61b7601829ea with modal support
tz
parents: 636
diff changeset
   476
1449
e5852c20c18a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1411
diff changeset
   477
redraw:aRectangle
2838
8525a35121d2 changeHLS fixed dfor depth24-images;
Claus Gittinger <cg@exept.de>
parents: 2824
diff changeset
   478
    self 
8525a35121d2 changeHLS fixed dfor depth24-images;
Claus Gittinger <cg@exept.de>
parents: 2824
diff changeset
   479
        invalidate:(aRectangle origin "+ self viewOrigin" extent:aRectangle extent)
8525a35121d2 changeHLS fixed dfor depth24-images;
Claus Gittinger <cg@exept.de>
parents: 2824
diff changeset
   480
        repairNow:true. 
2053
5c19fe5b2db3 invalidate rather than redraw
Claus Gittinger <cg@exept.de>
parents: 2034
diff changeset
   481
"/    super redraw:(aRectangle origin + self viewOrigin extent:aRectangle extent).
1449
e5852c20c18a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1411
diff changeset
   482
2053
5c19fe5b2db3 invalidate rather than redraw
Claus Gittinger <cg@exept.de>
parents: 2034
diff changeset
   483
    "Modified: / 15.11.2001 / 16:43:53 / cg"
1449
e5852c20c18a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1411
diff changeset
   484
!
e5852c20c18a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1411
diff changeset
   485
627
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   486
redrawImageX:x y:y width:w height:h
1380
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   487
    self redrawImageX:x y:y width:w height:h unmaskedOnly:false
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   488
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   489
    "Modified: / 18.5.1999 / 20:14:03 / cg"
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   490
!
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   491
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   492
redrawImageX:x y:y width:w height:h unmaskedOnly:unmaskedOnly
3319
ae7f91c67895 comment
Claus Gittinger <cg@exept.de>
parents: 3278
diff changeset
   493
    "redraw the magnified (editing) view of the image"
636
d53428252193 revised version
tz
parents: 633
diff changeset
   494
4233
06183a48f783 Fix stc compiler warnings
Stefan Vogel <sv@exept.de>
parents: 4231
diff changeset
   495
    |ih iw magX magY minX maxX minY maxY lastColor lastY runW x0 maskColor mask
3476
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   496
     sizeOfMaskPoint useNearestColor origin|
1180
dcb9dede5128 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1160
diff changeset
   497
4999
e0111330133e device access
Claus Gittinger <cg@exept.de>
parents: 4967
diff changeset
   498
    useNearestColor := device visualType == #PseudoColor.
627
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   499
1037
3735af6b5b24 remmeber scrollOffset
Claus Gittinger <cg@exept.de>
parents: 1036
diff changeset
   500
    mask := image mask.
627
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   501
    ih := image height.
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   502
    iw := image width.
662
61b7601829ea with modal support
tz
parents: 636
diff changeset
   503
    magX := magnification x.
61b7601829ea with modal support
tz
parents: 636
diff changeset
   504
    magY := magnification y.
627
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   505
662
61b7601829ea with modal support
tz
parents: 636
diff changeset
   506
    minX := (x // magX - 1) max: 0.
725
0e051202859d checkin from browser
tz
parents: 724
diff changeset
   507
    minX >= iw ifTrue:[minX := (iw - 1) max: 0].
662
61b7601829ea with modal support
tz
parents: 636
diff changeset
   508
    minY := (y // magY - 1) max: 0.
725
0e051202859d checkin from browser
tz
parents: 724
diff changeset
   509
    minY >= ih ifTrue:[minY := (ih - 1) max: 0].
662
61b7601829ea with modal support
tz
parents: 636
diff changeset
   510
    maxX := (x + w) // magX + 1.
627
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   511
    maxX > iw ifTrue:[maxX := iw].
662
61b7601829ea with modal support
tz
parents: 636
diff changeset
   512
    maxY := (y + h) // magY + 1.
627
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   513
    maxY > ih ifTrue:[maxY := ih].
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   514
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   515
    lastY := -1.
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   516
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   517
    x0 := minX.
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   518
    runW := 0.
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   519
    maskColor := false.
662
61b7601829ea with modal support
tz
parents: 636
diff changeset
   520
    sizeOfMaskPoint := magnification//3.
1380
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   521
    image 
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   522
        colorsFromX:minX y:minY toX:maxX-1 y:maxY-1 
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   523
        do:[:xx :yy :color|
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   524
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   525
            shown ifFalse:[^ self].
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   526
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   527
            yy ~~ lastY ifTrue:[
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   528
                runW ~~ 0 ifTrue:[
3476
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   529
                    origin := (x0 * magX + margin) @ (lastY * magY + margin).
1380
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   530
                    (unmaskedOnly not or:[maskColor not]) ifTrue:[
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   531
                        self fillFramedRectangle: (origin extent: (runW@magY)).                    
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   532
                        maskColor ifTrue:[
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   533
                            self xoring: [self fillRectangle: (origin + sizeOfMaskPoint extent: sizeOfMaskPoint)]
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   534
                        ]
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   535
                    ].
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   536
                    runW := 0.
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   537
                ]. 
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   538
                x0 := xx.
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   539
                lastY := yy.
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   540
            ]. 
1160
5d89296c4b04 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1158
diff changeset
   541
1380
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   542
            color ~= lastColor ifTrue:[
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   543
                runW ~~ 0 ifTrue:[
3476
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   544
1380
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   545
                    origin := (x0 * magX + margin)@(yy * magY + margin).
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   546
                    (unmaskedOnly not or:[maskColor not]) ifTrue:[
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   547
                        self fillFramedRectangle: (origin extent: (runW@magY)).
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   548
                        maskColor ifTrue:[
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   549
                            self xoring: [self fillRectangle: (origin + sizeOfMaskPoint extent: sizeOfMaskPoint)]
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   550
                        ].
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   551
                    ].
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   552
                    runW := 0.
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   553
                ].
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   554
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   555
                lastColor := color.
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   556
                useNearestColor ifTrue:[
4999
e0111330133e device access
Claus Gittinger <cg@exept.de>
parents: 4967
diff changeset
   557
                    lastColor := lastColor nearestOn:device
1380
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   558
                ].
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   559
                self paint:lastColor.
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   560
                mask notNil ifTrue:[  
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   561
                    maskColor := false.
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   562
                    (mask pixelAtX:xx y:yy) == 0 ifTrue:[
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   563
                        unmaskedOnly ifFalse:[
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   564
                            self paint: (lastColor := self viewBackground).
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   565
                        ].
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   566
                        maskColor := true.
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   567
                    ].
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   568
                    lastColor := nil.
1160
5d89296c4b04 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1158
diff changeset
   569
                ].
5d89296c4b04 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1158
diff changeset
   570
                runW := 0.
1380
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   571
                x0 := xx.
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   572
            ].  
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   573
            runW := runW + magX
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   574
        ].
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   575
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   576
    runW ~~ 0 ifTrue:[
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   577
        origin := (x0 * magX + margin)@(lastY * magY + margin).
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   578
        (unmaskedOnly not or:[maskColor not]) ifTrue:[
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   579
            self fillFramedRectangle: (origin extent: runW@magY).
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   580
            maskColor ifTrue:[
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   581
                self xoring:[
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   582
                    self fillRectangle: (origin + sizeOfMaskPoint extent: sizeOfMaskPoint)
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   583
                ]
1180
dcb9dede5128 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1160
diff changeset
   584
            ].
1380
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   585
        ]
627
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   586
    ].
1037
3735af6b5b24 remmeber scrollOffset
Claus Gittinger <cg@exept.de>
parents: 1036
diff changeset
   587
1380
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   588
    "Created: / 18.5.1999 / 20:13:39 / cg"
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
   589
    "Modified: / 18.5.1999 / 20:36:20 / cg"
627
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   590
!
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   591
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   592
redrawX:x y:y width:w height:h
636
d53428252193 revised version
tz
parents: 633
diff changeset
   593
4233
06183a48f783 Fix stc compiler warnings
Stefan Vogel <sv@exept.de>
parents: 4231
diff changeset
   594
    |xI yI devImage imgWidth imgHeight|
627
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   595
1037
3735af6b5b24 remmeber scrollOffset
Claus Gittinger <cg@exept.de>
parents: 1036
diff changeset
   596
    image isNil ifTrue:[^self].
662
61b7601829ea with modal support
tz
parents: 636
diff changeset
   597
1037
3735af6b5b24 remmeber scrollOffset
Claus Gittinger <cg@exept.de>
parents: 1036
diff changeset
   598
    magnification = (1@1) ifTrue: [
4212
4b84444912b5 exception access
Claus Gittinger <cg@exept.de>
parents: 4203
diff changeset
   599
        Error handle:[:ex |
2092
36ef3048dbf4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   600
            Transcript showCR:'cannot convert image: ', ex description.
1510
fd0cd6065dc6 catch image conversion errors.
Claus Gittinger <cg@exept.de>
parents: 1449
diff changeset
   601
        ] do:[
4999
e0111330133e device access
Claus Gittinger <cg@exept.de>
parents: 4967
diff changeset
   602
            devImage := image onDevice:device.
1763
7d6d64622ee4 change & updates fixed (monochrome bitmaps)
Claus Gittinger <cg@exept.de>
parents: 1706
diff changeset
   603
            devImage ~~ image ifTrue:[
7d6d64622ee4 change & updates fixed (monochrome bitmaps)
Claus Gittinger <cg@exept.de>
parents: 1706
diff changeset
   604
                image := devImage.
1764
3dd553f8d9f0 oops - leftover halts
Claus Gittinger <cg@exept.de>
parents: 1763
diff changeset
   605
                self changed:#image.
1763
7d6d64622ee4 change & updates fixed (monochrome bitmaps)
Claus Gittinger <cg@exept.de>
parents: 1706
diff changeset
   606
            ].
1510
fd0cd6065dc6 catch image conversion errors.
Claus Gittinger <cg@exept.de>
parents: 1449
diff changeset
   607
        ].
4999
e0111330133e device access
Claus Gittinger <cg@exept.de>
parents: 4967
diff changeset
   608
        image device == device ifTrue:[
1510
fd0cd6065dc6 catch image conversion errors.
Claus Gittinger <cg@exept.de>
parents: 1449
diff changeset
   609
            ^ super redrawX:x y:y width:w height:h
fd0cd6065dc6 catch image conversion errors.
Claus Gittinger <cg@exept.de>
parents: 1449
diff changeset
   610
        ].
1037
3735af6b5b24 remmeber scrollOffset
Claus Gittinger <cg@exept.de>
parents: 1036
diff changeset
   611
    ].
627
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   612
3476
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   613
    "/ self clippingRectangle: (x@y extent:w@h).
627
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   614
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   615
    self redrawImageX:x y:y width:w height:h.
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   616
4233
06183a48f783 Fix stc compiler warnings
Stefan Vogel <sv@exept.de>
parents: 4231
diff changeset
   617
    imgWidth := image width.
06183a48f783 Fix stc compiler warnings
Stefan Vogel <sv@exept.de>
parents: 4231
diff changeset
   618
    imgHeight := image height.
06183a48f783 Fix stc compiler warnings
Stefan Vogel <sv@exept.de>
parents: 4231
diff changeset
   619
3476
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   620
    "/ beyond of image ?
627
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   621
    adjust == #center ifTrue:
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   622
    [
4233
06183a48f783 Fix stc compiler warnings
Stefan Vogel <sv@exept.de>
parents: 4231
diff changeset
   623
        xI := (width - imgWidth) // 2 - margin.
06183a48f783 Fix stc compiler warnings
Stefan Vogel <sv@exept.de>
parents: 4231
diff changeset
   624
        yI := (height - imgHeight) // 2 - margin.
627
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   625
    ]
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   626
    ifFalse:
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   627
    [
1449
e5852c20c18a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1411
diff changeset
   628
        xI := yI := margin
627
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   629
    ].
1967
1b4524f3105f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1957
diff changeset
   630
1b4524f3105f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1957
diff changeset
   631
    (x + w - 1) > (xI + (magnification x * imgWidth)) ifTrue:
627
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   632
    [
1967
1b4524f3105f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1957
diff changeset
   633
        self clearRectangleX:(xI + (magnification x * imgWidth))
1449
e5852c20c18a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1411
diff changeset
   634
                           y:y
1967
1b4524f3105f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1957
diff changeset
   635
                       width:(x + w - (magnification x * imgWidth) - xI)
1449
e5852c20c18a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1411
diff changeset
   636
                      height:h
627
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   637
    ].
1967
1b4524f3105f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1957
diff changeset
   638
    (y + h - 1) > (yI + (magnification y * imgHeight)) ifTrue:
627
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   639
    [
1449
e5852c20c18a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1411
diff changeset
   640
        self clearRectangleX:margin
1967
1b4524f3105f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1957
diff changeset
   641
                           y:(yI + (magnification y * imgHeight))
1449
e5852c20c18a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1411
diff changeset
   642
                       width:w
1967
1b4524f3105f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1957
diff changeset
   643
                      height:(y + h - (magnification y * imgHeight) - yI)  
627
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   644
    ].
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   645
    self drawFrame.
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   646
    self clippingRectangle: nil.
1037
3735af6b5b24 remmeber scrollOffset
Claus Gittinger <cg@exept.de>
parents: 1036
diff changeset
   647
3735af6b5b24 remmeber scrollOffset
Claus Gittinger <cg@exept.de>
parents: 1036
diff changeset
   648
    "Modified: / 31.7.1998 / 02:22:45 / cg"
3476
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   649
!
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   650
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   651
startSpray
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   652
    spraySpot isNil ifTrue:[
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   653
        spraySpot := 8
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   654
    ].
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   655
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   656
    sprayProcess isNil ifTrue:[
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   657
        sprayProcess := [
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   658
                |p rnd norm sprayPoint dly angle x y dist|
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   659
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   660
                rnd := Random new.
3477
00d7bac0b2c4 changed #startSpray
Claus Gittinger <cg@exept.de>
parents: 3476
diff changeset
   661
                Distributions::NormalDistribution notNil ifTrue:[
00d7bac0b2c4 changed #startSpray
Claus Gittinger <cg@exept.de>
parents: 3476
diff changeset
   662
                    norm := Distributions::NormalDistribution mean:0 deviation:0.5.
00d7bac0b2c4 changed #startSpray
Claus Gittinger <cg@exept.de>
parents: 3476
diff changeset
   663
                ].
3487
5cc0a5d3e1f4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3477
diff changeset
   664
                dly := Delay forMilliseconds:20.
3476
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   665
                [true] whileTrue:[
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   666
                    10 timesRepeat:[
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   667
                        p := sprayPosition.
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   668
                        p notNil ifTrue:[
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   669
                            angle := rnd next * 359.999.    "/ the angle is uniformly ditributed
3477
00d7bac0b2c4 changed #startSpray
Claus Gittinger <cg@exept.de>
parents: 3476
diff changeset
   670
                            norm notNil ifTrue:[
00d7bac0b2c4 changed #startSpray
Claus Gittinger <cg@exept.de>
parents: 3476
diff changeset
   671
                                dist := norm next * spraySpot.  "/ the distance is a normalDistribution
00d7bac0b2c4 changed #startSpray
Claus Gittinger <cg@exept.de>
parents: 3476
diff changeset
   672
                            ] ifFalse:[
00d7bac0b2c4 changed #startSpray
Claus Gittinger <cg@exept.de>
parents: 3476
diff changeset
   673
                                dist := (rnd nextBetween:-1 and:1) * spraySpot. 
00d7bac0b2c4 changed #startSpray
Claus Gittinger <cg@exept.de>
parents: 3476
diff changeset
   674
                            ].
3476
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   675
                            sprayPoint := (Point r:dist degrees:angle)*magnification.
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   676
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   677
                            x := p x + sprayPoint x truncated.
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   678
                            y := p y + sprayPoint y truncated.
4111
Claus Gittinger <cg@exept.de>
parents: 4041
diff changeset
   679
                            self pointAt:(x@y) width:1.
3476
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   680
                        ].
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   681
                    ].
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   682
                    dly wait.
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   683
                ].
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   684
        ] fork.
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   685
    ]
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   686
4111
Claus Gittinger <cg@exept.de>
parents: 4041
diff changeset
   687
    "Modified: / 15-02-2012 / 22:44:54 / cg"
3476
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   688
!
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   689
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   690
stopSpray
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   691
    sprayProcess notNil ifTrue:[
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   692
        sprayProcess terminate.
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   693
        sprayProcess := nil
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   694
    ].
627
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   695
! !
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   696
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   697
!ImageEditView methodsFor:'edit modes'!
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   698
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   699
editMode
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   700
1106
57c41df67ae5 support radio buttons of the ImageEditor
tz
parents: 1104
diff changeset
   701
    ^editMode
627
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   702
!
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   703
2440
a9abeb0e3562 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2415
diff changeset
   704
editMode: anEditModeSymbol
2889
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
   705
    "must be one of the edit modes:
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
   706
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
   707
        EditModePoint
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
   708
        EditModeBox
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
   709
        EditModePaste
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
   710
        EditModePasteUnder
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
   711
        EditModePasteWithMask 
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
   712
        EditModeFilledBox
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
   713
        EditModeFill 
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
   714
        EditModeCopy 
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
   715
        EditModeSpecialOperation 
3476
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   716
        EditModeSpray 
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   717
        EditModeCircle 
4715
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
   718
        EditModeSmooth 
2889
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
   719
    "
627
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   720
2440
a9abeb0e3562 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2415
diff changeset
   721
    editMode := anEditModeSymbol
627
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   722
!
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   723
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   724
mouseKeyColorMode
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   725
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   726
    ^mouseKeyColorMode printString
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   727
!
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   728
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   729
mouseKeyColorMode:aMode
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   730
1106
57c41df67ae5 support radio buttons of the ImageEditor
tz
parents: 1104
diff changeset
   731
    mouseKeyColorMode := aMode
627
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   732
! !
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   733
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   734
!ImageEditView methodsFor:'event handling'!
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   735
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   736
buttonMotion:state x:x y:y
1693
5f8be1b4f856 de-uglified
Claus Gittinger <cg@exept.de>
parents: 1510
diff changeset
   737
    |p|
5f8be1b4f856 de-uglified
Claus Gittinger <cg@exept.de>
parents: 1510
diff changeset
   738
2072
abd4e246f393 care for negative pos in buttonMotion (win32 klusge)
Claus Gittinger <cg@exept.de>
parents: 2053
diff changeset
   739
    (x < 0 or:[y < 0]) ifTrue:[
abd4e246f393 care for negative pos in buttonMotion (win32 klusge)
Claus Gittinger <cg@exept.de>
parents: 2053
diff changeset
   740
        ^ self
abd4e246f393 care for negative pos in buttonMotion (win32 klusge)
Claus Gittinger <cg@exept.de>
parents: 2053
diff changeset
   741
    ].
4041
2d635ff57406 class definition
Claus Gittinger <cg@exept.de>
parents: 4032
diff changeset
   742
    readOnly ifTrue:[^ self].
2072
abd4e246f393 care for negative pos in buttonMotion (win32 klusge)
Claus Gittinger <cg@exept.de>
parents: 2053
diff changeset
   743
1693
5f8be1b4f856 de-uglified
Claus Gittinger <cg@exept.de>
parents: 1510
diff changeset
   744
    p := x@y.
5f8be1b4f856 de-uglified
Claus Gittinger <cg@exept.de>
parents: 1510
diff changeset
   745
5f8be1b4f856 de-uglified
Claus Gittinger <cg@exept.de>
parents: 1510
diff changeset
   746
    state ~~ 0 ifTrue:[
3476
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   747
        "/ button down
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   748
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   749
        "/ self selectedColor notNil ifTrue:[ 
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   750
        (self imageContainsPoint:p) ifTrue:[
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   751
            (editMode == EditModePoint) ifTrue:[
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   752
                self pointAt:p.
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   753
                ^ self
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   754
            ].
4715
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
   755
            (editMode == EditModeSmooth) ifTrue:[
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
   756
                self smoothAt:p.
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
   757
                ^ self
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
   758
            ].
3476
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   759
            sprayProcess notNil ifTrue:[
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   760
                sprayPosition := p.
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   761
               ^ self
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   762
            ].
1246
0cd36bffc789 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1245
diff changeset
   763
        ].
1693
5f8be1b4f856 de-uglified
Claus Gittinger <cg@exept.de>
parents: 1510
diff changeset
   764
        self drawCursorAt:p.
3476
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   765
        ^ self
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   766
    ].
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   767
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   768
    "/button up (care for paste-mode, dragging the pasted image)
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   769
    self drawCursorAt:p.
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   770
    self inPasteMode ifTrue: [
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   771
        self sensor shiftDown ifTrue:[
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   772
            p := p - Clipboard extent
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   773
        ].
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   774
        ("self selectedColor notNil" true and: [self imageContainsPastePoint:p]) 
3729
6f6cfc8bb8cf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3706
diff changeset
   775
            ifTrue:[
3476
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   776
                (self sensor hasButtonMotionEventFor:self) ifFalse:[
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   777
                    self drawPasteRectangleAt:p]]
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   778
            ifFalse: [self cursor:Cursor stop. self releasePasteDrawing]
686
33833bcbb5cd some cleans
tz
parents: 678
diff changeset
   779
    ]
1019
e68414752bc9 only change the cursor for myself.
Claus Gittinger <cg@exept.de>
parents: 1013
diff changeset
   780
4041
2d635ff57406 class definition
Claus Gittinger <cg@exept.de>
parents: 4032
diff changeset
   781
    "Modified: / 03-05-2011 / 12:26:54 / cg"
624
d98fe4700fc2 checkin from browser
tz
parents: 606
diff changeset
   782
!
255
1dfa8deddaef checkin from browser
Claus Gittinger <cg@exept.de>
parents: 251
diff changeset
   783
627
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   784
buttonPress:button x:x y:y
2889
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
   785
    |p clr masked|
627
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   786
1693
5f8be1b4f856 de-uglified
Claus Gittinger <cg@exept.de>
parents: 1510
diff changeset
   787
    p := x@y.
5f8be1b4f856 de-uglified
Claus Gittinger <cg@exept.de>
parents: 1510
diff changeset
   788
3278
c42700648b31 shift-paste
Claus Gittinger <cg@exept.de>
parents: 3277
diff changeset
   789
    self inPasteMode ifTrue:[
c42700648b31 shift-paste
Claus Gittinger <cg@exept.de>
parents: 3277
diff changeset
   790
        self sensor shiftDown ifTrue:[
c42700648b31 shift-paste
Claus Gittinger <cg@exept.de>
parents: 3277
diff changeset
   791
            p := p - Clipboard extent
c42700648b31 shift-paste
Claus Gittinger <cg@exept.de>
parents: 3277
diff changeset
   792
        ]
c42700648b31 shift-paste
Claus Gittinger <cg@exept.de>
parents: 3277
diff changeset
   793
    ].
c42700648b31 shift-paste
Claus Gittinger <cg@exept.de>
parents: 3277
diff changeset
   794
    
1693
5f8be1b4f856 de-uglified
Claus Gittinger <cg@exept.de>
parents: 1510
diff changeset
   795
    self drawCursorAt:p.
1011
325d334e93c8 added paste-under (only paste where pixel ~= current selected)
Claus Gittinger <cg@exept.de>
parents: 1006
diff changeset
   796
1246
0cd36bffc789 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1245
diff changeset
   797
    ("self selectedColor notNil" true 
1693
5f8be1b4f856 de-uglified
Claus Gittinger <cg@exept.de>
parents: 1510
diff changeset
   798
    and: [self imageContainsPoint:p])
1246
0cd36bffc789 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1245
diff changeset
   799
    ifTrue:[   
3278
c42700648b31 shift-paste
Claus Gittinger <cg@exept.de>
parents: 3277
diff changeset
   800
        (self inPasteMode not 
c42700648b31 shift-paste
Claus Gittinger <cg@exept.de>
parents: 3277
diff changeset
   801
        and:[self sensor shiftDown]) ifTrue:[
2277
012c57905267 allow pinging the mask
Claus Gittinger <cg@exept.de>
parents: 2240
diff changeset
   802
            (image maskAt:(p // magnification)) == 0 ifTrue:[
012c57905267 allow pinging the mask
Claus Gittinger <cg@exept.de>
parents: 2240
diff changeset
   803
                masked := true.
012c57905267 allow pinging the mask
Claus Gittinger <cg@exept.de>
parents: 2240
diff changeset
   804
            ] ifFalse:[
012c57905267 allow pinging the mask
Claus Gittinger <cg@exept.de>
parents: 2240
diff changeset
   805
                masked := false.
012c57905267 allow pinging the mask
Claus Gittinger <cg@exept.de>
parents: 2240
diff changeset
   806
                clr := image colorAt:(p // magnification).
012c57905267 allow pinging the mask
Claus Gittinger <cg@exept.de>
parents: 2240
diff changeset
   807
            ].
1246
0cd36bffc789 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1245
diff changeset
   808
            pickedColorHolder notNil ifTrue:[
0cd36bffc789 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1245
diff changeset
   809
                "/ select the color under the cursor, place it into the
0cd36bffc789 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1245
diff changeset
   810
                "/ pickedColorHolder/
2009
4f556ff9fec5 pick with SHIFT-click in the mag-view
Claus Gittinger <cg@exept.de>
parents: 2007
diff changeset
   811
                pickedColorHolder value:clr.
1246
0cd36bffc789 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1245
diff changeset
   812
            ].
2009
4f556ff9fec5 pick with SHIFT-click in the mag-view
Claus Gittinger <cg@exept.de>
parents: 2007
diff changeset
   813
            self selectedColor:clr.
2277
012c57905267 allow pinging the mask
Claus Gittinger <cg@exept.de>
parents: 2240
diff changeset
   814
            masked ifTrue:[self selectedColorIndex:nil].
2009
4f556ff9fec5 pick with SHIFT-click in the mag-view
Claus Gittinger <cg@exept.de>
parents: 2007
diff changeset
   815
            self changed:#selectedColor with:clr.
1246
0cd36bffc789 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1245
diff changeset
   816
        ] ifFalse:[
4041
2d635ff57406 class definition
Claus Gittinger <cg@exept.de>
parents: 4032
diff changeset
   817
            readOnly ifFalse:[
4853
Claus Gittinger <cg@exept.de>
parents: 4730
diff changeset
   818
                (button between:1 and:2) ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 4730
diff changeset
   819
                    mouseKeyColorMode := button.
Claus Gittinger <cg@exept.de>
parents: 4730
diff changeset
   820
                    self makeUndo.
Claus Gittinger <cg@exept.de>
parents: 4730
diff changeset
   821
Claus Gittinger <cg@exept.de>
parents: 4730
diff changeset
   822
                    clickInfoCallBack notNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 4730
diff changeset
   823
                        "/ still a kludge, but less ugly ...
Claus Gittinger <cg@exept.de>
parents: 4730
diff changeset
   824
                        clickInfoCallBack value:button value:p
Claus Gittinger <cg@exept.de>
parents: 4730
diff changeset
   825
                    ].
Claus Gittinger <cg@exept.de>
parents: 4730
diff changeset
   826
                    "/ editMode is something like #point, #rectangle etc.
Claus Gittinger <cg@exept.de>
parents: 4730
diff changeset
   827
                    [
Claus Gittinger <cg@exept.de>
parents: 4730
diff changeset
   828
                        self perform: (editMode, 'At:') asSymbol with:p
Claus Gittinger <cg@exept.de>
parents: 4730
diff changeset
   829
                    ] on:Error do:[:ex | 
Claus Gittinger <cg@exept.de>
parents: 4730
diff changeset
   830
                        (Dialog confirm:('Error during operation: ', ex description,'\\Debug ?') withCRs )
Claus Gittinger <cg@exept.de>
parents: 4730
diff changeset
   831
                        ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 4730
diff changeset
   832
                            ex reject
Claus Gittinger <cg@exept.de>
parents: 4730
diff changeset
   833
                        ].
4041
2d635ff57406 class definition
Claus Gittinger <cg@exept.de>
parents: 4032
diff changeset
   834
                    ].
2889
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
   835
                ].
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
   836
            ].
1246
0cd36bffc789 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1245
diff changeset
   837
        ]
686
33833bcbb5cd some cleans
tz
parents: 678
diff changeset
   838
    ]
995
cd84d6f8c449 several undos
tz
parents: 994
diff changeset
   839
4041
2d635ff57406 class definition
Claus Gittinger <cg@exept.de>
parents: 4032
diff changeset
   840
    "Modified: / 03-05-2011 / 12:26:06 / cg"
632
be1ac8ea33a7 checkin from browser
tz
parents: 628
diff changeset
   841
!
be1ac8ea33a7 checkin from browser
tz
parents: 628
diff changeset
   842
994
5727c2484ecd bugs fixed in undo/mask and point painting/preview and pasting
tz
parents: 877
diff changeset
   843
buttonRelease:button x:x y:y
5727c2484ecd bugs fixed in undo/mask and point painting/preview and pasting
tz
parents: 877
diff changeset
   844
5727c2484ecd bugs fixed in undo/mask and point painting/preview and pasting
tz
parents: 877
diff changeset
   845
    self drawCursorAt: x@y.
4041
2d635ff57406 class definition
Claus Gittinger <cg@exept.de>
parents: 4032
diff changeset
   846
    readOnly ifTrue:[^ self].
1246
0cd36bffc789 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1245
diff changeset
   847
1116
441ff42c1472 fixes to allow 24bit images to be (at least) displayed
Claus Gittinger <cg@exept.de>
parents: 1106
diff changeset
   848
    ("self selectedColor notNil" true and: [self imageContainsPoint: x@y])
3476
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   849
    ifTrue: [
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   850
        sprayProcess notNil ifTrue:[
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   851
            self stopSpray
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   852
        ].
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   853
1763
7d6d64622ee4 change & updates fixed (monochrome bitmaps)
Claus Gittinger <cg@exept.de>
parents: 1706
diff changeset
   854
        image release.
1011
325d334e93c8 added paste-under (only paste where pixel ~= current selected)
Claus Gittinger <cg@exept.de>
parents: 1006
diff changeset
   855
1693
5f8be1b4f856 de-uglified
Claus Gittinger <cg@exept.de>
parents: 1510
diff changeset
   856
"/        "/ cg: what a kludge - please change to use a valueHolder,
5f8be1b4f856 de-uglified
Claus Gittinger <cg@exept.de>
parents: 1510
diff changeset
   857
"/        "/ which gets the information ...
5f8be1b4f856 de-uglified
Claus Gittinger <cg@exept.de>
parents: 1510
diff changeset
   858
"/        masterApplication imagePreView invalidate.
5f8be1b4f856 de-uglified
Claus Gittinger <cg@exept.de>
parents: 1510
diff changeset
   859
5f8be1b4f856 de-uglified
Claus Gittinger <cg@exept.de>
parents: 1510
diff changeset
   860
        "/ cg: still a kludge - but less ugly
5f8be1b4f856 de-uglified
Claus Gittinger <cg@exept.de>
parents: 1510
diff changeset
   861
        self changed:#subImageIn with:(image bounds).
994
5727c2484ecd bugs fixed in undo/mask and point painting/preview and pasting
tz
parents: 877
diff changeset
   862
    ]
1116
441ff42c1472 fixes to allow 24bit images to be (at least) displayed
Claus Gittinger <cg@exept.de>
parents: 1106
diff changeset
   863
4041
2d635ff57406 class definition
Claus Gittinger <cg@exept.de>
parents: 4032
diff changeset
   864
    "Modified: / 03-05-2011 / 12:26:31 / cg"
994
5727c2484ecd bugs fixed in undo/mask and point painting/preview and pasting
tz
parents: 877
diff changeset
   865
!
5727c2484ecd bugs fixed in undo/mask and point painting/preview and pasting
tz
parents: 877
diff changeset
   866
2508
ffb079bfe8b6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2507
diff changeset
   867
inPasteMode
2889
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
   868
    ^ (editMode notNil and:[editMode startsWith:#paste])
2508
ffb079bfe8b6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2507
diff changeset
   869
!
ffb079bfe8b6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2507
diff changeset
   870
686
33833bcbb5cd some cleans
tz
parents: 678
diff changeset
   871
pointerLeave:state
33833bcbb5cd some cleans
tz
parents: 678
diff changeset
   872
688
e1c30adb37bf updates coord info label while defining boxes
tz
parents: 686
diff changeset
   873
    super pointerLeave: state.
686
33833bcbb5cd some cleans
tz
parents: 678
diff changeset
   874
1031
a5ab5869b2ba cleaned up the interface to the apps infoPanel
Claus Gittinger <cg@exept.de>
parents: 1030
diff changeset
   875
    self updateImageInfo: self imageInfoString.
1019
e68414752bc9 only change the cursor for myself.
Claus Gittinger <cg@exept.de>
parents: 1013
diff changeset
   876
    self cursor:Cursor normal.
995
cd84d6f8c449 several undos
tz
parents: 994
diff changeset
   877
2508
ffb079bfe8b6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2507
diff changeset
   878
    self inPasteMode ifTrue: [
1246
0cd36bffc789 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1245
diff changeset
   879
        self releasePasteDrawing
0cd36bffc789 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1245
diff changeset
   880
    ]
995
cd84d6f8c449 several undos
tz
parents: 994
diff changeset
   881
1031
a5ab5869b2ba cleaned up the interface to the apps infoPanel
Claus Gittinger <cg@exept.de>
parents: 1030
diff changeset
   882
    "Modified: / 29.7.1998 / 18:27:42 / cg"
a5ab5869b2ba cleaned up the interface to the apps infoPanel
Claus Gittinger <cg@exept.de>
parents: 1030
diff changeset
   883
! !
a5ab5869b2ba cleaned up the interface to the apps infoPanel
Claus Gittinger <cg@exept.de>
parents: 1030
diff changeset
   884
636
d53428252193 revised version
tz
parents: 633
diff changeset
   885
!ImageEditView methodsFor:'image editing'!
627
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   886
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   887
boxAt: aPoint
1116
441ff42c1472 fixes to allow 24bit images to be (at least) displayed
Claus Gittinger <cg@exept.de>
parents: 1106
diff changeset
   888
    "draw a rectangular outline with the currently selected color"
627
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
   889
3610
11e215de80a0 color selection when undoing
Claus Gittinger <cg@exept.de>
parents: 3564
diff changeset
   890
    |choosenBox imageBox clr pix|
1038
6c0bb03e88a1 no need to invalidate after assign of new image.
Claus Gittinger <cg@exept.de>
parents: 1037
diff changeset
   891
1116
441ff42c1472 fixes to allow 24bit images to be (at least) displayed
Claus Gittinger <cg@exept.de>
parents: 1106
diff changeset
   892
    (clr := self selectedColor) notNil ifTrue:[
2838
8525a35121d2 changeHLS fixed dfor depth24-images;
Claus Gittinger <cg@exept.de>
parents: 2824
diff changeset
   893
        choosenBox := self dragRectangleStartingAt: aPoint emphasis: #box.
8525a35121d2 changeHLS fixed dfor depth24-images;
Claus Gittinger <cg@exept.de>
parents: 2824
diff changeset
   894
        choosenBox notNil ifTrue:[
8525a35121d2 changeHLS fixed dfor depth24-images;
Claus Gittinger <cg@exept.de>
parents: 2824
diff changeset
   895
            imageBox := choosenBox origin//magnification extent: (choosenBox extent//magnification).
3610
11e215de80a0 color selection when undoing
Claus Gittinger <cg@exept.de>
parents: 3564
diff changeset
   896
            image colorMap isNil ifTrue:[
11e215de80a0 color selection when undoing
Claus Gittinger <cg@exept.de>
parents: 3564
diff changeset
   897
                image drawRectangle:imageBox withColor:clr.
11e215de80a0 color selection when undoing
Claus Gittinger <cg@exept.de>
parents: 3564
diff changeset
   898
            ] ifFalse:[
11e215de80a0 color selection when undoing
Claus Gittinger <cg@exept.de>
parents: 3564
diff changeset
   899
                pix := self selectedColorIndex.
11e215de80a0 color selection when undoing
Claus Gittinger <cg@exept.de>
parents: 3564
diff changeset
   900
                image drawRectangle:imageBox withValue:pix.
11e215de80a0 color selection when undoing
Claus Gittinger <cg@exept.de>
parents: 3564
diff changeset
   901
            ].
2838
8525a35121d2 changeHLS fixed dfor depth24-images;
Claus Gittinger <cg@exept.de>
parents: 2824
diff changeset
   902
            image restored.
8525a35121d2 changeHLS fixed dfor depth24-images;
Claus Gittinger <cg@exept.de>
parents: 2824
diff changeset
   903
            self redraw: (choosenBox expandedBy: 1).
1038
6c0bb03e88a1 no need to invalidate after assign of new image.
Claus Gittinger <cg@exept.de>
parents: 1037
diff changeset
   904
1693
5f8be1b4f856 de-uglified
Claus Gittinger <cg@exept.de>
parents: 1510
diff changeset
   905
"/        "/ cg: what a kludge - please change to use a valueHolder,
5f8be1b4f856 de-uglified
Claus Gittinger <cg@exept.de>
parents: 1510
diff changeset
   906
"/        "/ which gets the information ...
5f8be1b4f856 de-uglified
Claus Gittinger <cg@exept.de>
parents: 1510
diff changeset
   907
"/        masterApplication imagePreView redraw: (imageBox expandedBy: 1).
5f8be1b4f856 de-uglified
Claus Gittinger <cg@exept.de>
parents: 1510
diff changeset
   908
2838
8525a35121d2 changeHLS fixed dfor depth24-images;
Claus Gittinger <cg@exept.de>
parents: 2824
diff changeset
   909
            "/ cg: still a kludge - but less ugly
8525a35121d2 changeHLS fixed dfor depth24-images;
Claus Gittinger <cg@exept.de>
parents: 2824
diff changeset
   910
            self changed:#subImageIn with:(imageBox expandedBy: 1).
8525a35121d2 changeHLS fixed dfor depth24-images;
Claus Gittinger <cg@exept.de>
parents: 2824
diff changeset
   911
8525a35121d2 changeHLS fixed dfor depth24-images;
Claus Gittinger <cg@exept.de>
parents: 2824
diff changeset
   912
            self setModified.
8525a35121d2 changeHLS fixed dfor depth24-images;
Claus Gittinger <cg@exept.de>
parents: 2824
diff changeset
   913
        ].
1116
441ff42c1472 fixes to allow 24bit images to be (at least) displayed
Claus Gittinger <cg@exept.de>
parents: 1106
diff changeset
   914
    ].
441ff42c1472 fixes to allow 24bit images to be (at least) displayed
Claus Gittinger <cg@exept.de>
parents: 1106
diff changeset
   915
1693
5f8be1b4f856 de-uglified
Claus Gittinger <cg@exept.de>
parents: 1510
diff changeset
   916
    "Modified: / 10.2.2000 / 23:42:08 / cg"
632
be1ac8ea33a7 checkin from browser
tz
parents: 628
diff changeset
   917
!
be1ac8ea33a7 checkin from browser
tz
parents: 628
diff changeset
   918
3476
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   919
circleAt: aPoint
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   920
    "draw an elliptic outline with the currently selected color"
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   921
3610
11e215de80a0 color selection when undoing
Claus Gittinger <cg@exept.de>
parents: 3564
diff changeset
   922
    |choosenBox imageBox clr pix|
3476
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   923
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   924
    (clr := self selectedColor) notNil ifTrue:[
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   925
        choosenBox := self dragRectangleStartingAt: aPoint emphasis: #box.
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   926
        choosenBox notNil ifTrue:[
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   927
            imageBox := choosenBox origin//magnification extent: (choosenBox extent//magnification).
3610
11e215de80a0 color selection when undoing
Claus Gittinger <cg@exept.de>
parents: 3564
diff changeset
   928
            image colorMap isNil ifTrue:[
11e215de80a0 color selection when undoing
Claus Gittinger <cg@exept.de>
parents: 3564
diff changeset
   929
                image drawEllipse:imageBox withColor:clr.
11e215de80a0 color selection when undoing
Claus Gittinger <cg@exept.de>
parents: 3564
diff changeset
   930
            ] ifFalse:[
11e215de80a0 color selection when undoing
Claus Gittinger <cg@exept.de>
parents: 3564
diff changeset
   931
                pix := self selectedColorIndex.
11e215de80a0 color selection when undoing
Claus Gittinger <cg@exept.de>
parents: 3564
diff changeset
   932
                image drawEllipse:imageBox withValue:pix.
11e215de80a0 color selection when undoing
Claus Gittinger <cg@exept.de>
parents: 3564
diff changeset
   933
            ].
3476
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   934
            image restored.
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   935
            self redraw: (choosenBox expandedBy: 1).
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   936
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   937
            "/ cg: still a kludge - but less ugly
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   938
            self changed:#subImageIn with:(imageBox expandedBy: 1).
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   939
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   940
            self setModified.
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   941
        ].
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   942
    ].
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   943
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   944
    "Modified: / 10.2.2000 / 23:42:08 / cg"
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   945
!
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
   946
632
be1ac8ea33a7 checkin from browser
tz
parents: 628
diff changeset
   947
copyAt: aPoint
3696
a039bbaa6e83 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3643
diff changeset
   948
    |choosenBox box copiedImage|
1084
87c661e6c333 scroll when dragging out of the view in copy-mode.
Claus Gittinger <cg@exept.de>
parents: 1060
diff changeset
   949
1449
e5852c20c18a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1411
diff changeset
   950
    choosenBox := self dragRectangleStartingAt: aPoint emphasis: #inverseFilledBox.
2838
8525a35121d2 changeHLS fixed dfor depth24-images;
Claus Gittinger <cg@exept.de>
parents: 2824
diff changeset
   951
    choosenBox notNil ifTrue:[
8525a35121d2 changeHLS fixed dfor depth24-images;
Claus Gittinger <cg@exept.de>
parents: 2824
diff changeset
   952
        box := choosenBox origin // magnification extent: (choosenBox extent // magnification).
8525a35121d2 changeHLS fixed dfor depth24-images;
Claus Gittinger <cg@exept.de>
parents: 2824
diff changeset
   953
        copiedImage := image subImageIn: box.
8525a35121d2 changeHLS fixed dfor depth24-images;
Claus Gittinger <cg@exept.de>
parents: 2824
diff changeset
   954
8525a35121d2 changeHLS fixed dfor depth24-images;
Claus Gittinger <cg@exept.de>
parents: 2824
diff changeset
   955
        self class copyImageToClipboard:copiedImage.
8525a35121d2 changeHLS fixed dfor depth24-images;
Claus Gittinger <cg@exept.de>
parents: 2824
diff changeset
   956
3696
a039bbaa6e83 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3643
diff changeset
   957
        self redraw:(choosenBox expandedBy:1)
2838
8525a35121d2 changeHLS fixed dfor depth24-images;
Claus Gittinger <cg@exept.de>
parents: 2824
diff changeset
   958
    ]
632
be1ac8ea33a7 checkin from browser
tz
parents: 628
diff changeset
   959
1084
87c661e6c333 scroll when dragging out of the view in copy-mode.
Claus Gittinger <cg@exept.de>
parents: 1060
diff changeset
   960
    "Modified: / 21.8.1998 / 20:16:41 / cg"
632
be1ac8ea33a7 checkin from browser
tz
parents: 628
diff changeset
   961
!
be1ac8ea33a7 checkin from browser
tz
parents: 628
diff changeset
   962
2480
6b82ad413d70 added copyToClipboard
Claus Gittinger <cg@exept.de>
parents: 2442
diff changeset
   963
copyImageToClipboard
6b82ad413d70 added copyToClipboard
Claus Gittinger <cg@exept.de>
parents: 2442
diff changeset
   964
    self class copyImageToClipboard:image.
4264
6e31e342f38c class: ImageEditView
Stefan Vogel <sv@exept.de>
parents: 4249
diff changeset
   965
    self setClipboardObject:image.
2480
6b82ad413d70 added copyToClipboard
Claus Gittinger <cg@exept.de>
parents: 2442
diff changeset
   966
!
6b82ad413d70 added copyToClipboard
Claus Gittinger <cg@exept.de>
parents: 2442
diff changeset
   967
1228
0aae4f7389ca renamed - crob -> crop
Claus Gittinger <cg@exept.de>
parents: 1184
diff changeset
   968
cropLeft:doLeft right:doRight top:doTop bottom:doBottom
1121
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
   969
    |yMinNew yMaxNew xMinNew xMaxNew
5093
a70ea1df6754 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 5061
diff changeset
   970
     pix stillCropping xMax yMax|
1121
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
   971
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
   972
    xMax := image width - 1.
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
   973
    yMax := image height - 1.
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
   974
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
   975
    xMinNew := 0.
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
   976
    doLeft ifTrue:[
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
   977
        pix := image pixelAtX:xMinNew y:0.
5093
a70ea1df6754 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 5061
diff changeset
   978
        stillCropping := true.
a70ea1df6754 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 5061
diff changeset
   979
        [stillCropping] whileTrue:[
1121
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
   980
            0 to:yMax do:[:y |
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
   981
                (image pixelAtX:xMinNew y:y) ~~ pix ifTrue:[
5093
a70ea1df6754 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 5061
diff changeset
   982
                    stillCropping := false
1121
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
   983
                ]
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
   984
            ].
5093
a70ea1df6754 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 5061
diff changeset
   985
            stillCropping ifTrue:[
1121
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
   986
                xMinNew := xMinNew + 1.
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
   987
                xMinNew >= image width ifTrue:[
5093
a70ea1df6754 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 5061
diff changeset
   988
                    self warn:(resources string:'Image is all the same color - no crop.').
1121
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
   989
                    ^ self
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
   990
                ]
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
   991
            ].
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
   992
        ].
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
   993
    ].
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
   994
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
   995
    xMaxNew := xMax.
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
   996
    doRight ifTrue:[
5093
a70ea1df6754 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 5061
diff changeset
   997
        stillCropping := true.
1121
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
   998
        pix := image pixelAtX:xMaxNew y:0.
5093
a70ea1df6754 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 5061
diff changeset
   999
        [stillCropping] whileTrue:[
1121
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1000
            0 to:yMax do:[:y |
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1001
                (image pixelAtX:xMaxNew y:y) ~~ pix ifTrue:[
5093
a70ea1df6754 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 5061
diff changeset
  1002
                    stillCropping := false
1121
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1003
                ]
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1004
            ].
5093
a70ea1df6754 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 5061
diff changeset
  1005
            stillCropping ifTrue:[
1121
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1006
                xMaxNew := xMaxNew - 1.
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1007
            ].
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1008
        ].
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1009
    ].
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1010
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1011
    yMinNew := 0.
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1012
    doTop ifTrue:[
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1013
        pix := image pixelAtX:xMinNew y:yMinNew.
5093
a70ea1df6754 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 5061
diff changeset
  1014
        stillCropping := true.
a70ea1df6754 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 5061
diff changeset
  1015
        [stillCropping] whileTrue:[
1121
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1016
            xMinNew to:xMaxNew do:[:x |
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1017
                (image pixelAtX:x y:yMinNew) ~~ pix ifTrue:[
5093
a70ea1df6754 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 5061
diff changeset
  1018
                    stillCropping := false
1121
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1019
                ]
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1020
            ].
5093
a70ea1df6754 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 5061
diff changeset
  1021
            stillCropping ifTrue:[
1121
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1022
                yMinNew := yMinNew + 1.
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1023
            ].
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1024
        ].
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1025
    ].
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1026
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1027
    yMaxNew := yMax.
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1028
    doRight ifTrue:[
5093
a70ea1df6754 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 5061
diff changeset
  1029
        stillCropping := true.
1121
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1030
        pix := image pixelAtX:xMaxNew y:yMaxNew.
5093
a70ea1df6754 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 5061
diff changeset
  1031
        [stillCropping] whileTrue:[
1121
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1032
            xMinNew to:xMaxNew do:[:x |
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1033
                (image pixelAtX:x y:yMaxNew) ~~ pix ifTrue:[
5093
a70ea1df6754 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 5061
diff changeset
  1034
                    stillCropping := false
1121
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1035
                ]
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1036
            ].
5093
a70ea1df6754 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 5061
diff changeset
  1037
            stillCropping ifTrue:[
1121
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1038
                yMaxNew := yMaxNew - 1.
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1039
            ].
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1040
        ].
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1041
    ].
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1042
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1043
    (xMinNew == 0
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1044
    and:[xMaxNew == (image width - 1)
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1045
    and:[yMinNew == 0
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1046
    and:[yMaxNew == (image height - 1)]]]) ifTrue:[
5061
f8346c455a4b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5029
diff changeset
  1047
        self warn:(resources string:'No border found - no crob.').
1121
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1048
        ^ self
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1049
    ].
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1050
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1051
"/    self warn:'extract subImage ' 
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1052
"/              , (xMinNew @ yMinNew) printString
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1053
"/              , ' -> '
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1054
"/              , (xMaxNew @ yMaxNew) printString.
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1055
2006
99e13c98314c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1994
diff changeset
  1056
    self makeUndo.
1121
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1057
    self 
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1058
        makeSubImageX:xMinNew y:yMinNew 
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1059
        width:(xMaxNew - xMinNew + 1)
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1060
        height:(yMaxNew - yMinNew + 1)
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1061
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1062
    "Created: / 7.9.1998 / 14:25:52 / cg"
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1063
    "Modified: / 7.9.1998 / 16:35:35 / cg"
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1064
!
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1065
632
be1ac8ea33a7 checkin from browser
tz
parents: 628
diff changeset
  1066
fillAt: aPoint
1116
441ff42c1472 fixes to allow 24bit images to be (at least) displayed
Claus Gittinger <cg@exept.de>
parents: 1106
diff changeset
  1067
    "perform a flood-fill with the currently selected color"
627
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
  1068
1116
441ff42c1472 fixes to allow 24bit images to be (at least) displayed
Claus Gittinger <cg@exept.de>
parents: 1106
diff changeset
  1069
    windowGroup withExecuteCursorDo:[
1693
5f8be1b4f856 de-uglified
Claus Gittinger <cg@exept.de>
parents: 1510
diff changeset
  1070
        |filledPoints clr|
1002
5d2e4c03a78e grid magnification can be changed
tz
parents: 996
diff changeset
  1071
1693
5f8be1b4f856 de-uglified
Claus Gittinger <cg@exept.de>
parents: 1510
diff changeset
  1072
        (clr := self selectedColor) notNil ifTrue:[
5f8be1b4f856 de-uglified
Claus Gittinger <cg@exept.de>
parents: 1510
diff changeset
  1073
            self updateActivity:'Flood filling - press CTRL-y to abort ...'.
5f8be1b4f856 de-uglified
Claus Gittinger <cg@exept.de>
parents: 1510
diff changeset
  1074
            [
3610
11e215de80a0 color selection when undoing
Claus Gittinger <cg@exept.de>
parents: 3564
diff changeset
  1075
                |pix fillColor|
11e215de80a0 color selection when undoing
Claus Gittinger <cg@exept.de>
parents: 3564
diff changeset
  1076
11e215de80a0 color selection when undoing
Claus Gittinger <cg@exept.de>
parents: 3564
diff changeset
  1077
                image colorMap isNil ifTrue:[
11e215de80a0 color selection when undoing
Claus Gittinger <cg@exept.de>
parents: 3564
diff changeset
  1078
                    image floodFillAt: aPoint//magnification withColor:clr.
11e215de80a0 color selection when undoing
Claus Gittinger <cg@exept.de>
parents: 3564
diff changeset
  1079
                ] ifFalse:[
11e215de80a0 color selection when undoing
Claus Gittinger <cg@exept.de>
parents: 3564
diff changeset
  1080
                    pix := self selectedColorIndex.
11e215de80a0 color selection when undoing
Claus Gittinger <cg@exept.de>
parents: 3564
diff changeset
  1081
                    image floodFillAt:aPoint//magnification withValue:pix.
11e215de80a0 color selection when undoing
Claus Gittinger <cg@exept.de>
parents: 3564
diff changeset
  1082
                ].
1693
5f8be1b4f856 de-uglified
Claus Gittinger <cg@exept.de>
parents: 1510
diff changeset
  1083
                image restored.
1038
6c0bb03e88a1 no need to invalidate after assign of new image.
Claus Gittinger <cg@exept.de>
parents: 1037
diff changeset
  1084
2349
4cf7b4f1345e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2338
diff changeset
  1085
                self invalidate.
1693
5f8be1b4f856 de-uglified
Claus Gittinger <cg@exept.de>
parents: 1510
diff changeset
  1086
                self changed:#subImageIn with:(image bounds).
5f8be1b4f856 de-uglified
Claus Gittinger <cg@exept.de>
parents: 1510
diff changeset
  1087
2590
b811d560e00a modified flag after edit operations
Claus Gittinger <cg@exept.de>
parents: 2589
diff changeset
  1088
                self setModified.
4129
65e5f7358a70 changed: #fillAt: use #ifCurtailed:
Stefan Vogel <sv@exept.de>
parents: 4111
diff changeset
  1089
            ] ifCurtailed:[
1693
5f8be1b4f856 de-uglified
Claus Gittinger <cg@exept.de>
parents: 1510
diff changeset
  1090
                self updateActivity:'Flood fill aborted.'
5f8be1b4f856 de-uglified
Claus Gittinger <cg@exept.de>
parents: 1510
diff changeset
  1091
            ].
5f8be1b4f856 de-uglified
Claus Gittinger <cg@exept.de>
parents: 1510
diff changeset
  1092
        ].
5f8be1b4f856 de-uglified
Claus Gittinger <cg@exept.de>
parents: 1510
diff changeset
  1093
        self updateActivity:''
632
be1ac8ea33a7 checkin from browser
tz
parents: 628
diff changeset
  1094
    ]
1031
a5ab5869b2ba cleaned up the interface to the apps infoPanel
Claus Gittinger <cg@exept.de>
parents: 1030
diff changeset
  1095
1693
5f8be1b4f856 de-uglified
Claus Gittinger <cg@exept.de>
parents: 1510
diff changeset
  1096
    "Modified: / 10.2.2000 / 23:40:58 / cg"
632
be1ac8ea33a7 checkin from browser
tz
parents: 628
diff changeset
  1097
!
be1ac8ea33a7 checkin from browser
tz
parents: 628
diff changeset
  1098
be1ac8ea33a7 checkin from browser
tz
parents: 628
diff changeset
  1099
filledBoxAt: aPoint
1116
441ff42c1472 fixes to allow 24bit images to be (at least) displayed
Claus Gittinger <cg@exept.de>
parents: 1106
diff changeset
  1100
    "fill a rectangular area with the currently selected color"
632
be1ac8ea33a7 checkin from browser
tz
parents: 628
diff changeset
  1101
4233
06183a48f783 Fix stc compiler warnings
Stefan Vogel <sv@exept.de>
parents: 4231
diff changeset
  1102
    |choosenBox imageBox clr pix|
1038
6c0bb03e88a1 no need to invalidate after assign of new image.
Claus Gittinger <cg@exept.de>
parents: 1037
diff changeset
  1103
1116
441ff42c1472 fixes to allow 24bit images to be (at least) displayed
Claus Gittinger <cg@exept.de>
parents: 1106
diff changeset
  1104
    (clr := self selectedColor) notNil ifTrue:[
2838
8525a35121d2 changeHLS fixed dfor depth24-images;
Claus Gittinger <cg@exept.de>
parents: 2824
diff changeset
  1105
        choosenBox := self dragRectangleStartingAt: aPoint emphasis: #filledBox.
8525a35121d2 changeHLS fixed dfor depth24-images;
Claus Gittinger <cg@exept.de>
parents: 2824
diff changeset
  1106
        choosenBox notNil ifTrue:[
8525a35121d2 changeHLS fixed dfor depth24-images;
Claus Gittinger <cg@exept.de>
parents: 2824
diff changeset
  1107
            imageBox := choosenBox origin//magnification extent: (choosenBox extent//magnification).
3610
11e215de80a0 color selection when undoing
Claus Gittinger <cg@exept.de>
parents: 3564
diff changeset
  1108
11e215de80a0 color selection when undoing
Claus Gittinger <cg@exept.de>
parents: 3564
diff changeset
  1109
            image colorMap isNil ifTrue:[
11e215de80a0 color selection when undoing
Claus Gittinger <cg@exept.de>
parents: 3564
diff changeset
  1110
                image fillRectangle:imageBox withColor:clr.
11e215de80a0 color selection when undoing
Claus Gittinger <cg@exept.de>
parents: 3564
diff changeset
  1111
            ] ifFalse:[
11e215de80a0 color selection when undoing
Claus Gittinger <cg@exept.de>
parents: 3564
diff changeset
  1112
                pix := self selectedColorIndex.
11e215de80a0 color selection when undoing
Claus Gittinger <cg@exept.de>
parents: 3564
diff changeset
  1113
                image fillRectangle:imageBox withValue:pix.
11e215de80a0 color selection when undoing
Claus Gittinger <cg@exept.de>
parents: 3564
diff changeset
  1114
"/                maskVal := pix isNil ifTrue:[0] ifFalse:[1].
11e215de80a0 color selection when undoing
Claus Gittinger <cg@exept.de>
parents: 3564
diff changeset
  1115
"/                image mask notNil ifTrue:[
11e215de80a0 color selection when undoing
Claus Gittinger <cg@exept.de>
parents: 3564
diff changeset
  1116
"/                    image mask fillRectangle:imageBox withValue:maskVal
11e215de80a0 color selection when undoing
Claus Gittinger <cg@exept.de>
parents: 3564
diff changeset
  1117
"/                ].
11e215de80a0 color selection when undoing
Claus Gittinger <cg@exept.de>
parents: 3564
diff changeset
  1118
            ].
2838
8525a35121d2 changeHLS fixed dfor depth24-images;
Claus Gittinger <cg@exept.de>
parents: 2824
diff changeset
  1119
            image restored.
8525a35121d2 changeHLS fixed dfor depth24-images;
Claus Gittinger <cg@exept.de>
parents: 2824
diff changeset
  1120
            self redraw: (choosenBox expandedBy: 1).
8525a35121d2 changeHLS fixed dfor depth24-images;
Claus Gittinger <cg@exept.de>
parents: 2824
diff changeset
  1121
8525a35121d2 changeHLS fixed dfor depth24-images;
Claus Gittinger <cg@exept.de>
parents: 2824
diff changeset
  1122
            self changed:#subImageIn with:(imageBox expandedBy: 1).
8525a35121d2 changeHLS fixed dfor depth24-images;
Claus Gittinger <cg@exept.de>
parents: 2824
diff changeset
  1123
            self setModified.
8525a35121d2 changeHLS fixed dfor depth24-images;
Claus Gittinger <cg@exept.de>
parents: 2824
diff changeset
  1124
        ]
1116
441ff42c1472 fixes to allow 24bit images to be (at least) displayed
Claus Gittinger <cg@exept.de>
parents: 1106
diff changeset
  1125
    ]
441ff42c1472 fixes to allow 24bit images to be (at least) displayed
Claus Gittinger <cg@exept.de>
parents: 1106
diff changeset
  1126
1693
5f8be1b4f856 de-uglified
Claus Gittinger <cg@exept.de>
parents: 1510
diff changeset
  1127
    "Modified: / 10.2.2000 / 23:37:04 / cg"
632
be1ac8ea33a7 checkin from browser
tz
parents: 628
diff changeset
  1128
!
be1ac8ea33a7 checkin from browser
tz
parents: 628
diff changeset
  1129
4032
f293d37675b5 added: #flipSubImage:in:
Claus Gittinger <cg@exept.de>
parents: 4000
diff changeset
  1130
flipSubImage:how in:imageBox
f293d37675b5 added: #flipSubImage:in:
Claus Gittinger <cg@exept.de>
parents: 4000
diff changeset
  1131
    "/ now, do it
4624
bc987849ea84 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4623
diff changeset
  1132
    "/ caveat: this should go into image class
4032
f293d37675b5 added: #flipSubImage:in:
Claus Gittinger <cg@exept.de>
parents: 4000
diff changeset
  1133
f293d37675b5 added: #flipSubImage:in:
Claus Gittinger <cg@exept.de>
parents: 4000
diff changeset
  1134
    |x0 y0 x1 y1 image t|
f293d37675b5 added: #flipSubImage:in:
Claus Gittinger <cg@exept.de>
parents: 4000
diff changeset
  1135
4623
efe94f736058 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4506
diff changeset
  1136
    self makeUndo.
efe94f736058 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4506
diff changeset
  1137
4032
f293d37675b5 added: #flipSubImage:in:
Claus Gittinger <cg@exept.de>
parents: 4000
diff changeset
  1138
    x0 := imageBox left.
f293d37675b5 added: #flipSubImage:in:
Claus Gittinger <cg@exept.de>
parents: 4000
diff changeset
  1139
    y0 := imageBox top.
f293d37675b5 added: #flipSubImage:in:
Claus Gittinger <cg@exept.de>
parents: 4000
diff changeset
  1140
    x1 := imageBox right-1.
f293d37675b5 added: #flipSubImage:in:
Claus Gittinger <cg@exept.de>
parents: 4000
diff changeset
  1141
    y1 := imageBox bottom-1.
f293d37675b5 added: #flipSubImage:in:
Claus Gittinger <cg@exept.de>
parents: 4000
diff changeset
  1142
f293d37675b5 added: #flipSubImage:in:
Claus Gittinger <cg@exept.de>
parents: 4000
diff changeset
  1143
    image := self image.
f293d37675b5 added: #flipSubImage:in:
Claus Gittinger <cg@exept.de>
parents: 4000
diff changeset
  1144
f293d37675b5 added: #flipSubImage:in:
Claus Gittinger <cg@exept.de>
parents: 4000
diff changeset
  1145
    how == #vertical ifTrue:[
f293d37675b5 added: #flipSubImage:in:
Claus Gittinger <cg@exept.de>
parents: 4000
diff changeset
  1146
        0 to:((y1-y0)//2) do:[:dy |
f293d37675b5 added: #flipSubImage:in:
Claus Gittinger <cg@exept.de>
parents: 4000
diff changeset
  1147
            x0 to:x1 do:[:x |
f293d37675b5 added: #flipSubImage:in:
Claus Gittinger <cg@exept.de>
parents: 4000
diff changeset
  1148
                t := image pixelAtX:x y:(y0+dy).
f293d37675b5 added: #flipSubImage:in:
Claus Gittinger <cg@exept.de>
parents: 4000
diff changeset
  1149
                image pixelAtX:x y:(y0+dy) put:(image pixelAtX:x y:(y1-dy)).
f293d37675b5 added: #flipSubImage:in:
Claus Gittinger <cg@exept.de>
parents: 4000
diff changeset
  1150
                image pixelAtX:x y:(y1-dy) put:t.
4624
bc987849ea84 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4623
diff changeset
  1151
                image mask notNil ifTrue:[
bc987849ea84 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4623
diff changeset
  1152
                    t := image maskAtX:x y:(y0+dy).
bc987849ea84 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4623
diff changeset
  1153
                    image maskAtX:x y:(y0+dy) put:(image maskAtX:x y:(y1-dy)).
bc987849ea84 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4623
diff changeset
  1154
                    image maskAtX:x y:(y1-dy) put:t.
bc987849ea84 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4623
diff changeset
  1155
                ].
4032
f293d37675b5 added: #flipSubImage:in:
Claus Gittinger <cg@exept.de>
parents: 4000
diff changeset
  1156
            ].
f293d37675b5 added: #flipSubImage:in:
Claus Gittinger <cg@exept.de>
parents: 4000
diff changeset
  1157
        ]
f293d37675b5 added: #flipSubImage:in:
Claus Gittinger <cg@exept.de>
parents: 4000
diff changeset
  1158
    ] ifFalse:[
f293d37675b5 added: #flipSubImage:in:
Claus Gittinger <cg@exept.de>
parents: 4000
diff changeset
  1159
        0 to:((x1-x0)//2) do:[:dx |
f293d37675b5 added: #flipSubImage:in:
Claus Gittinger <cg@exept.de>
parents: 4000
diff changeset
  1160
            y0 to:y1 do:[:y |
f293d37675b5 added: #flipSubImage:in:
Claus Gittinger <cg@exept.de>
parents: 4000
diff changeset
  1161
                t := image pixelAtX:(x0+dx) y:y.
f293d37675b5 added: #flipSubImage:in:
Claus Gittinger <cg@exept.de>
parents: 4000
diff changeset
  1162
                image pixelAtX:(x0+dx) y:y put:(image pixelAtX:(x1-dx) y:y).
f293d37675b5 added: #flipSubImage:in:
Claus Gittinger <cg@exept.de>
parents: 4000
diff changeset
  1163
                image pixelAtX:(x1-dx) y:y put:t.
4623
efe94f736058 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4506
diff changeset
  1164
4624
bc987849ea84 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4623
diff changeset
  1165
                image mask notNil ifTrue:[
bc987849ea84 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4623
diff changeset
  1166
                    t := image maskAtX:(x0+dx) y:y.
bc987849ea84 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4623
diff changeset
  1167
                    image maskAtX:(x0+dx) y:y put:(image maskAtX:(x1-dx) y:y).
bc987849ea84 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4623
diff changeset
  1168
                    image maskAtX:(x1-dx) y:y put:t.
bc987849ea84 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4623
diff changeset
  1169
                ].
4032
f293d37675b5 added: #flipSubImage:in:
Claus Gittinger <cg@exept.de>
parents: 4000
diff changeset
  1170
            ].
f293d37675b5 added: #flipSubImage:in:
Claus Gittinger <cg@exept.de>
parents: 4000
diff changeset
  1171
        ]
f293d37675b5 added: #flipSubImage:in:
Claus Gittinger <cg@exept.de>
parents: 4000
diff changeset
  1172
    ].
f293d37675b5 added: #flipSubImage:in:
Claus Gittinger <cg@exept.de>
parents: 4000
diff changeset
  1173
f293d37675b5 added: #flipSubImage:in:
Claus Gittinger <cg@exept.de>
parents: 4000
diff changeset
  1174
    self setModified.
f293d37675b5 added: #flipSubImage:in:
Claus Gittinger <cg@exept.de>
parents: 4000
diff changeset
  1175
f293d37675b5 added: #flipSubImage:in:
Claus Gittinger <cg@exept.de>
parents: 4000
diff changeset
  1176
    "Created: / 07-04-2011 / 09:34:23 / cg"
f293d37675b5 added: #flipSubImage:in:
Claus Gittinger <cg@exept.de>
parents: 4000
diff changeset
  1177
!
f293d37675b5 added: #flipSubImage:in:
Claus Gittinger <cg@exept.de>
parents: 4000
diff changeset
  1178
4723
c5f32ebfec14 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4715
diff changeset
  1179
magnifyAntiAliasedImageTo:newSize
4730
bcf8e15b7606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4723
diff changeset
  1180
    self newImageWithUndo: (image hardAntiAliasedMagnifiedBy: newSize/image extent).
4723
c5f32ebfec14 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4715
diff changeset
  1181
!
c5f32ebfec14 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4715
diff changeset
  1182
1706
a954781f4440 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1693
diff changeset
  1183
magnifyImageTo:newSize
4730
bcf8e15b7606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4723
diff changeset
  1184
    self newImageWithUndo: (image magnifiedBy: newSize/image extent).
636
d53428252193 revised version
tz
parents: 633
diff changeset
  1185
!
d53428252193 revised version
tz
parents: 633
diff changeset
  1186
2168
d531fe16bae2 more colormap operations
Claus Gittinger <cg@exept.de>
parents: 2149
diff changeset
  1187
makeNewColorMapByMapping:functionOfColor
2566
d0894c5f6d4d allow image processing of trueColor images
Claus Gittinger <cg@exept.de>
parents: 2556
diff changeset
  1188
    |xMax yMax map revMap anyChange
d0894c5f6d4d allow image processing of trueColor images
Claus Gittinger <cg@exept.de>
parents: 2556
diff changeset
  1189
     newColors newColorArray newImage pixelAction|
2168
d531fe16bae2 more colormap operations
Claus Gittinger <cg@exept.de>
parents: 2149
diff changeset
  1190
1886
e5b5a8850dc5 added make grayScale
Claus Gittinger <cg@exept.de>
parents: 1885
diff changeset
  1191
    anyChange := false.
e5b5a8850dc5 added make grayScale
Claus Gittinger <cg@exept.de>
parents: 1885
diff changeset
  1192
e5b5a8850dc5 added make grayScale
Claus Gittinger <cg@exept.de>
parents: 1885
diff changeset
  1193
    xMax := image width - 1.
e5b5a8850dc5 added make grayScale
Claus Gittinger <cg@exept.de>
parents: 1885
diff changeset
  1194
    yMax := image height - 1.
e5b5a8850dc5 added make grayScale
Claus Gittinger <cg@exept.de>
parents: 1885
diff changeset
  1195
e5b5a8850dc5 added make grayScale
Claus Gittinger <cg@exept.de>
parents: 1885
diff changeset
  1196
    newImage := image class width:image width height:image height depth:image depth.
e5b5a8850dc5 added make grayScale
Claus Gittinger <cg@exept.de>
parents: 1885
diff changeset
  1197
    newImage photometric:image photometric.
2489
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1198
    "/ newImage colorMap:(image colorMap copy).
1886
e5b5a8850dc5 added make grayScale
Claus Gittinger <cg@exept.de>
parents: 1885
diff changeset
  1199
    newImage bits:(ByteArray new:(image bits size)).
e5b5a8850dc5 added make grayScale
Claus Gittinger <cg@exept.de>
parents: 1885
diff changeset
  1200
    newImage mask:(image mask copy).
e5b5a8850dc5 added make grayScale
Claus Gittinger <cg@exept.de>
parents: 1885
diff changeset
  1201
2566
d0894c5f6d4d allow image processing of trueColor images
Claus Gittinger <cg@exept.de>
parents: 2556
diff changeset
  1202
    image colorMap notNil ifTrue:[
d0894c5f6d4d allow image processing of trueColor images
Claus Gittinger <cg@exept.de>
parents: 2556
diff changeset
  1203
        newColors := Set new.
d0894c5f6d4d allow image processing of trueColor images
Claus Gittinger <cg@exept.de>
parents: 2556
diff changeset
  1204
        newColorArray := OrderedCollection new.
d0894c5f6d4d allow image processing of trueColor images
Claus Gittinger <cg@exept.de>
parents: 2556
diff changeset
  1205
        map := Array new:256.
d0894c5f6d4d allow image processing of trueColor images
Claus Gittinger <cg@exept.de>
parents: 2556
diff changeset
  1206
        revMap := OrderedCollection new.
d0894c5f6d4d allow image processing of trueColor images
Claus Gittinger <cg@exept.de>
parents: 2556
diff changeset
  1207
d0894c5f6d4d allow image processing of trueColor images
Claus Gittinger <cg@exept.de>
parents: 2556
diff changeset
  1208
        pixelAction := 
d0894c5f6d4d allow image processing of trueColor images
Claus Gittinger <cg@exept.de>
parents: 2556
diff changeset
  1209
            [:x :y |
d0894c5f6d4d allow image processing of trueColor images
Claus Gittinger <cg@exept.de>
parents: 2556
diff changeset
  1210
                |pix n_pix clr n_clr|
d0894c5f6d4d allow image processing of trueColor images
Claus Gittinger <cg@exept.de>
parents: 2556
diff changeset
  1211
d0894c5f6d4d allow image processing of trueColor images
Claus Gittinger <cg@exept.de>
parents: 2556
diff changeset
  1212
                pix := image pixelAtX:x y:y.
d0894c5f6d4d allow image processing of trueColor images
Claus Gittinger <cg@exept.de>
parents: 2556
diff changeset
  1213
                (n_pix := map at:pix+1) isNil ifTrue:[
d0894c5f6d4d allow image processing of trueColor images
Claus Gittinger <cg@exept.de>
parents: 2556
diff changeset
  1214
                    clr := image colorAtX:x y:y.
d0894c5f6d4d allow image processing of trueColor images
Claus Gittinger <cg@exept.de>
parents: 2556
diff changeset
  1215
                    n_clr := functionOfColor value:clr.
d0894c5f6d4d allow image processing of trueColor images
Claus Gittinger <cg@exept.de>
parents: 2556
diff changeset
  1216
                    (newColors includes:n_clr) ifFalse:[
d0894c5f6d4d allow image processing of trueColor images
Claus Gittinger <cg@exept.de>
parents: 2556
diff changeset
  1217
                        newColors add:n_clr.
d0894c5f6d4d allow image processing of trueColor images
Claus Gittinger <cg@exept.de>
parents: 2556
diff changeset
  1218
                        newColorArray add:n_clr.
d0894c5f6d4d allow image processing of trueColor images
Claus Gittinger <cg@exept.de>
parents: 2556
diff changeset
  1219
                        revMap add:pix.
d0894c5f6d4d allow image processing of trueColor images
Claus Gittinger <cg@exept.de>
parents: 2556
diff changeset
  1220
                        map at:pix+1 put:(n_pix := revMap size - 1).
d0894c5f6d4d allow image processing of trueColor images
Claus Gittinger <cg@exept.de>
parents: 2556
diff changeset
  1221
                    ] ifTrue:[
d0894c5f6d4d allow image processing of trueColor images
Claus Gittinger <cg@exept.de>
parents: 2556
diff changeset
  1222
                        "/ mhmh - multiple pixels mapped to the same color
d0894c5f6d4d allow image processing of trueColor images
Claus Gittinger <cg@exept.de>
parents: 2556
diff changeset
  1223
                        n_pix := (newColorArray indexOf:n_clr) - 1.
d0894c5f6d4d allow image processing of trueColor images
Claus Gittinger <cg@exept.de>
parents: 2556
diff changeset
  1224
                        map at:pix+1 put:n_pix.
d0894c5f6d4d allow image processing of trueColor images
Claus Gittinger <cg@exept.de>
parents: 2556
diff changeset
  1225
                    ]
d0894c5f6d4d allow image processing of trueColor images
Claus Gittinger <cg@exept.de>
parents: 2556
diff changeset
  1226
                ].
d0894c5f6d4d allow image processing of trueColor images
Claus Gittinger <cg@exept.de>
parents: 2556
diff changeset
  1227
                newImage pixelAtX:x y:y put:n_pix.
d0894c5f6d4d allow image processing of trueColor images
Claus Gittinger <cg@exept.de>
parents: 2556
diff changeset
  1228
            ].
d0894c5f6d4d allow image processing of trueColor images
Claus Gittinger <cg@exept.de>
parents: 2556
diff changeset
  1229
    ] ifFalse:[
d0894c5f6d4d allow image processing of trueColor images
Claus Gittinger <cg@exept.de>
parents: 2556
diff changeset
  1230
        pixelAction := 
d0894c5f6d4d allow image processing of trueColor images
Claus Gittinger <cg@exept.de>
parents: 2556
diff changeset
  1231
            [:x :y |
d0894c5f6d4d allow image processing of trueColor images
Claus Gittinger <cg@exept.de>
parents: 2556
diff changeset
  1232
d0894c5f6d4d allow image processing of trueColor images
Claus Gittinger <cg@exept.de>
parents: 2556
diff changeset
  1233
                |clr n_clr|
d0894c5f6d4d allow image processing of trueColor images
Claus Gittinger <cg@exept.de>
parents: 2556
diff changeset
  1234
1886
e5b5a8850dc5 added make grayScale
Claus Gittinger <cg@exept.de>
parents: 1885
diff changeset
  1235
                clr := image colorAtX:x y:y.
2168
d531fe16bae2 more colormap operations
Claus Gittinger <cg@exept.de>
parents: 2149
diff changeset
  1236
                n_clr := functionOfColor value:clr.
2566
d0894c5f6d4d allow image processing of trueColor images
Claus Gittinger <cg@exept.de>
parents: 2556
diff changeset
  1237
                newImage colorAtX:x y:y put:n_clr.
1886
e5b5a8850dc5 added make grayScale
Claus Gittinger <cg@exept.de>
parents: 1885
diff changeset
  1238
            ].
2566
d0894c5f6d4d allow image processing of trueColor images
Claus Gittinger <cg@exept.de>
parents: 2556
diff changeset
  1239
    ].
d0894c5f6d4d allow image processing of trueColor images
Claus Gittinger <cg@exept.de>
parents: 2556
diff changeset
  1240
d0894c5f6d4d allow image processing of trueColor images
Claus Gittinger <cg@exept.de>
parents: 2556
diff changeset
  1241
    0 to:yMax do:[:y |
d0894c5f6d4d allow image processing of trueColor images
Claus Gittinger <cg@exept.de>
parents: 2556
diff changeset
  1242
        0 to:xMax do:[:x |
d0894c5f6d4d allow image processing of trueColor images
Claus Gittinger <cg@exept.de>
parents: 2556
diff changeset
  1243
            pixelAction value:x value:y
1886
e5b5a8850dc5 added make grayScale
Claus Gittinger <cg@exept.de>
parents: 1885
diff changeset
  1244
        ]
e5b5a8850dc5 added make grayScale
Claus Gittinger <cg@exept.de>
parents: 1885
diff changeset
  1245
    ].
e5b5a8850dc5 added make grayScale
Claus Gittinger <cg@exept.de>
parents: 1885
diff changeset
  1246
2566
d0894c5f6d4d allow image processing of trueColor images
Claus Gittinger <cg@exept.de>
parents: 2556
diff changeset
  1247
    image colorMap notNil ifTrue:[
d0894c5f6d4d allow image processing of trueColor images
Claus Gittinger <cg@exept.de>
parents: 2556
diff changeset
  1248
        newImage colorMap:(MappedPalette withColors:newColorArray).
d0894c5f6d4d allow image processing of trueColor images
Claus Gittinger <cg@exept.de>
parents: 2556
diff changeset
  1249
    ].
4730
bcf8e15b7606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4723
diff changeset
  1250
    self newImageWithUndo:newImage.
1886
e5b5a8850dc5 added make grayScale
Claus Gittinger <cg@exept.de>
parents: 1885
diff changeset
  1251
    ^ true
e5b5a8850dc5 added make grayScale
Claus Gittinger <cg@exept.de>
parents: 1885
diff changeset
  1252
!
e5b5a8850dc5 added make grayScale
Claus Gittinger <cg@exept.de>
parents: 1885
diff changeset
  1253
1121
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1254
makeSubImageX:oldX y:oldY width:newWidth height:newHeight
3706
e95e7f0e4f82 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  1255
    |oldWidth oldHeight newImage newMaskImage needRedraw redrawRect1 redrawRect2 |
e95e7f0e4f82 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  1256
e95e7f0e4f82 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  1257
    oldWidth := image width.
e95e7f0e4f82 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  1258
    oldHeight := image height.
e95e7f0e4f82 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  1259
    self assert:(newWidth <= oldWidth).
e95e7f0e4f82 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  1260
    self assert:(newHeight <= oldHeight).
1121
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1261
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1262
    newImage := image class width:newWidth height:newHeight depth:image depth.
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1263
    newImage photometric:image photometric.
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1264
    newImage colorMap:image colorMap copy.
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1265
    newImage bits:(ByteArray new:(newImage bytesPerRow * newHeight)).
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1266
3706
e95e7f0e4f82 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  1267
    image mask notNil ifTrue:[
1121
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1268
        newMaskImage := Depth1Image width:newWidth height:newHeight.
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1269
        newMaskImage photometric: image mask photometric.
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1270
        newMaskImage colorMap: image mask colorMap copy.
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1271
        newMaskImage bits:(ByteArray new: newMaskImage bytesPerRow * newHeight).
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1272
        newImage mask: newMaskImage
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1273
    ].
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1274
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1275
    newImage copyFrom:image x:oldX y:oldY toX:0 y:0 width:newWidth height:newHeight.
3706
e95e7f0e4f82 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  1276
e95e7f0e4f82 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  1277
    needRedraw := true.
e95e7f0e4f82 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  1278
    (oldX == 0 and:[oldY == 0]) ifTrue:[
e95e7f0e4f82 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  1279
        needRedraw := false.
e95e7f0e4f82 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  1280
        redrawRect1 := ((newWidth@0) * magnification) corner:((oldWidth@oldHeight)+1 * magnification).
e95e7f0e4f82 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  1281
        redrawRect2 := ((0@newHeight) * magnification) corner:((oldWidth@oldHeight)+1 * magnification).
e95e7f0e4f82 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  1282
    ].
e95e7f0e4f82 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  1283
    self image:newImage scroll:false invalidate:needRedraw.
e95e7f0e4f82 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  1284
    redrawRect1 notNil ifTrue:[
e95e7f0e4f82 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  1285
        self invalidateRectangle:redrawRect1 repairNow:false.
e95e7f0e4f82 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  1286
    ].
e95e7f0e4f82 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  1287
    redrawRect2 notNil ifTrue:[
e95e7f0e4f82 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  1288
        self invalidateRectangle:redrawRect2 repairNow:false.
e95e7f0e4f82 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  1289
    ].
2590
b811d560e00a modified flag after edit operations
Claus Gittinger <cg@exept.de>
parents: 2589
diff changeset
  1290
    self setModified.
1121
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1291
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1292
    "Created: / 7.9.1998 / 13:00:16 / cg"
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1293
    "Modified: / 7.9.1998 / 14:15:32 / cg"
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1294
!
af09c616fb7b added crob operations.
Claus Gittinger <cg@exept.de>
parents: 1116
diff changeset
  1295
2915
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  1296
makeUndo
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  1297
    image notNil ifTrue:[       
3278
c42700648b31 shift-paste
Claus Gittinger <cg@exept.de>
parents: 3277
diff changeset
  1298
        [undoImages size >= MaxUndos] whileTrue:[
2915
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  1299
            undoImages removeFirst.
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  1300
        ].
3610
11e215de80a0 color selection when undoing
Claus Gittinger <cg@exept.de>
parents: 3564
diff changeset
  1301
        undoImages add:image copy
2915
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  1302
    ]
3278
c42700648b31 shift-paste
Claus Gittinger <cg@exept.de>
parents: 3277
diff changeset
  1303
c42700648b31 shift-paste
Claus Gittinger <cg@exept.de>
parents: 3277
diff changeset
  1304
    "Modified: / 20-11-2007 / 17:26:50 / cg"
2915
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  1305
!
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  1306
636
d53428252193 revised version
tz
parents: 633
diff changeset
  1307
pasteAt: aPoint
1011
325d334e93c8 added paste-under (only paste where pixel ~= current selected)
Claus Gittinger <cg@exept.de>
parents: 1006
diff changeset
  1308
    "paste the image in the clipboard at aPoint"
325d334e93c8 added paste-under (only paste where pixel ~= current selected)
Claus Gittinger <cg@exept.de>
parents: 1006
diff changeset
  1309
2135
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1310
    self pasteAt:aPoint mode:nil.
1011
325d334e93c8 added paste-under (only paste where pixel ~= current selected)
Claus Gittinger <cg@exept.de>
parents: 1006
diff changeset
  1311
!
325d334e93c8 added paste-under (only paste where pixel ~= current selected)
Claus Gittinger <cg@exept.de>
parents: 1006
diff changeset
  1312
2135
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1313
pasteAt: aPoint mode:modeSymbol
1011
325d334e93c8 added paste-under (only paste where pixel ~= current selected)
Claus Gittinger <cg@exept.de>
parents: 1006
diff changeset
  1314
    "paste the image in the clipboard at aPoint"
636
d53428252193 revised version
tz
parents: 633
diff changeset
  1315
2838
8525a35121d2 changeHLS fixed dfor depth24-images;
Claus Gittinger <cg@exept.de>
parents: 2824
diff changeset
  1316
    |answer anyColorMissing choosenBox imagePoint imgX imgY copiedImage imageBox newColorMap
2764
3302aab746d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2756
diff changeset
  1317
     existingColors newColors allColors currentColorMap newColormap anyColorAdded oldColorMap|
1888
ef622d292093 colormap conversion
Claus Gittinger <cg@exept.de>
parents: 1886
diff changeset
  1318
4203
a257aa6878ac class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4149
diff changeset
  1319
    Error handle:[:ex|
a257aa6878ac class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4149
diff changeset
  1320
        ex creator == Image unrepresentableColorSignal ifFalse:[
1246
0cd36bffc789 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1245
diff changeset
  1321
            ex reject
0cd36bffc789 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1245
diff changeset
  1322
        ].
0cd36bffc789 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1245
diff changeset
  1323
        self undo.
5061
f8346c455a4b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5029
diff changeset
  1324
        self warn:(resources stringWithCRs:'Paste failed !!\Increasing the images depth might help.'). 
1823
d11286b90d3b paste mask
Claus Gittinger <cg@exept.de>
parents: 1781
diff changeset
  1325
    ] do: [   
1246
0cd36bffc789 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1245
diff changeset
  1326
        windowGroup withExecuteCursorDo:[
2838
8525a35121d2 changeHLS fixed dfor depth24-images;
Claus Gittinger <cg@exept.de>
parents: 2824
diff changeset
  1327
            choosenBox := self dragRectangleStartingAt: aPoint emphasis: #inverseFilledBox.
8525a35121d2 changeHLS fixed dfor depth24-images;
Claus Gittinger <cg@exept.de>
parents: 2824
diff changeset
  1328
            choosenBox isNil ifTrue:[ ^ self ].
8525a35121d2 changeHLS fixed dfor depth24-images;
Claus Gittinger <cg@exept.de>
parents: 2824
diff changeset
  1329
8525a35121d2 changeHLS fixed dfor depth24-images;
Claus Gittinger <cg@exept.de>
parents: 2824
diff changeset
  1330
            imagePoint := choosenBox origin//magnification.
1011
325d334e93c8 added paste-under (only paste where pixel ~= current selected)
Claus Gittinger <cg@exept.de>
parents: 1006
diff changeset
  1331
1246
0cd36bffc789 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1245
diff changeset
  1332
            copiedImage := Clipboard copy.
1987
eb9f2f7f1450 paste image
Claus Gittinger <cg@exept.de>
parents: 1986
diff changeset
  1333
2440
a9abeb0e3562 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2415
diff changeset
  1334
            true "/ image photometric == #palette 
1888
ef622d292093 colormap conversion
Claus Gittinger <cg@exept.de>
parents: 1886
diff changeset
  1335
            ifTrue:[
1246
0cd36bffc789 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1245
diff changeset
  1336
                "/ for all colors in the pasted image,
0cd36bffc789 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1245
diff changeset
  1337
                "/ check, if its in the colormap of the
0cd36bffc789 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1245
diff changeset
  1338
                "/ target image.
995
cd84d6f8c449 several undos
tz
parents: 994
diff changeset
  1339
2764
3302aab746d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2756
diff changeset
  1340
                anyColorMissing := anyColorAdded := false.
3302aab746d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2756
diff changeset
  1341
                oldColorMap := image colorMap.
3302aab746d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2756
diff changeset
  1342
                oldColorMap notNil ifTrue:[
3302aab746d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2756
diff changeset
  1343
                    newColorMap := oldColorMap asOrderedCollection.
1957
9a4347986d96 paste with non-colormap image (i.e. truecolor).
Claus Gittinger <cg@exept.de>
parents: 1903
diff changeset
  1344
                    copiedImage usedValues do:[:pixel |
2764
3302aab746d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2756
diff changeset
  1345
                        |pastedColor |
1116
441ff42c1472 fixes to allow 24bit images to be (at least) displayed
Claus Gittinger <cg@exept.de>
parents: 1106
diff changeset
  1346
1957
9a4347986d96 paste with non-colormap image (i.e. truecolor).
Claus Gittinger <cg@exept.de>
parents: 1903
diff changeset
  1347
                        pastedColor := copiedImage colorFromValue:pixel.
2764
3302aab746d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2756
diff changeset
  1348
3762
1baf6a044dd2 changed: #pasteAt:mode:
Claus Gittinger <cg@exept.de>
parents: 3730
diff changeset
  1349
                        (newColorMap includes:pastedColor) ifFalse:[
2764
3302aab746d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2756
diff changeset
  1350
                            newColorMap size < (1 bitShift:image depth) ifTrue:[
1957
9a4347986d96 paste with non-colormap image (i.e. truecolor).
Claus Gittinger <cg@exept.de>
parents: 1903
diff changeset
  1351
                                "/ add to colormap
9a4347986d96 paste with non-colormap image (i.e. truecolor).
Claus Gittinger <cg@exept.de>
parents: 1903
diff changeset
  1352
                                newColorMap add:pastedColor.
2764
3302aab746d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2756
diff changeset
  1353
                                anyColorAdded := true.
1957
9a4347986d96 paste with non-colormap image (i.e. truecolor).
Claus Gittinger <cg@exept.de>
parents: 1903
diff changeset
  1354
        "/                        Transcript showCR:'adding color:' , pastedColor displayString , ' to targets colorMap'.
9a4347986d96 paste with non-colormap image (i.e. truecolor).
Claus Gittinger <cg@exept.de>
parents: 1903
diff changeset
  1355
                            ] ifFalse:[
9a4347986d96 paste with non-colormap image (i.e. truecolor).
Claus Gittinger <cg@exept.de>
parents: 1903
diff changeset
  1356
        "/                        Transcript showCR:'color:' , pastedColor displayString , ' not found in targets colorMap'.
1987
eb9f2f7f1450 paste image
Claus Gittinger <cg@exept.de>
parents: 1986
diff changeset
  1357
"/                                copiedImage colorMap notNil ifTrue:[
eb9f2f7f1450 paste image
Claus Gittinger <cg@exept.de>
parents: 1986
diff changeset
  1358
"/                                    copiedImage colorMap at: pixel+1 put: Color black.
eb9f2f7f1450 paste image
Claus Gittinger <cg@exept.de>
parents: 1986
diff changeset
  1359
"/                                ].
1957
9a4347986d96 paste with non-colormap image (i.e. truecolor).
Claus Gittinger <cg@exept.de>
parents: 1903
diff changeset
  1360
                                anyColorMissing := true.
9a4347986d96 paste with non-colormap image (i.e. truecolor).
Claus Gittinger <cg@exept.de>
parents: 1903
diff changeset
  1361
                            ]
1246
0cd36bffc789 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1245
diff changeset
  1362
                        ]
1957
9a4347986d96 paste with non-colormap image (i.e. truecolor).
Claus Gittinger <cg@exept.de>
parents: 1903
diff changeset
  1363
                    ].
1246
0cd36bffc789 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1245
diff changeset
  1364
                ].
2764
3302aab746d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2756
diff changeset
  1365
1888
ef622d292093 colormap conversion
Claus Gittinger <cg@exept.de>
parents: 1886
diff changeset
  1366
                anyColorMissing ifTrue:[
ef622d292093 colormap conversion
Claus Gittinger <cg@exept.de>
parents: 1886
diff changeset
  1367
                    answer := Dialog
5061
f8346c455a4b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5029
diff changeset
  1368
                                confirmWithCancel:(resources stringWithCRs:'Some color(s) cannot be represented (colorMap full).\Use nearest or compute colorMap ?') 
2172
737d8733fb01 brightemed, darkened, reverse etc. added to operations.
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
  1369
                                labels:#( 'Cancel' 'New ColorMap' 'Use Nearest' )
737d8733fb01 brightemed, darkened, reverse etc. added to operations.
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
  1370
                                values:#(  nil new nearest)
737d8733fb01 brightemed, darkened, reverse etc. added to operations.
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
  1371
                                default:3.
1888
ef622d292093 colormap conversion
Claus Gittinger <cg@exept.de>
parents: 1886
diff changeset
  1372
ef622d292093 colormap conversion
Claus Gittinger <cg@exept.de>
parents: 1886
diff changeset
  1373
                    answer isNil ifTrue:[^ self].
1986
630db3277f10 support pasing 24bit rgb image into an 8-bit palette image
Claus Gittinger <cg@exept.de>
parents: 1980
diff changeset
  1374
630db3277f10 support pasing 24bit rgb image into an 8-bit palette image
Claus Gittinger <cg@exept.de>
parents: 1980
diff changeset
  1375
                    currentColorMap := image colorMap.
1987
eb9f2f7f1450 paste image
Claus Gittinger <cg@exept.de>
parents: 1986
diff changeset
  1376
                    imgX := imagePoint x.
eb9f2f7f1450 paste image
Claus Gittinger <cg@exept.de>
parents: 1986
diff changeset
  1377
                    imgY := imagePoint y.
1986
630db3277f10 support pasing 24bit rgb image into an 8-bit palette image
Claus Gittinger <cg@exept.de>
parents: 1980
diff changeset
  1378
1888
ef622d292093 colormap conversion
Claus Gittinger <cg@exept.de>
parents: 1886
diff changeset
  1379
                    answer == #nearest ifTrue:[
ef622d292093 colormap conversion
Claus Gittinger <cg@exept.de>
parents: 1886
diff changeset
  1380
                        0 to:copiedImage height-1 do:[:y |
ef622d292093 colormap conversion
Claus Gittinger <cg@exept.de>
parents: 1886
diff changeset
  1381
                            0 to:copiedImage width-1 do:[:x |
ef622d292093 colormap conversion
Claus Gittinger <cg@exept.de>
parents: 1886
diff changeset
  1382
                                |clr n_clr|
ef622d292093 colormap conversion
Claus Gittinger <cg@exept.de>
parents: 1886
diff changeset
  1383
1987
eb9f2f7f1450 paste image
Claus Gittinger <cg@exept.de>
parents: 1986
diff changeset
  1384
                                (copiedImage maskAtX:x y:y) == 0 ifTrue:[
eb9f2f7f1450 paste image
Claus Gittinger <cg@exept.de>
parents: 1986
diff changeset
  1385
                                    image mask isNil ifTrue:[
eb9f2f7f1450 paste image
Claus Gittinger <cg@exept.de>
parents: 1986
diff changeset
  1386
                                        image createMask.
eb9f2f7f1450 paste image
Claus Gittinger <cg@exept.de>
parents: 1986
diff changeset
  1387
                                    ].
eb9f2f7f1450 paste image
Claus Gittinger <cg@exept.de>
parents: 1986
diff changeset
  1388
                                    image maskAtX:imgX+x y:imgY+y put:0.
eb9f2f7f1450 paste image
Claus Gittinger <cg@exept.de>
parents: 1986
diff changeset
  1389
                                ] ifFalse:[
2582
5f9a25414195 atX:y: changed to #colorAtX :y:
penk
parents: 2566
diff changeset
  1390
                                    clr := copiedImage colorAtX:x y:y.
1987
eb9f2f7f1450 paste image
Claus Gittinger <cg@exept.de>
parents: 1986
diff changeset
  1391
                                    n_clr := clr nearestIn:currentColorMap.
2582
5f9a25414195 atX:y: changed to #colorAtX :y:
penk
parents: 2566
diff changeset
  1392
                                    image colorAtX:imgX+x y:imgY+y put:n_clr
1987
eb9f2f7f1450 paste image
Claus Gittinger <cg@exept.de>
parents: 1986
diff changeset
  1393
                                ]
1888
ef622d292093 colormap conversion
Claus Gittinger <cg@exept.de>
parents: 1886
diff changeset
  1394
                            ]
ef622d292093 colormap conversion
Claus Gittinger <cg@exept.de>
parents: 1886
diff changeset
  1395
                        ].
1987
eb9f2f7f1450 paste image
Claus Gittinger <cg@exept.de>
parents: 1986
diff changeset
  1396
                        image restored.
eb9f2f7f1450 paste image
Claus Gittinger <cg@exept.de>
parents: 1986
diff changeset
  1397
                        self redraw: (imageBox := (imagePoint * magnification extent: (Clipboard extent * magnification)) expandedBy: 1@1).
2590
b811d560e00a modified flag after edit operations
Claus Gittinger <cg@exept.de>
parents: 2589
diff changeset
  1398
                        self setModified.
1987
eb9f2f7f1450 paste image
Claus Gittinger <cg@exept.de>
parents: 1986
diff changeset
  1399
                        ^ self.
2135
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1400
                    ].
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1401
                    answer == #new ifTrue:[
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1402
                        existingColors := image usedValues asIdentitySet.
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1403
                        newColors := copiedImage usedValues.
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1404
                        allColors := existingColors addAll:newColors.
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1405
                        allColors size > (1 bitShift:image depth) ifTrue:[
5061
f8346c455a4b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5029
diff changeset
  1406
                            self warn:(resources string:'Sorry: too many colors - unimplemented function').
2135
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1407
                            self undo.
1986
630db3277f10 support pasing 24bit rgb image into an 8-bit palette image
Claus Gittinger <cg@exept.de>
parents: 1980
diff changeset
  1408
                            ^ self.
630db3277f10 support pasing 24bit rgb image into an 8-bit palette image
Claus Gittinger <cg@exept.de>
parents: 1980
diff changeset
  1409
                        ].
2135
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1410
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1411
                        newColormap := OrderedCollection new.
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1412
                        newColormap addAll:image usedColors.
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1413
                        newColormap addAll:copiedImage usedColors.
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1414
                        "/ translate image to use new colorMap...
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1415
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1416
                        "/ translate image to use new colors ...
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1417
                        0 to:image height-1 do:[:y |
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1418
                            0 to:image width-1 do:[:x |
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1419
                                |clr n_idx|
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1420
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1421
                                (image maskAtX:x y:y) == 1 ifTrue:[
2582
5f9a25414195 atX:y: changed to #colorAtX :y:
penk
parents: 2566
diff changeset
  1422
                                    clr := image colorAtX:x y:y.
2135
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1423
                                    n_idx := newColormap indexOf:clr.
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1424
                                    image pixelAtX:x y:y put:n_idx-1.
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1425
                                ]
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1426
                            ]
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1427
                        ].
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1428
                        image colorMap:newColormap.
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1429
                        currentColorMap := newColormap.    
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1430
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1431
                        "/ paste new image...    
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1432
                        0 to:copiedImage height-1 do:[:y |
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1433
                            0 to:copiedImage width-1 do:[:x |
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1434
                                |clr idx|
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1435
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1436
                                (copiedImage maskAtX:x y:y) == 1
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1437
                                ifTrue:[
2582
5f9a25414195 atX:y: changed to #colorAtX :y:
penk
parents: 2566
diff changeset
  1438
                                    clr := copiedImage colorAtX:x y:y.
2135
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1439
                                    idx := currentColorMap indexOf:clr.
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1440
                                    idx == 0 ifTrue:[
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1441
                                        currentColorMap add:clr.
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1442
                                        idx := currentColorMap size.
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1443
                                        idx > (1 bitShift:image depth) ifTrue:[
5061
f8346c455a4b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5029
diff changeset
  1444
                                            self warn:(resources string:'Sorry: too many colors').
2135
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1445
                                            self undo.
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1446
                                            ^ self.
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1447
                                        ].
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1448
                                    ].
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1449
                                    image pixelAtX:imgX+x y:imgY+y put:idx-1.
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1450
                                    image maskAtX:imgX+x y:imgY+y put:1.
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1451
                                ]
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1452
                            ]
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1453
                        ].
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1454
                        image restored.
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1455
                        self redraw: (imageBox := (imagePoint * magnification extent: (Clipboard extent * magnification)) expandedBy: 1@1).
2590
b811d560e00a modified flag after edit operations
Claus Gittinger <cg@exept.de>
parents: 2589
diff changeset
  1456
                        self setModified.
1888
ef622d292093 colormap conversion
Claus Gittinger <cg@exept.de>
parents: 1886
diff changeset
  1457
                        ^ self.
ef622d292093 colormap conversion
Claus Gittinger <cg@exept.de>
parents: 1886
diff changeset
  1458
                    ].
5061
f8346c455a4b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5029
diff changeset
  1459
                    self warn:(resources string:'Sorry: unimplemented function').
2135
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1460
                    self undo.
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1461
                    ^ self.
1888
ef622d292093 colormap conversion
Claus Gittinger <cg@exept.de>
parents: 1886
diff changeset
  1462
                ].
2764
3302aab746d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2756
diff changeset
  1463
                anyColorAdded ifTrue:[
2490
62230519175a slowly getting rid of the Colormap class
Claus Gittinger <cg@exept.de>
parents: 2489
diff changeset
  1464
                    image colorMap:(MappedPalette withColors:newColorMap).
1246
0cd36bffc789 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1245
diff changeset
  1465
                ].
0cd36bffc789 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1245
diff changeset
  1466
            ].
1011
325d334e93c8 added paste-under (only paste where pixel ~= current selected)
Claus Gittinger <cg@exept.de>
parents: 1006
diff changeset
  1467
1246
0cd36bffc789 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1245
diff changeset
  1468
            copiedImage := image class fromImage: copiedImage.
1380
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
  1469
            (newColorMap isNil 
2135
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1470
            and:[modeSymbol isNil
1987
eb9f2f7f1450 paste image
Claus Gittinger <cg@exept.de>
parents: 1986
diff changeset
  1471
            and:[copiedImage mask isNil] ]) ifTrue:[
1380
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
  1472
                "/ use images copy functionality
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
  1473
                "/ however, this copies the mask as well,
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
  1474
                "/ which is not useful here
1246
0cd36bffc789 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1245
diff changeset
  1475
                image copyFrom: copiedImage x:0 y:0 toX: imagePoint x y: imagePoint y width: copiedImage width height: copiedImage height.
0cd36bffc789 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1245
diff changeset
  1476
            ] ifFalse:[
0cd36bffc789 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1245
diff changeset
  1477
                imgX := imagePoint x.
0cd36bffc789 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1245
diff changeset
  1478
                imgY := imagePoint y.
1028
4dfe1c6cbc48 fixed paste-drag display (when scrolled)
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1479
1246
0cd36bffc789 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1245
diff changeset
  1480
                0 to:copiedImage height-1 do:[:y |
0cd36bffc789 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1245
diff changeset
  1481
                    0 to:copiedImage width-1 do:[:x |
0cd36bffc789 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1245
diff changeset
  1482
                        |wasMasked newMasked dstX dstY oldColor|
1011
325d334e93c8 added paste-under (only paste where pixel ~= current selected)
Claus Gittinger <cg@exept.de>
parents: 1006
diff changeset
  1483
1246
0cd36bffc789 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1245
diff changeset
  1484
                        dstX := imgX + x.
0cd36bffc789 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1245
diff changeset
  1485
                        dstY := imgY + y.
0cd36bffc789 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1245
diff changeset
  1486
                        wasMasked := (image maskAtX:dstX y:dstY) == 0.
0cd36bffc789 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1245
diff changeset
  1487
                        newMasked := (copiedImage maskAtX:x y:y) == 0.
994
5727c2484ecd bugs fixed in undo/mask and point painting/preview and pasting
tz
parents: 877
diff changeset
  1488
1246
0cd36bffc789 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1245
diff changeset
  1489
                        "/ with modeUnder, 
0cd36bffc789 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1245
diff changeset
  1490
                        "/ only replace, if its either unmasked,
0cd36bffc789 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1245
diff changeset
  1491
                        "/ or the current drawing color.
2135
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1492
                        (modeSymbol isNil
1246
0cd36bffc789 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1245
diff changeset
  1493
                        or:[wasMasked
2135
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1494
                        or:[modeSymbol == #withMask]])
1246
0cd36bffc789 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1245
diff changeset
  1495
                        ifTrue:[
1380
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
  1496
                            newMasked ifFalse:[
2764
3302aab746d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2756
diff changeset
  1497
                                image colorAtX:dstX y:dstY put:(copiedImage colorAtX:x y:y).
1823
d11286b90d3b paste mask
Claus Gittinger <cg@exept.de>
parents: 1781
diff changeset
  1498
                                wasMasked ifTrue:[
1986
630db3277f10 support pasing 24bit rgb image into an 8-bit palette image
Claus Gittinger <cg@exept.de>
parents: 1980
diff changeset
  1499
                                    image maskAtX:dstX y:dstY put:1
1380
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
  1500
                                ].
1823
d11286b90d3b paste mask
Claus Gittinger <cg@exept.de>
parents: 1781
diff changeset
  1501
                            ] ifTrue:[
d11286b90d3b paste mask
Claus Gittinger <cg@exept.de>
parents: 1781
diff changeset
  1502
                                wasMasked ifFalse:[
2135
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1503
                                    modeSymbol == #withMask ifTrue:[
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1504
                                        image maskAtX:dstX y:dstY put:0
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1505
                                    ]
1823
d11286b90d3b paste mask
Claus Gittinger <cg@exept.de>
parents: 1781
diff changeset
  1506
                                ]
d11286b90d3b paste mask
Claus Gittinger <cg@exept.de>
parents: 1781
diff changeset
  1507
                            ].
1987
eb9f2f7f1450 paste image
Claus Gittinger <cg@exept.de>
parents: 1986
diff changeset
  1508
                        ].
eb9f2f7f1450 paste image
Claus Gittinger <cg@exept.de>
parents: 1986
diff changeset
  1509
1246
0cd36bffc789 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1245
diff changeset
  1510
                    ]
0cd36bffc789 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1245
diff changeset
  1511
                ].
0cd36bffc789 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1245
diff changeset
  1512
            ].
0cd36bffc789 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1245
diff changeset
  1513
            image restored.
0cd36bffc789 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1245
diff changeset
  1514
            self redraw: (imageBox := (imagePoint * magnification extent: (Clipboard extent * magnification)) expandedBy: 1@1).
1028
4dfe1c6cbc48 fixed paste-drag display (when scrolled)
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1515
"/            masterApplication imagePreView redraw: (imageBox expandedBy: 1).
2590
b811d560e00a modified flag after edit operations
Claus Gittinger <cg@exept.de>
parents: 2589
diff changeset
  1516
            self setModified.
1246
0cd36bffc789 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1245
diff changeset
  1517
        ]
1028
4dfe1c6cbc48 fixed paste-drag display (when scrolled)
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1518
   ]
4dfe1c6cbc48 fixed paste-drag display (when scrolled)
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1519
1380
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
  1520
    "Modified: / 18.5.1999 / 20:40:37 / cg"
636
d53428252193 revised version
tz
parents: 633
diff changeset
  1521
!
d53428252193 revised version
tz
parents: 633
diff changeset
  1522
1011
325d334e93c8 added paste-under (only paste where pixel ~= current selected)
Claus Gittinger <cg@exept.de>
parents: 1006
diff changeset
  1523
pasteUnderAt: aPoint
325d334e93c8 added paste-under (only paste where pixel ~= current selected)
Claus Gittinger <cg@exept.de>
parents: 1006
diff changeset
  1524
    "pasteUnder the image in the clipboard at aPoint.
325d334e93c8 added paste-under (only paste where pixel ~= current selected)
Claus Gittinger <cg@exept.de>
parents: 1006
diff changeset
  1525
     In this mode, only pixels which are not equal to
325d334e93c8 added paste-under (only paste where pixel ~= current selected)
Claus Gittinger <cg@exept.de>
parents: 1006
diff changeset
  1526
     the current color or masked are pasted."
325d334e93c8 added paste-under (only paste where pixel ~= current selected)
Claus Gittinger <cg@exept.de>
parents: 1006
diff changeset
  1527
2135
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1528
    self pasteAt:aPoint mode:#under.
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1529
!
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1530
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1531
pasteWithMaskAt: aPoint
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1532
    "paste the image in the clipboard at aPoint.
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1533
     In this mode, both the mask and the image pixel are pasted"
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1534
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1535
09782f280a97 added "paste with mask"
Claus Gittinger <cg@exept.de>
parents: 2092
diff changeset
  1536
    self pasteAt:aPoint mode:#withMask.
1011
325d334e93c8 added paste-under (only paste where pixel ~= current selected)
Claus Gittinger <cg@exept.de>
parents: 1006
diff changeset
  1537
!
325d334e93c8 added paste-under (only paste where pixel ~= current selected)
Claus Gittinger <cg@exept.de>
parents: 1006
diff changeset
  1538
1858
54138b1b3efd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1855
diff changeset
  1539
performSpecialOperationOn:imageBox withColor:clr
2765
5bc0bfbeac33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2764
diff changeset
  1540
    |operation x0 y0 x1 y1 pixelAction requiredColors missingColors answer hue|
1858
54138b1b3efd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1855
diff changeset
  1541
54138b1b3efd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1855
diff changeset
  1542
    operation := Dialog 
2680
0e335115a3eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2634
diff changeset
  1543
           choose:(resources string:'Which Operation:')
0e335115a3eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2634
diff changeset
  1544
           fromList:(resources array:#(
2784
1af62699307d + edit-subImage function
Claus Gittinger <cg@exept.de>
parents: 2783
diff changeset
  1545
                       'edit separately'
1af62699307d + edit-subImage function
Claus Gittinger <cg@exept.de>
parents: 2783
diff changeset
  1546
                       '-'
4032
f293d37675b5 added: #flipSubImage:in:
Claus Gittinger <cg@exept.de>
parents: 4000
diff changeset
  1547
                       'flip vertical'
f293d37675b5 added: #flipSubImage:in:
Claus Gittinger <cg@exept.de>
parents: 4000
diff changeset
  1548
                       'flip horizontal'
f293d37675b5 added: #flipSubImage:in:
Claus Gittinger <cg@exept.de>
parents: 4000
diff changeset
  1549
                       '-'
2172
737d8733fb01 brightemed, darkened, reverse etc. added to operations.
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
  1550
                       'slightly brightened'
737d8733fb01 brightemed, darkened, reverse etc. added to operations.
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
  1551
                       'slightly darkened'
737d8733fb01 brightemed, darkened, reverse etc. added to operations.
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
  1552
                       'brightened'
737d8733fb01 brightemed, darkened, reverse etc. added to operations.
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
  1553
                       'darkened'
737d8733fb01 brightemed, darkened, reverse etc. added to operations.
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
  1554
                       '-'
2765
5bc0bfbeac33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2764
diff changeset
  1555
                       'make grey'
2172
737d8733fb01 brightemed, darkened, reverse etc. added to operations.
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
  1556
                       'greyed'
1858
54138b1b3efd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1855
diff changeset
  1557
                       'grey pattern'
2765
5bc0bfbeac33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2764
diff changeset
  1558
                       'grey pattern (unmasked)'
2172
737d8733fb01 brightemed, darkened, reverse etc. added to operations.
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
  1559
                       '-'
737d8733fb01 brightemed, darkened, reverse etc. added to operations.
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
  1560
                       'reversed'
2765
5bc0bfbeac33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2764
diff changeset
  1561
                       '-'
5bc0bfbeac33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2764
diff changeset
  1562
                       'change hue'
5bc0bfbeac33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2764
diff changeset
  1563
                       'colorize'
2680
0e335115a3eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2634
diff changeset
  1564
                     )) 
2784
1af62699307d + edit-subImage function
Claus Gittinger <cg@exept.de>
parents: 2783
diff changeset
  1565
           values:#(edit nil
4032
f293d37675b5 added: #flipSubImage:in:
Claus Gittinger <cg@exept.de>
parents: 4000
diff changeset
  1566
                    flipVertical flipHorizontal nil
f293d37675b5 added: #flipSubImage:in:
Claus Gittinger <cg@exept.de>
parents: 4000
diff changeset
  1567
                    slightlyBrightened slightlyDarkened brightened darkened nil 
f293d37675b5 added: #flipSubImage:in:
Claus Gittinger <cg@exept.de>
parents: 4000
diff changeset
  1568
                    makeGrey greyed greyPattern unmaskedGreyPattern nil 
f293d37675b5 added: #flipSubImage:in:
Claus Gittinger <cg@exept.de>
parents: 4000
diff changeset
  1569
                    reversed nil 
f293d37675b5 added: #flipSubImage:in:
Claus Gittinger <cg@exept.de>
parents: 4000
diff changeset
  1570
                    changeHue colorize) 
1858
54138b1b3efd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1855
diff changeset
  1571
           lines:6
54138b1b3efd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1855
diff changeset
  1572
           cancel:nil.
54138b1b3efd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1855
diff changeset
  1573
54138b1b3efd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1855
diff changeset
  1574
    self invalidate.
54138b1b3efd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1855
diff changeset
  1575
    self windowGroup processExposeEvents.
54138b1b3efd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1855
diff changeset
  1576
54138b1b3efd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1855
diff changeset
  1577
    operation isNil ifTrue:[^ false].
54138b1b3efd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1855
diff changeset
  1578
54138b1b3efd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1855
diff changeset
  1579
    x0 := imageBox left.
54138b1b3efd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1855
diff changeset
  1580
    y0 := imageBox top.
1861
ba1f1a884ebc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1859
diff changeset
  1581
    x1 := imageBox right - 1.
ba1f1a884ebc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1859
diff changeset
  1582
    y1 := imageBox bottom -1 .
1858
54138b1b3efd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1855
diff changeset
  1583
2784
1af62699307d + edit-subImage function
Claus Gittinger <cg@exept.de>
parents: 2783
diff changeset
  1584
    operation == #edit ifTrue:[
1af62699307d + edit-subImage function
Claus Gittinger <cg@exept.de>
parents: 2783
diff changeset
  1585
        (self image subImageIn:imageBox) edit.
1af62699307d + edit-subImage function
Claus Gittinger <cg@exept.de>
parents: 2783
diff changeset
  1586
        ^ false.
1af62699307d + edit-subImage function
Claus Gittinger <cg@exept.de>
parents: 2783
diff changeset
  1587
    ].
4032
f293d37675b5 added: #flipSubImage:in:
Claus Gittinger <cg@exept.de>
parents: 4000
diff changeset
  1588
    operation == #flipVertical ifTrue:[
f293d37675b5 added: #flipSubImage:in:
Claus Gittinger <cg@exept.de>
parents: 4000
diff changeset
  1589
        self flipSubImage:#vertical in:imageBox.
f293d37675b5 added: #flipSubImage:in:
Claus Gittinger <cg@exept.de>
parents: 4000
diff changeset
  1590
        ^ true.
f293d37675b5 added: #flipSubImage:in:
Claus Gittinger <cg@exept.de>
parents: 4000
diff changeset
  1591
    ].
f293d37675b5 added: #flipSubImage:in:
Claus Gittinger <cg@exept.de>
parents: 4000
diff changeset
  1592
    operation == #flipHorizontal ifTrue:[
f293d37675b5 added: #flipSubImage:in:
Claus Gittinger <cg@exept.de>
parents: 4000
diff changeset
  1593
        self flipSubImage:#horizontal in:imageBox.
f293d37675b5 added: #flipSubImage:in:
Claus Gittinger <cg@exept.de>
parents: 4000
diff changeset
  1594
        ^ true.
f293d37675b5 added: #flipSubImage:in:
Claus Gittinger <cg@exept.de>
parents: 4000
diff changeset
  1595
    ].
f293d37675b5 added: #flipSubImage:in:
Claus Gittinger <cg@exept.de>
parents: 4000
diff changeset
  1596
2177
340ce04ccc78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2172
diff changeset
  1597
    operation == #slightlyBrightened ifTrue:[
2172
737d8733fb01 brightemed, darkened, reverse etc. added to operations.
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
  1598
        pixelAction := [:x :y :clr | clr slightlyLightened].
737d8733fb01 brightemed, darkened, reverse etc. added to operations.
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
  1599
    ].
2177
340ce04ccc78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2172
diff changeset
  1600
    operation == #slightlyDarkened ifTrue:[
2172
737d8733fb01 brightemed, darkened, reverse etc. added to operations.
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
  1601
        pixelAction := [:x :y :clr | clr slightlyDarkened].
737d8733fb01 brightemed, darkened, reverse etc. added to operations.
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
  1602
    ].
2177
340ce04ccc78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2172
diff changeset
  1603
    operation == #brightened ifTrue:[
2172
737d8733fb01 brightemed, darkened, reverse etc. added to operations.
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
  1604
        pixelAction := [:x :y :clr | clr lightened].
1858
54138b1b3efd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1855
diff changeset
  1605
    ].
2177
340ce04ccc78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2172
diff changeset
  1606
    operation == #darkened ifTrue:[
2172
737d8733fb01 brightemed, darkened, reverse etc. added to operations.
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
  1607
        pixelAction := [:x :y :clr | clr darkened].
737d8733fb01 brightemed, darkened, reverse etc. added to operations.
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
  1608
    ].
737d8733fb01 brightemed, darkened, reverse etc. added to operations.
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
  1609
    operation == #reversed ifTrue:[
737d8733fb01 brightemed, darkened, reverse etc. added to operations.
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
  1610
        pixelAction := [:x :y :clr | Color red:(100-clr red) green:(100-clr green) blue:(100-clr blue) ].
1858
54138b1b3efd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1855
diff changeset
  1611
    ].
2765
5bc0bfbeac33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2764
diff changeset
  1612
    operation == #makeGrey ifTrue:[
5bc0bfbeac33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2764
diff changeset
  1613
        pixelAction := [:x :y :clr | Color grey:(clr greyIntensity)].
5bc0bfbeac33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2764
diff changeset
  1614
    ].
2177
340ce04ccc78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2172
diff changeset
  1615
    operation == #greyed ifTrue:[
4646
b1faa362e0ac class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4624
diff changeset
  1616
        pixelAction := [:x :y :clr | clr blendWith:Color gray].
1858
54138b1b3efd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1855
diff changeset
  1617
    ].
54138b1b3efd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1855
diff changeset
  1618
    operation == #greyPattern ifTrue:[
2765
5bc0bfbeac33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2764
diff changeset
  1619
        pixelAction := [:x :y :clr | x odd == y even 
4646
b1faa362e0ac class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4624
diff changeset
  1620
                                        ifTrue:[Color gray] 
2765
5bc0bfbeac33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2764
diff changeset
  1621
                                        ifFalse:[clr]].
5bc0bfbeac33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2764
diff changeset
  1622
    ].
5bc0bfbeac33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2764
diff changeset
  1623
    operation == #unmaskedGreyPattern ifTrue:[
5bc0bfbeac33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2764
diff changeset
  1624
        pixelAction := [:x :y :clr | x odd == y even 
4646
b1faa362e0ac class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4624
diff changeset
  1625
                                        ifTrue:[self image maskAtX:x y:y put:1. Color gray] 
2765
5bc0bfbeac33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2764
diff changeset
  1626
                                        ifFalse:[clr]].
2172
737d8733fb01 brightemed, darkened, reverse etc. added to operations.
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
  1627
    ].
2765
5bc0bfbeac33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2764
diff changeset
  1628
5bc0bfbeac33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2764
diff changeset
  1629
    operation == #changeHue ifTrue:[
5bc0bfbeac33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2764
diff changeset
  1630
        hue := Dialog request:'Hue (0..360)'.
5bc0bfbeac33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2764
diff changeset
  1631
        hue := Number readFrom:hue onError:nil.
5bc0bfbeac33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2764
diff changeset
  1632
        hue isNil ifTrue:[^ false].
5bc0bfbeac33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2764
diff changeset
  1633
        pixelAction := [:x :y :clr | Color hue:(hue+(clr hue?0)) light:clr light saturation:clr saturation].
5bc0bfbeac33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2764
diff changeset
  1634
    ].
5bc0bfbeac33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2764
diff changeset
  1635
    operation == #colorize ifTrue:[
5bc0bfbeac33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2764
diff changeset
  1636
        hue := Dialog request:'Hue (0..360)'.
5bc0bfbeac33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2764
diff changeset
  1637
        hue := Number readFrom:hue onError:nil.
5bc0bfbeac33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2764
diff changeset
  1638
        hue isNil ifTrue:[^ false].
5bc0bfbeac33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2764
diff changeset
  1639
        pixelAction := [:x :y :clr | Color hue:hue light:clr light saturation:100]
5bc0bfbeac33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2764
diff changeset
  1640
    ].
5bc0bfbeac33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2764
diff changeset
  1641
3564
a587be34447c no halt should be without an argument
Claus Gittinger <cg@exept.de>
parents: 3487
diff changeset
  1642
    pixelAction isNil ifTrue:[
5061
f8346c455a4b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5029
diff changeset
  1643
        self halt:(resources string:'no pixelAction'). 
3564
a587be34447c no halt should be without an argument
Claus Gittinger <cg@exept.de>
parents: 3487
diff changeset
  1644
        ^ false
a587be34447c no halt should be without an argument
Claus Gittinger <cg@exept.de>
parents: 3487
diff changeset
  1645
    ].
2172
737d8733fb01 brightemed, darkened, reverse etc. added to operations.
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
  1646
2889
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
  1647
    image colorMap notNil ifTrue:[
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
  1648
        "/ compute required colors ...
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
  1649
        requiredColors := Set new.
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
  1650
        self image 
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
  1651
            colorsFromX:x0 y:y0 toX:x1 y:y1 
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
  1652
            do:[:x :y :clr | 
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
  1653
                requiredColors add:(pixelAction value:x value:y value:clr)
2680
0e335115a3eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2634
diff changeset
  1654
            ].
2889
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
  1655
4231
6aec2775cc1e class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4212
diff changeset
  1656
        missingColors := requiredColors reject:[:clr | (image colorMap includes:clr)].
2889
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
  1657
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
  1658
        missingColors notEmpty ifTrue:[
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
  1659
            answer := Dialog
5061
f8346c455a4b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5029
diff changeset
  1660
                        confirmWithCancel:(resources stringWithCRs:'Some color(s) cannot be represented in the images colorMap.\Use nearest or compute colorMap ?')
2889
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
  1661
                        labels:#( 'Cancel' 'Add to ColorMap'  'Use Nearest')
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
  1662
                        values:#( nil add nearest)
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
  1663
                        default:3.
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
  1664
            answer isNil ifTrue:[^ false].
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
  1665
            answer == #add ifTrue:[
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
  1666
                missingColors size + image colorMap size > (2 raisedTo:image depth) ifTrue:[
5061
f8346c455a4b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5029
diff changeset
  1667
                    self warn:(resources string:'Missing colors cannot be added to images colormap.').
2889
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
  1668
                    ^ false
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
  1669
                ].
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
  1670
                missingColors do:[:eachColor |
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
  1671
                    image colorMap add:eachColor
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
  1672
                ].
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
  1673
                answer := #nearest.
2172
737d8733fb01 brightemed, darkened, reverse etc. added to operations.
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
  1674
            ].
737d8733fb01 brightemed, darkened, reverse etc. added to operations.
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
  1675
        ].
1858
54138b1b3efd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1855
diff changeset
  1676
    ].
54138b1b3efd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1855
diff changeset
  1677
2172
737d8733fb01 brightemed, darkened, reverse etc. added to operations.
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
  1678
    "/ now, do it
737d8733fb01 brightemed, darkened, reverse etc. added to operations.
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
  1679
    self image 
737d8733fb01 brightemed, darkened, reverse etc. added to operations.
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
  1680
        colorsFromX:x0 y:y0 toX:x1 y:y1 
737d8733fb01 brightemed, darkened, reverse etc. added to operations.
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
  1681
        do:[:x :y :clr |
737d8733fb01 brightemed, darkened, reverse etc. added to operations.
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
  1682
            |newClr|
737d8733fb01 brightemed, darkened, reverse etc. added to operations.
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
  1683
737d8733fb01 brightemed, darkened, reverse etc. added to operations.
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
  1684
            newClr := pixelAction value:x value:y value:clr.
737d8733fb01 brightemed, darkened, reverse etc. added to operations.
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
  1685
            answer == #nearest ifTrue:[
737d8733fb01 brightemed, darkened, reverse etc. added to operations.
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
  1686
                newClr := newClr nearestIn:image colorMap
737d8733fb01 brightemed, darkened, reverse etc. added to operations.
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
  1687
            ].
737d8733fb01 brightemed, darkened, reverse etc. added to operations.
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
  1688
            self image colorAtX:x y:y put:newClr
737d8733fb01 brightemed, darkened, reverse etc. added to operations.
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
  1689
        ].
737d8733fb01 brightemed, darkened, reverse etc. added to operations.
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
  1690
2590
b811d560e00a modified flag after edit operations
Claus Gittinger <cg@exept.de>
parents: 2589
diff changeset
  1691
    self setModified.
2172
737d8733fb01 brightemed, darkened, reverse etc. added to operations.
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
  1692
    ^ true.
4032
f293d37675b5 added: #flipSubImage:in:
Claus Gittinger <cg@exept.de>
parents: 4000
diff changeset
  1693
f293d37675b5 added: #flipSubImage:in:
Claus Gittinger <cg@exept.de>
parents: 4000
diff changeset
  1694
    "Modified: / 07-04-2011 / 09:28:20 / cg"
1858
54138b1b3efd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1855
diff changeset
  1695
!
54138b1b3efd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1855
diff changeset
  1696
2009
4f556ff9fec5 pick with SHIFT-click in the mag-view
Claus Gittinger <cg@exept.de>
parents: 2007
diff changeset
  1697
pointAt:aPoint
1116
441ff42c1472 fixes to allow 24bit images to be (at least) displayed
Claus Gittinger <cg@exept.de>
parents: 1106
diff changeset
  1698
    "draw a single pixel with the currently selected color"
636
d53428252193 revised version
tz
parents: 633
diff changeset
  1699
4111
Claus Gittinger <cg@exept.de>
parents: 4041
diff changeset
  1700
    self pointAt:aPoint width:self penWidth.
Claus Gittinger <cg@exept.de>
parents: 4041
diff changeset
  1701
Claus Gittinger <cg@exept.de>
parents: 4041
diff changeset
  1702
    "Modified: / 15-02-2012 / 22:47:30 / cg"
Claus Gittinger <cg@exept.de>
parents: 4041
diff changeset
  1703
!
Claus Gittinger <cg@exept.de>
parents: 4041
diff changeset
  1704
Claus Gittinger <cg@exept.de>
parents: 4041
diff changeset
  1705
pointAt:aPoint width:pw
4715
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  1706
    "draw a single pixel (or dot of width pw) with the currently selected color"
4111
Claus Gittinger <cg@exept.de>
parents: 4041
diff changeset
  1707
Claus Gittinger <cg@exept.de>
parents: 4041
diff changeset
  1708
    |draw imagePoint clr pix|
796
b68b09ddc62b preview redrawing
tz
parents: 783
diff changeset
  1709
1246
0cd36bffc789 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1245
diff changeset
  1710
    imagePoint := aPoint // magnification.
3476
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  1711
    (imagePoint x between:0 and:image width-1) ifFalse:[^ self].
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  1712
    (imagePoint y between:0 and:image height-1) ifFalse:[^ self].
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  1713
4111
Claus Gittinger <cg@exept.de>
parents: 4041
diff changeset
  1714
    draw := 
Claus Gittinger <cg@exept.de>
parents: 4041
diff changeset
  1715
        [:point |
Claus Gittinger <cg@exept.de>
parents: 4041
diff changeset
  1716
            image colorMap isNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 4041
diff changeset
  1717
                clr := self selectedColor.
Claus Gittinger <cg@exept.de>
parents: 4041
diff changeset
  1718
                image atImageAndMask:point put:clr.
Claus Gittinger <cg@exept.de>
parents: 4041
diff changeset
  1719
            ] ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 4041
diff changeset
  1720
                pix := self selectedColorIndex.
Claus Gittinger <cg@exept.de>
parents: 4041
diff changeset
  1721
                image atImageAndMask:point putValue:pix.
Claus Gittinger <cg@exept.de>
parents: 4041
diff changeset
  1722
            ].             
Claus Gittinger <cg@exept.de>
parents: 4041
diff changeset
  1723
            self invalidate:((point * magnification extent: magnification) expandedBy:1).
Claus Gittinger <cg@exept.de>
parents: 4041
diff changeset
  1724
        ].
4715
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  1725
3265
f22de2c4383d pen width
Claus Gittinger <cg@exept.de>
parents: 2917
diff changeset
  1726
    draw value:imagePoint.
f22de2c4383d pen width
Claus Gittinger <cg@exept.de>
parents: 2917
diff changeset
  1727
4715
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  1728
    pw > 1 ifTrue:[
3610
11e215de80a0 color selection when undoing
Claus Gittinger <cg@exept.de>
parents: 3564
diff changeset
  1729
        "/ draw with a wide pen
4111
Claus Gittinger <cg@exept.de>
parents: 4041
diff changeset
  1730
        (pw//2) negated to:(pw-(pw//2)-1) do:[:xOffs |
Claus Gittinger <cg@exept.de>
parents: 4041
diff changeset
  1731
            (pw//2) negated to:(pw-(pw//2)-1) do:[:yOffs |
3267
ee55a3b2f6fc changed #pointAt:
Claus Gittinger <cg@exept.de>
parents: 3266
diff changeset
  1732
                imagePoint x + xOffs >= 0 ifTrue:[
3476
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  1733
                    imagePoint y + yOffs >= 0 ifTrue:[
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  1734
                        draw value:(imagePoint + (xOffs@yOffs)).
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  1735
                    ].
3267
ee55a3b2f6fc changed #pointAt:
Claus Gittinger <cg@exept.de>
parents: 3266
diff changeset
  1736
                ].
3266
7b8c5b21fca3 changed #pointAt:
Claus Gittinger <cg@exept.de>
parents: 3265
diff changeset
  1737
            ].
3265
f22de2c4383d pen width
Claus Gittinger <cg@exept.de>
parents: 2917
diff changeset
  1738
        ].
1246
0cd36bffc789 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1245
diff changeset
  1739
    ].
2823
201bf0929edb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2818
diff changeset
  1740
    self setModified.
3265
f22de2c4383d pen width
Claus Gittinger <cg@exept.de>
parents: 2917
diff changeset
  1741
4111
Claus Gittinger <cg@exept.de>
parents: 4041
diff changeset
  1742
    "Created: / 15-02-2012 / 22:47:08 / cg"
636
d53428252193 revised version
tz
parents: 633
diff changeset
  1743
!
d53428252193 revised version
tz
parents: 633
diff changeset
  1744
2086
3e32adf8adab added shift operation
Claus Gittinger <cg@exept.de>
parents: 2085
diff changeset
  1745
shiftImageHorizontal:shiftH vertical:shiftV
2489
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1746
    self shiftImageHorizontal:shiftH vertical:shiftV wrap:false
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1747
!
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1748
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1749
shiftImageHorizontal:shiftH vertical:shiftV wrap:doWrap
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1750
    "shift the pixels; 
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1751
     shift<0 is left-shift/up-shift; shift>0 is right-shift/down-shift;
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1752
     doWrap controls if shifted-out pixels are to be shifted in at the opposite side.
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1753
     i.e.:
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1754
        0123456789 -> 3456789789 (shift: -3)    0123456789 -> 0120123456 (shift:3)
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1755
     or, with wrap:
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1756
        0123456789 -> 3456789012 (shift: -3)    0123456789 -> 7890123456 (shift:3)
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1757
    "
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1758
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1759
    |newImage|
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1760
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1761
    newImage := self shifted:image horizontal:shiftH vertical:shiftV wrap:doWrap.
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1762
    self image:newImage.
2590
b811d560e00a modified flag after edit operations
Claus Gittinger <cg@exept.de>
parents: 2589
diff changeset
  1763
    self setModified.
2489
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1764
!
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1765
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1766
shifted:image horizontal:shiftH vertical:shiftV wrap:doWrap
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1767
    "shift the pixels; 
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1768
     shift<0 is left-shift/up-shift; shift>0 is right-shift/down-shift;
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1769
     doWrap controls if shifted-out pixels are to be shifted in at the opposite side.
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1770
     i.e.:
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1771
        0123456789 -> 3456789789 (shift: -3)    0123456789 -> 0120123456 (shift:3)
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1772
     or, with wrap:
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1773
        0123456789 -> 3456789012 (shift: -3)    0123456789 -> 7890123456 (shift:3)
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1774
    "
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1775
2086
3e32adf8adab added shift operation
Claus Gittinger <cg@exept.de>
parents: 2085
diff changeset
  1776
    |w h srcX srcY dstX dstY newImage|
3e32adf8adab added shift operation
Claus Gittinger <cg@exept.de>
parents: 2085
diff changeset
  1777
2489
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1778
    doWrap ifTrue:[
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1779
        "/ if wrapping, split into two operations to make wrap-code below simpler.
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1780
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1781
        shiftH ~~ 0 ifTrue:[
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1782
            shiftV ~~ 0 ifTrue:[
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1783
                newImage := self shifted:image    horizontal:shiftH vertical:0 wrap:doWrap.
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1784
                newImage := self shifted:newImage horizontal:0      vertical:shiftV wrap:doWrap.
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1785
                ^ newImage
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1786
            ].
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1787
        ].
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1788
    ].
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1789
    (shiftV == 0 and:[shiftH == 0]) ifTrue:[
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1790
        ^ image
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1791
    ].
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1792
2086
3e32adf8adab added shift operation
Claus Gittinger <cg@exept.de>
parents: 2085
diff changeset
  1793
    w := image width.
3e32adf8adab added shift operation
Claus Gittinger <cg@exept.de>
parents: 2085
diff changeset
  1794
    h := image height.
3e32adf8adab added shift operation
Claus Gittinger <cg@exept.de>
parents: 2085
diff changeset
  1795
3e32adf8adab added shift operation
Claus Gittinger <cg@exept.de>
parents: 2085
diff changeset
  1796
    newImage := image copy.
3e32adf8adab added shift operation
Claus Gittinger <cg@exept.de>
parents: 2085
diff changeset
  1797
3e32adf8adab added shift operation
Claus Gittinger <cg@exept.de>
parents: 2085
diff changeset
  1798
    srcX := srcY := dstX := dstY := 0.
3e32adf8adab added shift operation
Claus Gittinger <cg@exept.de>
parents: 2085
diff changeset
  1799
    shiftH < 0 ifTrue:[
3e32adf8adab added shift operation
Claus Gittinger <cg@exept.de>
parents: 2085
diff changeset
  1800
        srcX := shiftH negated
3e32adf8adab added shift operation
Claus Gittinger <cg@exept.de>
parents: 2085
diff changeset
  1801
    ] ifFalse:[
3e32adf8adab added shift operation
Claus Gittinger <cg@exept.de>
parents: 2085
diff changeset
  1802
        dstX := shiftH
3e32adf8adab added shift operation
Claus Gittinger <cg@exept.de>
parents: 2085
diff changeset
  1803
    ].
3e32adf8adab added shift operation
Claus Gittinger <cg@exept.de>
parents: 2085
diff changeset
  1804
    shiftV < 0 ifTrue:[
3e32adf8adab added shift operation
Claus Gittinger <cg@exept.de>
parents: 2085
diff changeset
  1805
        srcY := shiftV negated
3e32adf8adab added shift operation
Claus Gittinger <cg@exept.de>
parents: 2085
diff changeset
  1806
    ] ifFalse:[
3e32adf8adab added shift operation
Claus Gittinger <cg@exept.de>
parents: 2085
diff changeset
  1807
        dstY := shiftV
3e32adf8adab added shift operation
Claus Gittinger <cg@exept.de>
parents: 2085
diff changeset
  1808
    ].
3e32adf8adab added shift operation
Claus Gittinger <cg@exept.de>
parents: 2085
diff changeset
  1809
3e32adf8adab added shift operation
Claus Gittinger <cg@exept.de>
parents: 2085
diff changeset
  1810
    newImage copyFrom:image x:srcX y:srcY toX:dstX y:dstY width:w-shiftH abs height:h-shiftV abs.
3e32adf8adab added shift operation
Claus Gittinger <cg@exept.de>
parents: 2085
diff changeset
  1811
2489
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1812
    doWrap ifTrue:[
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1813
        srcX := srcY := dstX := dstY := 0.
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1814
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1815
        "/ already simplified - see above
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1816
        shiftH ~~ 0 ifTrue:[
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1817
            "/ shiftV known to be 0
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1818
            shiftH < 0 ifTrue:[
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1819
                dstX := w-1-shiftH negated
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1820
            ] ifFalse:[
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1821
                srcX := w-1-shiftH
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1822
            ].
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1823
            w := shiftH abs.
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1824
        ] ifFalse:[
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1825
            "/ shiftH known to be 0
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1826
            shiftV < 0 ifTrue:[
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1827
                dstY := h-1-shiftV negated
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1828
            ] ifFalse:[
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1829
                srcY := h-1-shiftV
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1830
            ].
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1831
            h := shiftV abs.
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1832
        ].
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1833
        newImage copyFrom:image x:srcX y:srcY toX:dstX y:dstY width:w height:h.
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1834
        ^ newImage
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1835
    ].
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1836
f5654b8104f4 shift + wrap
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1837
    ^ newImage.
2086
3e32adf8adab added shift operation
Claus Gittinger <cg@exept.de>
parents: 2085
diff changeset
  1838
3e32adf8adab added shift operation
Claus Gittinger <cg@exept.de>
parents: 2085
diff changeset
  1839
    "Created: / 7.9.1998 / 13:00:16 / cg"
3e32adf8adab added shift operation
Claus Gittinger <cg@exept.de>
parents: 2085
diff changeset
  1840
    "Modified: / 7.9.1998 / 14:15:32 / cg"
3e32adf8adab added shift operation
Claus Gittinger <cg@exept.de>
parents: 2085
diff changeset
  1841
!
3e32adf8adab added shift operation
Claus Gittinger <cg@exept.de>
parents: 2085
diff changeset
  1842
4715
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  1843
smoothAt:aPoint
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  1844
    "smoth (average) a single pixel with pixels around"
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  1845
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  1846
    |draw imagePoint x y w h|
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  1847
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  1848
    imagePoint := aPoint // magnification.
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  1849
    w := image width.
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  1850
    h := image height.
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  1851
    ((x := imagePoint x) between:0 and:w-1) ifFalse:[^ self].
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  1852
    ((y := imagePoint y) between:0 and:h-1) ifFalse:[^ self].
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  1853
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  1854
    draw := 
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  1855
        [:point |
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  1856
            |sumRed sumGreen sumBlue newClr|
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  1857
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  1858
            sumRed := sumGreen := sumBlue := 0.
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  1859
            -1 to:1 do:[:dx |
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  1860
                -1 to:1 do:[:dy |
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  1861
                    |clr|
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  1862
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  1863
                    ((x + dx) between:0 and:w-1) ifTrue:[
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  1864
                        ((y + dy) between:0 and:h-1) ifTrue:[   
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  1865
                            clr := image colorAtX:(x + dx) y:(y + dy).
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  1866
                            sumRed := sumRed + clr redByte.
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  1867
                            sumGreen := sumGreen + clr greenByte.
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  1868
                            sumBlue := sumBlue + clr blueByte.
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  1869
                        ]
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  1870
                    ].
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  1871
                ]
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  1872
            ].
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  1873
            newClr := Color 
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  1874
                        redByte:(sumRed / 9) rounded
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  1875
                        greenByte:(sumGreen / 9) rounded 
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  1876
                        blueByte:(sumBlue / 9) rounded. 
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  1877
            image colorMap isNil ifTrue:[
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  1878
Transcript 
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  1879
    show:(image colorAt:point);
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  1880
    show:' -> ';
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  1881
    showCR:newClr.
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  1882
                image atImageAndMask:point put:newClr.
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  1883
            ] ifFalse:[
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  1884
                image atImageAndMask:point put:(image colorMap colorNearestTo:newClr).
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  1885
            ].             
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  1886
            self invalidate:((point * magnification extent: magnification) expandedBy:1).
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  1887
        ].
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  1888
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  1889
    draw value:imagePoint.
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  1890
    self setModified.
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  1891
!
c851a10dd606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  1892
1858
54138b1b3efd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1855
diff changeset
  1893
specialOperationAt: aPoint
54138b1b3efd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1855
diff changeset
  1894
    "special operation on a rectangular area"
54138b1b3efd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1855
diff changeset
  1895
2838
8525a35121d2 changeHLS fixed dfor depth24-images;
Claus Gittinger <cg@exept.de>
parents: 2824
diff changeset
  1896
    |choosenBox imageBox|
8525a35121d2 changeHLS fixed dfor depth24-images;
Claus Gittinger <cg@exept.de>
parents: 2824
diff changeset
  1897
8525a35121d2 changeHLS fixed dfor depth24-images;
Claus Gittinger <cg@exept.de>
parents: 2824
diff changeset
  1898
    choosenBox := self dragRectangleStartingAt: aPoint emphasis: #filledBox.
8525a35121d2 changeHLS fixed dfor depth24-images;
Claus Gittinger <cg@exept.de>
parents: 2824
diff changeset
  1899
    choosenBox isNil ifTrue:[ ^ self ].
8525a35121d2 changeHLS fixed dfor depth24-images;
Claus Gittinger <cg@exept.de>
parents: 2824
diff changeset
  1900
8525a35121d2 changeHLS fixed dfor depth24-images;
Claus Gittinger <cg@exept.de>
parents: 2824
diff changeset
  1901
    imageBox := choosenBox origin//magnification extent: (choosenBox extent//magnification).
1858
54138b1b3efd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1855
diff changeset
  1902
54138b1b3efd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1855
diff changeset
  1903
    (self performSpecialOperationOn:imageBox withColor:self selectedColor) ifFalse:[
54138b1b3efd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1855
diff changeset
  1904
        ^ self
54138b1b3efd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1855
diff changeset
  1905
    ].
54138b1b3efd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1855
diff changeset
  1906
54138b1b3efd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1855
diff changeset
  1907
    image restored.
1861
ba1f1a884ebc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1859
diff changeset
  1908
    self invalidate. "/ : (choosedBox expandedBy: 1).
ba1f1a884ebc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1859
diff changeset
  1909
ba1f1a884ebc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1859
diff changeset
  1910
    "/ self redraw: (choosedBox expandedBy: 1).
1858
54138b1b3efd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1855
diff changeset
  1911
54138b1b3efd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1855
diff changeset
  1912
"/        "/ cg: what a kludge - please change to use a valueHolder,
54138b1b3efd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1855
diff changeset
  1913
"/        "/ which gets the information ...
54138b1b3efd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1855
diff changeset
  1914
"/        masterApplication imagePreView redraw: (imageBox expandedBy: 1).
54138b1b3efd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1855
diff changeset
  1915
54138b1b3efd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1855
diff changeset
  1916
        "/ cg: still a kludge - but less ugly
54138b1b3efd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1855
diff changeset
  1917
    self changed:#subImageIn with:(imageBox expandedBy: 1).
54138b1b3efd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1855
diff changeset
  1918
2590
b811d560e00a modified flag after edit operations
Claus Gittinger <cg@exept.de>
parents: 2589
diff changeset
  1919
    self setModified.
1858
54138b1b3efd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1855
diff changeset
  1920
!
54138b1b3efd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1855
diff changeset
  1921
3476
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  1922
sprayAt: aPoint
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  1923
    "start spraying with the currently selected color"
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  1924
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  1925
    |clr|
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  1926
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  1927
    (clr := self selectedColor) notNil ifTrue:[
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  1928
        sprayPosition := aPoint.
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  1929
        self startSpray.
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  1930
    ].
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  1931
!
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  1932
3277
eec79393828e text:at:
Claus Gittinger <cg@exept.de>
parents: 3267
diff changeset
  1933
text:aString at:aPoint
eec79393828e text:at:
Claus Gittinger <cg@exept.de>
parents: 3267
diff changeset
  1934
    "draw a character"
eec79393828e text:at:
Claus Gittinger <cg@exept.de>
parents: 3267
diff changeset
  1935
eec79393828e text:at:
Claus Gittinger <cg@exept.de>
parents: 3267
diff changeset
  1936
    |tempForm|
eec79393828e text:at:
Claus Gittinger <cg@exept.de>
parents: 3267
diff changeset
  1937
4999
e0111330133e device access
Claus Gittinger <cg@exept.de>
parents: 4967
diff changeset
  1938
    tempForm := Form extent:(image extent) depth:1 onDevice:device.
3277
eec79393828e text:at:
Claus Gittinger <cg@exept.de>
parents: 3267
diff changeset
  1939
    tempForm clear.
eec79393828e text:at:
Claus Gittinger <cg@exept.de>
parents: 3267
diff changeset
  1940
    tempForm paint:(Color colorId:1).
eec79393828e text:at:
Claus Gittinger <cg@exept.de>
parents: 3267
diff changeset
  1941
    tempForm displayString:aString at:aPoint.
eec79393828e text:at:
Claus Gittinger <cg@exept.de>
parents: 3267
diff changeset
  1942
    0 to:image extent x - 1 do:[:x |
eec79393828e text:at:
Claus Gittinger <cg@exept.de>
parents: 3267
diff changeset
  1943
        0 to:image extent y - 1 do:[:y |
eec79393828e text:at:
Claus Gittinger <cg@exept.de>
parents: 3267
diff changeset
  1944
            (tempForm valueAt:(x@y)) == 1 ifTrue:[
4111
Claus Gittinger <cg@exept.de>
parents: 4041
diff changeset
  1945
                self pointAt:(x@y) width:1
3277
eec79393828e text:at:
Claus Gittinger <cg@exept.de>
parents: 3267
diff changeset
  1946
            ].
eec79393828e text:at:
Claus Gittinger <cg@exept.de>
parents: 3267
diff changeset
  1947
        ]
eec79393828e text:at:
Claus Gittinger <cg@exept.de>
parents: 3267
diff changeset
  1948
    ].
eec79393828e text:at:
Claus Gittinger <cg@exept.de>
parents: 3267
diff changeset
  1949
4111
Claus Gittinger <cg@exept.de>
parents: 4041
diff changeset
  1950
    "Modified: / 15-02-2012 / 22:47:44 / cg"
3277
eec79393828e text:at:
Claus Gittinger <cg@exept.de>
parents: 3267
diff changeset
  1951
!
eec79393828e text:at:
Claus Gittinger <cg@exept.de>
parents: 3267
diff changeset
  1952
636
d53428252193 revised version
tz
parents: 633
diff changeset
  1953
undo
1693
5f8be1b4f856 de-uglified
Claus Gittinger <cg@exept.de>
parents: 1510
diff changeset
  1954
    undoImages notEmpty ifTrue:[           
1374
44f511c341c0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1373
diff changeset
  1955
        windowGroup withExecuteCursorDo:[
4967
d7192072dceb #FEATURE
Claus Gittinger <cg@exept.de>
parents: 4965
diff changeset
  1956
            |oldImage newImage|
d7192072dceb #FEATURE
Claus Gittinger <cg@exept.de>
parents: 4965
diff changeset
  1957
            
d7192072dceb #FEATURE
Claus Gittinger <cg@exept.de>
parents: 4965
diff changeset
  1958
            oldImage := self image.
d7192072dceb #FEATURE
Claus Gittinger <cg@exept.de>
parents: 4965
diff changeset
  1959
            newImage := undoImages removeLast.
2590
b811d560e00a modified flag after edit operations
Claus Gittinger <cg@exept.de>
parents: 2589
diff changeset
  1960
            self clearModified.
4967
d7192072dceb #FEATURE
Claus Gittinger <cg@exept.de>
parents: 4965
diff changeset
  1961
            self image:newImage scroll:(newImage extent ~= oldImage extent) "false".
3610
11e215de80a0 color selection when undoing
Claus Gittinger <cg@exept.de>
parents: 3564
diff changeset
  1962
            "/ self changed:#image.
1374
44f511c341c0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1373
diff changeset
  1963
        ]
636
d53428252193 revised version
tz
parents: 633
diff changeset
  1964
    ]
1038
6c0bb03e88a1 no need to invalidate after assign of new image.
Claus Gittinger <cg@exept.de>
parents: 1037
diff changeset
  1965
1693
5f8be1b4f856 de-uglified
Claus Gittinger <cg@exept.de>
parents: 1510
diff changeset
  1966
    "Modified: / 10.2.2000 / 23:21:24 / cg"
627
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
  1967
! !
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
  1968
2839
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  1969
!ImageEditView methodsFor:'image manipulation'!
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  1970
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  1971
brightenImage
4730
bcf8e15b7606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4723
diff changeset
  1972
    self newImageWithUndo: (image copy lightened).
2839
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  1973
!
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  1974
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  1975
darkenImage
4730
bcf8e15b7606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4723
diff changeset
  1976
    self newImageWithUndo: (image copy darkened).
2839
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  1977
!
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  1978
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  1979
flipHorizontal
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  1980
4730
bcf8e15b7606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4723
diff changeset
  1981
    self newImageWithUndo: image copy flipHorizontal.
2839
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  1982
!
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  1983
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  1984
flipVertical
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  1985
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  1986
    self makeUndo.
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  1987
    self image: image copy flipVertical.
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  1988
    self setModified.
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  1989
!
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  1990
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  1991
makeBorderedImageX:newX y:newY width:newWidth height:newHeight
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  1992
    |newImage oldWidth oldHeight|
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  1993
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  1994
    oldWidth := image width.
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  1995
    oldHeight := image height.
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  1996
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  1997
    newImage := image class width:newWidth height:newHeight depth:image depth.
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  1998
    newImage photometric:image photometric.
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  1999
    newImage colorMap:image colorMap copy.
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2000
    newImage bits:(ByteArray new:(newImage bytesPerRow * newHeight)).
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2001
2842
fe13fb01edd3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2841
diff changeset
  2002
    image mask notNil ifTrue:[
2839
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2003
        |newMaskImage|
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2004
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2005
        newMaskImage := Depth1Image width:newWidth height:newHeight.
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2006
        newMaskImage photometric: image mask photometric.
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2007
        newMaskImage colorMap: image mask colorMap copy.
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2008
        newMaskImage bits:(ByteArray new: newMaskImage bytesPerRow * newHeight).
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2009
        newImage mask: newMaskImage
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2010
    ].
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2011
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2012
    newImage copyFrom:image x:0 y:0 toX:newX y:newY width:oldWidth height:oldHeight.
4730
bcf8e15b7606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4723
diff changeset
  2013
    self newImageWithUndo:newImage.
2839
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2014
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2015
    "Created: / 7.9.1998 / 13:00:16 / cg"
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2016
    "Modified: / 7.9.1998 / 14:15:32 / cg"
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2017
!
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2018
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2019
makeBrighter
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2020
    ^ self makeNewColorMapByMapping:[:clr | clr lightened].
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2021
!
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2022
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2023
makeDarker
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2024
    ^ self makeNewColorMapByMapping:[:clr | clr darkened].
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2025
!
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2026
2841
0f0750749f34 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2839
diff changeset
  2027
makeGrayScaleImage
4730
bcf8e15b7606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4723
diff changeset
  2028
    ^ self makeNewColorMapByMapping:
bcf8e15b7606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4723
diff changeset
  2029
        [:clr | Color brightness:(clr brightness)].
2839
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2030
!
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2031
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2032
makeInverse
4730
bcf8e15b7606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4723
diff changeset
  2033
    ^ self makeNewColorMapByMapping:
bcf8e15b7606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4723
diff changeset
  2034
        [:clr | 
bcf8e15b7606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4723
diff changeset
  2035
            Color red:(100-clr red) green:(100-clr green) blue:(100-clr blue)
bcf8e15b7606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4723
diff changeset
  2036
        ].
2839
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2037
!
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2038
3971
Claus Gittinger <cg@exept.de>
parents: 3931
diff changeset
  2039
makeSlightlyBrighter
4730
bcf8e15b7606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4723
diff changeset
  2040
    ^ self makeNewColorMapByMapping:
bcf8e15b7606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4723
diff changeset
  2041
        [:clr | 
bcf8e15b7606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4723
diff changeset
  2042
            clr brightness > Color lightGray brightness
5163
955f893d03f2 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 5093
diff changeset
  2043
                ifTrue:[ clr blendWith:self whiteColor ] 
4730
bcf8e15b7606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4723
diff changeset
  2044
                ifFalse:[ clr blendWith:Color lightGray ]
bcf8e15b7606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4723
diff changeset
  2045
        ].
3971
Claus Gittinger <cg@exept.de>
parents: 3931
diff changeset
  2046
Claus Gittinger <cg@exept.de>
parents: 3931
diff changeset
  2047
    "Created: / 24-11-2010 / 11:08:18 / cg"
Claus Gittinger <cg@exept.de>
parents: 3931
diff changeset
  2048
!
Claus Gittinger <cg@exept.de>
parents: 3931
diff changeset
  2049
Claus Gittinger <cg@exept.de>
parents: 3931
diff changeset
  2050
makeSlightlyDarker
4730
bcf8e15b7606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4723
diff changeset
  2051
    ^ self makeNewColorMapByMapping:
bcf8e15b7606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4723
diff changeset
  2052
        [:clr | 
bcf8e15b7606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4723
diff changeset
  2053
            clr brightness < Color darkGray brightness
bcf8e15b7606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4723
diff changeset
  2054
                ifTrue:[ clr blendWith:Color black ] 
bcf8e15b7606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4723
diff changeset
  2055
                ifFalse:[ clr blendWith:Color darkGray ]
bcf8e15b7606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4723
diff changeset
  2056
        ].
3971
Claus Gittinger <cg@exept.de>
parents: 3931
diff changeset
  2057
Claus Gittinger <cg@exept.de>
parents: 3931
diff changeset
  2058
    "Created: / 24-11-2010 / 11:08:08 / cg"
Claus Gittinger <cg@exept.de>
parents: 3931
diff changeset
  2059
!
Claus Gittinger <cg@exept.de>
parents: 3931
diff changeset
  2060
2839
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2061
negativeImage
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2062
4730
bcf8e15b7606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4723
diff changeset
  2063
    self newImageWithUndo: (image copy bits:(image bits invert)).
bcf8e15b7606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4723
diff changeset
  2064
!
bcf8e15b7606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4723
diff changeset
  2065
bcf8e15b7606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4723
diff changeset
  2066
newImageWithUndo:newImage
bcf8e15b7606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4723
diff changeset
  2067
2839
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2068
    self makeUndo.
4730
bcf8e15b7606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4723
diff changeset
  2069
    self image: newImage.
2839
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2070
    self setModified.
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2071
!
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2072
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2073
reduceColorResolutionBy:numBits
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2074
    |newImage|
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2075
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2076
    numBits > 7 ifTrue:[
5061
f8346c455a4b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5029
diff changeset
  2077
        self warn:(resources string:'Max. number of bits to strip off is 7.').
2839
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2078
        ^ false
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2079
    ].
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2080
    newImage := image withColorResolutionReducedBy:numBits.
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2081
    newImage isNil ifTrue:[
5061
f8346c455a4b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5029
diff changeset
  2082
        self warn:(resources string:'Could not reduce color resolution.').
2839
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2083
        ^ false.
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2084
    ].
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2085
4730
bcf8e15b7606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4723
diff changeset
  2086
    self newImageWithUndo:newImage.
2839
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2087
    ^ true
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2088
!
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2089
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2090
resizeImageTo:newSize
4730
bcf8e15b7606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4723
diff changeset
  2091
    self newImageWithUndo: (self resizedImage:image to:newSize).
bcf8e15b7606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4723
diff changeset
  2092
!
bcf8e15b7606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4723
diff changeset
  2093
bcf8e15b7606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4723
diff changeset
  2094
resizedImage:image to:newSize
bcf8e15b7606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4723
diff changeset
  2095
    "helper for image resize and mask resize.
bcf8e15b7606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4723
diff changeset
  2096
     return a resized version of image"
2839
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2097
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2098
    |newImage newMaskImage|
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2099
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2100
    newImage := image class width: newSize x height: newSize y depth: image depth.
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2101
    newImage photometric:image photometric.
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2102
    newImage colorMap:image colorMap copy.
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2103
    newImage bits: (ByteArray new: newImage bytesPerRow * newSize y).
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2104
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2105
    image mask notNil ifTrue:[
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2106
        newMaskImage := Depth1Image width: newSize x height: newSize y.
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2107
        newMaskImage photometric: image mask photometric.
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2108
        newMaskImage colorMap: image mask colorMap copy.
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2109
        newMaskImage bits:(ByteArray new: newMaskImage bytesPerRow * newSize y).
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2110
        newImage mask: newMaskImage
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2111
    ].
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2112
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2113
    newImage copyFrom:image x:0 y:0 toX:0 y:0 width: (image width min:newSize x) height: (image height min:newSize y).
4730
bcf8e15b7606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4723
diff changeset
  2114
    ^ newImage.
2839
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2115
!
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2116
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2117
rotateImageBy:rotation
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2118
    "rotate by (degrees)"
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2119
4212
4b84444912b5 exception access
Claus Gittinger <cg@exept.de>
parents: 4203
diff changeset
  2120
    Error handle:[:ex|
3435
400079196849 3D perspecitve (first attempt)
Claus Gittinger <cg@exept.de>
parents: 3319
diff changeset
  2121
        self warn: 'Image rotation failed!!\' withCRs, 'Increasing the image depth could help.'
2839
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2122
    ] do:[   
4730
bcf8e15b7606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4723
diff changeset
  2123
        self newImageWithUndo: (image hardRotated: rotation).
2839
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2124
    ]
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2125
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2126
    "Modified: / 29.7.1998 / 18:21:14 / cg"
3435
400079196849 3D perspecitve (first attempt)
Claus Gittinger <cg@exept.de>
parents: 3319
diff changeset
  2127
!
400079196849 3D perspecitve (first attempt)
Claus Gittinger <cg@exept.de>
parents: 3319
diff changeset
  2128
400079196849 3D perspecitve (first attempt)
Claus Gittinger <cg@exept.de>
parents: 3319
diff changeset
  2129
threeDProjection:dx1 and:dx2
400079196849 3D perspecitve (first attempt)
Claus Gittinger <cg@exept.de>
parents: 3319
diff changeset
  2130
    "3D projection"
400079196849 3D perspecitve (first attempt)
Claus Gittinger <cg@exept.de>
parents: 3319
diff changeset
  2131
4212
4b84444912b5 exception access
Claus Gittinger <cg@exept.de>
parents: 4203
diff changeset
  2132
    Error handle:[:ex|
3435
400079196849 3D perspecitve (first attempt)
Claus Gittinger <cg@exept.de>
parents: 3319
diff changeset
  2133
        self warn: 'Image projection failed!!\' withCRs, 'Increasing the image depth could help.'
400079196849 3D perspecitve (first attempt)
Claus Gittinger <cg@exept.de>
parents: 3319
diff changeset
  2134
    ] do:[   
4730
bcf8e15b7606 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4723
diff changeset
  2135
        self newImageWithUndo:(image threeDProjected:dx1 and:dx2)
3435
400079196849 3D perspecitve (first attempt)
Claus Gittinger <cg@exept.de>
parents: 3319
diff changeset
  2136
    ]
400079196849 3D perspecitve (first attempt)
Claus Gittinger <cg@exept.de>
parents: 3319
diff changeset
  2137
400079196849 3D perspecitve (first attempt)
Claus Gittinger <cg@exept.de>
parents: 3319
diff changeset
  2138
    "Modified: / 29.7.1998 / 18:21:14 / cg"
2839
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2139
! !
312c7d2616bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  2140
2511
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2141
!ImageEditView methodsFor:'image-dragging & info'!
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2142
2838
8525a35121d2 changeHLS fixed dfor depth24-images;
Claus Gittinger <cg@exept.de>
parents: 2824
diff changeset
  2143
dragRectangleStartingAt:aPointIn emphasis:emphasis
2511
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2144
    "drag a rectangle (filled or unfilled)"
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2145
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2146
    |currentPoint currentExtent firstPoint lastCurrentPoint gridCorrection 
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2147
     mp lastMp p whichQuarter scrollX scrollY aPoint|
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2148
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2149
    aPoint := aPointIn.
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2150
    firstPoint := currentPoint := lastCurrentPoint :=  aPoint//magnification*magnification.
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2151
    magnification >= GridMagnificationLimit ifFalse: [gridCorrection := 0] ifTrue: [gridCorrection := 1].
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2152
4506
39867e0ef24f class: ImageEditView
Stefan Vogel <sv@exept.de>
parents: 4351
diff changeset
  2153
    [self sensor anyButtonPressed] whileTrue: [                                                  
2838
8525a35121d2 changeHLS fixed dfor depth24-images;
Claus Gittinger <cg@exept.de>
parents: 2824
diff changeset
  2154
        (self sensor hasKeyEventFor:nil) ifTrue:[
8525a35121d2 changeHLS fixed dfor depth24-images;
Claus Gittinger <cg@exept.de>
parents: 2824
diff changeset
  2155
            self invalidate.
8525a35121d2 changeHLS fixed dfor depth24-images;
Claus Gittinger <cg@exept.de>
parents: 2824
diff changeset
  2156
            ^ nil.
8525a35121d2 changeHLS fixed dfor depth24-images;
Claus Gittinger <cg@exept.de>
parents: 2824
diff changeset
  2157
        ].
8525a35121d2 changeHLS fixed dfor depth24-images;
Claus Gittinger <cg@exept.de>
parents: 2824
diff changeset
  2158
2511
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2159
        mp := self sensor mousePoint.
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2160
        mp = lastMp ifTrue:[
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2161
            Delay waitForSeconds:0.05
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2162
        ] ifFalse:[
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2163
            lastMp := mp.
4999
e0111330133e device access
Claus Gittinger <cg@exept.de>
parents: 4967
diff changeset
  2164
            mp := device translatePoint:mp fromView:nil toView:self.
2511
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2165
            "/ mp is a device coordinate here ...
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2166
            scrollX := 0.
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2167
            mp x > width ifTrue:[
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2168
                scrollX := mp x - width.
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2169
            ] ifFalse:[
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2170
                mp x < 0 ifTrue:[
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2171
                    scrollX := mp x.
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2172
                ]
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2173
            ].
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2174
            scrollY := 0.
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2175
            mp y > height ifTrue:[
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2176
                scrollY := mp y - height.
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2177
            ] ifFalse:[
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2178
                mp y < 0 ifTrue:[
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2179
                    scrollY := mp y.
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2180
                ]
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2181
            ].
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2182
            (scrollX + scrollY) ~~ 0 ifTrue:[
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2183
                self scrollTo:(self viewOrigin + (scrollX @ scrollY)).
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2184
                lastMp := nil.
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2185
            ].
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2186
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2187
            mp := mp + self viewOrigin.
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2188
            "/ mp is now a logical coordinate.
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2189
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2190
            currentPoint := (0@0) max: (image extent * magnification min: (p := mp)).
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2191
            currentPoint := currentPoint//magnification*magnification.
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2192
            currentExtent := (firstPoint - currentPoint) abs.
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2193
            whichQuarter := (firstPoint x - currentPoint x) > 0 
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2194
                 ifTrue:  [(firstPoint y - currentPoint y) > 0 ifTrue: ["4"1@1] ifFalse: ["3"1@0]]
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2195
                 ifFalse: [(firstPoint y - currentPoint y) > 0 ifTrue: ["1"0@1] ifFalse: ["2"0@0]].
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2196
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2197
            self drawCursorAt: p withLabel: 
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2198
                ((firstPoint//magnification - whichQuarter + 1) printString, 
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2199
                ' to: ', 
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2200
                (currentPoint//magnification + whichQuarter) printString),
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2201
                ' (extent: ',
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2202
                (currentExtent//magnification) printString, ')'.
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2203
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2204
            currentPoint ~= lastCurrentPoint ifTrue:[   
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2205
                emphasis = #inverseFilledBox ifTrue: [
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2206
                    self redraw: ((firstPoint min: lastCurrentPoint) - 1 extent: (firstPoint - lastCurrentPoint) abs + 2).
3696
a039bbaa6e83 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3643
diff changeset
  2207
                    self xoring: [ 
a039bbaa6e83 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3643
diff changeset
  2208
                        self fillRectangle: ((firstPoint min: currentPoint) + margin extent: currentExtent - gridCorrection) 
a039bbaa6e83 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3643
diff changeset
  2209
                    ]
2511
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2210
                ].
3476
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  2211
                emphasis = #box ifTrue:[
2511
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2212
                    |origin extent lineWidthY lineWidthX|
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2213
                    origin := (firstPoint min: lastCurrentPoint) - 1.
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2214
                    extent := (firstPoint - lastCurrentPoint) abs + 2.
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2215
                    lineWidthY := extent y min: (magnification y + 2).
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2216
                    lineWidthX := extent x min: (magnification x + 2).
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2217
                    self redraw: (origin extent: (extent x@lineWidthY)).
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2218
                    self redraw: ((origin x@(origin y + extent y - lineWidthY)) extent: (extent x@lineWidthY)).
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2219
                    self redraw: ((origin x@(origin y + lineWidthY)) extent: (lineWidthX@(0 max: (extent y - (lineWidthY * 2))))).
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2220
                    self redraw: (((origin x + extent x - lineWidthX)@(origin y + lineWidthY)) extent: (lineWidthX@(extent y - (lineWidthY * 2)))).
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2221
                    self selectedColor ~= Color noColor
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2222
                        ifTrue: [self paint: self selectedColor]
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2223
                        ifFalse: [self paint: self viewBackground]. 
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2224
                    origin := (firstPoint min: currentPoint) + margin.
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2225
                    extent := currentExtent - gridCorrection.
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2226
                    lineWidthY := extent y min: magnification y.
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2227
                    lineWidthX := extent x min: magnification x.
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2228
                    (lineWidthY > 0 and: [lineWidthX > 0])
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2229
                    ifTrue:[
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2230
                        self fillRectangle: (origin extent: (extent x@lineWidthY)).
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2231
                        self fillRectangle: ((origin x@(origin y + extent y - lineWidthY)) extent: (extent x@lineWidthY)).
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2232
                        self fillRectangle: ((origin x@(origin y + lineWidthY)) extent: (lineWidthX@(0 max: (extent y - (lineWidthY * 2))))).
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2233
                        self fillRectangle: (((origin x + extent x - lineWidthX)@(origin y + lineWidthY)) extent: (lineWidthX@(extent y - (lineWidthY * 2)))).
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2234
                    ]
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2235
                ].
3476
4b4dce2bd87b +spray and circle
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
  2236
                emphasis = #filledBox ifTrue:[
2511
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2237
                    self redraw: ((firstPoint min: lastCurrentPoint) - 1 extent: (firstPoint - lastCurrentPoint) abs + 2).
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2238
                    self selectedColor ~= Color noColor
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2239
                        ifTrue: [self paint: self selectedColor]
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2240
                        ifFalse: [self paint: self viewBackground].
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2241
                    self fillRectangle: ((firstPoint min: currentPoint) + margin extent: currentExtent - gridCorrection).
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2242
                ].
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2243
            ]. 
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2244
            lastCurrentPoint := currentPoint.
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2245
        ].                  
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2246
    ].                  
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2247
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2248
    ^((0@0) max: (firstPoint min: currentPoint)) extent: (firstPoint - currentPoint) abs
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2249
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2250
    "Created: / 21.8.1998 / 20:17:07 / cg"
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2251
    "Modified: / 10.10.2001 / 14:13:08 / cg"
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2252
!
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2253
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2254
drawCursorAt:aPoint
3729
6f6cfc8bb8cf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3706
diff changeset
  2255
    |imgPoint|
2511
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2256
4041
2d635ff57406 class definition
Claus Gittinger <cg@exept.de>
parents: 4032
diff changeset
  2257
    readOnly ifTrue:[^ self].
2511
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2258
    image isNil ifTrue: [
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2259
        self updateImageInfo: self imageInfoString. 
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2260
        self cursor:Cursor stop.
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2261
        ^ self
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2262
    ].
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2263
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2264
    imgPoint := aPoint // magnification.
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2265
    ((imgPoint x between:0 and:(image width-1)) 
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2266
    and:[imgPoint y between:0 and: (image height-1)])
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2267
    ifFalse:[
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2268
        self updateImageInfo: self imageInfoString. 
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2269
        self cursor:Cursor stop.
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2270
    ] ifTrue: [
3729
6f6cfc8bb8cf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3706
diff changeset
  2271
        self updateImageInfoFor:imgPoint.
2511
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2272
        self cursor:Cursor crossHair
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2273
    ].
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2274
4041
2d635ff57406 class definition
Claus Gittinger <cg@exept.de>
parents: 4032
diff changeset
  2275
    "Modified: / 03-05-2011 / 12:27:52 / cg"
2511
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2276
!
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2277
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2278
drawCursorAt: aPoint withLabel: aLabel
4041
2d635ff57406 class definition
Claus Gittinger <cg@exept.de>
parents: 4032
diff changeset
  2279
    readOnly ifTrue:[^ self].
2511
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2280
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2281
    ((0@0 extent: image extent * magnification) containsPoint: aPoint)
4041
2d635ff57406 class definition
Claus Gittinger <cg@exept.de>
parents: 4032
diff changeset
  2282
         ifTrue: [self cursor:Cursor crossHair]
2d635ff57406 class definition
Claus Gittinger <cg@exept.de>
parents: 4032
diff changeset
  2283
         ifFalse:[self cursor:Cursor stop].
2511
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2284
     self updateImageInfo: aLabel.
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2285
4041
2d635ff57406 class definition
Claus Gittinger <cg@exept.de>
parents: 4032
diff changeset
  2286
    "Modified: / 03-05-2011 / 12:28:15 / cg"
2511
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2287
!
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2288
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2289
updateActivity: something
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2290
    |msg|
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2291
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2292
    msg := something printString.
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2293
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2294
    activityInfoHolder notNil ifTrue:[
3847
c09d45071125 comment/format in: #updateImageInfo:
Claus Gittinger <cg@exept.de>
parents: 3840
diff changeset
  2295
        activityInfoHolder value:msg.
2511
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2296
    ].
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2297
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2298
    "Modified: / 29.7.1998 / 18:41:47 / cg"
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2299
!
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2300
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2301
updateImageInfo: something
3847
c09d45071125 comment/format in: #updateImageInfo:
Claus Gittinger <cg@exept.de>
parents: 3840
diff changeset
  2302
    |msg|
2511
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2303
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2304
    msg := something printString.
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2305
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2306
    imageInfoHolder notNil ifTrue:[
3847
c09d45071125 comment/format in: #updateImageInfo:
Claus Gittinger <cg@exept.de>
parents: 3840
diff changeset
  2307
        msg ~= imageInfoHolder value ifTrue:[
c09d45071125 comment/format in: #updateImageInfo:
Claus Gittinger <cg@exept.de>
parents: 3840
diff changeset
  2308
            imageInfoHolder value:msg.
c09d45071125 comment/format in: #updateImageInfo:
Claus Gittinger <cg@exept.de>
parents: 3840
diff changeset
  2309
        ].
c09d45071125 comment/format in: #updateImageInfo:
Claus Gittinger <cg@exept.de>
parents: 3840
diff changeset
  2310
        ^ self
2511
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2311
    ].
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2312
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2313
    "Modified: / 29.7.1998 / 19:00:21 / cg"
3729
6f6cfc8bb8cf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3706
diff changeset
  2314
!
6f6cfc8bb8cf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3706
diff changeset
  2315
6f6cfc8bb8cf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3706
diff changeset
  2316
updateImageInfoFor:aPoint
6f6cfc8bb8cf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3706
diff changeset
  2317
    |clr pixel r g b a|
6f6cfc8bb8cf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3706
diff changeset
  2318
6f6cfc8bb8cf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3706
diff changeset
  2319
    clr := image colorAt:aPoint.
6f6cfc8bb8cf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3706
diff changeset
  2320
    pixel := image pixelAt:aPoint.
6f6cfc8bb8cf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3706
diff changeset
  2321
6f6cfc8bb8cf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3706
diff changeset
  2322
    r := clr redByte.
6f6cfc8bb8cf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3706
diff changeset
  2323
    g := clr greenByte.
6f6cfc8bb8cf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3706
diff changeset
  2324
    b := clr blueByte.
6f6cfc8bb8cf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3706
diff changeset
  2325
    a := clr alphaByte.
6f6cfc8bb8cf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3706
diff changeset
  2326
6f6cfc8bb8cf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3706
diff changeset
  2327
    self updateImageInfo:
6f6cfc8bb8cf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3706
diff changeset
  2328
        (String streamContents:[:s |
6f6cfc8bb8cf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3706
diff changeset
  2329
            s print:aPoint.
6f6cfc8bb8cf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3706
diff changeset
  2330
            s print:' (r:'; print:r.
6f6cfc8bb8cf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3706
diff changeset
  2331
            s print:' g:'; print:g.
6f6cfc8bb8cf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3706
diff changeset
  2332
            s print:' b:'; print:b.
6f6cfc8bb8cf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3706
diff changeset
  2333
            image depth > 24 ifTrue:[
6f6cfc8bb8cf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3706
diff changeset
  2334
                s print:' a:'; print:a.
6f6cfc8bb8cf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3706
diff changeset
  2335
            ].
6f6cfc8bb8cf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3706
diff changeset
  2336
            s print:' #'; print:(r hexPrintString:2); print:(g hexPrintString:2); print:(b hexPrintString:2).
6f6cfc8bb8cf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3706
diff changeset
  2337
            pixel <= 16rFFFF ifTrue:[
6f6cfc8bb8cf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3706
diff changeset
  2338
                s print:' pixel:'; print:pixel.
6f6cfc8bb8cf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3706
diff changeset
  2339
            ].
6f6cfc8bb8cf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3706
diff changeset
  2340
            s print:')'.
6f6cfc8bb8cf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3706
diff changeset
  2341
        ])
2511
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2342
! !
10537dc4e961 category change
Claus Gittinger <cg@exept.de>
parents: 2508
diff changeset
  2343
2818
d255fb7d54fc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  2344
!ImageEditView methodsFor:'initialization & release'!
1327
ab99aad206dc category change
Claus Gittinger <cg@exept.de>
parents: 1277
diff changeset
  2345
ab99aad206dc category change
Claus Gittinger <cg@exept.de>
parents: 1277
diff changeset
  2346
destroy
2440
a9abeb0e3562 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2415
diff changeset
  2347
    ClipboardMagnified := Clipboard := nil.
1327
ab99aad206dc category change
Claus Gittinger <cg@exept.de>
parents: 1277
diff changeset
  2348
    LastMagnification      := magnification.
ab99aad206dc category change
Claus Gittinger <cg@exept.de>
parents: 1277
diff changeset
  2349
ab99aad206dc category change
Claus Gittinger <cg@exept.de>
parents: 1277
diff changeset
  2350
    super destroy
ab99aad206dc category change
Claus Gittinger <cg@exept.de>
parents: 1277
diff changeset
  2351
!
1
c6ca7bfedf31 Initial revision
claus
parents:
diff changeset
  2352
161
5b6e284959a4 examples
Claus Gittinger <cg@exept.de>
parents: 86
diff changeset
  2353
initialize
5b6e284959a4 examples
Claus Gittinger <cg@exept.de>
parents: 86
diff changeset
  2354
    super initialize.
627
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
  2355
4041
2d635ff57406 class definition
Claus Gittinger <cg@exept.de>
parents: 4032
diff changeset
  2356
    readOnly := false.
2d635ff57406 class definition
Claus Gittinger <cg@exept.de>
parents: 4032
diff changeset
  2357
686
33833bcbb5cd some cleans
tz
parents: 678
diff changeset
  2358
    self enableMotionEvents.
995
cd84d6f8c449 several undos
tz
parents: 994
diff changeset
  2359
1374
44f511c341c0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1373
diff changeset
  2360
    undoImages        := List new: MaxUndos.
2915
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2361
1706
a954781f4440 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1693
diff changeset
  2362
    magnification     := LastMagnification ? (8@8).
2747
818a513a64c3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2690
diff changeset
  2363
    modifiedHolder    := false asValue.
627
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
  2364
    mouseKeyColorMode := 1.
2908
a759fa87d598 some code cleanup (resourceClass was actually its name)
Claus Gittinger <cg@exept.de>
parents: 2889
diff changeset
  2365
    resourceClass     := resourceSelector := nil.
2009
4f556ff9fec5 pick with SHIFT-click in the mag-view
Claus Gittinger <cg@exept.de>
parents: 2007
diff changeset
  2366
    drawingColorHolders := Array with:(nil asValue) with:(nil asValue).   "/ left/right mouse colors
4f556ff9fec5 pick with SHIFT-click in the mag-view
Claus Gittinger <cg@exept.de>
parents: 2007
diff changeset
  2367
    drawingPixelHolders := Array with:(nil asValue) with:(nil asValue).   "/ left/right mouse colors
4111
Claus Gittinger <cg@exept.de>
parents: 4041
diff changeset
  2368
Claus Gittinger <cg@exept.de>
parents: 4041
diff changeset
  2369
    spraySpot := 8.
Claus Gittinger <cg@exept.de>
parents: 4041
diff changeset
  2370
    penWidth := 1.
Claus Gittinger <cg@exept.de>
parents: 4041
diff changeset
  2371
2889
69423b4e0cee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
  2372
    self editMode:EditModePoint.
4041
2d635ff57406 class definition
Claus Gittinger <cg@exept.de>
parents: 4032
diff changeset
  2373
4111
Claus Gittinger <cg@exept.de>
parents: 4041
diff changeset
  2374
    "Modified: / 15-02-2012 / 22:39:22 / cg"
1
c6ca7bfedf31 Initial revision
claus
parents:
diff changeset
  2375
! !
c6ca7bfedf31 Initial revision
claus
parents:
diff changeset
  2376
2915
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2377
!ImageEditView methodsFor:'loading & saving'!
1
c6ca7bfedf31 Initial revision
claus
parents:
diff changeset
  2378
1994
d2d9228d38ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1992
diff changeset
  2379
askForFileNameToSave:msg
d2d9228d38ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1992
diff changeset
  2380
    "ask for a fileName"
d2d9228d38ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1992
diff changeset
  2381
d2d9228d38ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1992
diff changeset
  2382
    |lastFn fn filters|
d2d9228d38ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1992
diff changeset
  2383
d2d9228d38ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1992
diff changeset
  2384
    filters := FileSelectionBrowser saveImageFileNameFilters.
d2d9228d38ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1992
diff changeset
  2385
    lastFn := self image fileName.
d2d9228d38ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1992
diff changeset
  2386
    lastFn isNil ifTrue:[
d2d9228d38ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1992
diff changeset
  2387
        fn := FileSelectionBrowser
d2d9228d38ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1992
diff changeset
  2388
                request: msg
d2d9228d38ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1992
diff changeset
  2389
                inDirectory: LastSaveDirectory
d2d9228d38ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1992
diff changeset
  2390
                withFileFilters: filters
d2d9228d38ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1992
diff changeset
  2391
    ] ifFalse:[
d2d9228d38ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1992
diff changeset
  2392
        fn := FileSelectionBrowser
d2d9228d38ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1992
diff changeset
  2393
                request: msg
d2d9228d38ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1992
diff changeset
  2394
                fileName: lastFn
d2d9228d38ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1992
diff changeset
  2395
                withFileFilters: filters
d2d9228d38ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1992
diff changeset
  2396
    ].
d2d9228d38ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1992
diff changeset
  2397
d2d9228d38ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1992
diff changeset
  2398
    ^ fn
d2d9228d38ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1992
diff changeset
  2399
!
d2d9228d38ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1992
diff changeset
  2400
724
d6f4b89940ed undo disabling
tz
parents: 704
diff changeset
  2401
loadFromClass
2915
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2402
    |classAndSelector|
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2403
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2404
    classAndSelector := ResourceSelectionBrowser
1184
58e399d8c312 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
  2405
            request: 'Load Image From Class'
58e399d8c312 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
  2406
            onSuperclass: nil
2915
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2407
            andClass: self resourceClass
1184
58e399d8c312 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
  2408
            andSelector: self resourceSelector
2915
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2409
            withResourceTypes: #(image fileImage programImage).
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2410
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2411
    classAndSelector notNil ifTrue:[
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2412
        self loadFromClass:(classAndSelector methodClass) andSelector:(classAndSelector methodSelector) 
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2413
    ].
161
5b6e284959a4 examples
Claus Gittinger <cg@exept.de>
parents: 86
diff changeset
  2414
!
5b6e284959a4 examples
Claus Gittinger <cg@exept.de>
parents: 86
diff changeset
  2415
2915
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2416
loadFromClass:aClassOrClassName andSelector: aStringOrSymbol
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2417
    "support for names will vanish - obsolete left over from tz"
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2418
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2419
    imageReaderClass := nil.
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2420
    self resourceClass: aClassOrClassName.
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2421
    self resourceSelector: aStringOrSymbol.
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2422
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2423
    resourceClass isBehavior ifFalse:[^ nil].
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2424
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2425
    (resourceClass respondsTo:resourceSelector) ifTrue:[ 
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2426
        image := resourceClass perform:resourceSelector.
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2427
    ].
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2428
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2429
    image isNil ifTrue:[^ nil].
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2430
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2431
    image := image copy.
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2432
    self releaseUndos.
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2433
    self image:image.
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2434
    self clearModified.
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2435
    ^ image
2556
fc4dd338dee5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2555
diff changeset
  2436
!
fc4dd338dee5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2555
diff changeset
  2437
2915
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2438
loadFromFile: aFileName
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2439
    |imageFromFile|
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2440
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2441
    aFileName isNil ifTrue: [^nil].
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2442
5029
5f1d1837cbdf #DOCUMENTATION by mawalch
mawalch
parents: 4999
diff changeset
  2443
    Error handle:[:exception|
5f1d1837cbdf #DOCUMENTATION by mawalch
mawalch
parents: 4999
diff changeset
  2444
        self warn: exception errorString.
4351
858c0249bb5a class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4264
diff changeset
  2445
        ^ nil
2915
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2446
    ] do:[ 
4351
858c0249bb5a class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4264
diff changeset
  2447
        (imageFromFile := Image fromFile: aFileName) isNil ifTrue:[
858c0249bb5a class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4264
diff changeset
  2448
            imageFromFile := JPEGReader fromFile:aFileName
858c0249bb5a class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4264
diff changeset
  2449
        ].
858c0249bb5a class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4264
diff changeset
  2450
        imageFromFile notNil ifTrue:[
2915
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2451
            self releaseUndos.
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2452
            self image: imageFromFile. 
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2453
            self clearModified.
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2454
"/            imageReaderClass := ImageReader allSubclasses
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2455
"/                detect: [:cls| cls isValidImageFile: aFileName asFilename pathName]
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2456
"/                ifNone: [self error: 'Unknown image file format!!']
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2457
        ] ifFalse:[
4965
0f28ee36ec03 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 4853
diff changeset
  2458
            aFileName asFilename isReadable ifTrue:[
0f28ee36ec03 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 4853
diff changeset
  2459
                self error: 'Not an image file (or unrecognized format)'
0f28ee36ec03 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 4853
diff changeset
  2460
            ] ifFalse:[  
0f28ee36ec03 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 4853
diff changeset
  2461
                self error: 'File does not exist or is unreadable'
0f28ee36ec03 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 4853
diff changeset
  2462
            ]
2915
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2463
        ]
2555
43af374dfd5e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2544
diff changeset
  2464
    ].
2915
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2465
    ^ imageFromFile
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2466
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2467
    "Modified: / 29.7.1998 / 18:09:13 / cg"
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2468
!
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2469
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2470
loadFromMessage:classAndSelector
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2471
    "switch to the class and selector specified by classAndSelector."
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2472
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2473
    ^ self loadFromClass:(classAndSelector methodClass) andSelector:(classAndSelector methodSelector)
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2474
!
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2475
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2476
loadfromClass:aClassOrSymbol andSelector: aStringOrSymbol
3643
b38da5f45af6 Mark obsolete methods
Stefan Vogel <sv@exept.de>
parents: 3610
diff changeset
  2477
    <resource: #obsolete>
2915
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2478
    self obsoleteMethodWarning.
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2479
    ^ self loadFromClass:aClassOrSymbol andSelector: aStringOrSymbol
624
d98fe4700fc2 checkin from browser
tz
parents: 606
diff changeset
  2480
!
d98fe4700fc2 checkin from browser
tz
parents: 606
diff changeset
  2481
d98fe4700fc2 checkin from browser
tz
parents: 606
diff changeset
  2482
save
632
be1ac8ea33a7 checkin from browser
tz
parents: 628
diff changeset
  2483
    self saveImageOrMask: #image.
624
d98fe4700fc2 checkin from browser
tz
parents: 606
diff changeset
  2484
!
d98fe4700fc2 checkin from browser
tz
parents: 606
diff changeset
  2485
2239
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2486
save:image imageOrMask:what
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2487
    "save the image or the mask only (if what == #mask)"
297
d733af1b0ffe better saving functions;
Claus Gittinger <cg@exept.de>
parents: 296
diff changeset
  2488
2239
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2489
    image isNil ifTrue:[
4249
fc26253d9d4b class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4233
diff changeset
  2490
        Dialog warn:(resources string:'No image to save!!').
2239
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2491
        ^ self.
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2492
    ].
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2493
    self save:image imageOrMask:what as:image fileName.
627
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
  2494
!
297
d733af1b0ffe better saving functions;
Claus Gittinger <cg@exept.de>
parents: 296
diff changeset
  2495
2239
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2496
save:image imageOrMask:what as:fileNameArg
1158
9b413954d34d issue a warning, if information (mask) is
Claus Gittinger <cg@exept.de>
parents: 1121
diff changeset
  2497
    "save the image or the mask only (if what == #mask)"
628
7f36d8a7735f popup menu starts image editor
tz
parents: 627
diff changeset
  2498
2240
2e9ad39f11c8 checkin from browser
ca
parents: 2239
diff changeset
  2499
    |fileName fileNameString|
1380
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
  2500
2239
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2501
    fileName := fileNameArg asFilename.
2783
ca5705f5c258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2775
diff changeset
  2502
    LastSaveDirectory := fileName directoryName.
2239
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2503
4203
a257aa6878ac class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4149
diff changeset
  2504
    Error handle:[:ex|
1380
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
  2505
        |msg|
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
  2506
4203
a257aa6878ac class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4149
diff changeset
  2507
        ex creator == Image fileCreationErrorSignal ifTrue:[
1896
0f430b35c451 asText allBold -> allBold
Claus Gittinger <cg@exept.de>
parents: 1888
diff changeset
  2508
            msg := resources string:'Cannot create file: ''%1''' with:fileName asFilename pathName allBold
1380
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
  2509
        ] ifFalse:[
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
  2510
            msg := ex errorString.
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
  2511
        ].
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
  2512
        Dialog warn:msg.
1158
9b413954d34d issue a warning, if information (mask) is
Claus Gittinger <cg@exept.de>
parents: 1121
diff changeset
  2513
    ] do:[   
9b413954d34d issue a warning, if information (mask) is
Claus Gittinger <cg@exept.de>
parents: 1121
diff changeset
  2514
        Image informationLostQuerySignal handle:[:ex|
9b413954d34d issue a warning, if information (mask) is
Claus Gittinger <cg@exept.de>
parents: 1121
diff changeset
  2515
            "/ should make those warnings visible ...
9b413954d34d issue a warning, if information (mask) is
Claus Gittinger <cg@exept.de>
parents: 1121
diff changeset
  2516
            (self confirm:(ex errorString , '\\Save anyway ?') withCRs) ifTrue:[
9b413954d34d issue a warning, if information (mask) is
Claus Gittinger <cg@exept.de>
parents: 1121
diff changeset
  2517
                ex proceed.
9b413954d34d issue a warning, if information (mask) is
Claus Gittinger <cg@exept.de>
parents: 1121
diff changeset
  2518
            ]
9b413954d34d issue a warning, if information (mask) is
Claus Gittinger <cg@exept.de>
parents: 1121
diff changeset
  2519
        ] do:[   
4137
1a5fdfd6cd4f withWriteCursorDo
Claus Gittinger <cg@exept.de>
parents: 4129
diff changeset
  2520
            windowGroup withWriteCursorDo:[
1380
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
  2521
                |suff fn|
1027
5bffbe90b8e2 show a wait-cursor while saving
Claus Gittinger <cg@exept.de>
parents: 1025
diff changeset
  2522
1158
9b413954d34d issue a warning, if information (mask) is
Claus Gittinger <cg@exept.de>
parents: 1121
diff changeset
  2523
                image isNil ifTrue:[
9b413954d34d issue a warning, if information (mask) is
Claus Gittinger <cg@exept.de>
parents: 1121
diff changeset
  2524
                    ^ self error: 'No image to save!!'
9b413954d34d issue a warning, if information (mask) is
Claus Gittinger <cg@exept.de>
parents: 1121
diff changeset
  2525
                ].
632
be1ac8ea33a7 checkin from browser
tz
parents: 628
diff changeset
  2526
1158
9b413954d34d issue a warning, if information (mask) is
Claus Gittinger <cg@exept.de>
parents: 1121
diff changeset
  2527
                what = #mask ifTrue:[   
9b413954d34d issue a warning, if information (mask) is
Claus Gittinger <cg@exept.de>
parents: 1121
diff changeset
  2528
                    image mask isNil ifTrue: [^self error: 'No image mask to save!!'].
9b413954d34d issue a warning, if information (mask) is
Claus Gittinger <cg@exept.de>
parents: 1121
diff changeset
  2529
                ].
9b413954d34d issue a warning, if information (mask) is
Claus Gittinger <cg@exept.de>
parents: 1121
diff changeset
  2530
9b413954d34d issue a warning, if information (mask) is
Claus Gittinger <cg@exept.de>
parents: 1121
diff changeset
  2531
                fileName name size = 0 ifTrue: [^self error: 'No file name detected!!'].
9b413954d34d issue a warning, if information (mask) is
Claus Gittinger <cg@exept.de>
parents: 1121
diff changeset
  2532
                suff := fileName suffix asLowercase.
1373
c949e9f7757c give a warning, if saving in the given file-format is not
Claus Gittinger <cg@exept.de>
parents: 1327
diff changeset
  2533
                imageReaderClass := nil.
c949e9f7757c give a warning, if saving in the given file-format is not
Claus Gittinger <cg@exept.de>
parents: 1327
diff changeset
  2534
                imageReaderClass := MIMETypes imageReaderForSuffix:suff.
1380
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
  2535
1373
c949e9f7757c give a warning, if saving in the given file-format is not
Claus Gittinger <cg@exept.de>
parents: 1327
diff changeset
  2536
                imageReaderClass isNil ifTrue: [
c949e9f7757c give a warning, if saving in the given file-format is not
Claus Gittinger <cg@exept.de>
parents: 1327
diff changeset
  2537
                    imageReaderClass := XPMReader. 
2589
10827ba87692 obsolete method calls cleaned up
Claus Gittinger <cg@exept.de>
parents: 2582
diff changeset
  2538
                    fileNameString := fileName name , '.xpm'.
2240
2e9ad39f11c8 checkin from browser
ca
parents: 2239
diff changeset
  2539
                    fileName := fileNameString asFilename.
2e9ad39f11c8 checkin from browser
ca
parents: 2239
diff changeset
  2540
                    image fileName:fileNameString.
1373
c949e9f7757c give a warning, if saving in the given file-format is not
Claus Gittinger <cg@exept.de>
parents: 1327
diff changeset
  2541
                    Dialog warn:(('Dont know how to write ''.' , suff , '''-files\\Saving in xpm format as ''%1''.') 
2240
2e9ad39f11c8 checkin from browser
ca
parents: 2239
diff changeset
  2542
                                withCRs bindWith:fileNameString allBold).
1373
c949e9f7757c give a warning, if saving in the given file-format is not
Claus Gittinger <cg@exept.de>
parents: 1327
diff changeset
  2543
                ].
c949e9f7757c give a warning, if saving in the given file-format is not
Claus Gittinger <cg@exept.de>
parents: 1327
diff changeset
  2544
                (imageReaderClass canRepresent:image) ifFalse:[
1991
fff8dc641cff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1987
diff changeset
  2545
                    imageReaderClass == XPMReader ifTrue:[
fff8dc641cff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1987
diff changeset
  2546
                        Dialog warn:('Saving in ''.' , suff , '''-format is not supported (or image cannot be represented in this format).\\Please try another format.') withCRs.
fff8dc641cff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1987
diff changeset
  2547
                        ^ self.
fff8dc641cff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1987
diff changeset
  2548
                    ].
1373
c949e9f7757c give a warning, if saving in the given file-format is not
Claus Gittinger <cg@exept.de>
parents: 1327
diff changeset
  2549
                    imageReaderClass := XPMReader. 
2589
10827ba87692 obsolete method calls cleaned up
Claus Gittinger <cg@exept.de>
parents: 2582
diff changeset
  2550
                    fileNameString := fileName name , '.xpm'.
2240
2e9ad39f11c8 checkin from browser
ca
parents: 2239
diff changeset
  2551
                    fileName := fileNameString asFilename.
2e9ad39f11c8 checkin from browser
ca
parents: 2239
diff changeset
  2552
                    image fileName:fileNameString.
2690
53bc9dc52ce4 allow cancel when saving in wrong format
Claus Gittinger <cg@exept.de>
parents: 2680
diff changeset
  2553
                    (Dialog confirm:(('Saving in ''.' , suff , '''-format is not supported (or image cannot be represented in this format).\\Saving in xpm format as ''%1''.') 
53bc9dc52ce4 allow cancel when saving in wrong format
Claus Gittinger <cg@exept.de>
parents: 2680
diff changeset
  2554
                                withCRs bindWith:fileNameString allBold)) ifFalse:[
53bc9dc52ce4 allow cancel when saving in wrong format
Claus Gittinger <cg@exept.de>
parents: 2680
diff changeset
  2555
                        ^ self.
53bc9dc52ce4 allow cancel when saving in wrong format
Claus Gittinger <cg@exept.de>
parents: 2680
diff changeset
  2556
                    ].
1373
c949e9f7757c give a warning, if saving in the given file-format is not
Claus Gittinger <cg@exept.de>
parents: 1327
diff changeset
  2557
                ].
2240
2e9ad39f11c8 checkin from browser
ca
parents: 2239
diff changeset
  2558
                Transcript showCR:('saving as:' , fileName pathName).
1380
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
  2559
2824
dcff817ccd59 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2823
diff changeset
  2560
                what = #image ifTrue: [ 
dcff817ccd59 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2823
diff changeset
  2561
                    image saveOn:fileName using: imageReaderClass. self clearModified.
dcff817ccd59 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2823
diff changeset
  2562
                    image fileName:fileNameString.
dcff817ccd59 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2823
diff changeset
  2563
                ].
dcff817ccd59 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2823
diff changeset
  2564
                what = #mask ifTrue: [
dcff817ccd59 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2823
diff changeset
  2565
                    image mask saveOn:fileName using: imageReaderClass
dcff817ccd59 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2823
diff changeset
  2566
                ].
1380
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
  2567
2240
2e9ad39f11c8 checkin from browser
ca
parents: 2239
diff changeset
  2568
                fileName exists ifFalse:[
1380
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
  2569
                    Dialog warn:'Oops image save failed.'
3b343d2e69ef fixed copy-paste with masked images.
Claus Gittinger <cg@exept.de>
parents: 1374
diff changeset
  2570
                ]
1158
9b413954d34d issue a warning, if information (mask) is
Claus Gittinger <cg@exept.de>
parents: 1121
diff changeset
  2571
            ]   
9b413954d34d issue a warning, if information (mask) is
Claus Gittinger <cg@exept.de>
parents: 1121
diff changeset
  2572
        ]
1027
5bffbe90b8e2 show a wait-cursor while saving
Claus Gittinger <cg@exept.de>
parents: 1025
diff changeset
  2573
    ]
5bffbe90b8e2 show a wait-cursor while saving
Claus Gittinger <cg@exept.de>
parents: 1025
diff changeset
  2574
4137
1a5fdfd6cd4f withWriteCursorDo
Claus Gittinger <cg@exept.de>
parents: 4129
diff changeset
  2575
    "Modified: / 27-07-2012 / 09:45:49 / cg"
633
594edef86630 revised version
tz
parents: 632
diff changeset
  2576
!
594edef86630 revised version
tz
parents: 632
diff changeset
  2577
2239
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2578
saveAs
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2579
    self saveImageFileAs
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2580
!
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2581
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2582
saveButtonImageToFileAs
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2583
    |fn|
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2584
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2585
    fn := self askForFileNameToSave:'Save Button Image to File'.
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2586
    self saveButtonImageToFileAs:fn
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2587
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2588
    "Modified: / 30.9.1998 / 23:04:11 / cg"
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2589
!
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2590
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2591
saveButtonImageToFileAs: aFileName
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2592
    "save the image as if in a button in aFileName"
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2593
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2594
    |button grabbedImage|
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2595
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2596
    aFileName isNil ifTrue: [^nil].
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2597
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2598
    image isNil ifTrue:[
4249
fc26253d9d4b class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4233
diff changeset
  2599
        self warn:(resources string:'No image or image mask to save!!').
2239
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2600
        ^ self.
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2601
    ].
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2602
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2603
    button := Button label:image.
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2604
    button openAt:5@5.
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2605
    button waitUntilVisible.
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2606
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2607
    grabbedImage := Image fromView:button.
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2608
    button destroy.
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2609
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2610
    self save:grabbedImage imageOrMask:#image as:aFileName
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2611
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2612
    "/ self saveImageOrMask: #mask
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2613
!
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2614
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2615
saveImageFileAs
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2616
    "ask for a fileName and save the image"
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2617
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2618
    |fn|
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2619
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2620
    fn := self askForFileNameToSave:'Save Image To File'.
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2621
    self saveImageFileAs:fn
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2622
!
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2623
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2624
saveImageFileAs: aFileName
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2625
    "save the image in aFileName"
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2626
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2627
    aFileName isNil ifTrue: [^nil].
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2628
    image notNil ifTrue:[
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2629
        self save:image imageOrMask:#image as:aFileName.
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2630
    ] ifFalse:[
4249
fc26253d9d4b class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4233
diff changeset
  2631
        self warn:(resources string:'No image for saving!!')
2239
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2632
    ]
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2633
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2634
    "Modified: / 30.9.1998 / 23:04:55 / cg"
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2635
!
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2636
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2637
saveImageMaskFileAs
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2638
    "ask for a fileName and save the mask only"
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2639
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2640
    |fn|
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2641
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2642
    fn := self askForFileNameToSave:'Save Image Mask To File'.
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2643
    self saveImageMaskFileAs:fn
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2644
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2645
    "Modified: / 30.9.1998 / 23:04:11 / cg"
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2646
!
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2647
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2648
saveImageMaskFileAs: aFileName
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2649
    "save the mask only in aFileName"
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2650
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2651
    aFileName isNil ifTrue: [^nil].
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2652
    (image notNil and:[image mask notNil]) ifTrue:[
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2653
        self save:image imageOrMask:#mask as:aFileName.
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2654
    ] ifFalse:[
4249
fc26253d9d4b class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4233
diff changeset
  2655
        self warn:(resources string:'No image or image mask to save!!')
2239
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2656
    ]
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2657
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2658
    "Modified: / 30.9.1998 / 23:06:24 / cg"
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2659
!
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2660
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2661
saveImageOrMask:what
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2662
    "save the image or the mask only (if what == #mask)"
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2663
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2664
    self save:image imageOrMask: what
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2665
!
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2666
633
594edef86630 revised version
tz
parents: 632
diff changeset
  2667
saveMethod
4149
758a4573b5e4 changed: #saveMethod
Claus Gittinger <cg@exept.de>
parents: 4137
diff changeset
  2668
    (resourceSelector trimBlanks notEmptyOrNil and:[ resourceClass isBehavior ]) ifFalse: [
2915
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2669
        ^ self saveMethodAs.
2914
fdf78bbdbd46 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2913
diff changeset
  2670
    ].
fdf78bbdbd46 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2913
diff changeset
  2671
fdf78bbdbd46 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2913
diff changeset
  2672
    windowGroup withExecuteCursorDo:[
3859
56eadb83df83 changed: #saveMethod
Claus Gittinger <cg@exept.de>
parents: 3847
diff changeset
  2673
        Error handle:[:ex|
56eadb83df83 changed: #saveMethod
Claus Gittinger <cg@exept.de>
parents: 3847
diff changeset
  2674
            (self confirm:(ex errorString,'\\Debug?' withCRs)) ifTrue:[ ex reject ].
2915
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2675
            ^ false                                 
2914
fdf78bbdbd46 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2913
diff changeset
  2676
        ] do: [   
4714
69df9f744066 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4646
diff changeset
  2677
            |img depth bestDepth colorsUsed numColorsUsed category imageStoreStream sel mthd imageKey|
4149
758a4573b5e4 changed: #saveMethod
Claus Gittinger <cg@exept.de>
parents: 4137
diff changeset
  2678
758a4573b5e4 changed: #saveMethod
Claus Gittinger <cg@exept.de>
parents: 4137
diff changeset
  2679
            img := self image.
4714
69df9f744066 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4646
diff changeset
  2680
            depth := bestDepth := img depth.
69df9f744066 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4646
diff changeset
  2681
            colorsUsed := (img usedColorsMax:256).
69df9f744066 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4646
diff changeset
  2682
            colorsUsed notNil ifTrue:[
69df9f744066 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4646
diff changeset
  2683
                numColorsUsed := colorsUsed size.
69df9f744066 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4646
diff changeset
  2684
                #(8 4 2 1) do:[:d |
69df9f744066 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4646
diff changeset
  2685
                    depth > d ifTrue:[
69df9f744066 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4646
diff changeset
  2686
                        numColorsUsed <= (1 << d) ifTrue:[
69df9f744066 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4646
diff changeset
  2687
                            bestDepth := d
69df9f744066 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4646
diff changeset
  2688
                        ]
4149
758a4573b5e4 changed: #saveMethod
Claus Gittinger <cg@exept.de>
parents: 4137
diff changeset
  2689
                    ]
4714
69df9f744066 class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4646
diff changeset
  2690
                ].
4149
758a4573b5e4 changed: #saveMethod
Claus Gittinger <cg@exept.de>
parents: 4137
diff changeset
  2691
            ].
758a4573b5e4 changed: #saveMethod
Claus Gittinger <cg@exept.de>
parents: 4137
diff changeset
  2692
            bestDepth < depth ifTrue:[
758a4573b5e4 changed: #saveMethod
Claus Gittinger <cg@exept.de>
parents: 4137
diff changeset
  2693
                (Dialog 
758a4573b5e4 changed: #saveMethod
Claus Gittinger <cg@exept.de>
parents: 4137
diff changeset
  2694
                    confirm:(resources stringWithCRs:'Hint:\\You can save some code space, by converting the image from a depth-%1 to a depth-%2 image first.\(only %3 colors used)\\Save anyway?'
758a4573b5e4 changed: #saveMethod
Claus Gittinger <cg@exept.de>
parents: 4137
diff changeset
  2695
                                with:depth with:bestDepth with:numColorsUsed))
758a4573b5e4 changed: #saveMethod
Claus Gittinger <cg@exept.de>
parents: 4137
diff changeset
  2696
                ifFalse:[
758a4573b5e4 changed: #saveMethod
Claus Gittinger <cg@exept.de>
parents: 4137
diff changeset
  2697
                    ^ false
758a4573b5e4 changed: #saveMethod
Claus Gittinger <cg@exept.de>
parents: 4137
diff changeset
  2698
                ]
758a4573b5e4 changed: #saveMethod
Claus Gittinger <cg@exept.de>
parents: 4137
diff changeset
  2699
            ].
822
cace81f0a86b do not overwrite method categories + toggle between mouse button colors
tz
parents: 796
diff changeset
  2700
4000
21106540ffb5 CodeGeneratorTool->SmalltalkCodeGeneratorTool
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2701
            SmalltalkCodeGeneratorTool
2149
04e8367eaf70 code generation moved to CodeGeneratorTool
Claus Gittinger <cg@exept.de>
parents: 2135
diff changeset
  2702
                createImageSpecMethodFor:self image 
1882
fbb4a3a869f1 made image-method generator a class method (for reusability)
martin
parents: 1875
diff changeset
  2703
                comment:(ResourceSpecEditor codeGenerationCommentForClass: ImageEditor) 
2915
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2704
                in:resourceClass class
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2705
                selector:resourceSelector.
822
cace81f0a86b do not overwrite method categories + toggle between mouse button colors
tz
parents: 796
diff changeset
  2706
1901
b4b286ec221f flush cached icons, when defining a new image-method
Claus Gittinger <cg@exept.de>
parents: 1896
diff changeset
  2707
            "/ flush cache images in the Icon class (kludge)
b4b286ec221f flush cached icons, when defining a new image-method
Claus Gittinger <cg@exept.de>
parents: 1896
diff changeset
  2708
            Icon flushCachedIcons.
2590
b811d560e00a modified flag after edit operations
Claus Gittinger <cg@exept.de>
parents: 2589
diff changeset
  2709
            self clearModified.
1901
b4b286ec221f flush cached icons, when defining a new image-method
Claus Gittinger <cg@exept.de>
parents: 1896
diff changeset
  2710
2915
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2711
            LastSaveClass := resourceClass.
1882
fbb4a3a869f1 made image-method generator a class method (for reusability)
martin
parents: 1875
diff changeset
  2712
        ]
2915
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2713
    ].
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2714
    ^ true
1027
5bffbe90b8e2 show a wait-cursor while saving
Claus Gittinger <cg@exept.de>
parents: 1025
diff changeset
  2715
4000
21106540ffb5 CodeGeneratorTool->SmalltalkCodeGeneratorTool
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2716
    "Modified: / 31-01-2011 / 18:28:06 / cg"
633
594edef86630 revised version
tz
parents: 632
diff changeset
  2717
!
594edef86630 revised version
tz
parents: 632
diff changeset
  2718
594edef86630 revised version
tz
parents: 632
diff changeset
  2719
saveMethodAs
2915
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2720
    "ask for method/selector; save the image there.
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2721
     Return true if saved, false if not"
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2722
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2723
    |className classAndSelector|
1994
d2d9228d38ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1992
diff changeset
  2724
2908
a759fa87d598 some code cleanup (resourceClass was actually its name)
Claus Gittinger <cg@exept.de>
parents: 2889
diff changeset
  2725
    className := self resourceClassName.
a759fa87d598 some code cleanup (resourceClass was actually its name)
Claus Gittinger <cg@exept.de>
parents: 2889
diff changeset
  2726
    className isEmptyOrNil ifTrue:[
2177
340ce04ccc78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2172
diff changeset
  2727
        className := LastSaveClass
1994
d2d9228d38ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1992
diff changeset
  2728
    ].
633
594edef86630 revised version
tz
parents: 632
diff changeset
  2729
3840
1ec52651a398 changed: #saveMethodAs
Claus Gittinger <cg@exept.de>
parents: 3762
diff changeset
  2730
    self withWaitCursorDo:[
1ec52651a398 changed: #saveMethodAs
Claus Gittinger <cg@exept.de>
parents: 3762
diff changeset
  2731
        classAndSelector := ResourceSelectionBrowser
1ec52651a398 changed: #saveMethodAs
Claus Gittinger <cg@exept.de>
parents: 3762
diff changeset
  2732
                request: 'Save Image In Class'
1ec52651a398 changed: #saveMethodAs
Claus Gittinger <cg@exept.de>
parents: 3762
diff changeset
  2733
                onSuperclass: #Object
1ec52651a398 changed: #saveMethodAs
Claus Gittinger <cg@exept.de>
parents: 3762
diff changeset
  2734
                andClass: className
1ec52651a398 changed: #saveMethodAs
Claus Gittinger <cg@exept.de>
parents: 3762
diff changeset
  2735
                andSelector: self resourceSelector
1ec52651a398 changed: #saveMethodAs
Claus Gittinger <cg@exept.de>
parents: 3762
diff changeset
  2736
                withResourceTypes: #(image fileImage programImage).
1ec52651a398 changed: #saveMethodAs
Claus Gittinger <cg@exept.de>
parents: 3762
diff changeset
  2737
    ].
2915
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2738
    classAndSelector isNil ifTrue:[^ false].
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2739
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2740
    resourceClass := classAndSelector methodClass.
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2741
    resourceSelector := classAndSelector methodSelector.
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2742
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2743
    ^ self saveMethod
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2744
! !
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2745
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2746
!ImageEditView methodsFor:'printing'!
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2747
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2748
print
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2749
    self printWithMagnification:1
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2750
!
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2751
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2752
printMagnified
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2753
    self printWithMagnification:magnification
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2754
!
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2755
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2756
printWithMagnification:magnification
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2757
    |stream|
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2758
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2759
    image isNil ifTrue:[^ self].
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2760
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2761
    Printer supportsPostscript ifFalse:[
4249
fc26253d9d4b class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4233
diff changeset
  2762
        ^ self warn:(resources string:'No postscript printer configured !!')
2915
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2763
    ].
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2764
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2765
    stream := Printer newNative.
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2766
    stream isNil ifTrue:[
4249
fc26253d9d4b class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4233
diff changeset
  2767
        ^ self warn:(resources string:'Cannot open printer stream !!')
2915
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2768
    ].
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2769
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2770
    self withWaitCursorDo:[
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2771
        |psgc|
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2772
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2773
        psgc := PSGraphicsContext on:stream.  
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2774
        psgc displayForm: (image magnifiedBy: magnification) x:0 y:0.
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2775
        psgc close
6f4e171a1092 code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
  2776
    ]
1
c6ca7bfedf31 Initial revision
claus
parents:
diff changeset
  2777
! !
c6ca7bfedf31 Initial revision
claus
parents:
diff changeset
  2778
161
5b6e284959a4 examples
Claus Gittinger <cg@exept.de>
parents: 86
diff changeset
  2779
!ImageEditView methodsFor:'queries'!
5
be72e6ba4822 *** empty log message ***
claus
parents: 1
diff changeset
  2780
161
5b6e284959a4 examples
Claus Gittinger <cg@exept.de>
parents: 86
diff changeset
  2781
heightOfContents
5b6e284959a4 examples
Claus Gittinger <cg@exept.de>
parents: 86
diff changeset
  2782
686
33833bcbb5cd some cleans
tz
parents: 678
diff changeset
  2783
    image isNil ifTrue:[^0].
33833bcbb5cd some cleans
tz
parents: 678
diff changeset
  2784
    ^(image height * magnification y) rounded
5
be72e6ba4822 *** empty log message ***
claus
parents: 1
diff changeset
  2785
!
be72e6ba4822 *** empty log message ***
claus
parents: 1
diff changeset
  2786
995
cd84d6f8c449 several undos
tz
parents: 994
diff changeset
  2787
imageContainsPastePoint: aPoint
cd84d6f8c449 several undos
tz
parents: 994
diff changeset
  2788
cd84d6f8c449 several undos
tz
parents: 994
diff changeset
  2789
    ^image notNil and: 
1116
441ff42c1472 fixes to allow 24bit images to be (at least) displayed
Claus Gittinger <cg@exept.de>
parents: 1106
diff changeset
  2790
	[Clipboard notNil and:
441ff42c1472 fixes to allow 24bit images to be (at least) displayed
Claus Gittinger <cg@exept.de>
parents: 1106
diff changeset
  2791
	[((0@0 corner:(image extent) "- 1" - Clipboard extent) containsPoint: (((aPoint - margin + 1) / magnification) floor))]]
995
cd84d6f8c449 several undos
tz
parents: 994
diff changeset
  2792
!
cd84d6f8c449 several undos
tz
parents: 994
diff changeset
  2793
627
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
  2794
imageContainsPoint: aPoint
632
be1ac8ea33a7 checkin from browser
tz
parents: 628
diff changeset
  2795
be1ac8ea33a7 checkin from browser
tz
parents: 628
diff changeset
  2796
    ^image notNil and:
1116
441ff42c1472 fixes to allow 24bit images to be (at least) displayed
Claus Gittinger <cg@exept.de>
parents: 1106
diff changeset
  2797
	[((0@0 corner:(image extent) - 1) containsPoint: (((aPoint - margin + 1) / magnification) floor))]
627
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
  2798
!
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
  2799
783
c81a097b84b8 revised version
tz
parents: 747
diff changeset
  2800
imageInfoString
3729
6f6cfc8bb8cf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3706
diff changeset
  2801
    image isNil ifTrue: [^ 'No image loaded.']. 
6f6cfc8bb8cf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3706
diff changeset
  2802
    ^ String streamContents:[:s |
6f6cfc8bb8cf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3706
diff changeset
  2803
        s print:image width.
6f6cfc8bb8cf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3706
diff changeset
  2804
        s print:'x'.
6f6cfc8bb8cf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3706
diff changeset
  2805
        s print:image height.
6f6cfc8bb8cf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3706
diff changeset
  2806
        s print:' | '.
6f6cfc8bb8cf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3706
diff changeset
  2807
6f6cfc8bb8cf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3706
diff changeset
  2808
        s print:(image depth).
6f6cfc8bb8cf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3706
diff changeset
  2809
        s print:'bit'.
6f6cfc8bb8cf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3706
diff changeset
  2810
        image mask notNil ifTrue: [s print:'+mask'].
6f6cfc8bb8cf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3706
diff changeset
  2811
5266
527277fcb66c #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 5163
diff changeset
  2812
        ' [%1/%2 colors]' expandPlaceholdersWith:{image nColorsUsed. (2 raisedTo: image depth)} on:s.
3729
6f6cfc8bb8cf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3706
diff changeset
  2813
    ].
783
c81a097b84b8 revised version
tz
parents: 747
diff changeset
  2814
!
c81a097b84b8 revised version
tz
parents: 747
diff changeset
  2815
161
5b6e284959a4 examples
Claus Gittinger <cg@exept.de>
parents: 86
diff changeset
  2816
widthOfContents
5
be72e6ba4822 *** empty log message ***
claus
parents: 1
diff changeset
  2817
686
33833bcbb5cd some cleans
tz
parents: 678
diff changeset
  2818
    image isNil ifTrue:[^0].
33833bcbb5cd some cleans
tz
parents: 678
diff changeset
  2819
    ^(image width * magnification x) rounded
5
be72e6ba4822 *** empty log message ***
claus
parents: 1
diff changeset
  2820
! !
be72e6ba4822 *** empty log message ***
claus
parents: 1
diff changeset
  2821
627
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
  2822
!ImageEditView methodsFor:'release'!
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
  2823
995
cd84d6f8c449 several undos
tz
parents: 994
diff changeset
  2824
releasePasteDrawing
2085
4cf52f994f0a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2072
diff changeset
  2825
    self repairDamage.
2440
a9abeb0e3562 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2415
diff changeset
  2826
    (lastPastePoint notNil and: [ClipboardMagnified notNil]) 
2747
818a513a64c3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2690
diff changeset
  2827
    ifTrue: [ 
2440
a9abeb0e3562 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2415
diff changeset
  2828
        self redraw: ((lastPastePoint"-self viewOrigin") extent: (ClipboardMagnified extent)). 
2085
4cf52f994f0a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2072
diff changeset
  2829
        "/ self repairDamage.
995
cd84d6f8c449 several undos
tz
parents: 994
diff changeset
  2830
    ].
2440
a9abeb0e3562 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2415
diff changeset
  2831
    lastPastePoint := ClipboardMagnified := nil
995
cd84d6f8c449 several undos
tz
parents: 994
diff changeset
  2832
!
cd84d6f8c449 several undos
tz
parents: 994
diff changeset
  2833
cd84d6f8c449 several undos
tz
parents: 994
diff changeset
  2834
releaseUndos
cd84d6f8c449 several undos
tz
parents: 994
diff changeset
  2835
    undoImages removeAll.
627
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
  2836
! !
e0bf28f61361 many many fixes/enhancements
tz
parents: 624
diff changeset
  2837
632
be1ac8ea33a7 checkin from browser
tz
parents: 628
diff changeset
  2838
!ImageEditView methodsFor:'testing'!
be1ac8ea33a7 checkin from browser
tz
parents: 628
diff changeset
  2839
be1ac8ea33a7 checkin from browser
tz
parents: 628
diff changeset
  2840
checkModified
2747
818a513a64c3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2690
diff changeset
  2841
    modifiedHolder value ifTrue:[
2634
dc5098a445d4 resources
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2842
        ((YesNoBox title:(resources string:'Image was not saved. Exit anyway ?'))
2591
87cab7199c7e Use 'Discard Changes and Exit' instead of 'Forget it...'
Stefan Vogel <sv@exept.de>
parents: 2590
diff changeset
  2843
            noText:(resources string:'Cancel');
2634
dc5098a445d4 resources
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  2844
            yesText:(resources string:'Exit without Saving');
2591
87cab7199c7e Use 'Discard Changes and Exit' instead of 'Forget it...'
Stefan Vogel <sv@exept.de>
parents: 2590
diff changeset
  2845
            showAtPointer;
2747
818a513a64c3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2690
diff changeset
  2846
            accepted
818a513a64c3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2690
diff changeset
  2847
        ) ifFalse: [^false].
818a513a64c3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2690
diff changeset
  2848
818a513a64c3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2690
diff changeset
  2849
        self modified:false.
632
be1ac8ea33a7 checkin from browser
tz
parents: 628
diff changeset
  2850
    ].
2591
87cab7199c7e Use 'Discard Changes and Exit' instead of 'Forget it...'
Stefan Vogel <sv@exept.de>
parents: 2590
diff changeset
  2851
    ^ true
1031
a5ab5869b2ba cleaned up the interface to the apps infoPanel
Claus Gittinger <cg@exept.de>
parents: 1030
diff changeset
  2852
a5ab5869b2ba cleaned up the interface to the apps infoPanel
Claus Gittinger <cg@exept.de>
parents: 1030
diff changeset
  2853
    "Modified: / 29.7.1998 / 18:55:24 / cg"
632
be1ac8ea33a7 checkin from browser
tz
parents: 628
diff changeset
  2854
! !
be1ac8ea33a7 checkin from browser
tz
parents: 628
diff changeset
  2855
255
1dfa8deddaef checkin from browser
Claus Gittinger <cg@exept.de>
parents: 251
diff changeset
  2856
!ImageEditView class methodsFor:'documentation'!
161
5b6e284959a4 examples
Claus Gittinger <cg@exept.de>
parents: 86
diff changeset
  2857
5b6e284959a4 examples
Claus Gittinger <cg@exept.de>
parents: 86
diff changeset
  2858
version
4853
Claus Gittinger <cg@exept.de>
parents: 4730
diff changeset
  2859
    ^ '$Header$'
3762
1baf6a044dd2 changed: #pasteAt:mode:
Claus Gittinger <cg@exept.de>
parents: 3730
diff changeset
  2860
!
1baf6a044dd2 changed: #pasteAt:mode:
Claus Gittinger <cg@exept.de>
parents: 3730
diff changeset
  2861
1baf6a044dd2 changed: #pasteAt:mode:
Claus Gittinger <cg@exept.de>
parents: 3730
diff changeset
  2862
version_CVS
4853
Claus Gittinger <cg@exept.de>
parents: 4730
diff changeset
  2863
    ^ '$Header$'
161
5b6e284959a4 examples
Claus Gittinger <cg@exept.de>
parents: 86
diff changeset
  2864
! !
2239
d2f65f84f314 saveAsButtonImage added
ca
parents: 2177
diff changeset
  2865
4203
a257aa6878ac class: ImageEditView
Claus Gittinger <cg@exept.de>
parents: 4149
diff changeset
  2866
1245
68581e6aaf23 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
  2867
ImageEditView initialize!