DeviceWorkstation.st
author Claus Gittinger <cg@exept.de>
Thu, 19 Feb 2004 01:01:07 +0100
changeset 4022 b843fb470796
parent 4021 6a8abcb8fbd4
child 4030 34cdc7a25687
permissions -rw-r--r--
*** empty log message ***
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
48194c26a46c Initial revision
claus
parents:
diff changeset
     1
"
48194c26a46c Initial revision
claus
parents:
diff changeset
     2
COPYRIGHT (c) 1993 by Claus Gittinger
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
     3
	      All Rights Reserved
0
48194c26a46c Initial revision
claus
parents:
diff changeset
     4
48194c26a46c Initial revision
claus
parents:
diff changeset
     5
 This software is furnished under a license and may be used
48194c26a46c Initial revision
claus
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
48194c26a46c Initial revision
claus
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
48194c26a46c Initial revision
claus
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
48194c26a46c Initial revision
claus
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
48194c26a46c Initial revision
claus
parents:
diff changeset
    10
 hereby transferred.
48194c26a46c Initial revision
claus
parents:
diff changeset
    11
"
48194c26a46c Initial revision
claus
parents:
diff changeset
    12
3193
110bd43bc483 Add comments.
Stefan Vogel <sv@exept.de>
parents: 3189
diff changeset
    13
"{ Package: 'stx:libview' }"
110bd43bc483 Add comments.
Stefan Vogel <sv@exept.de>
parents: 3189
diff changeset
    14
1286
f7c2ac67388b inserted dummy abstract classes for ST-80 compatible subclassing
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
    15
HostGraphicsDevice subclass:#DeviceWorkstation
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
    16
	instanceVariableNames:'visualType monitorType depth ncells bitsPerRGB bitsRed bitsGreen
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
    17
		bitsBlue redMask greenMask blueMask redShift greenShift blueShift
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
    18
		hasColors hasGreyscales width height widthMM heightMM
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
    19
		resolutionHor resolutionVer idToTableIndexMapping knownViews
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
    20
		knownIds knownBitmaps knownBitmapIds dispatching dispatchProcess
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
    21
		exitOnLastClose ctrlDown shiftDown metaDown altDown superDown
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
    22
		motionEventCompression lastId lastView keyboardMap rootView
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
    23
		isSlow activeKeyboardGrab activePointerGrab buttonTranslation
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
    24
		multiClickTimeDelta altModifiers metaModifiers ctrlModifiers
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
    25
		shiftModifiers superModifiers buttonModifiers supportsDeepIcons
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
    26
		preferredIconSize ditherColors fixColors numFixRed numFixGreen
3803
bdf335907724 *** empty log message ***
penk
parents: 3792
diff changeset
    27
		numFixBlue fixGrayColors copyBuffer blackColor whiteColor
3925
8d4336c13a8b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3896
diff changeset
    28
		focusMode activeView clipBoardEncoding maxClipBoardSize focusView
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
    29
		deviceErrorSignal deviceIOErrorSignal mayOpenDebugger
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
    30
		suppressDebugger eventSema'
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
    31
	classVariableNames:'ButtonTranslation MultiClickTimeDelta DeviceErrorSignal
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
    32
		DeviceOpenErrorSignal DeviceIOErrorSignal
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
    33
		DeviceIOTimeoutErrorSignal ErrorPrinting DefaultScreen AllScreens
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
    34
		CurrentScreenQuerySignal LastActiveScreen LastActiveProcess
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
    35
		WindowsRightButtonBehavior ExitOnLastClose
3831
3469f195000d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3829
diff changeset
    36
		DrawingOnClosedDeviceSignal CopyBufferHistory'
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
    37
	poolDictionaries:''
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
    38
	category:'Interface-Graphics'
0
48194c26a46c Initial revision
claus
parents:
diff changeset
    39
!
48194c26a46c Initial revision
claus
parents:
diff changeset
    40
3478
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
    41
Object subclass:#DeviceFontMetrics
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
    42
	instanceVariableNames:'encoding ascent descent maxAscent maxDescent minWidth maxWidth
4020
f4bf2bd8272e draw direction
Claus Gittinger <cg@exept.de>
parents: 3994
diff changeset
    43
		averageWidth minCode maxCode direction'
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
    44
	classVariableNames:''
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
    45
	poolDictionaries:''
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
    46
	privateIn:DeviceWorkstation
3478
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
    47
!
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
    48
1075
62f0cfb3c956 dont return nil entries in #knownViews
Claus Gittinger <cg@exept.de>
parents: 1074
diff changeset
    49
!DeviceWorkstation class methodsFor:'documentation'!
46
7b331e9012fd *** empty log message ***
claus
parents: 43
diff changeset
    50
7b331e9012fd *** empty log message ***
claus
parents: 43
diff changeset
    51
copyright
7b331e9012fd *** empty log message ***
claus
parents: 43
diff changeset
    52
"
0
48194c26a46c Initial revision
claus
parents:
diff changeset
    53
COPYRIGHT (c) 1993 by Claus Gittinger
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
    54
	      All Rights Reserved
0
48194c26a46c Initial revision
claus
parents:
diff changeset
    55
46
7b331e9012fd *** empty log message ***
claus
parents: 43
diff changeset
    56
 This software is furnished under a license and may be used
7b331e9012fd *** empty log message ***
claus
parents: 43
diff changeset
    57
 only in accordance with the terms of that license and with the
7b331e9012fd *** empty log message ***
claus
parents: 43
diff changeset
    58
 inclusion of the above copyright notice.   This software may not
7b331e9012fd *** empty log message ***
claus
parents: 43
diff changeset
    59
 be provided or otherwise made available to, or used by, any
7b331e9012fd *** empty log message ***
claus
parents: 43
diff changeset
    60
 other person.  No title to or ownership of the software is
7b331e9012fd *** empty log message ***
claus
parents: 43
diff changeset
    61
 hereby transferred.
7b331e9012fd *** empty log message ***
claus
parents: 43
diff changeset
    62
"
7b331e9012fd *** empty log message ***
claus
parents: 43
diff changeset
    63
!
0
48194c26a46c Initial revision
claus
parents:
diff changeset
    64
48194c26a46c Initial revision
claus
parents:
diff changeset
    65
documentation
48194c26a46c Initial revision
claus
parents:
diff changeset
    66
"
38
2652fc96e660 *** empty log message ***
claus
parents: 26
diff changeset
    67
    this abstract class defines common protocol to all Display types.
599
d978fa59094a commentary
Claus Gittinger <cg@exept.de>
parents: 544
diff changeset
    68
    For compatibility with ST-80, this class (actually a concrete subclass) 
d978fa59094a commentary
Claus Gittinger <cg@exept.de>
parents: 544
diff changeset
    69
    is also bound to the global variable Screen.
d978fa59094a commentary
Claus Gittinger <cg@exept.de>
parents: 544
diff changeset
    70
d978fa59094a commentary
Claus Gittinger <cg@exept.de>
parents: 544
diff changeset
    71
    DeviceWorkstation (and its concrete subclasses) are the central classes
d978fa59094a commentary
Claus Gittinger <cg@exept.de>
parents: 544
diff changeset
    72
    around windowManagement and event processing.
d978fa59094a commentary
Claus Gittinger <cg@exept.de>
parents: 544
diff changeset
    73
    See the documentation in #events and #workstationDevices for more detailed
d978fa59094a commentary
Claus Gittinger <cg@exept.de>
parents: 544
diff changeset
    74
    info.
d978fa59094a commentary
Claus Gittinger <cg@exept.de>
parents: 544
diff changeset
    75
d978fa59094a commentary
Claus Gittinger <cg@exept.de>
parents: 544
diff changeset
    76
    [instance variables:]
0
48194c26a46c Initial revision
claus
parents:
diff changeset
    77
134
claus
parents: 133
diff changeset
    78
      displayId       <Number>          the device id of the display
claus
parents: 133
diff changeset
    79
      visualType      <Symbol>          one of #StaticGray, #PseudoColor, ... #TrueColor
claus
parents: 133
diff changeset
    80
      monitorType     <Symbol>          one of #monochrome, #color, #unknown
claus
parents: 133
diff changeset
    81
193
Claus Gittinger <cg@exept.de>
parents: 190
diff changeset
    82
      depth           <SmallInteger>    bits per color
Claus Gittinger <cg@exept.de>
parents: 190
diff changeset
    83
      ncells          <SmallInteger>    number of colors (i.e. colormap size; not always == 2^depth)
Claus Gittinger <cg@exept.de>
parents: 190
diff changeset
    84
      bitsPerRGB      <SmallInteger>    number of valid bits per rgb component
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
    85
					(actual number taken in A/D converter; not all devices report the true value)
193
Claus Gittinger <cg@exept.de>
parents: 190
diff changeset
    86
      bitsRed         <SmallInteger>    number of red bits (only valid for TrueColor displays)
Claus Gittinger <cg@exept.de>
parents: 190
diff changeset
    87
      bitsGreen       <SmallInteger>    number of green bits (only valid for TrueColor displays)
Claus Gittinger <cg@exept.de>
parents: 190
diff changeset
    88
      bitsBlue        <SmallInteger>    number of blue bits (only valid for TrueColor displays)
Claus Gittinger <cg@exept.de>
parents: 190
diff changeset
    89
      redMask         <SmallInteger>    shifted red mask (only useful for TrueColor displays)
Claus Gittinger <cg@exept.de>
parents: 190
diff changeset
    90
      greenMask       <SmallInteger>    shifted green mask (only useful for TrueColor displays)
Claus Gittinger <cg@exept.de>
parents: 190
diff changeset
    91
      blueMask        <SmallInteger>    shifted blue mask (only useful for TrueColor displays)
Claus Gittinger <cg@exept.de>
parents: 190
diff changeset
    92
      shiftRed        <SmallInteger>    number of bits to shift red bits (only valid for TrueColor displays)
Claus Gittinger <cg@exept.de>
parents: 190
diff changeset
    93
      shiftGreen      <SmallInteger>    number of bits to shift green bits (only valid for TrueColor displays)
Claus Gittinger <cg@exept.de>
parents: 190
diff changeset
    94
      shiftBlue       <SmallInteger>    number of bits to shift blue bits (only valid for TrueColor displays)
Claus Gittinger <cg@exept.de>
parents: 190
diff changeset
    95
134
claus
parents: 133
diff changeset
    96
      hasColors       <Boolean>         true, if display supports colors
claus
parents: 133
diff changeset
    97
      hasGreyscales   <Boolean>         true, if display supports grey-scales (i.e is not b/w display)
193
Claus Gittinger <cg@exept.de>
parents: 190
diff changeset
    98
      width           <SmallInteger>    number of horizontal pixels
Claus Gittinger <cg@exept.de>
parents: 190
diff changeset
    99
      height          <SmallInteger>    number of vertical pixels 
134
claus
parents: 133
diff changeset
   100
      heightMM        <Number>          screen height in millimeter
claus
parents: 133
diff changeset
   101
      widthMM         <Number>          screen width in millimeter
claus
parents: 133
diff changeset
   102
      resolutionHor   <Number>          pixels per horizontal millimeter
claus
parents: 133
diff changeset
   103
      resolutionVer   <Number>          pixels per vertical millimeter
claus
parents: 133
diff changeset
   104
1473
a44838bcddf0 keep indices - avoids another weak collection
Claus Gittinger <cg@exept.de>
parents: 1467
diff changeset
   105
      idToTableIndexMapping <Dictionary>      maps view-ids to views
1078
f7b6f15899ab changed WeakArray to set emptied slots to zero
Claus Gittinger <cg@exept.de>
parents: 1075
diff changeset
   106
      knownViews      <WeakArray>       all of my known views
134
claus
parents: 133
diff changeset
   107
      knownIds        <Collection>      corresponding device-view ids
claus
parents: 133
diff changeset
   108
      knownBitmaps    <Collection>      all known device bitmaps
claus
parents: 133
diff changeset
   109
      knownBitmapIds  <Collection>      corresponding device-bitmap ids
claus
parents: 133
diff changeset
   110
claus
parents: 133
diff changeset
   111
      dispatching     <Boolean>         true, if currently in dispatch loop
2818
d5453b85243d added an exitOnLastClose instVar flag. (smc requirement)
Claus Gittinger <cg@exept.de>
parents: 2793
diff changeset
   112
      exitDispatchOnLastWindowClose
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   113
		      <Boolean>         if true, dispatch is finished when the last
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   114
					window closes (default:true).
134
claus
parents: 133
diff changeset
   115
151
claus
parents: 146
diff changeset
   116
      ctrlDown        <Boolean>         true, if control key currently pressed
134
claus
parents: 133
diff changeset
   117
      shiftDown       <Boolean>         true, if shift key currently pressed
claus
parents: 133
diff changeset
   118
      metaDown        <Boolean>         true, if meta key (cmd-key) is currently pressed
claus
parents: 133
diff changeset
   119
      altDown         <Boolean>         true, if alt key is currently pressed
claus
parents: 133
diff changeset
   120
claus
parents: 133
diff changeset
   121
      motionEventCompression
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   122
		      <Boolean>         if true motion events are compressed
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   123
					(obsolete: now done in sensor)
134
claus
parents: 133
diff changeset
   124
claus
parents: 133
diff changeset
   125
      lastId          <Number>          the id of the last events view (internal)
claus
parents: 133
diff changeset
   126
      lastView        <View>            the last events view (internal, for faster id->view mapping)
claus
parents: 133
diff changeset
   127
claus
parents: 133
diff changeset
   128
      keyboardMap     <KeyBdMap>        mapping for keys
claus
parents: 133
diff changeset
   129
      rootView        <DisplayRootView> this displays root window
claus
parents: 133
diff changeset
   130
      isSlow          <Boolean>         set/cleared from startup - used to turn off
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   131
					things like popup-shadows etc.
599
d978fa59094a commentary
Claus Gittinger <cg@exept.de>
parents: 544
diff changeset
   132
1717
4e48d1778b27 added setPointerPosition: for recorder/playback support
Claus Gittinger <cg@exept.de>
parents: 1710
diff changeset
   133
      focusMode       <Symbol>          nil, #pointer or #activeWindow
4e48d1778b27 added setPointerPosition: for recorder/playback support
Claus Gittinger <cg@exept.de>
parents: 1710
diff changeset
   134
      activeWindow    <View>            WINDOWS only: the currently active (foreground) view
1710
df5f8609825d win changes (pass drawableId to clip methods)
Claus Gittinger <cg@exept.de>
parents: 1708
diff changeset
   135
1788
48da00c2df26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1787
diff changeset
   136
      clipBoardEncoding
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   137
		      <Symbol>          encoding of pasted clipBoard text;
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   138
					nil means: iso8859.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   139
					set this to #shiftJis, if pasting
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   140
					SJIS text (for example, from netscape)
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   141
					Some systems pass encoding information
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   142
					in the clipBoard - there, this is not
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   143
					needed.
1787
536abfb7c98c preps for clibBoardEncoding
Claus Gittinger <cg@exept.de>
parents: 1776
diff changeset
   144
1122
0394c1ff2797 commentary
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
   145
    [class variables:]
0394c1ff2797 commentary
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
   146
0394c1ff2797 commentary
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
   147
      MultiClickTimeDelta               in ms; controls how long of a delay is
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   148
					required between two clicks, to NOT take
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   149
					it as a multi-click.
1122
0394c1ff2797 commentary
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
   150
0394c1ff2797 commentary
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
   151
      ErrorPrinting                     controls low-level (X-) error message printing
0394c1ff2797 commentary
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
   152
0394c1ff2797 commentary
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
   153
      AllScreens                        a collectin of known screens
0394c1ff2797 commentary
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
   154
599
d978fa59094a commentary
Claus Gittinger <cg@exept.de>
parents: 544
diff changeset
   155
    [see also:]
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   156
	GraphicsContext DeviceDrawable
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   157
	WindowSensor WindowGroup WindowEvent
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   158
	ProcessorScheduler
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   159
	PSMedium
614
1b1c0d7c9266 documentation
Claus Gittinger <cg@exept.de>
parents: 609
diff changeset
   160
1b1c0d7c9266 documentation
Claus Gittinger <cg@exept.de>
parents: 609
diff changeset
   161
    [author:]
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   162
	Claus Gittinger
0
48194c26a46c Initial revision
claus
parents:
diff changeset
   163
"
151
claus
parents: 146
diff changeset
   164
!
claus
parents: 146
diff changeset
   165
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   166
events
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   167
"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   168
    All events are processed in a workstations dispatchEvent method.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   169
    There, incoming events are first sent to itself, for a first (view independent)
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   170
    preprocessing. For example, the devices state of the shift-, alt-, control and
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   171
    meta keys are updated there. After that, the event is forwarded either to
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   172
    the views sensor or to the view directly (if it has no sensor).
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   173
    (Sensorless views are a leftover from ancient times and will sooner or
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   174
     later vanish - simplifying things a bit. Do not depend on views without
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   175
     sensors to work correctly in future versions.)
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   176
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   177
    This event processing is done by the event dispatcher process, which is
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   178
    launched in ST/X's startup sequence (see Smalltalk>>start).
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   179
    Event processing is done at a high priority, to allow keyboad processing
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   180
    and CTRL-C handling to be performed even while other processes are running.
1697
a0db1fe0d4bc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1696
diff changeset
   181
    The code executed by the event process is found in #startDispatch.
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   182
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   183
    Individual events can be enabled or disabled. The ones that are enabled
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   184
    by default are:
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   185
	keypress / keyRelease
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   186
	buttonPress / buttonRelease / buttonMotion (i.e. motion with button pressed)
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   187
	pointerEnter / pointerLeave
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   188
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   189
    other events have to be enabled by sending a corresponding #enableXXXEvent
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   190
    message to the view which shall receive those events.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   191
    For example, pointerMotion events (i.e. motion without button being pressed)
390
19a90edd0dc4 added #resolution for ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 354
diff changeset
   192
    are enabled by: 'aView enableMotionEvent'
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   193
320
b7b8dc88fe9f interest is written with one 'r' (shame on me)
Claus Gittinger <cg@exept.de>
parents: 310
diff changeset
   194
    The above is only of interest, if you write your own widget classes,
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   195
    existing widgets set things as required in their #initEvents method.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   196
"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   197
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   198
151
claus
parents: 146
diff changeset
   199
workstationDevices
claus
parents: 146
diff changeset
   200
"
claus
parents: 146
diff changeset
   201
    In ST/X, all interaction with the graphics device is done through
claus
parents: 146
diff changeset
   202
    an instance of (a subclass) of DeviceWorkstation.
claus
parents: 146
diff changeset
   203
    Every view has a reference to the device it has been created on in
390
19a90edd0dc4 added #resolution for ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 354
diff changeset
   204
    its 'device' instance variable. 
151
claus
parents: 146
diff changeset
   205
claus
parents: 146
diff changeset
   206
    One particular device instance is bound to the global variable Display:
claus
parents: 146
diff changeset
   207
    this is the default graphics display, on which new views are created
claus
parents: 146
diff changeset
   208
    (however, provisions exist for multi-display operation)
claus
parents: 146
diff changeset
   209
1580
9a28ea48ec73 documentation: error handling
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
   210
    Currently, there is are twoconcrete display classes (released to the public):
9a28ea48ec73 documentation: error handling
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
   211
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   212
	XWorkstation    - a plain X window interface
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   213
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   214
	GLXWorkstation  - an X window interface with a GL(tm) (3D graphic library) 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   215
			  extension; either simulated (VGL) or a real GL 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   216
			  (real GL is only available on SGI machines)
1122
0394c1ff2797 commentary
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
   217
0394c1ff2797 commentary
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
   218
    the following are coming soon:
0394c1ff2797 commentary
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
   219
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   220
	OpenGLWorkstation   
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   221
			- an X window interface with a openGL(tm) (3D graphic library) 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   222
			  extension; either simulated (MESA) or a real openGL 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   223
			  (real openGL is only available on SGI/NT machines)
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   224
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   225
	WinWorkstation  - what will that be ?
151
claus
parents: 146
diff changeset
   226
claus
parents: 146
diff changeset
   227
    An experimental version for a NeXTStep interface exists, but is currently
claus
parents: 146
diff changeset
   228
    no longer maintained and not released.
claus
parents: 146
diff changeset
   229
claus
parents: 146
diff changeset
   230
    DeviceWorkstation itself is an abstract class; the methods as defined
claus
parents: 146
diff changeset
   231
    here perform things which are common to all graphic devices or block
claus
parents: 146
diff changeset
   232
    methods and raise a subclassResponsibilty error condition.
1580
9a28ea48ec73 documentation: error handling
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
   233
    To create a new graphic interface, at least the subclassResponsibility-methods
151
claus
parents: 146
diff changeset
   234
    have to be reimplemented in a concrete subclass.
claus
parents: 146
diff changeset
   235
1580
9a28ea48ec73 documentation: error handling
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
   236
    ST/X is designed to allow the use of multiple workstation devices in parallel, 
9a28ea48ec73 documentation: error handling
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
   237
    if the underlying window system supports this.
390
19a90edd0dc4 added #resolution for ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 354
diff changeset
   238
    For example, in X, it is possible to create another instance of XWorkstation, 
19a90edd0dc4 added #resolution for ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 354
diff changeset
   239
    start a dispatch process for it, and to create and open views on this display. 
1580
9a28ea48ec73 documentation: error handling
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
   240
    Multiple display operation does not work with other devices (i.e. Windows).
151
claus
parents: 146
diff changeset
   241
claus
parents: 146
diff changeset
   242
    If you want to experiment with multi-display applications,
claus
parents: 146
diff changeset
   243
    you have to:
claus
parents: 146
diff changeset
   244
1580
9a28ea48ec73 documentation: error handling
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
   245
    - create a new instance of XWorkstation:
9a28ea48ec73 documentation: error handling
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
   246
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   247
	Smalltalk at:#Display2 put:(XWorkstation new).
1580
9a28ea48ec73 documentation: error handling
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
   248
      or:
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   249
	Smalltalk at:#Display2 put:(GLXWorkstation new).
1580
9a28ea48ec73 documentation: error handling
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
   250
9a28ea48ec73 documentation: error handling
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
   251
9a28ea48ec73 documentation: error handling
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
   252
    - have it connect to the display (i.e. the xServer):
9a28ea48ec73 documentation: error handling
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
   253
      (replace 'localhost' below with the name of your display)
9a28ea48ec73 documentation: error handling
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
   254
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   255
	Display2 := Display2 initializeFor:'localhost:0.0'
1580
9a28ea48ec73 documentation: error handling
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
   256
9a28ea48ec73 documentation: error handling
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
   257
      returns nil, if connection is refused 
9a28ea48ec73 documentation: error handling
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
   258
      - leaving you with Display2==nil in this case.
9a28ea48ec73 documentation: error handling
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
   259
9a28ea48ec73 documentation: error handling
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
   260
9a28ea48ec73 documentation: error handling
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
   261
    - start an event dispatcher process for it:
9a28ea48ec73 documentation: error handling
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
   262
      (this is now no longer needed - the first opened view will do it for you)
9a28ea48ec73 documentation: error handling
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
   263
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   264
	Display2 startDispatch
1580
9a28ea48ec73 documentation: error handling
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
   265
9a28ea48ec73 documentation: error handling
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
   266
9a28ea48ec73 documentation: error handling
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
   267
    - optionally set its keyboard map
9a28ea48ec73 documentation: error handling
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
   268
      (since this is usually done for Display in the startup-file,
9a28ea48ec73 documentation: error handling
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
   269
       the new display does not have all your added key bindings)
9a28ea48ec73 documentation: error handling
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
   270
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   271
	Display2 keyboardMap:(Display keyboardMap)
1580
9a28ea48ec73 documentation: error handling
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
   272
9a28ea48ec73 documentation: error handling
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
   273
9a28ea48ec73 documentation: error handling
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
   274
    - create a view for it:
9a28ea48ec73 documentation: error handling
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
   275
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   276
	(FileBrowser onDevice:Display2) open
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   277
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   278
	(Workspace onDevice:Display2) open
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   279
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   280
	(Launcher onDevice:Display2) open
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   281
	    does not work with Launcher, since its an ApplicationModel (not a view)
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   282
	    use:
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   283
		Launcher openOnDevice:Display2
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   284
	    instead.
3073
cc352232adf8 comment
Claus Gittinger <cg@exept.de>
parents: 3063
diff changeset
   285
cc352232adf8 comment
Claus Gittinger <cg@exept.de>
parents: 3063
diff changeset
   286
    For all of the above, there is now a convenient helper method in
cc352232adf8 comment
Claus Gittinger <cg@exept.de>
parents: 3063
diff changeset
   287
    ApplicationModel, which allows to write:
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   288
	Application openOnXScreenNamed:'foo:0'
921
db3996767685 care for rootView when checking for end of dispatch
Claus Gittinger <cg@exept.de>
parents: 900
diff changeset
   289
db3996767685 care for rootView when checking for end of dispatch
Claus Gittinger <cg@exept.de>
parents: 900
diff changeset
   290
    However, as mentioned above, there may be a few places, where the default
1191
bbc51a6c48b4 commentary
Claus Gittinger <cg@exept.de>
parents: 1189
diff changeset
   291
    display 'Display' is still hard-coded - especially, in contributed and
bbc51a6c48b4 commentary
Claus Gittinger <cg@exept.de>
parents: 1189
diff changeset
   292
    Public domain code, you may find those.
bbc51a6c48b4 commentary
Claus Gittinger <cg@exept.de>
parents: 1189
diff changeset
   293
bbc51a6c48b4 commentary
Claus Gittinger <cg@exept.de>
parents: 1189
diff changeset
   294
    Beside this (little bug ;-), remote display operation works pretty well. 
bbc51a6c48b4 commentary
Claus Gittinger <cg@exept.de>
parents: 1189
diff changeset
   295
    If you write your application to work around those, multi-display applications are
1580
9a28ea48ec73 documentation: error handling
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
   296
    possible in the current release (and actually being used in a concrete application,
9a28ea48ec73 documentation: error handling
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
   297
    where up to 6 x-terminals are connected to a single linux PC).
1191
bbc51a6c48b4 commentary
Claus Gittinger <cg@exept.de>
parents: 1189
diff changeset
   298
bbc51a6c48b4 commentary
Claus Gittinger <cg@exept.de>
parents: 1189
diff changeset
   299
    To make your application ready for multi-display operation, replace all
bbc51a6c48b4 commentary
Claus Gittinger <cg@exept.de>
parents: 1189
diff changeset
   300
    references to 'Display' by: 'Screen current', which evaluates to the currently
bbc51a6c48b4 commentary
Claus Gittinger <cg@exept.de>
parents: 1189
diff changeset
   301
    active display. I.e. each view gets its actual display via this expression.
bbc51a6c48b4 commentary
Claus Gittinger <cg@exept.de>
parents: 1189
diff changeset
   302
    Since ST/X views already use this, new views opened by remote views should
bbc51a6c48b4 commentary
Claus Gittinger <cg@exept.de>
parents: 1189
diff changeset
   303
    come up on the remote display.
151
claus
parents: 146
diff changeset
   304
claus
parents: 146
diff changeset
   305
    There is no easy solution for things like Notifiers, WarnBoxes or
claus
parents: 146
diff changeset
   306
    Debuggers when opened from some background or non-view process.
claus
parents: 146
diff changeset
   307
    These will come up one the default Display, as returned by 'Screen default'.
claus
parents: 146
diff changeset
   308
1580
9a28ea48ec73 documentation: error handling
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
   309
    Finally, your application should care for I/O errors (i.e. lost connection when
9a28ea48ec73 documentation: error handling
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
   310
    a remote display is switched off).
9a28ea48ec73 documentation: error handling
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
   311
    The framework provides per-display signals, which are raised in the corresponding
9a28ea48ec73 documentation: error handling
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
   312
    event dispatchers context.
9a28ea48ec73 documentation: error handling
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
   313
    For a save environment, you should add static exception handler blocks on those 
9a28ea48ec73 documentation: error handling
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
   314
    signals; i.e. the setup for remote displays should look somewhat like:
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   315
	|newDpy|
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   316
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   317
	newDpy := GLXWorkstation new.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   318
	newDpy := newDpy initializeFor:'localhost:0.0'.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   319
	newDpy isNil ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   320
	    self warn:'cannot connect ...'.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   321
	] ifFalse:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   322
	    newDpy deviceIOErrorSignal handlerBlock:[:ex |
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   323
		Transcript beep.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   324
		Transcript showCR:'Display (' , newDpy displayName , '): connection broken.'.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   325
		AbortSignal raise.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   326
	    ].
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   327
	    newDpy startDispatch.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   328
	    Launcher openOnDevice:newDpy.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   329
	].
1580
9a28ea48ec73 documentation: error handling
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
   330
1191
bbc51a6c48b4 commentary
Claus Gittinger <cg@exept.de>
parents: 1189
diff changeset
   331
    There may still some problems to be expected,
151
claus
parents: 146
diff changeset
   332
    if the screens have different display capabilities (b&w vs. greyscale vs.
claus
parents: 146
diff changeset
   333
    color display). The current styleSheet approach keeps default values
1580
9a28ea48ec73 documentation: error handling
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
   334
    only once (it should do so per display ...) 
9a28ea48ec73 documentation: error handling
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
   335
    For now, expect ugly looking views in this case - or set your styleSheet 
9a28ea48ec73 documentation: error handling
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
   336
    for the smallest common capabilities (i.e. for b&w).
9a28ea48ec73 documentation: error handling
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
   337
    This may be fixed in a future version ...
151
claus
parents: 146
diff changeset
   338
"
0
48194c26a46c Initial revision
claus
parents:
diff changeset
   339
! !
48194c26a46c Initial revision
claus
parents:
diff changeset
   340
1075
62f0cfb3c956 dont return nil entries in #knownViews
Claus Gittinger <cg@exept.de>
parents: 1074
diff changeset
   341
!DeviceWorkstation class methodsFor:'initialization'!
0
48194c26a46c Initial revision
claus
parents:
diff changeset
   342
2
b35336ab0de3 *** empty log message ***
claus
parents: 0
diff changeset
   343
initialize
609
c9847d4fa398 commentary
Claus Gittinger <cg@exept.de>
parents: 600
diff changeset
   344
    "create local error signals; enable errorPrinting"
c9847d4fa398 commentary
Claus Gittinger <cg@exept.de>
parents: 600
diff changeset
   345
2
b35336ab0de3 *** empty log message ***
claus
parents: 0
diff changeset
   346
    DeviceErrorSignal isNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   347
	DeviceErrorSignal := (Signal new) mayProceed:true.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   348
	DeviceErrorSignal notifierString:'device error'.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   349
	DeviceErrorSignal nameClass:self message:#deviceErrorSignal.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   350
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   351
	DeviceOpenErrorSignal := DeviceErrorSignal newSignalMayProceed:true.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   352
	DeviceOpenErrorSignal nameClass:self message:#deviceOpenErrorSignal.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   353
	DeviceOpenErrorSignal notifierString:'cannot open device'.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   354
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   355
	DeviceIOErrorSignal := (Signal new) mayProceed:false.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   356
	DeviceIOErrorSignal notifierString:'device IO error'.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   357
	DeviceIOErrorSignal nameClass:self message:#deviceIOErrorSignal.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   358
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   359
	DeviceIOTimeoutErrorSignal := DeviceIOErrorSignal newSignalMayProceed:false.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   360
	DeviceIOTimeoutErrorSignal notifierString:'device IO timeout error'.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   361
	DeviceIOTimeoutErrorSignal nameClass:self message:#deviceIOTimeoutErrorSignal.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   362
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   363
	CurrentScreenQuerySignal := QuerySignal new.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   364
	CurrentScreenQuerySignal nameClass:self message:#currentScreenQuerySignal.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   365
	CurrentScreenQuerySignal notifierString:'asking for current screen'.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   366
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   367
	DrawingOnClosedDeviceSignal := DeviceErrorSignal newSignalMayProceed:true.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   368
	DrawingOnClosedDeviceSignal nameClass:self message:#drawingOnClosedDeviceSignal.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   369
	DrawingOnClosedDeviceSignal notifierString:'drawing attempt on closed graphics device'.
3299
970960ffaef5 added DrawingOnClosedDevice signal
Claus Gittinger <cg@exept.de>
parents: 3263
diff changeset
   370
    ].
970960ffaef5 added DrawingOnClosedDevice signal
Claus Gittinger <cg@exept.de>
parents: 3263
diff changeset
   371
218
10072d9beba5 can now turn off Xlib error messages from the errorHandler
Claus Gittinger <cg@exept.de>
parents: 206
diff changeset
   372
    ErrorPrinting := true.
423
98a3808d9902 additions for standAlone operation
Claus Gittinger <cg@exept.de>
parents: 414
diff changeset
   373
134
claus
parents: 133
diff changeset
   374
    self initializeConstants.
609
c9847d4fa398 commentary
Claus Gittinger <cg@exept.de>
parents: 600
diff changeset
   375
3136
7d2a4bd6639e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3121
diff changeset
   376
    "/ for ST80 compatibility ...
7d2a4bd6639e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3121
diff changeset
   377
    Screen := self.
7d2a4bd6639e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3121
diff changeset
   378
1844
ecf90e7d098e name signals
Claus Gittinger <cg@exept.de>
parents: 1843
diff changeset
   379
    "Modified: 3.8.1997 / 18:14:58 / cg"
2
b35336ab0de3 *** empty log message ***
claus
parents: 0
diff changeset
   380
!
b35336ab0de3 *** empty log message ***
claus
parents: 0
diff changeset
   381
0
48194c26a46c Initial revision
claus
parents:
diff changeset
   382
initializeConstants
48194c26a46c Initial revision
claus
parents:
diff changeset
   383
    "initialize some (soft) constants"
48194c26a46c Initial revision
claus
parents:
diff changeset
   384
3311
789892d4bbb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3308
diff changeset
   385
    MultiClickTimeDelta := 300.             "a click within 300ms is considered a double one"
3630
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   386
    ButtonTranslation isNil ifTrue:[
3896
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
   387
	ButtonTranslation := #(1 2 2 2 2 2 2)  "all other buttons to middleButton menu"
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
   388
	"/ ButtonTranslation := #(1 2 3 4 5 6 7)  "identity translation"
3630
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   389
    ].
1704
cefae21c9c0b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1697
diff changeset
   390
!
cefae21c9c0b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1697
diff changeset
   391
cefae21c9c0b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1697
diff changeset
   392
nativeWindows:aBoolean
cefae21c9c0b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1697
diff changeset
   393
    "enable / disable use of native windows - dummy here."
cefae21c9c0b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1697
diff changeset
   394
0
48194c26a46c Initial revision
claus
parents:
diff changeset
   395
! !
48194c26a46c Initial revision
claus
parents:
diff changeset
   396
3630
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   397
!DeviceWorkstation class methodsFor:'instance creation'!
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   398
3927
794c7dd6113b moved newDispatchingFor:
Claus Gittinger <cg@exept.de>
parents: 3925
diff changeset
   399
newDispatchingFor:aScreenName
794c7dd6113b moved newDispatchingFor:
Claus Gittinger <cg@exept.de>
parents: 3925
diff changeset
   400
    "create a new instance of mySelf, which serves aDeviceName.
794c7dd6113b moved newDispatchingFor:
Claus Gittinger <cg@exept.de>
parents: 3925
diff changeset
   401
     Only useful for device-classes which support multiple devices -
794c7dd6113b moved newDispatchingFor:
Claus Gittinger <cg@exept.de>
parents: 3925
diff changeset
   402
     i.e. X-Workstations"
794c7dd6113b moved newDispatchingFor:
Claus Gittinger <cg@exept.de>
parents: 3925
diff changeset
   403
794c7dd6113b moved newDispatchingFor:
Claus Gittinger <cg@exept.de>
parents: 3925
diff changeset
   404
    |newDevice someScreen|
794c7dd6113b moved newDispatchingFor:
Claus Gittinger <cg@exept.de>
parents: 3925
diff changeset
   405
794c7dd6113b moved newDispatchingFor:
Claus Gittinger <cg@exept.de>
parents: 3925
diff changeset
   406
    newDevice := self newFor:aScreenName.
794c7dd6113b moved newDispatchingFor:
Claus Gittinger <cg@exept.de>
parents: 3925
diff changeset
   407
    newDevice startDispatch.
794c7dd6113b moved newDispatchingFor:
Claus Gittinger <cg@exept.de>
parents: 3925
diff changeset
   408
    (someScreen := Screen current) isNil ifTrue:[
794c7dd6113b moved newDispatchingFor:
Claus Gittinger <cg@exept.de>
parents: 3925
diff changeset
   409
        someScreen := Screen default.
794c7dd6113b moved newDispatchingFor:
Claus Gittinger <cg@exept.de>
parents: 3925
diff changeset
   410
    ].
794c7dd6113b moved newDispatchingFor:
Claus Gittinger <cg@exept.de>
parents: 3925
diff changeset
   411
    someScreen notNil ifTrue:[
794c7dd6113b moved newDispatchingFor:
Claus Gittinger <cg@exept.de>
parents: 3925
diff changeset
   412
        newDevice keyboardMap:(someScreen keyboardMap).
794c7dd6113b moved newDispatchingFor:
Claus Gittinger <cg@exept.de>
parents: 3925
diff changeset
   413
        newDevice buttonTranslation:(someScreen buttonTranslation).
794c7dd6113b moved newDispatchingFor:
Claus Gittinger <cg@exept.de>
parents: 3925
diff changeset
   414
    ].
794c7dd6113b moved newDispatchingFor:
Claus Gittinger <cg@exept.de>
parents: 3925
diff changeset
   415
794c7dd6113b moved newDispatchingFor:
Claus Gittinger <cg@exept.de>
parents: 3925
diff changeset
   416
    "/ arrange for it to finish its event dispatch loop, 
794c7dd6113b moved newDispatchingFor:
Claus Gittinger <cg@exept.de>
parents: 3925
diff changeset
   417
    "/ when the last view on it is closed.
794c7dd6113b moved newDispatchingFor:
Claus Gittinger <cg@exept.de>
parents: 3925
diff changeset
   418
    newDevice exitOnLastClose:true.
794c7dd6113b moved newDispatchingFor:
Claus Gittinger <cg@exept.de>
parents: 3925
diff changeset
   419
794c7dd6113b moved newDispatchingFor:
Claus Gittinger <cg@exept.de>
parents: 3925
diff changeset
   420
    ^ newDevice.
794c7dd6113b moved newDispatchingFor:
Claus Gittinger <cg@exept.de>
parents: 3925
diff changeset
   421
!
794c7dd6113b moved newDispatchingFor:
Claus Gittinger <cg@exept.de>
parents: 3925
diff changeset
   422
3630
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   423
newFor:aDisplayName
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   424
    "Create an new instance for a connection to aDisplayName.
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   425
     If aDisplayName is nil, a connection to the standard display is opened"
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   426
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   427
    ^ self basicNew initializeFor:aDisplayName
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   428
!
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   429
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   430
openDefaultDisplay:aStringOrNil
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   431
    "open the default display. aStringOrNil may be the display name,
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   432
     if nil, the name is extracted from command-line-arguments or the environment.
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   433
     Raise a signal if open fails."
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   434
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   435
    |display displayName|
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   436
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   437
    displayName := aStringOrNil ? Screen defaultDisplayName.
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   438
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   439
    "find out about the concrete Workstation class"
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   440
    Screen isAbstract ifTrue:[ 
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   441
	|wsClass wsClasses|
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   442
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   443
	wsClasses := OrderedCollection new.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   444
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   445
	#(OpenGLWorkstation GLXWorkstation XWorkstation) 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   446
	    detect:[:w| (wsClass := Smalltalk at:w) notNil] ifNone:nil.
3766
0b92741d06f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3747
diff changeset
   447
	wsClass notNil ifTrue:[wsClasses add:wsClass].
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   448
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   449
	"preparation for WIN32/NeXTStep/OS2 and Mac interfacing;
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   450
	 But if X11 is linked in and it is capable of setting up a connection, that will be used."
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   451
	#(
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   452
	    "/ #NeXTWorkstation  nil
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   453
	    OS2Workstation   isOS2like
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   454
	    MacWorkstation   isMAClike
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   455
	    WinWorkstation   isMSWINDOWSlike
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   456
	) pairWiseDo:[:wsClassName :checkSel|
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   457
	    (checkSel isNil or:[OperatingSystem perform:checkSel]) ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   458
		(wsClass := Smalltalk at:wsClassName) notNil ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   459
		    wsClasses add:wsClass.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   460
		]
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   461
	    ].
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   462
	].
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   463
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   464
	"/ try all classes until open of display works.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   465
	wsClasses detect:[:cls|
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   466
	    [
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   467
		display := cls newFor:displayName.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   468
	    ] on:Screen deviceOpenErrorSignal do:[:ex| ].
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   469
	    display notNil
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   470
	] ifNone:nil.
3630
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   471
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   472
    ] ifFalse:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   473
	display := Screen newFor:displayName.
3630
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   474
    ].
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   475
    display isNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   476
	Screen deviceOpenErrorSignal raiseWith:displayName.
3630
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   477
    ].
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   478
    Screen := display class.
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   479
    Screen default:display.
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   480
! !
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   481
1075
62f0cfb3c956 dont return nil entries in #knownViews
Claus Gittinger <cg@exept.de>
parents: 1074
diff changeset
   482
!DeviceWorkstation class methodsFor:'Signal constants'!
2
b35336ab0de3 *** empty log message ***
claus
parents: 0
diff changeset
   483
1219
e1e8d23f16e2 added another query signal: currentScreenQuerySignal.
Claus Gittinger <cg@exept.de>
parents: 1217
diff changeset
   484
currentScreenQuerySignal
e1e8d23f16e2 added another query signal: currentScreenQuerySignal.
Claus Gittinger <cg@exept.de>
parents: 1217
diff changeset
   485
    "return the signal which can be used to provide a current
e1e8d23f16e2 added another query signal: currentScreenQuerySignal.
Claus Gittinger <cg@exept.de>
parents: 1217
diff changeset
   486
     screen (if background processes ask for one)"
e1e8d23f16e2 added another query signal: currentScreenQuerySignal.
Claus Gittinger <cg@exept.de>
parents: 1217
diff changeset
   487
3398
763d33dbd23a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3397
diff changeset
   488
    CurrentScreenQuerySignal isNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   489
	DeviceWorkstation initialize
3398
763d33dbd23a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3397
diff changeset
   490
    ].
1219
e1e8d23f16e2 added another query signal: currentScreenQuerySignal.
Claus Gittinger <cg@exept.de>
parents: 1217
diff changeset
   491
    ^ CurrentScreenQuerySignal
e1e8d23f16e2 added another query signal: currentScreenQuerySignal.
Claus Gittinger <cg@exept.de>
parents: 1217
diff changeset
   492
e1e8d23f16e2 added another query signal: currentScreenQuerySignal.
Claus Gittinger <cg@exept.de>
parents: 1217
diff changeset
   493
    "Created: 15.2.1997 / 15:07:20 / cg"
e1e8d23f16e2 added another query signal: currentScreenQuerySignal.
Claus Gittinger <cg@exept.de>
parents: 1217
diff changeset
   494
!
e1e8d23f16e2 added another query signal: currentScreenQuerySignal.
Claus Gittinger <cg@exept.de>
parents: 1217
diff changeset
   495
2
b35336ab0de3 *** empty log message ***
claus
parents: 0
diff changeset
   496
deviceErrorSignal
1578
01db7f44cbbd handle broken X-connection smoothly
Claus Gittinger <cg@exept.de>
parents: 1562
diff changeset
   497
    "return the signal used for device error reporting.
01db7f44cbbd handle broken X-connection smoothly
Claus Gittinger <cg@exept.de>
parents: 1562
diff changeset
   498
     In multi-display configurations, this is the parent of
01db7f44cbbd handle broken X-connection smoothly
Claus Gittinger <cg@exept.de>
parents: 1562
diff changeset
   499
     all per-instance deviceErrorSignals."
2
b35336ab0de3 *** empty log message ***
claus
parents: 0
diff changeset
   500
b35336ab0de3 *** empty log message ***
claus
parents: 0
diff changeset
   501
    ^ DeviceErrorSignal
1578
01db7f44cbbd handle broken X-connection smoothly
Claus Gittinger <cg@exept.de>
parents: 1562
diff changeset
   502
!
01db7f44cbbd handle broken X-connection smoothly
Claus Gittinger <cg@exept.de>
parents: 1562
diff changeset
   503
01db7f44cbbd handle broken X-connection smoothly
Claus Gittinger <cg@exept.de>
parents: 1562
diff changeset
   504
deviceIOErrorSignal
01db7f44cbbd handle broken X-connection smoothly
Claus Gittinger <cg@exept.de>
parents: 1562
diff changeset
   505
    "return the signal used for device I/O error reporting.
01db7f44cbbd handle broken X-connection smoothly
Claus Gittinger <cg@exept.de>
parents: 1562
diff changeset
   506
     In multi-display configurations, this is the parent of
01db7f44cbbd handle broken X-connection smoothly
Claus Gittinger <cg@exept.de>
parents: 1562
diff changeset
   507
     all per-instance deviceIOErrorSignals."
01db7f44cbbd handle broken X-connection smoothly
Claus Gittinger <cg@exept.de>
parents: 1562
diff changeset
   508
01db7f44cbbd handle broken X-connection smoothly
Claus Gittinger <cg@exept.de>
parents: 1562
diff changeset
   509
    ^ DeviceIOErrorSignal
1973
fda63fa03595 preps for timeout handling
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
   510
!
fda63fa03595 preps for timeout handling
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
   511
fda63fa03595 preps for timeout handling
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
   512
deviceIOTimeoutErrorSignal
fda63fa03595 preps for timeout handling
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
   513
    "return the signal used for device I/O timeout error reporting.
fda63fa03595 preps for timeout handling
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
   514
     In multi-display configurations, this is the parent of
fda63fa03595 preps for timeout handling
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
   515
     all per-instance deviceIOTimeoutErrorSignals."
fda63fa03595 preps for timeout handling
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
   516
fda63fa03595 preps for timeout handling
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
   517
    ^ DeviceIOTimeoutErrorSignal
3308
f20f8481741c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3306
diff changeset
   518
!
f20f8481741c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3306
diff changeset
   519
3630
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   520
deviceOpenErrorSignal
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   521
    "return the signal used for reporting of errors while opening a device."
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   522
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   523
    ^ DeviceOpenErrorSignal
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   524
!
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   525
3308
f20f8481741c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3306
diff changeset
   526
drawingOnClosedDeviceSignal
f20f8481741c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3306
diff changeset
   527
    ^  DrawingOnClosedDeviceSignal
1578
01db7f44cbbd handle broken X-connection smoothly
Claus Gittinger <cg@exept.de>
parents: 1562
diff changeset
   528
! !
01db7f44cbbd handle broken X-connection smoothly
Claus Gittinger <cg@exept.de>
parents: 1562
diff changeset
   529
1075
62f0cfb3c956 dont return nil entries in #knownViews
Claus Gittinger <cg@exept.de>
parents: 1074
diff changeset
   530
!DeviceWorkstation class methodsFor:'accessing'!
0
48194c26a46c Initial revision
claus
parents:
diff changeset
   531
3630
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   532
default
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   533
    "ST-80 compatibility.
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   534
     Return the default screen. This is typically the first opened
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   535
     Display screen in a session. Use of the global variable Display
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   536
     should vanish over time - replace it by Screen default."
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   537
3941
1c977ca4cdea defaultScreen
penk
parents: 3927
diff changeset
   538
    ^ DefaultScreen ? Display
3630
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   539
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   540
    "
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   541
     Screen default 
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   542
    "
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   543
!
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   544
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   545
default:aDevice
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   546
    "Set the default screen. This is sent very early during startup,
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   547
     and assigns the first opened screenDevice to both Display and the default
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   548
     screen."
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   549
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   550
    |old|
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   551
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   552
    old := DefaultScreen.
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   553
    DefaultScreen := aDevice.
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   554
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   555
    "as long as global variable Display exists, set it too"
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   556
    Display := aDevice.
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   557
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   558
    old ~~ aDevice ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   559
	DisplayRootView initialize.
75
claus
parents: 71
diff changeset
   560
    ].
0
48194c26a46c Initial revision
claus
parents:
diff changeset
   561
! !
48194c26a46c Initial revision
claus
parents:
diff changeset
   562
1075
62f0cfb3c956 dont return nil entries in #knownViews
Claus Gittinger <cg@exept.de>
parents: 1074
diff changeset
   563
!DeviceWorkstation class methodsFor:'error handling'!
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   564
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   565
errorInterrupt:errID with:aParameter
544
5db747591945 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 535
diff changeset
   566
    "{ Pragma: +optSpace }"
5db747591945 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 535
diff changeset
   567
609
c9847d4fa398 commentary
Claus Gittinger <cg@exept.de>
parents: 600
diff changeset
   568
    "an error in the devices low level code (typically Xlib or XtLib)
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   569
     This is invoked via 
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   570
	XError->errorInterrupt:#DisplayError->registeredErrorInterruptHandlers
1578
01db7f44cbbd handle broken X-connection smoothly
Claus Gittinger <cg@exept.de>
parents: 1562
diff changeset
   571
     or
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   572
	XError->errorInterrupt:#DisplayIOError->registeredErrorInterruptHandlers
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   573
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   574
     looks if a signal handler for DeviceErrorSignal is present,
1578
01db7f44cbbd handle broken X-connection smoothly
Claus Gittinger <cg@exept.de>
parents: 1562
diff changeset
   575
     and - if so raises the signal. 
01db7f44cbbd handle broken X-connection smoothly
Claus Gittinger <cg@exept.de>
parents: 1562
diff changeset
   576
     If the signal not handled, simply output a message and continue.
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   577
     This allows for non disrupted error reporting OR to catch and
1578
01db7f44cbbd handle broken X-connection smoothly
Claus Gittinger <cg@exept.de>
parents: 1562
diff changeset
   578
     investigate errors as required.
01db7f44cbbd handle broken X-connection smoothly
Claus Gittinger <cg@exept.de>
parents: 1562
diff changeset
   579
     However, io-errors are always delivered as a signal raise."
01db7f44cbbd handle broken X-connection smoothly
Claus Gittinger <cg@exept.de>
parents: 1562
diff changeset
   580
2983
33a985356bbd Fix X error handling
Stefan Vogel <sv@exept.de>
parents: 2978
diff changeset
   581
    |badId badResource msg theDevice theSignal p signalHolder|
1578
01db7f44cbbd handle broken X-connection smoothly
Claus Gittinger <cg@exept.de>
parents: 1562
diff changeset
   582
3013
228dca610672 checkin from browser
Stefan Vogel <sv@exept.de>
parents: 3012
diff changeset
   583
    'DeviceWorkstation [info]: errorInterrupt: ' infoPrint. errID infoPrintCR.
1973
fda63fa03595 preps for timeout handling
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
   584
1578
01db7f44cbbd handle broken X-connection smoothly
Claus Gittinger <cg@exept.de>
parents: 1562
diff changeset
   585
    errID notNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   586
	"/
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   587
	"/ timeoutError passes the device;
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   588
	"/ the others pass the devicesID
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   589
	"/
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   590
	errID == #DisplayIOTimeoutError ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   591
	    theDevice := aParameter.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   592
	    "/ 'device timeout error' printCR.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   593
	] ifFalse:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   594
	    AllScreens do:[:aDisplayDevice |
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   595
		aDisplayDevice id = aParameter ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   596
		    theDevice := aDisplayDevice.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   597
		]
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   598
	    ]
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   599
	]
3299
970960ffaef5 added DrawingOnClosedDevice signal
Claus Gittinger <cg@exept.de>
parents: 3263
diff changeset
   600
    ].
970960ffaef5 added DrawingOnClosedDevice signal
Claus Gittinger <cg@exept.de>
parents: 3263
diff changeset
   601
    'DeviceWorkstation [info]: device: ' infoPrint. theDevice infoPrintCR.
1578
01db7f44cbbd handle broken X-connection smoothly
Claus Gittinger <cg@exept.de>
parents: 1562
diff changeset
   602
01db7f44cbbd handle broken X-connection smoothly
Claus Gittinger <cg@exept.de>
parents: 1562
diff changeset
   603
    "/ now, we have the bad guy at hand ...
01db7f44cbbd handle broken X-connection smoothly
Claus Gittinger <cg@exept.de>
parents: 1562
diff changeset
   604
    "/ get a per-instance signal.
01db7f44cbbd handle broken X-connection smoothly
Claus Gittinger <cg@exept.de>
parents: 1562
diff changeset
   605
2983
33a985356bbd Fix X error handling
Stefan Vogel <sv@exept.de>
parents: 2978
diff changeset
   606
    signalHolder := theDevice ? self.
1578
01db7f44cbbd handle broken X-connection smoothly
Claus Gittinger <cg@exept.de>
parents: 1562
diff changeset
   607
    errID == #DisplayIOError ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   608
	"/ always raises an exception
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   609
	msg := 'Display I/O Error'.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   610
	badResource := theDevice.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   611
	theSignal := signalHolder deviceIOErrorSignal.
1578
01db7f44cbbd handle broken X-connection smoothly
Claus Gittinger <cg@exept.de>
parents: 1562
diff changeset
   612
    ] ifFalse:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   613
	errID == #DisplayIOTimeoutError ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   614
	    "/ always raises an exception for the current process
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   615
	    msg := 'Display I/O timeout Error'.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   616
	    badResource := theDevice.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   617
	    theSignal := signalHolder deviceIOTimeoutErrorSignal
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   618
	] ifFalse:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   619
	    theSignal := signalHolder deviceErrorSignal.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   620
	    "/ only raises an exception if handled
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   621
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   622
	    "/ that will become instance-specific information in
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   623
	    "/ the near future ...
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   624
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   625
	    badId := self resourceIdOfLastError.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   626
	    badId ~~ 0 ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   627
		badResource := self resourceOfId:badId.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   628
	    ].
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   629
	    msg := 'Display error: ' , (self lastErrorString).
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   630
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   631
	    theSignal isHandled ifFalse:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   632
		ErrorPrinting ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   633
		    ('DeviceWorkstation [error]: ' , msg) errorPrintCR
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   634
		].
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   635
		^ self
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   636
	    ]
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   637
	]
1578
01db7f44cbbd handle broken X-connection smoothly
Claus Gittinger <cg@exept.de>
parents: 1562
diff changeset
   638
    ].
01db7f44cbbd handle broken X-connection smoothly
Claus Gittinger <cg@exept.de>
parents: 1562
diff changeset
   639
2983
33a985356bbd Fix X error handling
Stefan Vogel <sv@exept.de>
parents: 2978
diff changeset
   640
1973
fda63fa03595 preps for timeout handling
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
   641
    "/ interrupt that displays dispatch process
fda63fa03595 preps for timeout handling
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
   642
    "/ and force it to shutdown
fda63fa03595 preps for timeout handling
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
   643
fda63fa03595 preps for timeout handling
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
   644
    theDevice notNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   645
	"/ DiplayIOTimeoutError is a synchronous event, that should hit the process
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   646
	"/ that caused the timeout.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   647
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   648
	errID ~~ #DisplayIOTimeoutError ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   649
	    p := theDevice dispatchProcess.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   650
	    (p notNil and:[p ~~ Processor activeProcess]) ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   651
		'DeviceWorkstation [info]: interrupting: ' infoPrint. p displayString infoPrintCR.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   652
		p interruptWith:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   653
		    'DeviceWorkstation [warning]: raising - exception' errorPrintCR.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   654
		    theSignal mayProceed ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   655
			theSignal raiseRequestWith:badResource errorString:msg.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   656
		    ] ifFalse:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   657
			theSignal raiseWith:badResource errorString:msg.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   658
		    ].
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   659
		    'DeviceWorkstation [warning]: broken connection' errorPrintCR.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   660
		    theDevice brokenConnection.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   661
		    'DeviceWorkstation [warning]: stopping dispatch' errorPrintCR.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   662
		    theDevice stopDispatch.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   663
		].
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   664
		^ self.
3013
228dca610672 checkin from browser
Stefan Vogel <sv@exept.de>
parents: 3012
diff changeset
   665
"/                Processor reschedule.
228dca610672 checkin from browser
Stefan Vogel <sv@exept.de>
parents: 3012
diff changeset
   666
"/                AbortSignal raise.
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   667
	    ].
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   668
	].
1973
fda63fa03595 preps for timeout handling
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
   669
    ].
fda63fa03595 preps for timeout handling
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
   670
3186
c6cbcd34adf8 Allow handling of DisplayTimeout errors.
Stefan Vogel <sv@exept.de>
parents: 3177
diff changeset
   671
    (theSignal isHandled or:[theSignal handlerBlock notNil]) ifTrue:[
3013
228dca610672 checkin from browser
Stefan Vogel <sv@exept.de>
parents: 3012
diff changeset
   672
"/        'DeviceWorkstation [info]: interrupting current process: ' infoPrint. 
228dca610672 checkin from browser
Stefan Vogel <sv@exept.de>
parents: 3012
diff changeset
   673
"/        Processor activeProcess displayString infoPrintCR.
228dca610672 checkin from browser
Stefan Vogel <sv@exept.de>
parents: 3012
diff changeset
   674
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   675
	'DeviceWorkstation [info]: raising signal in current process' infoPrintCR. 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   676
	theSignal mayProceed ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   677
	    theSignal raiseRequestWith:badResource errorString:msg.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   678
	] ifFalse:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   679
	    theSignal raiseWith:badResource errorString:msg.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   680
	].        
2983
33a985356bbd Fix X error handling
Stefan Vogel <sv@exept.de>
parents: 2978
diff changeset
   681
    ].
3186
c6cbcd34adf8 Allow handling of DisplayTimeout errors.
Stefan Vogel <sv@exept.de>
parents: 3177
diff changeset
   682
c6cbcd34adf8 Allow handling of DisplayTimeout errors.
Stefan Vogel <sv@exept.de>
parents: 3177
diff changeset
   683
    theDevice notNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   684
	"/ 'broken connection' printCR.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   685
	'DeviceWorkstation [info]: sending #brokenConnection' infoPrintCR. 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   686
	theDevice brokenConnection.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   687
	theDevice dispatchProcess == Processor activeProcess ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   688
	    "/ I am running in the dispatch process
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   689
	    "/ and nobody handles theSignal, so abort the dispatcher
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   690
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   691
	   'DeviceWorkstation [info]: raising abortSignal' infoPrintCR. 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   692
	    AbortSignal raise.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   693
	] ifFalse:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   694
	    "/ Some other process (probably not even guilty - like someone doing a draw after a change) ...
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   695
	    "/ ... see if we can unwind out of the drawing operation
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   696
	   'DeviceWorkstation [info]: should unwind the draw operation' infoPrintCR. 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   697
	    thisContext fullPrintAll.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   698
	]
3299
970960ffaef5 added DrawingOnClosedDevice signal
Claus Gittinger <cg@exept.de>
parents: 3263
diff changeset
   699
    ].
970960ffaef5 added DrawingOnClosedDevice signal
Claus Gittinger <cg@exept.de>
parents: 3263
diff changeset
   700
    'DeviceWorkstation [info]: proceeding after error' infoPrintCR. 
1578
01db7f44cbbd handle broken X-connection smoothly
Claus Gittinger <cg@exept.de>
parents: 1562
diff changeset
   701
01db7f44cbbd handle broken X-connection smoothly
Claus Gittinger <cg@exept.de>
parents: 1562
diff changeset
   702
    "Modified: 11.4.1997 / 11:28:27 / cg"
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   703
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   704
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   705
errorPrinting
609
c9847d4fa398 commentary
Claus Gittinger <cg@exept.de>
parents: 600
diff changeset
   706
    "return the `errorPrinting-is-on' flag"
c9847d4fa398 commentary
Claus Gittinger <cg@exept.de>
parents: 600
diff changeset
   707
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   708
    ErrorPrinting isNil ifTrue:[^ false].
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   709
    ^ ErrorPrinting
609
c9847d4fa398 commentary
Claus Gittinger <cg@exept.de>
parents: 600
diff changeset
   710
c9847d4fa398 commentary
Claus Gittinger <cg@exept.de>
parents: 600
diff changeset
   711
    "Modified: 24.4.1996 / 19:35:55 / cg"
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   712
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   713
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   714
errorPrinting:aBoolean
609
c9847d4fa398 commentary
Claus Gittinger <cg@exept.de>
parents: 600
diff changeset
   715
    "set/clear the `errorPrinting-is-on' flag"
c9847d4fa398 commentary
Claus Gittinger <cg@exept.de>
parents: 600
diff changeset
   716
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   717
    ErrorPrinting := aBoolean
609
c9847d4fa398 commentary
Claus Gittinger <cg@exept.de>
parents: 600
diff changeset
   718
c9847d4fa398 commentary
Claus Gittinger <cg@exept.de>
parents: 600
diff changeset
   719
    "Modified: 24.4.1996 / 19:36:02 / cg"
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   720
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   721
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   722
lastErrorString
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   723
    "return a string describing the last error"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   724
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   725
    ^ self subclassResponsibility
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   726
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   727
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   728
resourceIdOfLastError
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   729
    "return the resource id responsible for the last error"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   730
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   731
    ^ self subclassResponsibility
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   732
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   733
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   734
resourceOfId:id
544
5db747591945 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 535
diff changeset
   735
    "{ Pragma: +optSpace }"
5db747591945 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 535
diff changeset
   736
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   737
    "search thru all device stuff for a resource.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   738
     Needed for error handling"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   739
2428
191f961209f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2403
diff changeset
   740
    Form allInstancesDo:[:f |
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   741
	f id == id ifTrue:[^ f]
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   742
    ].
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   743
2428
191f961209f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2403
diff changeset
   744
    self allInstancesDo:[:aDisplay |
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   745
	aDisplay allViewsDo:[:aView |
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   746
	    aView id == id ifTrue:[^ aView].
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   747
	    aView gcId == id ifTrue:[^ aView]
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   748
	].
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   749
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   750
"/        |views|
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   751
"/        views := aDisplay knownViews.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   752
"/        views notNil ifTrue:[
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   753
"/            views do:[:v |
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   754
"/                v id == id ifTrue:[^ v].
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   755
"/                v gcId == id ifTrue:[^ v]
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   756
"/            ].
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   757
"/        ].
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   758
    ].
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   759
2428
191f961209f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2403
diff changeset
   760
    Color allInstancesDo:[:c |
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   761
	c colorId == id ifTrue:[^ c]
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   762
    ].
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   763
2428
191f961209f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2403
diff changeset
   764
    Font allInstancesDo:[:f |
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   765
	f fontId == id ifTrue:[^ f]
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   766
    ].
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   767
    ^ nil
609
c9847d4fa398 commentary
Claus Gittinger <cg@exept.de>
parents: 600
diff changeset
   768
c9847d4fa398 commentary
Claus Gittinger <cg@exept.de>
parents: 600
diff changeset
   769
    "Modified: 24.4.1996 / 19:36:15 / cg"
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   770
! !
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   771
1075
62f0cfb3c956 dont return nil entries in #knownViews
Claus Gittinger <cg@exept.de>
parents: 1074
diff changeset
   772
!DeviceWorkstation class methodsFor:'queries'!
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   773
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   774
allScreens
609
c9847d4fa398 commentary
Claus Gittinger <cg@exept.de>
parents: 600
diff changeset
   775
    "Return a collection of active display devices.
390
19a90edd0dc4 added #resolution for ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 354
diff changeset
   776
     Typically, there is only one: Display or Screen current."
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   777
1870
7f5931773d54 allScreens should always return a collection
Claus Gittinger <cg@exept.de>
parents: 1844
diff changeset
   778
    ^ AllScreens ? #()
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   779
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   780
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   781
     Screen allScreens  
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   782
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   783
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   784
    "Modified: 1.9.1995 / 13:38:35 / claus"
1870
7f5931773d54 allScreens should always return a collection
Claus Gittinger <cg@exept.de>
parents: 1844
diff changeset
   785
    "Modified: 18.8.1997 / 18:43:42 / cg"
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   786
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   787
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   788
current
609
c9847d4fa398 commentary
Claus Gittinger <cg@exept.de>
parents: 600
diff changeset
   789
    "Return the currently active screen,
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   790
     that is, the device of the currently executing windowGroup.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   791
     It will be used in multi-display operation, to launch views on
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   792
     the correct device - even if not specified explicitely.
609
c9847d4fa398 commentary
Claus Gittinger <cg@exept.de>
parents: 600
diff changeset
   793
     This does not yet work fully satisfying if a background processes
3100
0997eb19c9a4 removed info message (cannot figure out current screen)
Claus Gittinger <cg@exept.de>
parents: 3091
diff changeset
   794
     invokes this ... the default display is returned in this case.
0997eb19c9a4 removed info message (cannot figure out current screen)
Claus Gittinger <cg@exept.de>
parents: 3091
diff changeset
   795
     In a headless (i.e. non-GUI) application, nil is returned."
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   796
1310
6f89c1709ac3 changed (fixed?) Screen>>current
Claus Gittinger <cg@exept.de>
parents: 1305
diff changeset
   797
    |wg dev thisProcess|
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   798
1219
e1e8d23f16e2 added another query signal: currentScreenQuerySignal.
Claus Gittinger <cg@exept.de>
parents: 1217
diff changeset
   799
    "/
e1e8d23f16e2 added another query signal: currentScreenQuerySignal.
Claus Gittinger <cg@exept.de>
parents: 1217
diff changeset
   800
    "/ if there is only one screen,
e1e8d23f16e2 added another query signal: currentScreenQuerySignal.
Claus Gittinger <cg@exept.de>
parents: 1217
diff changeset
   801
    "/ take that ... it ought to be display
e1e8d23f16e2 added another query signal: currentScreenQuerySignal.
Claus Gittinger <cg@exept.de>
parents: 1217
diff changeset
   802
    "/
e1e8d23f16e2 added another query signal: currentScreenQuerySignal.
Claus Gittinger <cg@exept.de>
parents: 1217
diff changeset
   803
    AllScreens size <= 1 ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   804
	LastActiveProcess := LastActiveScreen := nil.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   805
	Display notNil ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   806
	    ^ Display
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   807
	]
347
da278b0e623b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 340
diff changeset
   808
    ].
1219
e1e8d23f16e2 added another query signal: currentScreenQuerySignal.
Claus Gittinger <cg@exept.de>
parents: 1217
diff changeset
   809
e1e8d23f16e2 added another query signal: currentScreenQuerySignal.
Claus Gittinger <cg@exept.de>
parents: 1217
diff changeset
   810
    "/
e1e8d23f16e2 added another query signal: currentScreenQuerySignal.
Claus Gittinger <cg@exept.de>
parents: 1217
diff changeset
   811
    "/ someone willing to tell me ?
e1e8d23f16e2 added another query signal: currentScreenQuerySignal.
Claus Gittinger <cg@exept.de>
parents: 1217
diff changeset
   812
    "/
3398
763d33dbd23a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3397
diff changeset
   813
    (dev := self currentScreenQuerySignal query) notNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   814
	^ dev
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   815
    ].
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   816
1310
6f89c1709ac3 changed (fixed?) Screen>>current
Claus Gittinger <cg@exept.de>
parents: 1305
diff changeset
   817
    thisProcess := Processor activeProcess.
6f89c1709ac3 changed (fixed?) Screen>>current
Claus Gittinger <cg@exept.de>
parents: 1305
diff changeset
   818
    LastActiveScreen notNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   819
	LastActiveProcess == thisProcess ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   820
	    ^ LastActiveScreen
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   821
	]
1310
6f89c1709ac3 changed (fixed?) Screen>>current
Claus Gittinger <cg@exept.de>
parents: 1305
diff changeset
   822
    ].
6f89c1709ac3 changed (fixed?) Screen>>current
Claus Gittinger <cg@exept.de>
parents: 1305
diff changeset
   823
1219
e1e8d23f16e2 added another query signal: currentScreenQuerySignal.
Claus Gittinger <cg@exept.de>
parents: 1217
diff changeset
   824
    "/
e1e8d23f16e2 added another query signal: currentScreenQuerySignal.
Claus Gittinger <cg@exept.de>
parents: 1217
diff changeset
   825
    "/ mhmh - multiple screens are active;
e1e8d23f16e2 added another query signal: currentScreenQuerySignal.
Claus Gittinger <cg@exept.de>
parents: 1217
diff changeset
   826
    "/ look for the active windowGroups screen.
e1e8d23f16e2 added another query signal: currentScreenQuerySignal.
Claus Gittinger <cg@exept.de>
parents: 1217
diff changeset
   827
    "/ Be careful, to not run into an error in case
e1e8d23f16e2 added another query signal: currentScreenQuerySignal.
Claus Gittinger <cg@exept.de>
parents: 1217
diff changeset
   828
    "/ the current windowGroup got corrupted somehow ...
e1e8d23f16e2 added another query signal: currentScreenQuerySignal.
Claus Gittinger <cg@exept.de>
parents: 1217
diff changeset
   829
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   830
    (wg := WindowGroup activeGroup) notNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   831
	"/
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   832
	"/ ok, not a background process or scheduler ...
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   833
	"/
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   834
	(dev := wg graphicsDevice) notNil ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   835
	    LastActiveScreen := dev.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   836
	    LastActiveProcess := thisProcess.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   837
	    ^ dev
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   838
	].
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   839
    ].
1219
e1e8d23f16e2 added another query signal: currentScreenQuerySignal.
Claus Gittinger <cg@exept.de>
parents: 1217
diff changeset
   840
e1e8d23f16e2 added another query signal: currentScreenQuerySignal.
Claus Gittinger <cg@exept.de>
parents: 1217
diff changeset
   841
    "/
e1e8d23f16e2 added another query signal: currentScreenQuerySignal.
Claus Gittinger <cg@exept.de>
parents: 1217
diff changeset
   842
    "/ in all other cases, return the default display
3100
0997eb19c9a4 removed info message (cannot figure out current screen)
Claus Gittinger <cg@exept.de>
parents: 3091
diff changeset
   843
    "/ (which may be nil in a headless system)
1219
e1e8d23f16e2 added another query signal: currentScreenQuerySignal.
Claus Gittinger <cg@exept.de>
parents: 1217
diff changeset
   844
    "/
3100
0997eb19c9a4 removed info message (cannot figure out current screen)
Claus Gittinger <cg@exept.de>
parents: 3091
diff changeset
   845
"/    'DevWorkstation [info]: cannot figure out current screen - use default' infoPrintCR.
1310
6f89c1709ac3 changed (fixed?) Screen>>current
Claus Gittinger <cg@exept.de>
parents: 1305
diff changeset
   846
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   847
    ^ Display
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   848
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   849
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   850
     Screen current 
3308
f20f8481741c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3306
diff changeset
   851
f20f8481741c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3306
diff changeset
   852
     |s|
f20f8481741c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3306
diff changeset
   853
     Transcript topView windowGroup process interruptWith:[s := Screen current].
f20f8481741c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3306
diff changeset
   854
     Delay waitForSeconds:0.5.
f20f8481741c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3306
diff changeset
   855
     s inspect
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   856
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   857
2520
c5d3b01ab788 Use #query instead of #raise when invoking QuerySignals
Stefan Vogel <sv@exept.de>
parents: 2476
diff changeset
   858
    "Modified: / 1.9.1995 / 13:40:05 / claus"
c5d3b01ab788 Use #query instead of #raise when invoking QuerySignals
Stefan Vogel <sv@exept.de>
parents: 2476
diff changeset
   859
    "Modified: / 7.2.1997 / 16:16:58 / cg"
c5d3b01ab788 Use #query instead of #raise when invoking QuerySignals
Stefan Vogel <sv@exept.de>
parents: 2476
diff changeset
   860
    "Modified: / 18.3.1999 / 18:20:39 / stefan"
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   861
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   862
1968
f632cb14733b added #currentWindow query (for ST80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 1961
diff changeset
   863
currentWindow
f632cb14733b added #currentWindow query (for ST80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 1961
diff changeset
   864
    "Return the currently active window,
f632cb14733b added #currentWindow query (for ST80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 1961
diff changeset
   865
     that is, the topView of the currently executing windowGroup"
f632cb14733b added #currentWindow query (for ST80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 1961
diff changeset
   866
f632cb14733b added #currentWindow query (for ST80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 1961
diff changeset
   867
    |wg|
f632cb14733b added #currentWindow query (for ST80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 1961
diff changeset
   868
f632cb14733b added #currentWindow query (for ST80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 1961
diff changeset
   869
    wg := WindowGroup activeGroup.
f632cb14733b added #currentWindow query (for ST80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 1961
diff changeset
   870
    wg notNil ifTrue:[^ wg topViews first].
f632cb14733b added #currentWindow query (for ST80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 1961
diff changeset
   871
    ^ nil
f632cb14733b added #currentWindow query (for ST80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 1961
diff changeset
   872
f632cb14733b added #currentWindow query (for ST80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 1961
diff changeset
   873
    "
f632cb14733b added #currentWindow query (for ST80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 1961
diff changeset
   874
     Screen currentWindow 
f632cb14733b added #currentWindow query (for ST80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 1961
diff changeset
   875
    "
f632cb14733b added #currentWindow query (for ST80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 1961
diff changeset
   876
f632cb14733b added #currentWindow query (for ST80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 1961
diff changeset
   877
    "Modified: / 1.9.1995 / 13:40:05 / claus"
f632cb14733b added #currentWindow query (for ST80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 1961
diff changeset
   878
    "Modified: / 7.2.1997 / 16:16:58 / cg"
f632cb14733b added #currentWindow query (for ST80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 1961
diff changeset
   879
    "Created: / 14.11.1997 / 21:52:24 / cg"
f632cb14733b added #currentWindow query (for ST80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 1961
diff changeset
   880
!
f632cb14733b added #currentWindow query (for ST80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 1961
diff changeset
   881
3630
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   882
defaultDisplayName
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   883
    "extract the default display name from command line arguments
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   884
     and environment. Nil is a valid name which represents the builtin default"
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   885
3747
043f579d87c1 Command line argument fetching
Stefan Vogel <sv@exept.de>
parents: 3744
diff changeset
   886
    |displayName|
3630
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   887
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   888
    "look for a '-display xxx' commandline argument"
3747
043f579d87c1 Command line argument fetching
Stefan Vogel <sv@exept.de>
parents: 3744
diff changeset
   889
    displayName := Smalltalk commandLineArgumentNamed:'-display'.
3630
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   890
    displayName isNil ifTrue:[
3766
0b92741d06f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3747
diff changeset
   891
	displayName := OperatingSystem getEnvironment:'DISPLAY'.
3630
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   892
    ].
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   893
    ^ displayName.
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   894
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   895
    "
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   896
     self defaultDisplayName
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   897
    "
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   898
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   899
3308
f20f8481741c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3306
diff changeset
   900
flushCachedLastScreen
f20f8481741c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3306
diff changeset
   901
    LastActiveScreen := nil.
f20f8481741c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3306
diff changeset
   902
    LastActiveProcess := nil.
f20f8481741c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3306
diff changeset
   903
f20f8481741c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3306
diff changeset
   904
!
f20f8481741c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3306
diff changeset
   905
3630
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   906
isAbstract
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   907
    "answer true, if I am not a concrete Workstation class"
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   908
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   909
    ^ self == DeviceWorkstation
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   910
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   911
    "
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   912
     DeviceWorkstation isAbstract
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   913
     XWorkstation isAbstract
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   914
    "
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   915
!
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
   916
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   917
platformName
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   918
    "ST-80 compatibility.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   919
     Return a string describing the display systems platform.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   920
     Returns a dummy here. This must be redefined in concrete
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   921
     Workstation classes, to return somthing like 'X', 'MSWindows', 'OS/2' etc."
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   922
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   923
    ^ 'unknown'
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   924
! !
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
   925
1075
62f0cfb3c956 dont return nil entries in #knownViews
Claus Gittinger <cg@exept.de>
parents: 1074
diff changeset
   926
!DeviceWorkstation class methodsFor:'standalone setup'!
423
98a3808d9902 additions for standAlone operation
Claus Gittinger <cg@exept.de>
parents: 414
diff changeset
   927
98a3808d9902 additions for standAlone operation
Claus Gittinger <cg@exept.de>
parents: 414
diff changeset
   928
exitOnLastClose:aBoolean
599
d978fa59094a commentary
Claus Gittinger <cg@exept.de>
parents: 544
diff changeset
   929
    "set/clear the flag which controls if the
2818
d5453b85243d added an exitOnLastClose instVar flag. (smc requirement)
Claus Gittinger <cg@exept.de>
parents: 2793
diff changeset
   930
     event dispatching should stop when the last view is closed
d5453b85243d added an exitOnLastClose instVar flag. (smc requirement)
Claus Gittinger <cg@exept.de>
parents: 2793
diff changeset
   931
     on the (main) Display connection.
599
d978fa59094a commentary
Claus Gittinger <cg@exept.de>
parents: 544
diff changeset
   932
     (standAlone applications will set it)"
d978fa59094a commentary
Claus Gittinger <cg@exept.de>
parents: 544
diff changeset
   933
2818
d5453b85243d added an exitOnLastClose instVar flag. (smc requirement)
Claus Gittinger <cg@exept.de>
parents: 2793
diff changeset
   934
    "/ here, a separate class variable is used, since this may have
d5453b85243d added an exitOnLastClose instVar flag. (smc requirement)
Claus Gittinger <cg@exept.de>
parents: 2793
diff changeset
   935
    "/ to be set at init-time, when no display instance exists yet.
d5453b85243d added an exitOnLastClose instVar flag. (smc requirement)
Claus Gittinger <cg@exept.de>
parents: 2793
diff changeset
   936
    "/ For all other (non-main-Display) connections, an instVar is used.
423
98a3808d9902 additions for standAlone operation
Claus Gittinger <cg@exept.de>
parents: 414
diff changeset
   937
    ExitOnLastClose := aBoolean
599
d978fa59094a commentary
Claus Gittinger <cg@exept.de>
parents: 544
diff changeset
   938
d978fa59094a commentary
Claus Gittinger <cg@exept.de>
parents: 544
diff changeset
   939
    "Modified: 23.4.1996 / 22:01:28 / cg"
423
98a3808d9902 additions for standAlone operation
Claus Gittinger <cg@exept.de>
parents: 414
diff changeset
   940
! !
98a3808d9902 additions for standAlone operation
Claus Gittinger <cg@exept.de>
parents: 414
diff changeset
   941
3880
c4c8268a2d9f method category rename
Claus Gittinger <cg@exept.de>
parents: 3862
diff changeset
   942
!DeviceWorkstation methodsFor:'Compatibility-ST80'!
1281
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
   943
1352
a32ee250d2b3 *** empty log message ***
ca
parents: 1343
diff changeset
   944
colorDepth
a32ee250d2b3 *** empty log message ***
ca
parents: 1343
diff changeset
   945
    "alias for depth - for ST-80 compatibility"
a32ee250d2b3 *** empty log message ***
ca
parents: 1343
diff changeset
   946
a32ee250d2b3 *** empty log message ***
ca
parents: 1343
diff changeset
   947
    ^ self depth
a32ee250d2b3 *** empty log message ***
ca
parents: 1343
diff changeset
   948
!
a32ee250d2b3 *** empty log message ***
ca
parents: 1343
diff changeset
   949
3189
1b561e0943cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3187
diff changeset
   950
stackedWindows
1b561e0943cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3187
diff changeset
   951
    "supposed to return all topViews in stacking order;
1b561e0943cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3187
diff changeset
   952
     BUGGY: right now, the order is undefined"
1b561e0943cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3187
diff changeset
   953
1b561e0943cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3187
diff changeset
   954
    ^ self allTopViews
1b561e0943cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3187
diff changeset
   955
!
1b561e0943cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3187
diff changeset
   956
1281
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
   957
zoom:startRect to:endRect
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
   958
    "animate a rubber-rectangle from startRect to endRect.
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
   959
     Can be used by buttons, which open some dialog for nicer user feedback.
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
   960
     Notice: since the displays window manager typically allows a topWindow
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   961
	     to be placed by the user, this should not be used for modeless
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   962
	     topViews.
3163
0a220900ddd4 zoom stuff fixed
Claus Gittinger <cg@exept.de>
parents: 3153
diff changeset
   963
    "
0a220900ddd4 zoom stuff fixed
Claus Gittinger <cg@exept.de>
parents: 3153
diff changeset
   964
0a220900ddd4 zoom stuff fixed
Claus Gittinger <cg@exept.de>
parents: 3153
diff changeset
   965
    ^ self zoom:startRect to:endRect duration:300    
1281
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
   966
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
   967
    "
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
   968
     Screen current zoom:(10@10 corner:20@20) to:(20@20 corner:1000@1000)
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
   969
     Screen current zoom:(20@20 corner:1000@1000) to:(10@10 corner:20@20)
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
   970
    "
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
   971
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
   972
    "Modified: 27.1.1997 / 18:20:11 / cg"
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
   973
!
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
   974
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
   975
zoom:startRect to:endRect duration:milliseconds
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
   976
    "animate a rubber-rectangle from startRect to endRect.
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
   977
     Can be used by buttons, which open some dialog for nicer user feedback.
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
   978
     Notice: since the displays window manager typically allows a topWindow
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   979
	     to be placed by the user, this should not be used for modeless
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   980
	     topViews.
1281
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
   981
    "
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
   982
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
   983
    |steps dExt dOrg org ext root|
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
   984
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
   985
    root := self rootView.
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
   986
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
   987
    steps := 10.
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
   988
    dExt := (endRect extent - startRect extent) / steps.
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
   989
    dOrg := (endRect origin - startRect origin) / steps.
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
   990
    0 to:steps do:[:step |
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   991
	org := (startRect origin + (dOrg * step)) rounded.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   992
	ext := (startRect extent + (dExt * step)) rounded.
3896
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
   993
	root clippedByChildren:false.
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
   994
	root xoring:[
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
   995
	    root displayRectangleX:org x y:org y width:ext x height:ext y
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   996
	].
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
   997
	Delay waitForMilliseconds:(milliseconds // steps).
3896
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
   998
	root xoring:[
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
   999
	    root displayRectangleX:org x y:org y width:ext x height:ext y
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  1000
	].
1281
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
  1001
    ].
3896
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  1002
    root clippedByChildren:true.
1281
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
  1003
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
  1004
    "
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
  1005
     Screen current zoom:(10@10 corner:20@20) to:(20@20 corner:1000@1000) duration:1000
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
  1006
     Screen current zoom:(20@20 corner:1000@1000) to:(10@10 corner:20@20) duration:1000
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
  1007
    "
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
  1008
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
  1009
    "Created: 27.1.1997 / 18:19:35 / cg"
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
  1010
!
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
  1011
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
  1012
zoom:startRect to:endRect speed:pixelsPerSecond
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
  1013
    "animate a rubber-rectangle from startRect to endRect.
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
  1014
     Can be used by buttons, which open some dialog for nicer user feedback.
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
  1015
     The speed is computed for the longest edge to run at the given speed.
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
  1016
     Notice: since the displays window manager typically allows a topWindow
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  1017
	     to be placed by the user, this should not be used for modeless
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  1018
	     topViews.
1281
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
  1019
    "
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
  1020
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
  1021
    |maxDistance|
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
  1022
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
  1023
    maxDistance := (endRect origin - startRect origin).
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
  1024
    maxDistance := maxDistance max:(endRect topRight - startRect topRight).
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
  1025
    maxDistance := maxDistance max:(endRect bottomLeft - startRect bottomLeft).
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
  1026
    maxDistance := maxDistance max:(endRect corner - startRect corner).
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
  1027
    maxDistance := maxDistance x max:(maxDistance y).
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
  1028
    ^ self
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  1029
	zoom:startRect to:endRect duration:(maxDistance abs / pixelsPerSecond * 1000)       
1281
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
  1030
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
  1031
    "
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
  1032
     Screen current zoom:(10@10 corner:20@20) to:(20@20 corner:1000@1000) speed:1000
3163
0a220900ddd4 zoom stuff fixed
Claus Gittinger <cg@exept.de>
parents: 3153
diff changeset
  1033
     Screen current zoom:(20@20 corner:1000@1000) to:(10@10 corner:20@20) speed:10
1281
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
  1034
    "
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
  1035
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
  1036
    "Created: 27.1.1997 / 18:19:35 / cg"
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
  1037
    "Modified: 27.1.1997 / 18:24:58 / cg"
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
  1038
! !
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
  1039
3880
c4c8268a2d9f method category rename
Claus Gittinger <cg@exept.de>
parents: 3862
diff changeset
  1040
!DeviceWorkstation methodsFor:'Compatibility-Squeak'!
1926
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1041
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1042
border:aRectangle width:bw
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1043
    "draw a rectangular border on the display with black.
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1044
     Added to allow for some squeak examples to be evaluated ..."
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1045
3896
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  1046
    |r root|
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  1047
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  1048
    root := self rootView.
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  1049
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  1050
    root clippedByChildren:false.
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  1051
    root paint:Color black.
1926
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1052
    r := aRectangle.
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1053
    0 to:bw-1 do:[:i |
3896
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  1054
	root displayRectangle:r.
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  1055
	r := r insetBy:1.
1926
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1056
    ].
3896
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  1057
    root clippedByChildren:true.
1926
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1058
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1059
    "
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1060
     Display restoreAfter:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  1061
	Display border:(10@10 corner:100@100) width:2.
1926
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1062
     ]
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1063
    "
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1064
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1065
    "Modified: 15.10.1997 / 19:23:28 / cg"
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1066
!
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1067
2789
8d1b3f99d990 added #cursorPoint
Claus Gittinger <cg@exept.de>
parents: 2756
diff changeset
  1068
cursorPoint
8d1b3f99d990 added #cursorPoint
Claus Gittinger <cg@exept.de>
parents: 2756
diff changeset
  1069
    ^ self pointerPosition
8d1b3f99d990 added #cursorPoint
Claus Gittinger <cg@exept.de>
parents: 2756
diff changeset
  1070
!
8d1b3f99d990 added #cursorPoint
Claus Gittinger <cg@exept.de>
parents: 2756
diff changeset
  1071
1926
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1072
displayOpaqueString:s x:x y:y
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1073
    "draw a string on the display with black.
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1074
     Added to allow for some squeak examples to be evaluated ..."
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1075
3896
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  1076
    |root|
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  1077
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  1078
    root := self rootView.
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  1079
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  1080
    root clippedByChildren:false.
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  1081
    root paint:Color black.
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  1082
    root displayOpaqueString:s x:x y:y.
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  1083
    root clippedByChildren:true.
1926
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1084
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1085
    "
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1086
     Display restoreAfter:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  1087
	Display displayOpaqueString:'hello' x:10 y:10.
1926
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1088
     ]
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1089
    "
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1090
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1091
    "Created: 15.10.1997 / 19:25:09 / cg"
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1092
    "Modified: 15.10.1997 / 19:29:05 / cg"
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1093
!
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1094
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1095
displayString:s x:x y:y
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1096
    "draw a string on the display with black.
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1097
     Added to allow for some squeak examples to be evaluated ..."
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1098
3896
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  1099
    |root|
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  1100
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  1101
    root := self rootView.
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  1102
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  1103
    root clippedByChildren:false.
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  1104
    root paint:Color black.
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  1105
    root displayString:s x:x y:y.
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  1106
    root clippedByChildren:true.
1926
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1107
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1108
    "
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1109
     Display restoreAfter:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  1110
	Display displayString:'hello' x:10 y:10.
1926
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1111
     ]
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1112
    "
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1113
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1114
    "Modified: 15.10.1997 / 19:29:10 / cg"
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1115
!
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1116
3396
18f99e9fc5ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3388
diff changeset
  1117
fill:aRectangle fillColor:aColor
18f99e9fc5ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3388
diff changeset
  1118
    "fill a rectangular area on the display with aColor.
18f99e9fc5ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3388
diff changeset
  1119
     Added to allow for some squeak examples to be evaluated ..."
18f99e9fc5ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3388
diff changeset
  1120
3896
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  1121
    |oldPaint root|
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  1122
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  1123
    root := self rootView.
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  1124
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  1125
    oldPaint := root paint.
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  1126
    root clippedByChildren:false.
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  1127
    root paint:aColor.
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  1128
    root fillRectangle:aRectangle.
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  1129
    root clippedByChildren:true.
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  1130
    root paint:oldPaint.
3396
18f99e9fc5ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3388
diff changeset
  1131
18f99e9fc5ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3388
diff changeset
  1132
    "
18f99e9fc5ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3388
diff changeset
  1133
     Display restoreAfter:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  1134
	 Display fill:(10@10 corner:100@100) fillColor:Color yellow
3396
18f99e9fc5ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3388
diff changeset
  1135
     ]
18f99e9fc5ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3388
diff changeset
  1136
    "
18f99e9fc5ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3388
diff changeset
  1137
18f99e9fc5ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3388
diff changeset
  1138
    "Modified: 15.10.1997 / 19:28:17 / cg"
18f99e9fc5ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3388
diff changeset
  1139
!
18f99e9fc5ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3388
diff changeset
  1140
3388
ccb33ca73212 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3387
diff changeset
  1141
fillWhite
ccb33ca73212 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3387
diff changeset
  1142
    "fill all of the display with white.
ccb33ca73212 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3387
diff changeset
  1143
     Added to allow for some squeak examples to be evaluated ..."
ccb33ca73212 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3387
diff changeset
  1144
ccb33ca73212 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3387
diff changeset
  1145
    self fillWhite:(self bounds)
ccb33ca73212 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3387
diff changeset
  1146
ccb33ca73212 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3387
diff changeset
  1147
    "
ccb33ca73212 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3387
diff changeset
  1148
     Display restoreAfter:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  1149
	 Display fillWhite
3388
ccb33ca73212 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3387
diff changeset
  1150
     ]
ccb33ca73212 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3387
diff changeset
  1151
    "
ccb33ca73212 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3387
diff changeset
  1152
    "
ccb33ca73212 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3387
diff changeset
  1153
     Display restoreAfter:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  1154
	 Display fillWhite:(10@10 corner:100@100)
3388
ccb33ca73212 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3387
diff changeset
  1155
     ]
ccb33ca73212 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3387
diff changeset
  1156
    "
ccb33ca73212 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3387
diff changeset
  1157
ccb33ca73212 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3387
diff changeset
  1158
    "Modified: 15.10.1997 / 19:28:17 / cg"
ccb33ca73212 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3387
diff changeset
  1159
!
ccb33ca73212 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3387
diff changeset
  1160
1926
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1161
fillWhite:aRectangle
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1162
    "fill a rectangular area on the display with white.
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1163
     Added to allow for some squeak examples to be evaluated ..."
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1164
3396
18f99e9fc5ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3388
diff changeset
  1165
    self fill:aRectangle fillColor:Color white
1926
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1166
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1167
    "
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1168
     Display restoreAfter:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  1169
	 Display fillWhite:(10@10 corner:100@100)
1926
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1170
     ]
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1171
    "
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1172
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1173
    "Modified: 15.10.1997 / 19:28:17 / cg"
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1174
!
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1175
3029
c03ffedfc502 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3028
diff changeset
  1176
primMouseButtons
c03ffedfc502 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3028
diff changeset
  1177
    "return the current button state"
c03ffedfc502 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3028
diff changeset
  1178
c03ffedfc502 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3028
diff changeset
  1179
    |mask|
c03ffedfc502 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3028
diff changeset
  1180
c03ffedfc502 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3028
diff changeset
  1181
    mask := 0.
3038
3409b675cced checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1182
    self leftButtonPressed ifTrue:[ mask := mask bitOr:4 ].
3029
c03ffedfc502 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3028
diff changeset
  1183
    self middleButtonPressed ifTrue:[ mask := mask bitOr:2 ].
3038
3409b675cced checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3029
diff changeset
  1184
    self rightButtonPressed ifTrue:[ mask := mask bitOr:1 ].
3029
c03ffedfc502 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3028
diff changeset
  1185
    ^ mask
c03ffedfc502 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3028
diff changeset
  1186
c03ffedfc502 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3028
diff changeset
  1187
    "
c03ffedfc502 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3028
diff changeset
  1188
     Display primMouseButtons
c03ffedfc502 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3028
diff changeset
  1189
    "
c03ffedfc502 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3028
diff changeset
  1190
c03ffedfc502 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3028
diff changeset
  1191
    "Modified: 15.10.1997 / 19:23:28 / cg"
c03ffedfc502 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3028
diff changeset
  1192
!
c03ffedfc502 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3028
diff changeset
  1193
1926
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1194
restoreAfter:aBlock
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1195
    "evaluate aBlock, wait for a buttonPress, then restore the display.
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1196
     Added to allow for some squeak examples to be evaluated ..."
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1197
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1198
    aBlock value.
3385
777869fdc56d restoreWindows is better (I hope)
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  1199
    self sync.
1926
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1200
    [self anyButtonPressed] whileFalse:[].
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1201
    self restoreWindows.
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1202
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1203
    "
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1204
     Display restoreAfter:[Display fillWhite:(10@10 corner:100@100)]
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1205
    "
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1206
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1207
    "Modified: 15.10.1997 / 19:43:08 / cg"
2790
663331bc1f77 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2789
diff changeset
  1208
!
663331bc1f77 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2789
diff changeset
  1209
663331bc1f77 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2789
diff changeset
  1210
supportsDisplayDepth:givenDepth
663331bc1f77 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2789
diff changeset
  1211
    "return true, if the given depth is supported by the display.
663331bc1f77 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2789
diff changeset
  1212
     (Actually, some displays support multiple depths (i.e. visuals),
663331bc1f77 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2789
diff changeset
  1213
     but for now, we want the displays native depth here."
663331bc1f77 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2789
diff changeset
  1214
663331bc1f77 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2789
diff changeset
  1215
    ^ depth == givenDepth
2963
83185d8af958 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2953
diff changeset
  1216
!
83185d8af958 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2953
diff changeset
  1217
83185d8af958 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2953
diff changeset
  1218
waitButton
83185d8af958 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2953
diff changeset
  1219
    "wait for any button to be pressed"
83185d8af958 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2953
diff changeset
  1220
83185d8af958 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2953
diff changeset
  1221
    [self anyButtonPressed] whileFalse:[Delay waitForSeconds:0.05].
83185d8af958 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2953
diff changeset
  1222
83185d8af958 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2953
diff changeset
  1223
    "
83185d8af958 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2953
diff changeset
  1224
     Sensor waitButton.
83185d8af958 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2953
diff changeset
  1225
     Sensor waitNoButton
83185d8af958 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2953
diff changeset
  1226
    "
83185d8af958 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2953
diff changeset
  1227
!
83185d8af958 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2953
diff changeset
  1228
83185d8af958 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2953
diff changeset
  1229
waitClickButton
83185d8af958 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2953
diff changeset
  1230
    "wait for any button to be pressed and released again.
83185d8af958 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2953
diff changeset
  1231
     Return the screen coordinate of the click."
83185d8af958 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2953
diff changeset
  1232
83185d8af958 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2953
diff changeset
  1233
    |pos|
83185d8af958 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2953
diff changeset
  1234
83185d8af958 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2953
diff changeset
  1235
    self waitButton. 
83185d8af958 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2953
diff changeset
  1236
    pos := self cursorPoint.
83185d8af958 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2953
diff changeset
  1237
    self waitNoButton.
83185d8af958 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2953
diff changeset
  1238
    ^ pos
83185d8af958 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2953
diff changeset
  1239
83185d8af958 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2953
diff changeset
  1240
    "
83185d8af958 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2953
diff changeset
  1241
     Sensor waitClickButton.
83185d8af958 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2953
diff changeset
  1242
    "
83185d8af958 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2953
diff changeset
  1243
!
83185d8af958 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2953
diff changeset
  1244
83185d8af958 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2953
diff changeset
  1245
waitNoButton
83185d8af958 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2953
diff changeset
  1246
    "wait for no button to be pressed"
83185d8af958 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2953
diff changeset
  1247
83185d8af958 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2953
diff changeset
  1248
    [self anyButtonPressed] whileTrue:[Delay waitForSeconds:0.05].
83185d8af958 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2953
diff changeset
  1249
83185d8af958 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2953
diff changeset
  1250
    "
83185d8af958 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2953
diff changeset
  1251
     Sensor waitButton.
83185d8af958 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2953
diff changeset
  1252
     Sensor waitNoButton
83185d8af958 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2953
diff changeset
  1253
    "
1926
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1254
! !
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  1255
2934
33b1988133d3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2932
diff changeset
  1256
!DeviceWorkstation methodsFor:'Signal constants'!
33b1988133d3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2932
diff changeset
  1257
33b1988133d3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2932
diff changeset
  1258
deviceErrorSignal
33b1988133d3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2932
diff changeset
  1259
    "return the per-device signal, which is used for error reporting.
33b1988133d3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2932
diff changeset
  1260
     The default here is the global DeviceErrorSignal 
33b1988133d3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2932
diff changeset
  1261
     (which is the parent of any per-instance error signals)."
33b1988133d3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2932
diff changeset
  1262
33b1988133d3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2932
diff changeset
  1263
    deviceErrorSignal notNil ifTrue:[^ deviceErrorSignal].
33b1988133d3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2932
diff changeset
  1264
    ^ self class deviceErrorSignal
33b1988133d3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2932
diff changeset
  1265
!
33b1988133d3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2932
diff changeset
  1266
33b1988133d3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2932
diff changeset
  1267
deviceIOErrorSignal
33b1988133d3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2932
diff changeset
  1268
    "return the signal used for device I/O error reporting.
33b1988133d3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2932
diff changeset
  1269
     The default here is the global DeviceIOErrorSignal 
33b1988133d3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2932
diff changeset
  1270
     (which is the parent of any per-instance I/O error signals)."
33b1988133d3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2932
diff changeset
  1271
33b1988133d3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2932
diff changeset
  1272
    deviceIOErrorSignal notNil ifTrue:[^ deviceIOErrorSignal].
33b1988133d3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2932
diff changeset
  1273
    ^ self class deviceIOErrorSignal
33b1988133d3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2932
diff changeset
  1274
!
33b1988133d3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2932
diff changeset
  1275
33b1988133d3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2932
diff changeset
  1276
deviceIOTimeoutErrorSignal
33b1988133d3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2932
diff changeset
  1277
    "return the signal used for device I/O timeout error reporting.
33b1988133d3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2932
diff changeset
  1278
     The default here is the global DeviceIOTimeoutErrorSignal 
33b1988133d3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2932
diff changeset
  1279
     (which is the parent of any per-instance I/O timeout signals)."
33b1988133d3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2932
diff changeset
  1280
33b1988133d3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2932
diff changeset
  1281
    ^ self class deviceIOTimeoutErrorSignal
33b1988133d3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2932
diff changeset
  1282
! !
33b1988133d3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2932
diff changeset
  1283
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1284
!DeviceWorkstation methodsFor:'accessing & queries'!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1285
2685
094ce08f9fc5 made activateOnClick an instance method
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  1286
activateOnClick:aBoolean
094ce08f9fc5 made activateOnClick an instance method
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  1287
    "enable/disable raise&activate on click;
094ce08f9fc5 made activateOnClick an instance method
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  1288
     return the previous setting.
094ce08f9fc5 made activateOnClick an instance method
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  1289
     This may be left unimplemented by a device."
094ce08f9fc5 made activateOnClick an instance method
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  1290
094ce08f9fc5 made activateOnClick an instance method
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  1291
    ^ false
094ce08f9fc5 made activateOnClick an instance method
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  1292
094ce08f9fc5 made activateOnClick an instance method
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  1293
    "Created: / 2.10.1998 / 01:07:51 / cg"
094ce08f9fc5 made activateOnClick an instance method
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  1294
!
094ce08f9fc5 made activateOnClick an instance method
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  1295
1710
df5f8609825d win changes (pass drawableId to clip methods)
Claus Gittinger <cg@exept.de>
parents: 1708
diff changeset
  1296
activeView
df5f8609825d win changes (pass drawableId to clip methods)
Claus Gittinger <cg@exept.de>
parents: 1708
diff changeset
  1297
    ^ activeView
df5f8609825d win changes (pass drawableId to clip methods)
Claus Gittinger <cg@exept.de>
parents: 1708
diff changeset
  1298
!
df5f8609825d win changes (pass drawableId to clip methods)
Claus Gittinger <cg@exept.de>
parents: 1708
diff changeset
  1299
339
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1300
buttonMotionMask:aMask includesButton:aButton
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1301
    "given a device button mask, return true if a logical button
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1302
     (1 .. 3 for left .. right) is included."
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1303
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1304
    |buttonNr|
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1305
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1306
    "reverse buttonTranslation"
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1307
    buttonTranslation notNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  1308
	buttonNr := buttonTranslation indexOf:aButton ifAbsent:[1].
339
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1309
    ] ifFalse:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  1310
	buttonNr := aButton.
339
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1311
    ].
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1312
    ^ (aMask bitTest:(self buttonMotionMask:buttonNr))
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1313
!
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1314
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1315
dispatchProcess
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1316
    ^ dispatchProcess
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1317
!
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1318
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1319
displayFileDescriptor
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1320
    "return the file descriptor associated with the display
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1321
     if any. If there is no underlying filedescriptor, return nil.
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1322
     (used for event select/polling)"
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1323
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1324
    ^ nil
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1325
!
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1326
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1327
id
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1328
    "return the displayId"
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1329
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1330
    ^ displayId
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1331
!
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1332
1281
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
  1333
isOpen
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
  1334
    "return true, if there is a valid connection to the display.
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
  1335
     Added for ST-80 compatibility."
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
  1336
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
  1337
    ^ displayId notNil
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
  1338
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
  1339
    "Created: 27.1.1997 / 18:28:30 / cg"
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
  1340
!
d7717bcf2e55 added zoom:* stuff.
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
  1341
2932
f7018a33faa6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2924
diff changeset
  1342
isPersistentInSnapshot
f7018a33faa6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2924
diff changeset
  1343
    "return true, if resources on this device are to be made
f7018a33faa6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2924
diff changeset
  1344
     persistent in a snapshot image."
f7018a33faa6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2924
diff changeset
  1345
f7018a33faa6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2924
diff changeset
  1346
    ^ true
f7018a33faa6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2924
diff changeset
  1347
!
f7018a33faa6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2924
diff changeset
  1348
339
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1349
knownViews
1078
f7b6f15899ab changed WeakArray to set emptied slots to zero
Claus Gittinger <cg@exept.de>
parents: 1075
diff changeset
  1350
    "return a (non-weak) collection of all known views"
339
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1351
1075
62f0cfb3c956 dont return nil entries in #knownViews
Claus Gittinger <cg@exept.de>
parents: 1074
diff changeset
  1352
    |views|
62f0cfb3c956 dont return nil entries in #knownViews
Claus Gittinger <cg@exept.de>
parents: 1074
diff changeset
  1353
2475
3953be51eb1d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2442
diff changeset
  1354
    knownViews size == 0 ifTrue:[^ #()].
1075
62f0cfb3c956 dont return nil entries in #knownViews
Claus Gittinger <cg@exept.de>
parents: 1074
diff changeset
  1355
    views := IdentitySet new.
1267
a27c2daaea25 remember lastView/id when searching view by id - helps often
Claus Gittinger <cg@exept.de>
parents: 1258
diff changeset
  1356
    knownViews validElementsDo:[:v | views add:v].
1075
62f0cfb3c956 dont return nil entries in #knownViews
Claus Gittinger <cg@exept.de>
parents: 1074
diff changeset
  1357
    ^ views
62f0cfb3c956 dont return nil entries in #knownViews
Claus Gittinger <cg@exept.de>
parents: 1074
diff changeset
  1358
1267
a27c2daaea25 remember lastView/id when searching view by id - helps often
Claus Gittinger <cg@exept.de>
parents: 1258
diff changeset
  1359
    "Modified: 23.1.1997 / 21:25:51 / cg"
339
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1360
!
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1361
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1362
knownViews:aCollection
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1363
    "set the collection of all known views - take care,
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1364
     bad use of this will create funny results; use only for snapshot support"
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1365
2403
5ea6cb91c1e4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2390
diff changeset
  1366
    idToTableIndexMapping := nil.
2181
7b07c4a6cad4 flush idToSlotIndex cache, when changing knownViews
Claus Gittinger <cg@exept.de>
parents: 2169
diff changeset
  1367
    knownViews := aCollection.
339
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1368
!
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1369
2859
a4d53bcddfca checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2858
diff changeset
  1370
mayOpenDebugger
a4d53bcddfca checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2858
diff changeset
  1371
    "return true, if a debugger may open on this workstation;
a4d53bcddfca checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2858
diff changeset
  1372
     if false, the debugger opens on the main display.
a4d53bcddfca checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2858
diff changeset
  1373
     This should be made a variable ..."
a4d53bcddfca checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2858
diff changeset
  1374
3424
212a656cfdcc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  1375
    ^ mayOpenDebugger ? true
212a656cfdcc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  1376
!
212a656cfdcc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  1377
212a656cfdcc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  1378
mayOpenDebugger:aBoolean
212a656cfdcc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  1379
    "set/clear the flag, which controls if a debugger may open on this workstation;
212a656cfdcc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  1380
     if false, the debugger opens on the main display."
212a656cfdcc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  1381
212a656cfdcc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  1382
    mayOpenDebugger := aBoolean
2859
a4d53bcddfca checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2858
diff changeset
  1383
!
a4d53bcddfca checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2858
diff changeset
  1384
339
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1385
multiClickTimeDelta 
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1386
    ^ multiClickTimeDelta
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1387
!
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1388
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1389
multiClickTimeDelta:milliseconds
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1390
    multiClickTimeDelta := milliseconds
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1391
!
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1392
3572
566f1074c551 some native dialog support
Claus Gittinger <cg@exept.de>
parents: 3565
diff changeset
  1393
nativeDialogs
566f1074c551 some native dialog support
Claus Gittinger <cg@exept.de>
parents: 3565
diff changeset
  1394
    ^ false
566f1074c551 some native dialog support
Claus Gittinger <cg@exept.de>
parents: 3565
diff changeset
  1395
!
566f1074c551 some native dialog support
Claus Gittinger <cg@exept.de>
parents: 3565
diff changeset
  1396
729
d2fdca1c2895 eliminated references to RootView
Claus Gittinger <cg@exept.de>
parents: 700
diff changeset
  1397
rootView
d2fdca1c2895 eliminated references to RootView
Claus Gittinger <cg@exept.de>
parents: 700
diff changeset
  1398
    "return the rootView (i.e. the background window) on the receiver screen.
d2fdca1c2895 eliminated references to RootView
Claus Gittinger <cg@exept.de>
parents: 700
diff changeset
  1399
     It is not guaranteed, that a particular display device supports this."
d2fdca1c2895 eliminated references to RootView
Claus Gittinger <cg@exept.de>
parents: 700
diff changeset
  1400
d2fdca1c2895 eliminated references to RootView
Claus Gittinger <cg@exept.de>
parents: 700
diff changeset
  1401
    rootView isNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  1402
	rootView := DisplayRootView onDevice:self
729
d2fdca1c2895 eliminated references to RootView
Claus Gittinger <cg@exept.de>
parents: 700
diff changeset
  1403
    ].
d2fdca1c2895 eliminated references to RootView
Claus Gittinger <cg@exept.de>
parents: 700
diff changeset
  1404
    ^ rootView
d2fdca1c2895 eliminated references to RootView
Claus Gittinger <cg@exept.de>
parents: 700
diff changeset
  1405
d2fdca1c2895 eliminated references to RootView
Claus Gittinger <cg@exept.de>
parents: 700
diff changeset
  1406
    "
d2fdca1c2895 eliminated references to RootView
Claus Gittinger <cg@exept.de>
parents: 700
diff changeset
  1407
     |v|
d2fdca1c2895 eliminated references to RootView
Claus Gittinger <cg@exept.de>
parents: 700
diff changeset
  1408
     v := Display rootView.
d2fdca1c2895 eliminated references to RootView
Claus Gittinger <cg@exept.de>
parents: 700
diff changeset
  1409
     v paint:Color red.
1722
4ceaeda95cc3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1719
diff changeset
  1410
     v clippedByChildren:false.
729
d2fdca1c2895 eliminated references to RootView
Claus Gittinger <cg@exept.de>
parents: 700
diff changeset
  1411
     v fillRectangleX:10 y:10 width:100 height:100.  
d2fdca1c2895 eliminated references to RootView
Claus Gittinger <cg@exept.de>
parents: 700
diff changeset
  1412
    "
2963
83185d8af958 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2953
diff changeset
  1413
83185d8af958 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2953
diff changeset
  1414
    "
83185d8af958 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2953
diff changeset
  1415
     |v|
83185d8af958 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2953
diff changeset
  1416
     v := Display rootView.
83185d8af958 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2953
diff changeset
  1417
     v paint:Color red.
83185d8af958 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2953
diff changeset
  1418
     v clippedByChildren:true.
83185d8af958 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2953
diff changeset
  1419
     v fillRectangleX:10 y:10 width:100 height:100.  
83185d8af958 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2953
diff changeset
  1420
    "
83185d8af958 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2953
diff changeset
  1421
729
d2fdca1c2895 eliminated references to RootView
Claus Gittinger <cg@exept.de>
parents: 700
diff changeset
  1422
!
d2fdca1c2895 eliminated references to RootView
Claus Gittinger <cg@exept.de>
parents: 700
diff changeset
  1423
2885
4692bdcb0c9e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1424
suppressDebugger
4692bdcb0c9e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1425
    "return true, if no debugger should be opened for applications running
4692bdcb0c9e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1426
     on this device (i.e. neither a debugger on the device nor on the
3441
40d38375d46d comment only
Michael Beyl <mb@exept.de>
parents: 3430
diff changeset
  1427
     main screen).
2885
4692bdcb0c9e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1428
     If true, the debugger is either opened on the device or on the
4692bdcb0c9e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1429
     main display, depending on the mayOpenDebugger setting."
4692bdcb0c9e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1430
3424
212a656cfdcc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  1431
    ^ suppressDebugger ? false
212a656cfdcc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  1432
!
212a656cfdcc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  1433
212a656cfdcc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  1434
suppressDebugger:aBoolean
212a656cfdcc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  1435
    "set/clear the flag, which controls if no debugger should be opened for applications running
212a656cfdcc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  1436
     on this device (i.e. neither a debugger on the device nor on the
3441
40d38375d46d comment only
Michael Beyl <mb@exept.de>
parents: 3430
diff changeset
  1437
     main screen).
3424
212a656cfdcc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  1438
     If true, the debugger is either opened on the device or on the
212a656cfdcc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  1439
     main display, depending on the mayOpenDebugger setting."
212a656cfdcc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  1440
212a656cfdcc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3420
diff changeset
  1441
    suppressDebugger := aBoolean
2885
4692bdcb0c9e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1442
!
4692bdcb0c9e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2881
diff changeset
  1443
2876
dbe1454f8539 allow for a device to suppress shadowViews.
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
  1444
suppressShadowViews
dbe1454f8539 allow for a device to suppress shadowViews.
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
  1445
    "return true, if this device wants to suppress shadow views
dbe1454f8539 allow for a device to suppress shadowViews.
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
  1446
     (i.e. shadows under popups and modalBoxes).
dbe1454f8539 allow for a device to suppress shadowViews.
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
  1447
     Some (slow) devices may want to return true here"
dbe1454f8539 allow for a device to suppress shadowViews.
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
  1448
dbe1454f8539 allow for a device to suppress shadowViews.
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
  1449
    ^ false
dbe1454f8539 allow for a device to suppress shadowViews.
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
  1450
!
dbe1454f8539 allow for a device to suppress shadowViews.
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
  1451
339
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1452
translatePoint:aPoint from:windowId1 to:windowId2
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1453
    "given a point in window1 (defined by its id), return the coordinate of
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1454
     aPoint in window2 (defined by its id).
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1455
     Use to xlate points from a window to rootwindow, mainly for rubber-line
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1456
     drawing on the displays root window."
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1457
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1458
    "This method has to be reimplemented in concrete display classes."
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1459
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1460
    ^ self subclassResponsibility
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1461
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1462
    "
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1463
     |v p root|
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1464
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1465
     v := View new.
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1466
     v openAndWait.
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1467
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1468
     root := v device rootView.
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1469
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1470
     p := v device translatePoint:10@10 from:(v id) to:(root id).
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1471
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1472
     root clippedByChildren:false.
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1473
     root displayLineFrom:0@0 to:p.
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1474
     root clippedByChildren:true.
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1475
    "
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1476
    "
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1477
     |v1 v2 p1 p2 root|
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1478
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1479
     v1 := View new.
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1480
     v1 openAndWait.
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1481
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1482
     v2 := View new.
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1483
     v2 openAndWait.
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1484
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1485
     root := v1 device rootView.
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1486
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1487
     p1 := v1 device translatePoint:10@10 from:(v1 id) to:(root id).
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1488
     p2 := v1 device translatePoint:10@10 from:(v2 id) to:(root id).
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1489
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1490
     root clippedByChildren:false.
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1491
     root displayLineFrom:p1 to:p2.
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1492
     root clippedByChildren:true.
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1493
    "
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1494
!
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1495
3517
f0e11daf1d3a added translatePoint methods with view argument (instead of id-arg)
Claus Gittinger <cg@exept.de>
parents: 3513
diff changeset
  1496
translatePoint:aPoint fromView:window1 toView:window2
f0e11daf1d3a added translatePoint methods with view argument (instead of id-arg)
Claus Gittinger <cg@exept.de>
parents: 3513
diff changeset
  1497
    "given a point in window1, return the coordinate of aPoint in window2.
f0e11daf1d3a added translatePoint methods with view argument (instead of id-arg)
Claus Gittinger <cg@exept.de>
parents: 3513
diff changeset
  1498
     Either window argument may be nil to specify the root window (screen)
f0e11daf1d3a added translatePoint methods with view argument (instead of id-arg)
Claus Gittinger <cg@exept.de>
parents: 3513
diff changeset
  1499
     Use to xlate points from a window to another window (or from a window
f0e11daf1d3a added translatePoint methods with view argument (instead of id-arg)
Claus Gittinger <cg@exept.de>
parents: 3513
diff changeset
  1500
     to the rootwindow), mainly for rubber-line drawing on the displays root window."
f0e11daf1d3a added translatePoint methods with view argument (instead of id-arg)
Claus Gittinger <cg@exept.de>
parents: 3513
diff changeset
  1501
f0e11daf1d3a added translatePoint methods with view argument (instead of id-arg)
Claus Gittinger <cg@exept.de>
parents: 3513
diff changeset
  1502
    |w1 w2|
f0e11daf1d3a added translatePoint methods with view argument (instead of id-arg)
Claus Gittinger <cg@exept.de>
parents: 3513
diff changeset
  1503
f0e11daf1d3a added translatePoint methods with view argument (instead of id-arg)
Claus Gittinger <cg@exept.de>
parents: 3513
diff changeset
  1504
    w1 := window1 ? self rootView.
f0e11daf1d3a added translatePoint methods with view argument (instead of id-arg)
Claus Gittinger <cg@exept.de>
parents: 3513
diff changeset
  1505
    w2 := window2 ? self rootView.
f0e11daf1d3a added translatePoint methods with view argument (instead of id-arg)
Claus Gittinger <cg@exept.de>
parents: 3513
diff changeset
  1506
f0e11daf1d3a added translatePoint methods with view argument (instead of id-arg)
Claus Gittinger <cg@exept.de>
parents: 3513
diff changeset
  1507
    (w1 device == self and:[w2 device == self]) ifFalse:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  1508
	self error:'Huh - Cross device translation' mayProceed:true.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  1509
	^ aPoint
3517
f0e11daf1d3a added translatePoint methods with view argument (instead of id-arg)
Claus Gittinger <cg@exept.de>
parents: 3513
diff changeset
  1510
    ].
f0e11daf1d3a added translatePoint methods with view argument (instead of id-arg)
Claus Gittinger <cg@exept.de>
parents: 3513
diff changeset
  1511
f0e11daf1d3a added translatePoint methods with view argument (instead of id-arg)
Claus Gittinger <cg@exept.de>
parents: 3513
diff changeset
  1512
    ^ self translatePoint:aPoint from:(w1 id) to:(w2 id).
f0e11daf1d3a added translatePoint methods with view argument (instead of id-arg)
Claus Gittinger <cg@exept.de>
parents: 3513
diff changeset
  1513
f0e11daf1d3a added translatePoint methods with view argument (instead of id-arg)
Claus Gittinger <cg@exept.de>
parents: 3513
diff changeset
  1514
    "Modified: / 10.10.2001 / 14:08:34 / cg"
f0e11daf1d3a added translatePoint methods with view argument (instead of id-arg)
Claus Gittinger <cg@exept.de>
parents: 3513
diff changeset
  1515
!
f0e11daf1d3a added translatePoint methods with view argument (instead of id-arg)
Claus Gittinger <cg@exept.de>
parents: 3513
diff changeset
  1516
f0e11daf1d3a added translatePoint methods with view argument (instead of id-arg)
Claus Gittinger <cg@exept.de>
parents: 3513
diff changeset
  1517
translatePointFromRoot:aPoint toView:window
f0e11daf1d3a added translatePoint methods with view argument (instead of id-arg)
Claus Gittinger <cg@exept.de>
parents: 3513
diff changeset
  1518
    "given a point as absolute root-window coordinate, return the coordinate within the window.
f0e11daf1d3a added translatePoint methods with view argument (instead of id-arg)
Claus Gittinger <cg@exept.de>
parents: 3513
diff changeset
  1519
     Use to xlate points from the rootWindow to a window."
f0e11daf1d3a added translatePoint methods with view argument (instead of id-arg)
Claus Gittinger <cg@exept.de>
parents: 3513
diff changeset
  1520
f0e11daf1d3a added translatePoint methods with view argument (instead of id-arg)
Claus Gittinger <cg@exept.de>
parents: 3513
diff changeset
  1521
    ^ self translatePoint:aPoint fromView:nil toView:window
f0e11daf1d3a added translatePoint methods with view argument (instead of id-arg)
Claus Gittinger <cg@exept.de>
parents: 3513
diff changeset
  1522
f0e11daf1d3a added translatePoint methods with view argument (instead of id-arg)
Claus Gittinger <cg@exept.de>
parents: 3513
diff changeset
  1523
    "Modified: / 10.10.2001 / 14:09:05 / cg"
f0e11daf1d3a added translatePoint methods with view argument (instead of id-arg)
Claus Gittinger <cg@exept.de>
parents: 3513
diff changeset
  1524
!
f0e11daf1d3a added translatePoint methods with view argument (instead of id-arg)
Claus Gittinger <cg@exept.de>
parents: 3513
diff changeset
  1525
f0e11daf1d3a added translatePoint methods with view argument (instead of id-arg)
Claus Gittinger <cg@exept.de>
parents: 3513
diff changeset
  1526
translatePointToRoot:aPoint fromView:window1
f0e11daf1d3a added translatePoint methods with view argument (instead of id-arg)
Claus Gittinger <cg@exept.de>
parents: 3513
diff changeset
  1527
    "given a point in window1, return the absolute root-window coordinate.
f0e11daf1d3a added translatePoint methods with view argument (instead of id-arg)
Claus Gittinger <cg@exept.de>
parents: 3513
diff changeset
  1528
     Use to xlate points from a window to the rootwindow, 
f0e11daf1d3a added translatePoint methods with view argument (instead of id-arg)
Claus Gittinger <cg@exept.de>
parents: 3513
diff changeset
  1529
     mainly for rubber-line drawing on the displays root window."
f0e11daf1d3a added translatePoint methods with view argument (instead of id-arg)
Claus Gittinger <cg@exept.de>
parents: 3513
diff changeset
  1530
f0e11daf1d3a added translatePoint methods with view argument (instead of id-arg)
Claus Gittinger <cg@exept.de>
parents: 3513
diff changeset
  1531
    ^ self translatePoint:aPoint fromView:window1 toView:nil
f0e11daf1d3a added translatePoint methods with view argument (instead of id-arg)
Claus Gittinger <cg@exept.de>
parents: 3513
diff changeset
  1532
f0e11daf1d3a added translatePoint methods with view argument (instead of id-arg)
Claus Gittinger <cg@exept.de>
parents: 3513
diff changeset
  1533
    "Modified: / 10.10.2001 / 14:09:22 / cg"
f0e11daf1d3a added translatePoint methods with view argument (instead of id-arg)
Claus Gittinger <cg@exept.de>
parents: 3513
diff changeset
  1534
!
f0e11daf1d3a added translatePoint methods with view argument (instead of id-arg)
Claus Gittinger <cg@exept.de>
parents: 3513
diff changeset
  1535
f0e11daf1d3a added translatePoint methods with view argument (instead of id-arg)
Claus Gittinger <cg@exept.de>
parents: 3513
diff changeset
  1536
viewFromPoint:aScreenPoint
339
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1537
    "given a point on the screen, return the ST/X view in which that
3517
f0e11daf1d3a added translatePoint methods with view argument (instead of id-arg)
Claus Gittinger <cg@exept.de>
parents: 3513
diff changeset
  1538
     point is (this may be a subview). 
f0e11daf1d3a added translatePoint methods with view argument (instead of id-arg)
Claus Gittinger <cg@exept.de>
parents: 3513
diff changeset
  1539
     Return nil, if its not an ST/X view or if the point is on the background"
339
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1540
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1541
    |view id|
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1542
3517
f0e11daf1d3a added translatePoint methods with view argument (instead of id-arg)
Claus Gittinger <cg@exept.de>
parents: 3513
diff changeset
  1543
    id := self viewIdFromPoint:aScreenPoint.
339
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1544
    view := self viewFromId:id.
2978
81de1019a14c fixes for picking a view from another device
Claus Gittinger <cg@exept.de>
parents: 2969
diff changeset
  1545
    view isNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  1546
	"/ search on other devices (if present).
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  1547
	"/ This may find the view, in case another device
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  1548
	"/ has its views on the same display screen
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  1549
	"/ (i.e. under X, if its another display connection to the same
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  1550
	"/  X-server)
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  1551
	Screen allScreens do:[:aScreen |
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  1552
	    |v|
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  1553
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  1554
	    aScreen ~~ self ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  1555
		(v := aScreen viewFromId:id) notNil ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  1556
		    ^ v
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  1557
		]
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  1558
	    ]
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  1559
	]
2978
81de1019a14c fixes for picking a view from another device
Claus Gittinger <cg@exept.de>
parents: 2969
diff changeset
  1560
    ].
339
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1561
    ^ view
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1562
!
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1563
3517
f0e11daf1d3a added translatePoint methods with view argument (instead of id-arg)
Claus Gittinger <cg@exept.de>
parents: 3513
diff changeset
  1564
viewIdFromPoint:aScreenPoint
339
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1565
    "given a point on the screen, return the id of the ST/X view in which that
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1566
     point is (this may be a subview). Return nil, if its not an ST/X view
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1567
     or if the point is on the background"
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1568
3513
64ae1498b94c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3478
diff changeset
  1569
    |searchId foundId n|
3413
95e8a55dff8c Use #realRootView to get the owning view of a point
Stefan Vogel <sv@exept.de>
parents: 3401
diff changeset
  1570
95e8a55dff8c Use #realRootView to get the owning view of a point
Stefan Vogel <sv@exept.de>
parents: 3401
diff changeset
  1571
    searchId := self realRootWindowId.
2978
81de1019a14c fixes for picking a view from another device
Claus Gittinger <cg@exept.de>
parents: 2969
diff changeset
  1572
81de1019a14c fixes for picking a view from another device
Claus Gittinger <cg@exept.de>
parents: 2969
diff changeset
  1573
    "/ this is required, since X raises a bad error, when we come
81de1019a14c fixes for picking a view from another device
Claus Gittinger <cg@exept.de>
parents: 2969
diff changeset
  1574
    "/ along with an illegal id (which happens, if a view from another
81de1019a14c fixes for picking a view from another device
Claus Gittinger <cg@exept.de>
parents: 2969
diff changeset
  1575
    "/ screen-device is picked ...)
81de1019a14c fixes for picking a view from another device
Claus Gittinger <cg@exept.de>
parents: 2969
diff changeset
  1576
    self class deviceErrorSignal handle:[:ex |
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  1577
	^ nil
2978
81de1019a14c fixes for picking a view from another device
Claus Gittinger <cg@exept.de>
parents: 2969
diff changeset
  1578
    ] do:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  1579
	n := 0.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  1580
	[searchId notNil] whileTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  1581
	    n := n + 1.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  1582
	    n > 1000 ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  1583
		self halt:'oops - endless view hierarchy'.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  1584
		^ nil
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  1585
	    ].
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  1586
	    foundId := searchId.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  1587
	    searchId := self viewIdFromPoint:aScreenPoint in:searchId.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  1588
	]
339
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1589
    ].
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1590
    ^ foundId
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1591
!
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1592
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1593
viewIdFromPoint:aPoint in:windowId
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1594
    "given a point in rootWindow, return the viewId of the subview of windowId
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1595
     hit by this coordinate. Return nil if no view was hit.
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1596
     - use to find window to drop objects after a cross-view drag"
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1597
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1598
    "returning nil here actually makes drag&drop impossible
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1599
     - could also be reimplemented to make a search over all knownViews here.
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1600
     This method has to be reimplemented in concrete display classes."
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1601
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1602
    ^ nil
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1603
!
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1604
3517
f0e11daf1d3a added translatePoint methods with view argument (instead of id-arg)
Claus Gittinger <cg@exept.de>
parents: 3513
diff changeset
  1605
windowAt:aScreenPoint
339
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1606
    "given a point on the screen, return the ST/X topview in which that
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1607
     point is. 
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1608
     Return nil, if its not an ST/X view or if the point is on the background.
3517
f0e11daf1d3a added translatePoint methods with view argument (instead of id-arg)
Claus Gittinger <cg@exept.de>
parents: 3513
diff changeset
  1609
     Alias for viewFromPoint: for ST-80 compatibility"
f0e11daf1d3a added translatePoint methods with view argument (instead of id-arg)
Claus Gittinger <cg@exept.de>
parents: 3513
diff changeset
  1610
f0e11daf1d3a added translatePoint methods with view argument (instead of id-arg)
Claus Gittinger <cg@exept.de>
parents: 3513
diff changeset
  1611
    ^ self viewFromPoint:aScreenPoint
339
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1612
! !
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1613
3263
bd92a12c9316 category changes
Claus Gittinger <cg@exept.de>
parents: 3249
diff changeset
  1614
!DeviceWorkstation methodsFor:'accessing-display attributes'!
339
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1615
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1616
bitsBlue
1602
9612b91c7416 comments;
Claus Gittinger <cg@exept.de>
parents: 1600
diff changeset
  1617
    "return the number of valid bits in the blue component."
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1618
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1619
    bitsBlue isNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  1620
	"/ not a truecolor display
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  1621
	^ bitsPerRGB
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1622
    ].
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1623
    ^ bitsBlue
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1624
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1625
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1626
     Display bitsBlue   
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1627
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1628
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1629
    "Created: 21.10.1995 / 00:45:27 / cg"
1602
9612b91c7416 comments;
Claus Gittinger <cg@exept.de>
parents: 1600
diff changeset
  1630
    "Modified: 16.4.1997 / 15:00:53 / cg"
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1631
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1632
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1633
bitsGreen
1602
9612b91c7416 comments;
Claus Gittinger <cg@exept.de>
parents: 1600
diff changeset
  1634
    "return the number of valid bits in the green component."
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1635
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1636
    bitsGreen isNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  1637
	"/ not a truecolor display
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  1638
	^ bitsPerRGB
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1639
    ].
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1640
    ^ bitsGreen
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1641
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1642
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1643
     Display bitsGreen   
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1644
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1645
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1646
    "Created: 21.10.1995 / 00:45:11 / cg"
1602
9612b91c7416 comments;
Claus Gittinger <cg@exept.de>
parents: 1600
diff changeset
  1647
    "Modified: 16.4.1997 / 15:01:02 / cg"
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1648
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1649
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1650
bitsPerRGB
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1651
    "return the number of valid bits per rgb component;
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1652
     Currently, assume that r/g/b all have the same precision,
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1653
     which is a stupid assumption (there may be some, where less
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1654
     resolution is available in the blue component).
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1655
     Therefore, this may be changed to return a 3-element vector.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1656
     In the meantime, use bitsRed/bitsGreen/bitsBlue to get this information."
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1657
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1658
    ^ bitsPerRGB
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1659
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1660
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1661
     Display bitsPerRGB 
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1662
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1663
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1664
    "Modified: 21.10.1995 / 00:46:27 / cg"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1665
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1666
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1667
bitsRed
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1668
    "return the number of valid bits in the red component."
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1669
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1670
    bitsRed isNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  1671
	"/ not a truecolor display
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  1672
	^ bitsPerRGB
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1673
    ].
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1674
    ^ bitsRed
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1675
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1676
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1677
     Display bitsRed
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1678
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1679
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1680
    "Created: 21.10.1995 / 00:44:55 / cg"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1681
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1682
1197
79c3db76cf9a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  1683
blackColor
79c3db76cf9a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  1684
    "return the black color on this device.
79c3db76cf9a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  1685
     This is the same as 'Color black on:device', but much faster."
79c3db76cf9a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  1686
79c3db76cf9a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  1687
    ^ blackColor
79c3db76cf9a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  1688
79c3db76cf9a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  1689
    "Created: 13.1.1997 / 22:37:05 / cg"
79c3db76cf9a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  1690
    "Modified: 13.1.1997 / 22:43:19 / cg"
79c3db76cf9a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  1691
!
79c3db76cf9a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  1692
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1693
blackpixel
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1694
    "return the colorId of black"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1695
2853
725ff1f332e0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  1696
    visualType == #TrueColor ifTrue:[^ 0].
725ff1f332e0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  1697
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1698
    ^ self subclassResponsibility
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1699
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1700
996
ee97acd919e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 991
diff changeset
  1701
blueMask
ee97acd919e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 991
diff changeset
  1702
    "return a mask, which extracts the blueBits from a color id.
ee97acd919e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 991
diff changeset
  1703
     This only makes sense with trueColor displays; 
ee97acd919e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 991
diff changeset
  1704
     therefore, 0 is returned on all others."
ee97acd919e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 991
diff changeset
  1705
ee97acd919e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 991
diff changeset
  1706
    ^ blueMask
ee97acd919e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 991
diff changeset
  1707
ee97acd919e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 991
diff changeset
  1708
    "
ee97acd919e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 991
diff changeset
  1709
     Display blueMask   
ee97acd919e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 991
diff changeset
  1710
    "
ee97acd919e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 991
diff changeset
  1711
ee97acd919e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 991
diff changeset
  1712
    "Modified: 21.10.1995 / 00:47:58 / cg"
ee97acd919e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 991
diff changeset
  1713
    "Created: 24.7.1996 / 13:25:21 / cg"
ee97acd919e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 991
diff changeset
  1714
!
ee97acd919e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 991
diff changeset
  1715
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1716
depth
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1717
    "return the depth in pixels of the display"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1718
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1719
    ^ depth
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1720
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1721
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1722
     Display depth
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1723
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1724
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1725
1710
df5f8609825d win changes (pass drawableId to clip methods)
Claus Gittinger <cg@exept.de>
parents: 1708
diff changeset
  1726
focusMode
df5f8609825d win changes (pass drawableId to clip methods)
Claus Gittinger <cg@exept.de>
parents: 1708
diff changeset
  1727
    ^ focusMode
df5f8609825d win changes (pass drawableId to clip methods)
Claus Gittinger <cg@exept.de>
parents: 1708
diff changeset
  1728
!
df5f8609825d win changes (pass drawableId to clip methods)
Claus Gittinger <cg@exept.de>
parents: 1708
diff changeset
  1729
996
ee97acd919e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 991
diff changeset
  1730
greenMask
ee97acd919e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 991
diff changeset
  1731
    "return a mask, which extracts the greenBits from a color id.
ee97acd919e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 991
diff changeset
  1732
     This only makes sense with trueColor displays; 
ee97acd919e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 991
diff changeset
  1733
     therefore, 0 is returned on all others."
ee97acd919e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 991
diff changeset
  1734
ee97acd919e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 991
diff changeset
  1735
    ^ greenMask
ee97acd919e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 991
diff changeset
  1736
ee97acd919e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 991
diff changeset
  1737
    "
ee97acd919e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 991
diff changeset
  1738
     Display greenMask   
ee97acd919e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 991
diff changeset
  1739
    "
ee97acd919e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 991
diff changeset
  1740
ee97acd919e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 991
diff changeset
  1741
    "Modified: 21.10.1995 / 00:47:58 / cg"
ee97acd919e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 991
diff changeset
  1742
    "Created: 24.7.1996 / 13:25:15 / cg"
ee97acd919e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 991
diff changeset
  1743
!
ee97acd919e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 991
diff changeset
  1744
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1745
hasColors
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1746
    "return true, if its a color display"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1747
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1748
    ^ hasColors
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1749
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1750
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1751
     Display hasColors 
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1752
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1753
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1754
631
55d9aadf3024 grey / gray (sigh)
Claus Gittinger <cg@exept.de>
parents: 614
diff changeset
  1755
hasGrayscales
55d9aadf3024 grey / gray (sigh)
Claus Gittinger <cg@exept.de>
parents: 614
diff changeset
  1756
    "return true, if this workstation supports grayscales
55d9aadf3024 grey / gray (sigh)
Claus Gittinger <cg@exept.de>
parents: 614
diff changeset
  1757
     (also true for color displays)"
55d9aadf3024 grey / gray (sigh)
Claus Gittinger <cg@exept.de>
parents: 614
diff changeset
  1758
55d9aadf3024 grey / gray (sigh)
Claus Gittinger <cg@exept.de>
parents: 614
diff changeset
  1759
    ^ hasGreyscales
55d9aadf3024 grey / gray (sigh)
Claus Gittinger <cg@exept.de>
parents: 614
diff changeset
  1760
55d9aadf3024 grey / gray (sigh)
Claus Gittinger <cg@exept.de>
parents: 614
diff changeset
  1761
    "
55d9aadf3024 grey / gray (sigh)
Claus Gittinger <cg@exept.de>
parents: 614
diff changeset
  1762
     Display hasGrayscales 
55d9aadf3024 grey / gray (sigh)
Claus Gittinger <cg@exept.de>
parents: 614
diff changeset
  1763
    "
55d9aadf3024 grey / gray (sigh)
Claus Gittinger <cg@exept.de>
parents: 614
diff changeset
  1764
55d9aadf3024 grey / gray (sigh)
Claus Gittinger <cg@exept.de>
parents: 614
diff changeset
  1765
    "Created: 2.5.1996 / 11:49:07 / cg"
55d9aadf3024 grey / gray (sigh)
Claus Gittinger <cg@exept.de>
parents: 614
diff changeset
  1766
!
55d9aadf3024 grey / gray (sigh)
Claus Gittinger <cg@exept.de>
parents: 614
diff changeset
  1767
339
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1768
hasGreyscales
631
55d9aadf3024 grey / gray (sigh)
Claus Gittinger <cg@exept.de>
parents: 614
diff changeset
  1769
    "OBSOLETE english version; please use #hasGrayScales.
55d9aadf3024 grey / gray (sigh)
Claus Gittinger <cg@exept.de>
parents: 614
diff changeset
  1770
     Return true, if this workstation supports greyscales
339
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1771
     (also true for color displays)"
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1772
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1773
    ^ hasGreyscales
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1774
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1775
    "
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1776
     Display hasGreyscales 
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1777
    "
631
55d9aadf3024 grey / gray (sigh)
Claus Gittinger <cg@exept.de>
parents: 614
diff changeset
  1778
55d9aadf3024 grey / gray (sigh)
Claus Gittinger <cg@exept.de>
parents: 614
diff changeset
  1779
    "Modified: 2.5.1996 / 11:51:03 / cg"
339
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1780
!
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1781
996
ee97acd919e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 991
diff changeset
  1782
redMask
ee97acd919e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 991
diff changeset
  1783
    "return a mask, which extracts the redBits from a color id.
ee97acd919e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 991
diff changeset
  1784
     This only makes sense with trueColor displays; 
ee97acd919e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 991
diff changeset
  1785
     therefore, 0 is returned on all others."
ee97acd919e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 991
diff changeset
  1786
ee97acd919e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 991
diff changeset
  1787
    ^ redMask
ee97acd919e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 991
diff changeset
  1788
ee97acd919e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 991
diff changeset
  1789
    "
ee97acd919e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 991
diff changeset
  1790
     Display redMask   
ee97acd919e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 991
diff changeset
  1791
    "
ee97acd919e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 991
diff changeset
  1792
ee97acd919e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 991
diff changeset
  1793
    "Created: 21.10.1995 / 00:45:27 / cg"
ee97acd919e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 991
diff changeset
  1794
    "Modified: 24.7.1996 / 13:25:08 / cg"
ee97acd919e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 991
diff changeset
  1795
!
ee97acd919e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 991
diff changeset
  1796
339
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1797
shiftBlue
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1798
    "return the count by which the blue bits are to be shifted
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1799
     when forming a color index.
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1800
     This only makes sense with trueColor displays; therefore,
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1801
     nil is returned on all others."
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1802
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1803
    ^ blueShift
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1804
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1805
    "
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1806
     Display shiftBlue   
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1807
    "
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1808
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1809
    "Created: 21.10.1995 / 00:45:27 / cg"
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1810
    "Modified: 21.10.1995 / 00:47:58 / cg"
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1811
!
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1812
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1813
shiftGreen
1602
9612b91c7416 comments;
Claus Gittinger <cg@exept.de>
parents: 1600
diff changeset
  1814
    "return the count by which the green bits are to be shifted
339
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1815
     when forming a color index.
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1816
     This only makes sense with trueColor displays; therefore,
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1817
     nil is returned on all others."
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1818
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1819
    ^ greenShift
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1820
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1821
    "
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1822
     Display shiftGreen   
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1823
    "
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1824
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1825
    "Created: 21.10.1995 / 00:45:27 / cg"
1602
9612b91c7416 comments;
Claus Gittinger <cg@exept.de>
parents: 1600
diff changeset
  1826
    "Modified: 16.4.1997 / 15:02:37 / cg"
339
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1827
!
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1828
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1829
shiftRed
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1830
    "return the count by which the red bits are to be shifted
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1831
     when forming a color index.
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1832
     This only makes sense with trueColor displays; therefore,
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1833
     nil is returned on all others."
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1834
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1835
    ^ redShift
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1836
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1837
    "
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1838
     Display shiftRed   
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1839
    "
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1840
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1841
    "Created: 21.10.1995 / 00:45:27 / cg"
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1842
    "Modified: 21.10.1995 / 00:48:10 / cg"
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1843
!
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1844
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1845
visualType
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1846
    "return a symbol representing the visual type of the display"
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1847
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1848
    ^ visualType
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1849
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1850
    "
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1851
     Display visualType
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1852
    "
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1853
!
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1854
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1855
visualType:aSymbol
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1856
    "set the visual type. 
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1857
     The only situation, where setting the visual makes sense,
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1858
     is with my plasma-display, which ignores the palette and spits out
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1859
     grey scales, independent of color LUT definitions. 
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1860
     (of which the server knows nothing).
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1861
     So, this should be used from a display-specific startup file only."
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1862
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1863
    visualType := aSymbol.
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1864
    (visualType == #StaticGray or:[visualType == #GrayScale]) ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  1865
	hasColors := false
339
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1866
    ] ifFalse:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  1867
	hasColors := true
339
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1868
    ]
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1869
!
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1870
1197
79c3db76cf9a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  1871
whiteColor
79c3db76cf9a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  1872
    "return the white color on this device.
79c3db76cf9a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  1873
     This is the same as 'Color white on:device', but much faster."
79c3db76cf9a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  1874
79c3db76cf9a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  1875
    ^ whiteColor
79c3db76cf9a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  1876
79c3db76cf9a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  1877
    "Created: 13.1.1997 / 22:37:10 / cg"
79c3db76cf9a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  1878
    "Modified: 13.1.1997 / 22:43:04 / cg"
79c3db76cf9a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  1879
!
79c3db76cf9a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
  1880
339
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1881
whitepixel
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1882
    "return the colorId of white"
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1883
2853
725ff1f332e0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  1884
    visualType == #TrueColor ifTrue:[^ (1 bitShift:depth)-1].
725ff1f332e0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  1885
339
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1886
    ^ self subclassResponsibility
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1887
! !
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1888
3263
bd92a12c9316 category changes
Claus Gittinger <cg@exept.de>
parents: 3249
diff changeset
  1889
!DeviceWorkstation methodsFor:'accessing-display capabilities'!
339
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1890
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1891
hasColors:aBoolean
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1892
    "set the hasColors flag - needed since some servers dont tell the
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1893
     truth if a monochrome monitor is connected to a color server.
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1894
     Clearing the hasColors flag in the rc file will force use of grey
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1895
     colors (which might make a difference, since some colors are hard to
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1896
     distinguish on a greyscale monitor)."
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1897
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1898
    hasColors := aBoolean
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1899
!
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1900
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1901
hasDPS
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1902
    "return true, if this workstation supports postscript output into views.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1903
     Should be reimplemented in concrete classes which do support this."
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1904
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1905
    ^ false
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1906
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1907
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1908
     Display hasDPS 
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1909
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1910
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1911
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1912
hasExtension:extensionString
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1913
    "query for an X extension. The method here is provide for XWorkstation
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1914
     protocol compatibility only."
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1915
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1916
    ^ false
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1917
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1918
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1919
     Display hasExtension:'XVideo' 
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1920
     Display hasExtension:'Input' 
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1921
     Display hasExtension:'GLX' 
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1922
     Display hasExtension:'X3D-PEX' 
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1923
     Display hasExtension:'XInputExtension' 
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1924
     Display hasExtension:'SHAPE' 
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1925
     Display hasExtension:'MIT-SHM' 
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1926
     Display hasExtension:'SGIFullScreenStereo' 
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1927
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1928
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1929
631
55d9aadf3024 grey / gray (sigh)
Claus Gittinger <cg@exept.de>
parents: 614
diff changeset
  1930
hasGrayscales:aBoolean
55d9aadf3024 grey / gray (sigh)
Claus Gittinger <cg@exept.de>
parents: 614
diff changeset
  1931
    "set the hasGrayscales flag - can be used to simulate b&w behavior
339
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1932
     on greyScale and color monitors.
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1933
     (You may want to check if your application looks ok if displayed on
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1934
      a b&w monitor - even if you have a color display. To do so, clear
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1935
       the hasGreyscales flag from your .rc file)"
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1936
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1937
    hasGreyscales := aBoolean
631
55d9aadf3024 grey / gray (sigh)
Claus Gittinger <cg@exept.de>
parents: 614
diff changeset
  1938
55d9aadf3024 grey / gray (sigh)
Claus Gittinger <cg@exept.de>
parents: 614
diff changeset
  1939
    "Created: 2.5.1996 / 11:50:04 / cg"
55d9aadf3024 grey / gray (sigh)
Claus Gittinger <cg@exept.de>
parents: 614
diff changeset
  1940
!
55d9aadf3024 grey / gray (sigh)
Claus Gittinger <cg@exept.de>
parents: 614
diff changeset
  1941
55d9aadf3024 grey / gray (sigh)
Claus Gittinger <cg@exept.de>
parents: 614
diff changeset
  1942
hasGreyscales:aBoolean
55d9aadf3024 grey / gray (sigh)
Claus Gittinger <cg@exept.de>
parents: 614
diff changeset
  1943
    "OBSOLETE english version - please use #hasGrayscales:
55d9aadf3024 grey / gray (sigh)
Claus Gittinger <cg@exept.de>
parents: 614
diff changeset
  1944
     Set the hasGreyscales flag - can be used to simulate b&w behavior
55d9aadf3024 grey / gray (sigh)
Claus Gittinger <cg@exept.de>
parents: 614
diff changeset
  1945
     on greyScale and color monitors.
55d9aadf3024 grey / gray (sigh)
Claus Gittinger <cg@exept.de>
parents: 614
diff changeset
  1946
     (You may want to check if your application looks ok if displayed on
55d9aadf3024 grey / gray (sigh)
Claus Gittinger <cg@exept.de>
parents: 614
diff changeset
  1947
      a b&w monitor - even if you have a color display. To do so, clear
55d9aadf3024 grey / gray (sigh)
Claus Gittinger <cg@exept.de>
parents: 614
diff changeset
  1948
       the hasGreyscales flag from your .rc file)"
55d9aadf3024 grey / gray (sigh)
Claus Gittinger <cg@exept.de>
parents: 614
diff changeset
  1949
55d9aadf3024 grey / gray (sigh)
Claus Gittinger <cg@exept.de>
parents: 614
diff changeset
  1950
    hasGreyscales := aBoolean
55d9aadf3024 grey / gray (sigh)
Claus Gittinger <cg@exept.de>
parents: 614
diff changeset
  1951
55d9aadf3024 grey / gray (sigh)
Claus Gittinger <cg@exept.de>
parents: 614
diff changeset
  1952
    "Modified: 2.5.1996 / 11:50:48 / cg"
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1953
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1954
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1955
hasImageExtension
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1956
    "return true, if this workstation supports the X Image extension"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1957
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1958
    ^ false
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1959
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1960
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1961
     Display hasImageExtension 
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1962
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1963
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1964
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1965
hasInputExtension
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1966
    "return true, if this workstation supports the X Input extension"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1967
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1968
    ^ false
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1969
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1970
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1971
     Display hasInputExtension 
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1972
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1973
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1974
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1975
hasMultibuffer
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1976
    "return true, if this workstation supports the X multibuffer extension"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1977
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1978
    ^ false
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1979
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1980
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1981
     Display hasMultibuffer 
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1982
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1983
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1984
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1985
hasPEX
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1986
    "return true, if this workstation supports PEX graphics.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1987
     Should be reimplemented in concrete classes which do support this."
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1988
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1989
    ^ false
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1990
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1991
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1992
     Display hasPEX 
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1993
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1994
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1995
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  1996
hasShape
2744
7129de2192f7 #hasShape -> #supportsArbitraryShapedViews
Claus Gittinger <cg@exept.de>
parents: 2735
diff changeset
  1997
    "return true, if this workstation supports arbitrary shaped windows.
7129de2192f7 #hasShape -> #supportsArbitraryShapedViews
Claus Gittinger <cg@exept.de>
parents: 2735
diff changeset
  1998
     This is obsolete - use #supportsArbitraryShapedViews."
7129de2192f7 #hasShape -> #supportsArbitraryShapedViews
Claus Gittinger <cg@exept.de>
parents: 2735
diff changeset
  1999
7129de2192f7 #hasShape -> #supportsArbitraryShapedViews
Claus Gittinger <cg@exept.de>
parents: 2735
diff changeset
  2000
    ^ self supportsArbitraryShapedViews
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2001
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2002
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2003
     Display hasShape 
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2004
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2005
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2006
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2007
hasShm
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2008
    "return true, if this workstation supports shared memory pixmaps.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2009
     Should be reimplemented in concrete classes which do support this."
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2010
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2011
    ^ false
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2012
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2013
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2014
     Display hasShm 
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2015
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2016
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2017
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2018
hasStereoExtension
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2019
    "return true, if this workstation supports stereo GL drawing.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2020
     Both the server must support it, and the feature must have been
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2021
     enabled in the smalltalk system, for true to be returned."
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2022
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2023
    ^ false
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2024
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2025
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2026
     Display hasStereoExtension 
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2027
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2028
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2029
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2030
hasXVideo
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2031
    "return true, if this workstation supports the XVideo extension"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2032
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2033
    ^ false
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2034
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2035
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2036
     Display hasXVideo 
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2037
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2038
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2039
340
1080a303e75b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  2040
iconSizes
690
5d92028522f6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 689
diff changeset
  2041
    "Get the supported icon sizes. These are typically set by the window manager.
340
1080a303e75b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  2042
     We return nil here (as if there are no special size preferences)."
1080a303e75b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  2043
1080a303e75b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  2044
    ^ nil
1080a303e75b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  2045
1080a303e75b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  2046
    "Created: 2.1.1996 / 15:08:16 / cg"
690
5d92028522f6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 689
diff changeset
  2047
    "Modified: 7.5.1996 / 10:43:38 / cg"
340
1080a303e75b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  2048
!
1080a303e75b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  2049
339
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2050
ignoreBackingStore:aBoolean
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2051
    "if the argument is true, the views backingStore setting will be ignored, and
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2052
     no backing store used - this can be used on servers where backing store is
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2053
     very slow (from rc-file)"
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2054
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2055
    ^ self
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2056
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2057
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2058
isSlow
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2059
    "return true, if this is a relatively slow device -
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2060
     used to turn off things like popup-shadows"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2061
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2062
    ^ isSlow
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2063
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2064
339
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2065
isSlow:aBoolean
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2066
    "set/clear the slow flag.
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2067
     The slow-flag has no semantic meaning by itself; 
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2068
     however, it can be set via the display.rc file and tested at various
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2069
     other places to turn off some bells&whistles which might slow down
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2070
     the drawing. For example, shadows under popUps are suppressed if isSlow
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2071
     is set."
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2072
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2073
    isSlow := aBoolean
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2074
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2075
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2076
monitorType
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2077
    "return a symbol representing the monitor type of the display.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2078
     It is usually set to #unknown, #color or #monochrome.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2079
     But it can be set to any value from the startup file, for later
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2080
     testing from anywhere. For example the startup for plasma-displays 
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2081
     can set it to #plasma to later influence the colors used in widgets
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2082
     (indirectly through the resource file)."
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2083
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2084
    ^ monitorType
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2085
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2086
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2087
     Display monitorType  
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2088
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2089
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2090
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2091
monitorType:aSymbol
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2092
    "set the monitorType - see comment in DeviceWorkstation>>montorType"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2093
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2094
    monitorType := aSymbol
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2095
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2096
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2097
ncells
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2098
    "return the number of usable color cells, the display has 
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2099
     - this is not always 2 to the power of depth
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2100
     (for example, on 6bit displays, ncells is 64 while depth is 8)"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2101
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2102
    ^ ncells
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2103
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2104
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2105
     Display ncells
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2106
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2107
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2108
689
8029a9904a6b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 656
diff changeset
  2109
preferredIconSize
8029a9904a6b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 656
diff changeset
  2110
    "Get the preferrered icon size. These are typically set by the window manager.
8029a9904a6b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 656
diff changeset
  2111
     We return nil here (as if there are no special size preferences)."
8029a9904a6b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 656
diff changeset
  2112
827
3dca7f976df0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  2113
    |sizes spec sz sz2|
820
f59eaacbbf4b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  2114
821
6d541de65c37 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  2115
    preferredIconSize isNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  2116
	sizes := self iconSizes.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  2117
	sizes notNil ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  2118
	    spec := sizes first.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  2119
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  2120
	    "/ we prefer square icons ...
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  2121
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  2122
	    sz := (spec at:#maxWidth) min: (spec at:#maxHeight).
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  2123
	    sz > 64 ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  2124
		sz2 := (spec at:#minWidth) max: (spec at:#minHeight).
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  2125
		sz2 <= 48 ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  2126
		    sz := 48
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  2127
		]
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  2128
	    ].
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  2129
	    preferredIconSize := sz @ sz
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  2130
	].
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  2131
	preferredIconSize isNil ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  2132
	    preferredIconSize := 48@48
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  2133
	].
820
f59eaacbbf4b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  2134
    ].
821
6d541de65c37 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  2135
6d541de65c37 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  2136
    ^ preferredIconSize
689
8029a9904a6b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 656
diff changeset
  2137
820
f59eaacbbf4b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  2138
    "
f59eaacbbf4b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  2139
     Display preferredIconSize
821
6d541de65c37 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  2140
     Display preferredIconSize:32@32
827
3dca7f976df0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  2141
     Display preferredIconSize:nil
820
f59eaacbbf4b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  2142
    "
f59eaacbbf4b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 817
diff changeset
  2143
827
3dca7f976df0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  2144
    "Modified: 10.6.1996 / 22:10:58 / cg"
821
6d541de65c37 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  2145
!
6d541de65c37 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  2146
6d541de65c37 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  2147
preferredIconSize:anExtentPoint
6d541de65c37 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  2148
    "set the preferrered icon size. 
6d541de65c37 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  2149
     By default, the preferredIconSize is queried from the display,
6d541de65c37 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  2150
     however, some windowManagers return stupid values.
6d541de65c37 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  2151
     This methods allows overriding thngs from a startup file"
6d541de65c37 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  2152
6d541de65c37 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  2153
    preferredIconSize := anExtentPoint
6d541de65c37 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  2154
6d541de65c37 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  2155
    "
6d541de65c37 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  2156
     Display preferredIconSize   
6d541de65c37 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  2157
     Display preferredIconSize:32@32
6d541de65c37 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  2158
     Display preferredIconSize:48@48
6d541de65c37 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  2159
    "
6d541de65c37 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  2160
6d541de65c37 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  2161
    "Modified: 10.6.1996 / 21:01:50 / cg"
689
8029a9904a6b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 656
diff changeset
  2162
!
8029a9904a6b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 656
diff changeset
  2163
1024
db72d54f08bf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1022
diff changeset
  2164
scrollsAsynchronous
1007
6b6b2a63f01d support for non-selectable devices (WIN32)
Claus Gittinger <cg@exept.de>
parents: 1003
diff changeset
  2165
    "return true, if this display asynchronously sends expose events after a
6b6b2a63f01d support for non-selectable devices (WIN32)
Claus Gittinger <cg@exept.de>
parents: 1003
diff changeset
  2166
     scroll operation. False otherwise. Asynchronous expose events are an X
6b6b2a63f01d support for non-selectable devices (WIN32)
Claus Gittinger <cg@exept.de>
parents: 1003
diff changeset
  2167
     speciality, which affects a few methods outside of the display class (sorry)"
6b6b2a63f01d support for non-selectable devices (WIN32)
Claus Gittinger <cg@exept.de>
parents: 1003
diff changeset
  2168
6b6b2a63f01d support for non-selectable devices (WIN32)
Claus Gittinger <cg@exept.de>
parents: 1003
diff changeset
  2169
    ^ false
6b6b2a63f01d support for non-selectable devices (WIN32)
Claus Gittinger <cg@exept.de>
parents: 1003
diff changeset
  2170
!
6b6b2a63f01d support for non-selectable devices (WIN32)
Claus Gittinger <cg@exept.de>
parents: 1003
diff changeset
  2171
2536
92335e8cf854 repadding support
Claus Gittinger <cg@exept.de>
parents: 2528
diff changeset
  2172
supportedImageFormatForDepth:aDepth
92335e8cf854 repadding support
Claus Gittinger <cg@exept.de>
parents: 2528
diff changeset
  2173
    "given a depth, return the devices image format info,
92335e8cf854 repadding support
Claus Gittinger <cg@exept.de>
parents: 2528
diff changeset
  2174
     which provides padding info. If the given depth is not
92335e8cf854 repadding support
Claus Gittinger <cg@exept.de>
parents: 2528
diff changeset
  2175
     supported, return nil."
92335e8cf854 repadding support
Claus Gittinger <cg@exept.de>
parents: 2528
diff changeset
  2176
92335e8cf854 repadding support
Claus Gittinger <cg@exept.de>
parents: 2528
diff changeset
  2177
    self supportedImageFormats do:[:fmt |
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  2178
	(fmt at:#depth) == aDepth ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  2179
	    ^fmt
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  2180
	]
2536
92335e8cf854 repadding support
Claus Gittinger <cg@exept.de>
parents: 2528
diff changeset
  2181
    ].
92335e8cf854 repadding support
Claus Gittinger <cg@exept.de>
parents: 2528
diff changeset
  2182
    ^ nil
92335e8cf854 repadding support
Claus Gittinger <cg@exept.de>
parents: 2528
diff changeset
  2183
!
92335e8cf854 repadding support
Claus Gittinger <cg@exept.de>
parents: 2528
diff changeset
  2184
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2185
supportedImageFormats
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2186
    "return an array with supported image formats; each array entry
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2187
     is another array, consisting of depth and bitsPerPixel values.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2188
     Here, we return a single format only; every graphics device must
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2189
     support b&w single bit images."
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2190
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2191
    |info|
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2192
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2193
    info := IdentityDictionary new.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2194
    info at:#depth put:1.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2195
    info at:#bitsPerPixel put:1.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2196
    info at:#padding put:32.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2197
    ^ Array with:info
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2198
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2199
2634
4369c53be798 another view-bg query
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  2200
supportsAnyViewBackgroundPixmaps
4369c53be798 another view-bg query
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  2201
    "return true, if the device allows any pixmap as
4369c53be798 another view-bg query
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  2202
     viewBackground. False returned here - redefined in some
4369c53be798 another view-bg query
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  2203
     device classes."
4369c53be798 another view-bg query
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  2204
4369c53be798 another view-bg query
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  2205
    ^ false
4369c53be798 another view-bg query
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  2206
4369c53be798 another view-bg query
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  2207
    "Created: / 4.5.1999 / 18:41:01 / cg"
4369c53be798 another view-bg query
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  2208
!
4369c53be798 another view-bg query
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  2209
2744
7129de2192f7 #hasShape -> #supportsArbitraryShapedViews
Claus Gittinger <cg@exept.de>
parents: 2735
diff changeset
  2210
supportsArbitraryShapedViews
7129de2192f7 #hasShape -> #supportsArbitraryShapedViews
Claus Gittinger <cg@exept.de>
parents: 2735
diff changeset
  2211
    "return true, if this workstation supports arbitrary shaped
7129de2192f7 #hasShape -> #supportsArbitraryShapedViews
Claus Gittinger <cg@exept.de>
parents: 2735
diff changeset
  2212
     windows.
7129de2192f7 #hasShape -> #supportsArbitraryShapedViews
Claus Gittinger <cg@exept.de>
parents: 2735
diff changeset
  2213
     Should be reimplemented in concrete classes which do support this."
7129de2192f7 #hasShape -> #supportsArbitraryShapedViews
Claus Gittinger <cg@exept.de>
parents: 2735
diff changeset
  2214
7129de2192f7 #hasShape -> #supportsArbitraryShapedViews
Claus Gittinger <cg@exept.de>
parents: 2735
diff changeset
  2215
    ^ false
7129de2192f7 #hasShape -> #supportsArbitraryShapedViews
Claus Gittinger <cg@exept.de>
parents: 2735
diff changeset
  2216
7129de2192f7 #hasShape -> #supportsArbitraryShapedViews
Claus Gittinger <cg@exept.de>
parents: 2735
diff changeset
  2217
    "
7129de2192f7 #hasShape -> #supportsArbitraryShapedViews
Claus Gittinger <cg@exept.de>
parents: 2735
diff changeset
  2218
     Display supportsArbitraryShapedViews 
7129de2192f7 #hasShape -> #supportsArbitraryShapedViews
Claus Gittinger <cg@exept.de>
parents: 2735
diff changeset
  2219
    "
7129de2192f7 #hasShape -> #supportsArbitraryShapedViews
Claus Gittinger <cg@exept.de>
parents: 2735
diff changeset
  2220
!
7129de2192f7 #hasShape -> #supportsArbitraryShapedViews
Claus Gittinger <cg@exept.de>
parents: 2735
diff changeset
  2221
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2222
supportsDeepIcons
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2223
    "return true, if this device supports non b&w (i.e. greyScale
817
fd619cf59d61 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 814
diff changeset
  2224
     or colored icons). Many Xservers (and/or windowManagers) crash,
fd619cf59d61 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 814
diff changeset
  2225
     if you pass them a deep form as icon; therefore, the default is false.
fd619cf59d61 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 814
diff changeset
  2226
     It may be a good idea to check for the server vendor/release and
fd619cf59d61 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 814
diff changeset
  2227
     return true sometimes.
fd619cf59d61 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 814
diff changeset
  2228
     This flag can be set with #supportsDeepIcons:"
fd619cf59d61 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 814
diff changeset
  2229
fd619cf59d61 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 814
diff changeset
  2230
    ^ supportsDeepIcons
fd619cf59d61 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 814
diff changeset
  2231
fd619cf59d61 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 814
diff changeset
  2232
    "
fd619cf59d61 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 814
diff changeset
  2233
     Display supportsDeepIcons:true 
fd619cf59d61 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 814
diff changeset
  2234
fd619cf59d61 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 814
diff changeset
  2235
     |v|
fd619cf59d61 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 814
diff changeset
  2236
fd619cf59d61 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 814
diff changeset
  2237
     v := StandardSystemView new.
fd619cf59d61 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 814
diff changeset
  2238
     v icon:((Image fromFile:'bitmaps/claus.gif') magnifiedTo:68@68).
fd619cf59d61 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 814
diff changeset
  2239
     v open.
fd619cf59d61 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 814
diff changeset
  2240
    "
fd619cf59d61 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 814
diff changeset
  2241
fd619cf59d61 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 814
diff changeset
  2242
    "Modified: 10.6.1996 / 20:11:48 / cg"
fd619cf59d61 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 814
diff changeset
  2243
!
fd619cf59d61 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 814
diff changeset
  2244
fd619cf59d61 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 814
diff changeset
  2245
supportsDeepIcons:yesOrNo
fd619cf59d61 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 814
diff changeset
  2246
    "set/clear the supportsDeepIcons flag.
fd619cf59d61 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 814
diff changeset
  2247
     Many Xservers (and/or windowManagers) crash,
fd619cf59d61 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 814
diff changeset
  2248
     if you pass them a deep form as icon; therefore, the default is false."
fd619cf59d61 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 814
diff changeset
  2249
fd619cf59d61 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 814
diff changeset
  2250
    supportsDeepIcons := yesOrNo
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2251
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2252
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2253
     Display supportsDeepIcons 
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2254
    "
817
fd619cf59d61 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 814
diff changeset
  2255
fd619cf59d61 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 814
diff changeset
  2256
    "Created: 10.6.1996 / 19:36:19 / cg"
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2257
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2258
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2259
supportsGLDrawing
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2260
    "return true, if this device supports 3D GL drawing.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2261
     We do not depend on that being implemented."
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2262
1957
631446af1f9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1926
diff changeset
  2263
    "This method should be reimplemented in concrete display classes."
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2264
    ^ false
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2265
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2266
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2267
     Display supportsGLDrawing 
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2268
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2269
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2270
2603
856c1d8eb9fe added #supportsIconMasks
Claus Gittinger <cg@exept.de>
parents: 2598
diff changeset
  2271
supportsIconMasks
856c1d8eb9fe added #supportsIconMasks
Claus Gittinger <cg@exept.de>
parents: 2598
diff changeset
  2272
    "return true, if this device supports masked icons.
856c1d8eb9fe added #supportsIconMasks
Claus Gittinger <cg@exept.de>
parents: 2598
diff changeset
  2273
     Assume true here - to be redefined in concrete classes."
856c1d8eb9fe added #supportsIconMasks
Claus Gittinger <cg@exept.de>
parents: 2598
diff changeset
  2274
856c1d8eb9fe added #supportsIconMasks
Claus Gittinger <cg@exept.de>
parents: 2598
diff changeset
  2275
    ^ true
856c1d8eb9fe added #supportsIconMasks
Claus Gittinger <cg@exept.de>
parents: 2598
diff changeset
  2276
856c1d8eb9fe added #supportsIconMasks
Claus Gittinger <cg@exept.de>
parents: 2598
diff changeset
  2277
    "
856c1d8eb9fe added #supportsIconMasks
Claus Gittinger <cg@exept.de>
parents: 2598
diff changeset
  2278
     Display supportsIconMasks 
856c1d8eb9fe added #supportsIconMasks
Claus Gittinger <cg@exept.de>
parents: 2598
diff changeset
  2279
    "
856c1d8eb9fe added #supportsIconMasks
Claus Gittinger <cg@exept.de>
parents: 2598
diff changeset
  2280
856c1d8eb9fe added #supportsIconMasks
Claus Gittinger <cg@exept.de>
parents: 2598
diff changeset
  2281
    "Modified: / 28.4.1999 / 19:58:12 / cg"
856c1d8eb9fe added #supportsIconMasks
Claus Gittinger <cg@exept.de>
parents: 2598
diff changeset
  2282
!
856c1d8eb9fe added #supportsIconMasks
Claus Gittinger <cg@exept.de>
parents: 2598
diff changeset
  2283
824
1f5f2b31921d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 822
diff changeset
  2284
supportsIconViews
1f5f2b31921d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 822
diff changeset
  2285
    "return true, if this device supports views as icons.
1f5f2b31921d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 822
diff changeset
  2286
     Only Xservers (currently) support this."
1f5f2b31921d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 822
diff changeset
  2287
1f5f2b31921d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 822
diff changeset
  2288
    ^ false
1f5f2b31921d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 822
diff changeset
  2289
1f5f2b31921d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 822
diff changeset
  2290
    "
1f5f2b31921d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 822
diff changeset
  2291
     Display supportsIconViews 
1f5f2b31921d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 822
diff changeset
  2292
    "
1f5f2b31921d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 822
diff changeset
  2293
1f5f2b31921d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 822
diff changeset
  2294
    "Modified: 10.6.1996 / 21:08:04 / cg"
1f5f2b31921d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 822
diff changeset
  2295
!
1f5f2b31921d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 822
diff changeset
  2296
2631
c42013ed57a8 replaced supportdMaskedDrawing by a method which gets the
Claus Gittinger <cg@exept.de>
parents: 2622
diff changeset
  2297
supportsMaskedDrawingWith:aForm
c42013ed57a8 replaced supportdMaskedDrawing by a method which gets the
Claus Gittinger <cg@exept.de>
parents: 2622
diff changeset
  2298
    "return true, if the device allows the given form pixmap
c42013ed57a8 replaced supportdMaskedDrawing by a method which gets the
Claus Gittinger <cg@exept.de>
parents: 2622
diff changeset
  2299
     to be used as paint color. 
c42013ed57a8 replaced supportdMaskedDrawing by a method which gets the
Claus Gittinger <cg@exept.de>
parents: 2622
diff changeset
  2300
     False returned here, which forces higher level code to
c42013ed57a8 replaced supportdMaskedDrawing by a method which gets the
Claus Gittinger <cg@exept.de>
parents: 2622
diff changeset
  2301
     perform the filling manually (by copying the form)
c42013ed57a8 replaced supportdMaskedDrawing by a method which gets the
Claus Gittinger <cg@exept.de>
parents: 2622
diff changeset
  2302
     - redefined in most device classes."
2332
c025bb452cd9 added #supportsPatternDrawing query (for win-95)
Claus Gittinger <cg@exept.de>
parents: 2324
diff changeset
  2303
c025bb452cd9 added #supportsPatternDrawing query (for win-95)
Claus Gittinger <cg@exept.de>
parents: 2324
diff changeset
  2304
    ^ false
c025bb452cd9 added #supportsPatternDrawing query (for win-95)
Claus Gittinger <cg@exept.de>
parents: 2324
diff changeset
  2305
2631
c42013ed57a8 replaced supportdMaskedDrawing by a method which gets the
Claus Gittinger <cg@exept.de>
parents: 2622
diff changeset
  2306
    "Created: / 4.5.1999 / 12:16:18 / cg"
c42013ed57a8 replaced supportdMaskedDrawing by a method which gets the
Claus Gittinger <cg@exept.de>
parents: 2622
diff changeset
  2307
    "Modified: / 4.5.1999 / 12:58:04 / cg"
2332
c025bb452cd9 added #supportsPatternDrawing query (for win-95)
Claus Gittinger <cg@exept.de>
parents: 2324
diff changeset
  2308
!
c025bb452cd9 added #supportsPatternDrawing query (for win-95)
Claus Gittinger <cg@exept.de>
parents: 2324
diff changeset
  2309
2749
9052311a0bc1 added #supportsRoundShapedViews
Claus Gittinger <cg@exept.de>
parents: 2744
diff changeset
  2310
supportsRoundShapedViews
9052311a0bc1 added #supportsRoundShapedViews
Claus Gittinger <cg@exept.de>
parents: 2744
diff changeset
  2311
    "return true, if this workstation supports round shaped
9052311a0bc1 added #supportsRoundShapedViews
Claus Gittinger <cg@exept.de>
parents: 2744
diff changeset
  2312
     (elliptical & circular) windows.
9052311a0bc1 added #supportsRoundShapedViews
Claus Gittinger <cg@exept.de>
parents: 2744
diff changeset
  2313
     Should be reimplemented in concrete classes which do support this."
9052311a0bc1 added #supportsRoundShapedViews
Claus Gittinger <cg@exept.de>
parents: 2744
diff changeset
  2314
9052311a0bc1 added #supportsRoundShapedViews
Claus Gittinger <cg@exept.de>
parents: 2744
diff changeset
  2315
    ^ false
9052311a0bc1 added #supportsRoundShapedViews
Claus Gittinger <cg@exept.de>
parents: 2744
diff changeset
  2316
9052311a0bc1 added #supportsRoundShapedViews
Claus Gittinger <cg@exept.de>
parents: 2744
diff changeset
  2317
    "
9052311a0bc1 added #supportsRoundShapedViews
Claus Gittinger <cg@exept.de>
parents: 2744
diff changeset
  2318
     Display supportsRoundShapedViews 
9052311a0bc1 added #supportsRoundShapedViews
Claus Gittinger <cg@exept.de>
parents: 2744
diff changeset
  2319
    "
9052311a0bc1 added #supportsRoundShapedViews
Claus Gittinger <cg@exept.de>
parents: 2744
diff changeset
  2320
!
9052311a0bc1 added #supportsRoundShapedViews
Claus Gittinger <cg@exept.de>
parents: 2744
diff changeset
  2321
2634
4369c53be798 another view-bg query
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  2322
supportsViewBackgroundPixmap:aForm
4369c53be798 another view-bg query
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  2323
    "return true, if the device allows the given pixmap as
4369c53be798 another view-bg query
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  2324
     viewBackground. If false is returned,
4369c53be798 another view-bg query
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  2325
     drawing is done by (possibly) slower smalltalk code.
4369c53be798 another view-bg query
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  2326
     False returned here - redefined in some concrete device classes."
2324
a50065345df3 do not regrab under win32, when dragging a rectangleFromUser
Claus Gittinger <cg@exept.de>
parents: 2308
diff changeset
  2327
a50065345df3 do not regrab under win32, when dragging a rectangleFromUser
Claus Gittinger <cg@exept.de>
parents: 2308
diff changeset
  2328
    ^ false
2634
4369c53be798 another view-bg query
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  2329
4369c53be798 another view-bg query
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  2330
    "Created: / 4.5.1999 / 18:40:25 / cg"
4369c53be798 another view-bg query
Claus Gittinger <cg@exept.de>
parents: 2631
diff changeset
  2331
    "Modified: / 4.5.1999 / 18:44:41 / cg"
2324
a50065345df3 do not regrab under win32, when dragging a rectangleFromUser
Claus Gittinger <cg@exept.de>
parents: 2308
diff changeset
  2332
!
a50065345df3 do not regrab under win32, when dragging a rectangleFromUser
Claus Gittinger <cg@exept.de>
parents: 2308
diff changeset
  2333
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2334
supportsViewGravity
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2335
    "return true, if this device supports gravity attributes.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2336
     We do not depend on the being implemented, but some resizing operations
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2337
     are faster, it is is."
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2338
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2339
    "This method should to be reimplemented in concrete display classes."
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2340
    ^ false
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2341
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2342
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2343
     Display supportsViewGravity 
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2344
    "
2906
f94aca472883 added query if device supports bordered windows.
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
  2345
!
f94aca472883 added query if device supports bordered windows.
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
  2346
f94aca472883 added query if device supports bordered windows.
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
  2347
supportsWindowBorder:aNumber
3108
8d93a14278da checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3100
diff changeset
  2348
    "return true, if this device supports bordered windows with the given borderWidth.
8d93a14278da checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3100
diff changeset
  2349
     Right now, some drawing stuff depends on (at least) a border of 1 pixel
2906
f94aca472883 added query if device supports bordered windows.
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
  2350
     to be supported by the device.
f94aca472883 added query if device supports bordered windows.
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
  2351
     ST/X's views are being rewritten to draw the border manually in the
3108
8d93a14278da checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3100
diff changeset
  2352
     future, since some systems do not support arbitrary borders (i.e. Windows)."
2906
f94aca472883 added query if device supports bordered windows.
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
  2353
f94aca472883 added query if device supports bordered windows.
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
  2354
    ^ true
f94aca472883 added query if device supports bordered windows.
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
  2355
f94aca472883 added query if device supports bordered windows.
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
  2356
    "
f94aca472883 added query if device supports bordered windows.
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
  2357
     Display supportsWindowBorder:1 
f94aca472883 added query if device supports bordered windows.
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
  2358
    "
339
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2359
! !
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2360
3263
bd92a12c9316 category changes
Claus Gittinger <cg@exept.de>
parents: 3249
diff changeset
  2361
!DeviceWorkstation methodsFor:'accessing-display geometry'!
339
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2362
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2363
boundingBox
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2364
    "return a rectangle representing the displays bounding box.
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2365
     For Smalltalk-80 2.x compatibility"
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2366
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2367
    ^ self bounds
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2368
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2369
339
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2370
bounds
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2371
    "return a rectangle representing the displays bounding box.
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2372
     For Smalltalk-80 4.x compatibility"
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2373
656
6a659012c9e3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  2374
    ^ Rectangle left:0 top:0 width:width-1 height:height-1
339
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2375
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2376
    "
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2377
     Screen default bounds
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2378
    "
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2379
    "/ thats the same as:
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2380
    "
656
6a659012c9e3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  2381
     Display bounds  
339
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2382
    "
656
6a659012c9e3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  2383
6a659012c9e3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
  2384
    "Modified: 8.5.1996 / 20:58:26 / cg"
339
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2385
!
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2386
2308
3f4c19d81b4b dummy methods for #supportBackgroundPixmaps and #captionHeight
Claus Gittinger <cg@exept.de>
parents: 2275
diff changeset
  2387
captionHeight
3f4c19d81b4b dummy methods for #supportBackgroundPixmaps and #captionHeight
Claus Gittinger <cg@exept.de>
parents: 2275
diff changeset
  2388
    "return the height in pixels of the caption
3f4c19d81b4b dummy methods for #supportBackgroundPixmaps and #captionHeight
Claus Gittinger <cg@exept.de>
parents: 2275
diff changeset
  2389
     (i.e. title bar) of topWindows.
3f4c19d81b4b dummy methods for #supportBackgroundPixmaps and #captionHeight
Claus Gittinger <cg@exept.de>
parents: 2275
diff changeset
  2390
     Fallback of 0 (i.e. unknown) is returned here.
3f4c19d81b4b dummy methods for #supportBackgroundPixmaps and #captionHeight
Claus Gittinger <cg@exept.de>
parents: 2275
diff changeset
  2391
     Applications should not depend on that returned value
3f4c19d81b4b dummy methods for #supportBackgroundPixmaps and #captionHeight
Claus Gittinger <cg@exept.de>
parents: 2275
diff changeset
  2392
     to be exact - on some systems (windowManagers), 
3f4c19d81b4b dummy methods for #supportBackgroundPixmaps and #captionHeight
Claus Gittinger <cg@exept.de>
parents: 2275
diff changeset
  2393
     its value cannot be retrieved"
3f4c19d81b4b dummy methods for #supportBackgroundPixmaps and #captionHeight
Claus Gittinger <cg@exept.de>
parents: 2275
diff changeset
  2394
3f4c19d81b4b dummy methods for #supportBackgroundPixmaps and #captionHeight
Claus Gittinger <cg@exept.de>
parents: 2275
diff changeset
  2395
    ^ 0
3f4c19d81b4b dummy methods for #supportBackgroundPixmaps and #captionHeight
Claus Gittinger <cg@exept.de>
parents: 2275
diff changeset
  2396
!
3f4c19d81b4b dummy methods for #supportBackgroundPixmaps and #captionHeight
Claus Gittinger <cg@exept.de>
parents: 2275
diff changeset
  2397
339
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2398
center
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2399
    "return the centerpoint in pixels of the display"
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2400
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2401
    ^ (width // 2) @ (height // 2)
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2402
!
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2403
783
6492ac9c2494 added resolution & drawingResolution
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  2404
drawingResolution
6492ac9c2494 added resolution & drawingResolution
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  2405
    "return a point consisting of the actual drawing resolution
6492ac9c2494 added resolution & drawingResolution
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  2406
     in pixel-per-inch horizontally and vertically.
6492ac9c2494 added resolution & drawingResolution
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  2407
     On screen devices, this is the same as resolution; on postscript
6492ac9c2494 added resolution & drawingResolution
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  2408
     devices, this is usually higher than the coordinate systems unit.
6492ac9c2494 added resolution & drawingResolution
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  2409
     This method is provided for compatibility with postscript media,
6492ac9c2494 added resolution & drawingResolution
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  2410
     to query the device if sub-pixel-coordinate drawing is possible.
6492ac9c2494 added resolution & drawingResolution
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  2411
     (there are a few situations, in which resolution-independ drawing
6492ac9c2494 added resolution & drawingResolution
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  2412
      leads to ugly looking output ... knowing about subPixel resolution
6492ac9c2494 added resolution & drawingResolution
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  2413
      may help there.)"
6492ac9c2494 added resolution & drawingResolution
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  2414
6492ac9c2494 added resolution & drawingResolution
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  2415
    ^ self resolution
6492ac9c2494 added resolution & drawingResolution
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  2416
6492ac9c2494 added resolution & drawingResolution
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  2417
    "Created: 4.6.1996 / 15:20:43 / cg"
6492ac9c2494 added resolution & drawingResolution
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  2418
    "Modified: 4.6.1996 / 17:56:26 / cg"
6492ac9c2494 added resolution & drawingResolution
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  2419
!
6492ac9c2494 added resolution & drawingResolution
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  2420
339
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2421
extent
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2422
    "return the extent of the display (in pixels)"
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2423
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2424
    ^ width @ height
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2425
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2426
    "
339
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2427
     Display extent
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2428
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2429
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2430
339
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2431
height
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2432
    "return the height of the display (in pixels)"
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2433
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2434
    ^ height
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2435
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2436
    "Display height"
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2437
!
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2438
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2439
heightInMillimeter
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2440
    "return the height in millimeter of the display"
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2441
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2442
    ^ heightMM
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2443
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2444
    "Display heightInMillimeter"
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2445
!
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2446
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2447
heightInMillimeter:aNumber
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2448
    "set the height in millimeter of the display 
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2449
     - needed since some displays do not tell the truth or do not know it"
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2450
1044
a62836bdc673 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1043
diff changeset
  2451
    aNumber > 0 ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  2452
	heightMM := aNumber.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  2453
	resolutionVer := nil.
1044
a62836bdc673 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1043
diff changeset
  2454
    ]
a62836bdc673 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1043
diff changeset
  2455
a62836bdc673 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1043
diff changeset
  2456
    "Modified: 10.9.1996 / 14:25:39 / cg"
339
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2457
!
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2458
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2459
horizontalPixelPerInch
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2460
    "return the number of horizontal pixels per inch of the display"
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2461
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2462
    ^ (width / widthMM) * 25.4
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2463
!
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2464
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2465
horizontalPixelPerMillimeter
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2466
    "return the number of horizontal pixels per millimeter of the display"
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2467
999
abddc647ee17 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 996
diff changeset
  2468
    resolutionHor notNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  2469
	^ resolutionHor
999
abddc647ee17 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 996
diff changeset
  2470
    ].
1000
bffb1e88c1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 999
diff changeset
  2471
    resolutionHor := (width / widthMM) asFloat.
999
abddc647ee17 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 996
diff changeset
  2472
    ^ resolutionHor
339
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2473
!
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2474
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2475
pixelPerInch
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2476
    "return the number of horizontal/vertical pixels per inch of the display as Point"
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2477
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2478
    ^ ((width / widthMM) @ (height / heightMM)) * 25.4
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2479
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2480
    "Display pixelPerInch"
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2481
!
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2482
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2483
pixelPerMillimeter
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2484
    "return the number of horizontal/vertical pixels per millimeter of the display as Point"
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2485
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2486
    ^ (width / widthMM) @ (height / heightMM)
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2487
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2488
    "Display pixelPerMillimeter"
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2489
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2490
390
19a90edd0dc4 added #resolution for ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 354
diff changeset
  2491
resolution
19a90edd0dc4 added #resolution for ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 354
diff changeset
  2492
    "return a point consisting of pixel-per-inch horizontally and vertically.
19a90edd0dc4 added #resolution for ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 354
diff changeset
  2493
     This is an ST-80 compatibility method"
19a90edd0dc4 added #resolution for ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 354
diff changeset
  2494
19a90edd0dc4 added #resolution for ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 354
diff changeset
  2495
    ^ self pixelPerInch
19a90edd0dc4 added #resolution for ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 354
diff changeset
  2496
!
19a90edd0dc4 added #resolution for ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 354
diff changeset
  2497
1692
c301f69d322b added #usableExtent (subtracts the toolBar height from the displays height)
Claus Gittinger <cg@exept.de>
parents: 1684
diff changeset
  2498
usableExtent
c301f69d322b added #usableExtent (subtracts the toolBar height from the displays height)
Claus Gittinger <cg@exept.de>
parents: 1684
diff changeset
  2499
    "return the usable extent of the display (in pixels).
c301f69d322b added #usableExtent (subtracts the toolBar height from the displays height)
Claus Gittinger <cg@exept.de>
parents: 1684
diff changeset
  2500
     Normally, the same as extent, but may be smaller, in
c301f69d322b added #usableExtent (subtracts the toolBar height from the displays height)
Claus Gittinger <cg@exept.de>
parents: 1684
diff changeset
  2501
     case some menu space is taken up by the window manager (windows)"
c301f69d322b added #usableExtent (subtracts the toolBar height from the displays height)
Claus Gittinger <cg@exept.de>
parents: 1684
diff changeset
  2502
c301f69d322b added #usableExtent (subtracts the toolBar height from the displays height)
Claus Gittinger <cg@exept.de>
parents: 1684
diff changeset
  2503
    ^ width @ height
1844
ecf90e7d098e name signals
Claus Gittinger <cg@exept.de>
parents: 1843
diff changeset
  2504
ecf90e7d098e name signals
Claus Gittinger <cg@exept.de>
parents: 1843
diff changeset
  2505
    "
ecf90e7d098e name signals
Claus Gittinger <cg@exept.de>
parents: 1843
diff changeset
  2506
     Display extent    
ecf90e7d098e name signals
Claus Gittinger <cg@exept.de>
parents: 1843
diff changeset
  2507
     Display usableExtent 
ecf90e7d098e name signals
Claus Gittinger <cg@exept.de>
parents: 1843
diff changeset
  2508
    "
ecf90e7d098e name signals
Claus Gittinger <cg@exept.de>
parents: 1843
diff changeset
  2509
ecf90e7d098e name signals
Claus Gittinger <cg@exept.de>
parents: 1843
diff changeset
  2510
    "Modified: 4.8.1997 / 01:40:14 / cg"
1692
c301f69d322b added #usableExtent (subtracts the toolBar height from the displays height)
Claus Gittinger <cg@exept.de>
parents: 1684
diff changeset
  2511
!
c301f69d322b added #usableExtent (subtracts the toolBar height from the displays height)
Claus Gittinger <cg@exept.de>
parents: 1684
diff changeset
  2512
c301f69d322b added #usableExtent (subtracts the toolBar height from the displays height)
Claus Gittinger <cg@exept.de>
parents: 1684
diff changeset
  2513
usableHeight
c301f69d322b added #usableExtent (subtracts the toolBar height from the displays height)
Claus Gittinger <cg@exept.de>
parents: 1684
diff changeset
  2514
    "returns the usable height of the display (in pixels)
c301f69d322b added #usableExtent (subtracts the toolBar height from the displays height)
Claus Gittinger <cg@exept.de>
parents: 1684
diff changeset
  2515
     Normally, the same as height, but may be smaller, in
c301f69d322b added #usableExtent (subtracts the toolBar height from the displays height)
Claus Gittinger <cg@exept.de>
parents: 1684
diff changeset
  2516
     case some menu space is taken up by the window manager (windows)"
c301f69d322b added #usableExtent (subtracts the toolBar height from the displays height)
Claus Gittinger <cg@exept.de>
parents: 1684
diff changeset
  2517
1708
301b68a37322 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1704
diff changeset
  2518
    ^ self usableExtent y
1692
c301f69d322b added #usableExtent (subtracts the toolBar height from the displays height)
Claus Gittinger <cg@exept.de>
parents: 1684
diff changeset
  2519
!
c301f69d322b added #usableExtent (subtracts the toolBar height from the displays height)
Claus Gittinger <cg@exept.de>
parents: 1684
diff changeset
  2520
c301f69d322b added #usableExtent (subtracts the toolBar height from the displays height)
Claus Gittinger <cg@exept.de>
parents: 1684
diff changeset
  2521
usableWidth
c301f69d322b added #usableExtent (subtracts the toolBar height from the displays height)
Claus Gittinger <cg@exept.de>
parents: 1684
diff changeset
  2522
    "returns the usable width of the display (in pixels)
c301f69d322b added #usableExtent (subtracts the toolBar height from the displays height)
Claus Gittinger <cg@exept.de>
parents: 1684
diff changeset
  2523
     Normally, the same as width, but may be smaller, in
c301f69d322b added #usableExtent (subtracts the toolBar height from the displays height)
Claus Gittinger <cg@exept.de>
parents: 1684
diff changeset
  2524
     case some menu space is taken up by the window manager (windows)"
c301f69d322b added #usableExtent (subtracts the toolBar height from the displays height)
Claus Gittinger <cg@exept.de>
parents: 1684
diff changeset
  2525
1708
301b68a37322 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1704
diff changeset
  2526
    ^ self usableExtent x
1692
c301f69d322b added #usableExtent (subtracts the toolBar height from the displays height)
Claus Gittinger <cg@exept.de>
parents: 1684
diff changeset
  2527
!
c301f69d322b added #usableExtent (subtracts the toolBar height from the displays height)
Claus Gittinger <cg@exept.de>
parents: 1684
diff changeset
  2528
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2529
verticalPixelPerInch
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2530
    "return the number of vertical pixels per inch of the display"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2531
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2532
    ^ (height / heightMM) * 25.4
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2533
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2534
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2535
verticalPixelPerMillimeter
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2536
    "return the number of vertical pixels per millimeter of the display"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2537
999
abddc647ee17 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 996
diff changeset
  2538
    resolutionVer notNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  2539
	^ resolutionVer
999
abddc647ee17 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 996
diff changeset
  2540
    ].
1000
bffb1e88c1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 999
diff changeset
  2541
    resolutionVer := (height / heightMM) asFloat.
999
abddc647ee17 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 996
diff changeset
  2542
    ^ resolutionVer
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2543
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2544
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2545
virtualExtent
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2546
    "return the virtual extent of the display (in pixels).
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2547
     On most systems, this is the same as the physical width;
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2548
     except, if a window manager with a virtual desktop like olvwm
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2549
     (simulating a bigger screen) is running."
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2550
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2551
    ^ width @ height
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2552
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2553
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2554
virtualHeight
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2555
    "return the virtual height of the display (in pixels).
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2556
     On most systems, this is the same as the physical height;
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2557
     except, if a window manager with a virtual desktop like olvwm
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2558
     (simulating a bigger screen) is running."
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2559
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2560
    ^ self virtualExtent y
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2561
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2562
    "Display virtualHeight"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2563
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2564
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2565
virtualWidth
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2566
    "return the virtual width of the display (in pixels).
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2567
     On most systems, this is the same as the physical width;
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2568
     except, if a window manager with a virtual desktop like olvwm
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2569
     (simulating a bigger screen) is running."
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2570
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2571
    ^ self virtualExtent x
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2572
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2573
    "Display virtualWidth"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2574
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2575
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2576
width
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2577
    "return the width of the display (in pixels)"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2578
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2579
    ^ width
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2580
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2581
    "Display width"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2582
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2583
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2584
widthInMillimeter
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2585
    "return the width in millimeter of the display"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2586
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2587
    ^ widthMM
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2588
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2589
    "Display widthInMillimeter"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2590
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2591
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2592
widthInMillimeter:aNumber
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2593
    "set the width in millimeter of the display 
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2594
     - needed since some displays do not tell the truth or do not know it"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2595
1044
a62836bdc673 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1043
diff changeset
  2596
    aNumber > 0 ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  2597
	widthMM := aNumber.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  2598
	resolutionHor := nil.
1044
a62836bdc673 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1043
diff changeset
  2599
    ].
a62836bdc673 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1043
diff changeset
  2600
a62836bdc673 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1043
diff changeset
  2601
    "Modified: 10.9.1996 / 14:25:27 / cg"
339
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2602
! !
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2603
3263
bd92a12c9316 category changes
Claus Gittinger <cg@exept.de>
parents: 3249
diff changeset
  2604
!DeviceWorkstation methodsFor:'accessing-keyboard mappings'!
339
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2605
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2606
buttonTranslation
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2607
    ^ buttonTranslation
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2608
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2609
339
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2610
buttonTranslation:anArray
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2611
    buttonTranslation := anArray
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2612
!
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2613
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2614
keyboardMap
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2615
    "return the keyboard map"
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2616
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2617
    ^ keyboardMap
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2618
!
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2619
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2620
keyboardMap:aMap
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2621
    "set the keyboard map"
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2622
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2623
    keyboardMap := aMap
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2624
! !
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2625
3263
bd92a12c9316 category changes
Claus Gittinger <cg@exept.de>
parents: 3249
diff changeset
  2626
!DeviceWorkstation methodsFor:'accessing-misc'!
339
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2627
3012
0edbbda887cf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2997
diff changeset
  2628
defaultEventMask
0edbbda887cf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2997
diff changeset
  2629
    "return a mask to enable some events by default."
0edbbda887cf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2997
diff changeset
  2630
0edbbda887cf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2997
diff changeset
  2631
    self subclassResponsibility
0edbbda887cf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2997
diff changeset
  2632
!
0edbbda887cf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2997
diff changeset
  2633
339
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2634
displayName
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2635
    "return the display name - that is the name of the display connection
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2636
     or nil, for default display. For example, in X, this returns a string
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2637
     like 'hostname:0' for remote connections, and nil for a default local
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2638
     connection.
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2639
     - nothing known here, but maybe redefined in subclasses."
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2640
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2641
    ^ nil
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2642
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2643
    "
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2644
     Display displayName  
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2645
    "
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2646
!
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2647
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2648
glVersion
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2649
    "return a string describing the GL version.
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2650
     Since the generic display does not support 3D GL graphics,
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2651
     a dummy is returned here."
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2652
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2653
    ^ 'noGL'
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2654
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2655
    "
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2656
     Display glVersion 
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2657
    "
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2658
!
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2659
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2660
platformName
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2661
    "return a string describing the display systems platform.
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2662
     Returns a dummy here."
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2663
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2664
    ^ self class platformName
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2665
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2666
    "
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2667
     Display platformName  
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2668
    "
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2669
!
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2670
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2671
protocolVersion
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2672
    "return the display systems protocol version number.
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2673
     Returns a dummy here"
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2674
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2675
    ^ 0
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2676
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2677
    "
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2678
     Display protocolVersion  
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2679
    "
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2680
!
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2681
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2682
serverVendor
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2683
    "return a string describing the display systems server vendor.
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2684
     Returns a dummy here"
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2685
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2686
    ^ 'generic'
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2687
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2688
    "
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2689
     Display serverVendor  
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2690
    "
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2691
!
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2692
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2693
vendorRelease
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2694
    "return the display systems release number.
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2695
     Returns a dummy here."
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2696
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2697
    ^ 0
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2698
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2699
    "
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2700
     Display vendorRelease    
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  2701
    "
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2702
! !
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2703
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2704
!DeviceWorkstation methodsFor:'bitmap/window creation'!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2705
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2706
createBitmapFromArray:anArray width:w height:h
2896
cad683a945dc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2892
diff changeset
  2707
    "create a monochrome, depth1 bitmap from a given (byte-)array.
cad683a945dc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2892
diff changeset
  2708
     The rows are aligned to a multiple of 8"
cad683a945dc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2892
diff changeset
  2709
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2710
    ^ self subclassResponsibility
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2711
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2712
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2713
createBitmapFromFile:aString for:aForm
974
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  2714
    ^ nil
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2715
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2716
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2717
createBitmapWidth:w height:h
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2718
    "allocate a bitmap on the Xserver, the contents is undefined
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2719
     (i.e. random). Return a bitmap id or nil"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2720
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2721
    ^ self subclassResponsibility
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2722
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2723
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2724
createPixmapWidth:w height:h depth:d
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2725
    "allocate a pixmap on the Xserver, the contents is undefined
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2726
     (i.e. random). Return a bitmap id or nil"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2727
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2728
    ^ self subclassResponsibility
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2729
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2730
1696
ba6085a629e0 replaced isPopUp flag in #createWindow by a more general #style symbol argument
Claus Gittinger <cg@exept.de>
parents: 1692
diff changeset
  2731
createWindowFor:aView type:typeSymbol origin:org extent:ext minExtent:minE maxExtent:maxE borderWidth:bw subViewOf:sv style:styleSymbol inputOnly:inp label:label cursor:curs icon:icn iconMask:icnM iconView:icnV
ba6085a629e0 replaced isPopUp flag in #createWindow by a more general #style symbol argument
Claus Gittinger <cg@exept.de>
parents: 1692
diff changeset
  2732
    "must be implemented by a concrete class"
ba6085a629e0 replaced isPopUp flag in #createWindow by a more general #style symbol argument
Claus Gittinger <cg@exept.de>
parents: 1692
diff changeset
  2733
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2734
    ^ self subclassResponsibility
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2735
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2736
1961
5e75ffd7a09c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1957
diff changeset
  2737
createWindowFor:aView type:typeSymbol origin:org extent:ext 
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  2738
	minExtent:minE maxExtent:maxE borderWidth:bw subViewOf:sv 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  2739
	style:styleSymbol inputOnly:inp 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  2740
	label:label owner:owner 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  2741
	icon:icn iconMask:icnM iconView:icnV
1961
5e75ffd7a09c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1957
diff changeset
  2742
    "must be implemented by a concrete class"
5e75ffd7a09c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1957
diff changeset
  2743
5e75ffd7a09c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1957
diff changeset
  2744
    ^ self subclassResponsibility
5e75ffd7a09c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1957
diff changeset
  2745
!
5e75ffd7a09c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1957
diff changeset
  2746
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2747
destroyGC:aGCId
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2748
    "destroy a GC"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2749
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2750
    ^ self subclassResponsibility
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2751
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2752
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2753
destroyPixmap:aDrawableId
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2754
    ^ self subclassResponsibility
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2755
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2756
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2757
destroyView:aView withId:aWindowId
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2758
    ^ self subclassResponsibility
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2759
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2760
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2761
gcFor:aDrawableId
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2762
    "create a GC for drawing into aDrawable"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2763
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2764
    ^ self subclassResponsibility
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2765
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2766
1138
4a2b3b407cae need separate createGC method for bitmaps (for WIN)
Claus Gittinger <cg@exept.de>
parents: 1131
diff changeset
  2767
gcForBitmap:aDrawableId
4a2b3b407cae need separate createGC method for bitmaps (for WIN)
Claus Gittinger <cg@exept.de>
parents: 1131
diff changeset
  2768
    "create a GC for drawing into a bitmap drawable"
4a2b3b407cae need separate createGC method for bitmaps (for WIN)
Claus Gittinger <cg@exept.de>
parents: 1131
diff changeset
  2769
4a2b3b407cae need separate createGC method for bitmaps (for WIN)
Claus Gittinger <cg@exept.de>
parents: 1131
diff changeset
  2770
    ^ self subclassResponsibility
4a2b3b407cae need separate createGC method for bitmaps (for WIN)
Claus Gittinger <cg@exept.de>
parents: 1131
diff changeset
  2771
!
4a2b3b407cae need separate createGC method for bitmaps (for WIN)
Claus Gittinger <cg@exept.de>
parents: 1131
diff changeset
  2772
2963
83185d8af958 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2953
diff changeset
  2773
realRootWindowFor:aView
83185d8af958 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2953
diff changeset
  2774
    "the name of this method is historic;
83185d8af958 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2953
diff changeset
  2775
     - it will vanish"
83185d8af958 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2953
diff changeset
  2776
83185d8af958 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2953
diff changeset
  2777
    |id|
83185d8af958 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2953
diff changeset
  2778
83185d8af958 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2953
diff changeset
  2779
    id := self realRootWindowId.
83185d8af958 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2953
diff changeset
  2780
    self addKnownView:aView withId:id.
83185d8af958 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2953
diff changeset
  2781
    ^ id
83185d8af958 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2953
diff changeset
  2782
!
83185d8af958 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2953
diff changeset
  2783
974
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  2784
realRootWindowId
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  2785
    "return the id of the real root window.
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  2786
     This may or may not be the view you see as background, 
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  2787
     since some window managers install a virtual root window on top
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  2788
     of the real one. In this case, this method returns the id of the
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  2789
     covered real-root 
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  2790
     (in contrast, rootWindowId returns the id of the visible one).
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  2791
     With most window systems, the realRoot is the same as the root window.
1074
da107006d4f6 Rename misspelled "interrest" to "interest".
Stefan Vogel <sv@exept.de>
parents: 1059
diff changeset
  2792
     The real root is only seldom of any interest."
974
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  2793
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  2794
    ^ self rootWindowId
1074
da107006d4f6 Rename misspelled "interrest" to "interest".
Stefan Vogel <sv@exept.de>
parents: 1059
diff changeset
  2795
da107006d4f6 Rename misspelled "interrest" to "interest".
Stefan Vogel <sv@exept.de>
parents: 1059
diff changeset
  2796
    "Modified: 14.10.1996 / 22:25:03 / stefan"
974
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  2797
!
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  2798
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2799
rootWindowFor:aView
974
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  2800
    |id|
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  2801
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  2802
    id := self rootWindowId.
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  2803
    self addKnownView:aView withId:id.
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  2804
    ^ id
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  2805
!
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  2806
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  2807
rootWindowId
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  2808
    "return the id of the root window.
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  2809
     This is the window you see as background, 
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  2810
     however, it may or may not be the real physical root window,
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  2811
     since some window managers install a virtual root window on top
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  2812
     of the real one. If this is the case, that views id is returned here."
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  2813
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2814
    ^ self subclassResponsibility
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2815
! !
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2816
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2817
!DeviceWorkstation methodsFor:'color stuff'!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2818
937
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  2819
availableDitherColors
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  2820
    "return the table of preallocated emergency ditherColors
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  2821
     plus possibly available fixColors."
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  2822
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  2823
    |s|
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  2824
1768
d8948d9d18eb preps for fixGrayColors
Claus Gittinger <cg@exept.de>
parents: 1724
diff changeset
  2825
    s := IdentitySet new.
937
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  2826
    fixColors notNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  2827
	s addAll:fixColors.
937
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  2828
    ].
1768
d8948d9d18eb preps for fixGrayColors
Claus Gittinger <cg@exept.de>
parents: 1724
diff changeset
  2829
    fixGrayColors notNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  2830
	s addAll:fixGrayColors.
1768
d8948d9d18eb preps for fixGrayColors
Claus Gittinger <cg@exept.de>
parents: 1724
diff changeset
  2831
    ].
1776
61743e9e819c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1769
diff changeset
  2832
    ditherColors notNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  2833
	s addAll:ditherColors.
1776
61743e9e819c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1769
diff changeset
  2834
    ].
1768
d8948d9d18eb preps for fixGrayColors
Claus Gittinger <cg@exept.de>
parents: 1724
diff changeset
  2835
    ^ s asArray
937
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  2836
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  2837
    "Created: 11.7.1996 / 18:13:30 / cg"
1776
61743e9e819c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1769
diff changeset
  2838
    "Modified: 24.6.1997 / 16:23:50 / cg"
937
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  2839
!
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  2840
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2841
blueComponentOfColor:colorId
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2842
    "get blue component (0..100) of color in map at:index"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2843
3220
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  2844
    ^ (self getRGBFrom:colorId) at:3
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  2845
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2846
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2847
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2848
colorCell
974
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  2849
    "allocate a color - return index or nil, if no color cell
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  2850
     can be allocated (out of colors or trueColor device)"
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  2851
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  2852
    ^ nil
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2853
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2854
934
a00e152f2840 added access to colorMap
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  2855
colorMap
a00e152f2840 added access to colorMap
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  2856
    "return my displays colormap, or nil, if the display is not colorMap based
a00e152f2840 added access to colorMap
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  2857
     (i.e. not PseudoColor)"
a00e152f2840 added access to colorMap
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  2858
a00e152f2840 added access to colorMap
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  2859
    |mapSize "{ Class: SmallInteger }"
a00e152f2840 added access to colorMap
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  2860
     depthUsed mapArray|
a00e152f2840 added access to colorMap
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  2861
a00e152f2840 added access to colorMap
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  2862
    visualType == #DirectColor ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  2863
	'DeviceWorkstation [info]: directColor displays not fully supported.' infoPrintCR.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  2864
	^ nil
934
a00e152f2840 added access to colorMap
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  2865
    ].
a00e152f2840 added access to colorMap
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  2866
        
a00e152f2840 added access to colorMap
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  2867
    (visualType == #StaticGray or:[visualType == #TrueColor]) ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  2868
	"
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  2869
	 those have no colorMap - we're done
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  2870
	"
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  2871
	^ nil
934
a00e152f2840 added access to colorMap
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  2872
    ].
a00e152f2840 added access to colorMap
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  2873
a00e152f2840 added access to colorMap
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  2874
    "
a00e152f2840 added access to colorMap
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  2875
     get some attributes of the display device
a00e152f2840 added access to colorMap
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  2876
    "
a00e152f2840 added access to colorMap
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  2877
    depthUsed := depth.
a00e152f2840 added access to colorMap
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  2878
a00e152f2840 added access to colorMap
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  2879
    "/ kludge for 15bit XFree server
a00e152f2840 added access to colorMap
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  2880
    "/ (but: I have never encountered a PseudoColor display with more
a00e152f2840 added access to colorMap
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  2881
    "/  than 8 bits ...)
a00e152f2840 added access to colorMap
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  2882
a00e152f2840 added access to colorMap
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  2883
    depthUsed == 15 ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  2884
	depthUsed := 16
934
a00e152f2840 added access to colorMap
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  2885
    ].
a00e152f2840 added access to colorMap
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  2886
    depthUsed > 16 ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  2887
	"/ do not allocate zillions of colors ...
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  2888
	self error:'unreasonably large colorMap ...'.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  2889
	^ nil
934
a00e152f2840 added access to colorMap
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  2890
    ].
a00e152f2840 added access to colorMap
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  2891
a00e152f2840 added access to colorMap
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  2892
    mapSize := (1 bitShift:depthUsed).
a00e152f2840 added access to colorMap
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  2893
a00e152f2840 added access to colorMap
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  2894
    "/ get the palette
a00e152f2840 added access to colorMap
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  2895
    mapArray := Array new:mapSize.
a00e152f2840 added access to colorMap
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  2896
    1 to:mapSize do:[:i |
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  2897
	self getRGBFrom:(i-1) into:[:r :g :b |
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  2898
	    mapArray at:i put:(Color red:r green:g blue:b)
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  2899
	]
934
a00e152f2840 added access to colorMap
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  2900
    ].
a00e152f2840 added access to colorMap
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  2901
    ^ mapArray.
a00e152f2840 added access to colorMap
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  2902
a00e152f2840 added access to colorMap
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  2903
    "
a00e152f2840 added access to colorMap
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  2904
     Display colorMap
a00e152f2840 added access to colorMap
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  2905
    "
a00e152f2840 added access to colorMap
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  2906
a00e152f2840 added access to colorMap
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  2907
    "Created: 11.7.1996 / 10:53:38 / cg"
1168
acbd9a29bd6e new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
  2908
    "Modified: 10.1.1997 / 15:40:10 / cg"
934
a00e152f2840 added access to colorMap
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  2909
!
a00e152f2840 added access to colorMap
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  2910
3220
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  2911
colorNamed:aString
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  2912
    "allocate a color with color name - return the color index (i.e. colorID).
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  2913
     Dont use this method, colornames are mostly X specific"
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  2914
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  2915
    ^ self getScaledRGBFromName:aString into:[:r :g :b |
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  2916
	self colorScaledRed:r scaledGreen:g scaledBlue:b
3220
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  2917
      ]
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  2918
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  2919
!
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  2920
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2921
colorRed:redVal green:greenVal blue:blueVal
3220
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  2922
    "allocate a color with rgb values (0..100) - return the color index (i.e. colorID).
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  2923
     This method is obsoleted by #colorScaledRed:scaledGreen:scaledBlue:"
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  2924
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  2925
    |r g b|
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  2926
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  2927
    r := self percentToDeviceColorValue:redVal.
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  2928
    g := self percentToDeviceColorValue:greenVal.
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  2929
    b := self percentToDeviceColorValue:blueVal.
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  2930
    ^ self colorScaledRed:r scaledGreen:g scaledBlue:b
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2931
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2932
2854
50a01bc5e535 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2853
diff changeset
  2933
colorScaledRed:red scaledGreen:green scaledBlue:blue
50a01bc5e535 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2853
diff changeset
  2934
    visualType == #TrueColor ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  2935
	^ (((red bitShift:-8) bitShift:redShift)
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  2936
	  bitOr:((green bitShift:-8) bitShift:greenShift))
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  2937
	  bitOr:((blue bitShift:-8) bitShift:blueShift)
2854
50a01bc5e535 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2853
diff changeset
  2938
    ].
50a01bc5e535 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2853
diff changeset
  2939
    self subclassResponsibility
50a01bc5e535 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2853
diff changeset
  2940
!
50a01bc5e535 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2853
diff changeset
  2941
3220
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  2942
deviceColorValueToPercent:deviceColorValue
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  2943
    ^ self subclassResponsibility
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  2944
!
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  2945
937
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  2946
ditherColors
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  2947
    "return the table of preallocated emergency ditherColors"
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  2948
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  2949
    ^ ditherColors
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  2950
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  2951
    "Modified: 11.7.1996 / 18:13:37 / cg"
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  2952
!
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  2953
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  2954
fixColors
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  2955
    "return the table of preallocated fix colors (a colorCube),
1768
d8948d9d18eb preps for fixGrayColors
Claus Gittinger <cg@exept.de>
parents: 1724
diff changeset
  2956
     or nil if no fix colors were preallocated."
937
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  2957
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  2958
    ^ fixColors
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  2959
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  2960
    "Created: 11.7.1996 / 17:49:24 / cg"
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  2961
!
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  2962
1768
d8948d9d18eb preps for fixGrayColors
Claus Gittinger <cg@exept.de>
parents: 1724
diff changeset
  2963
fixGrayColors
d8948d9d18eb preps for fixGrayColors
Claus Gittinger <cg@exept.de>
parents: 1724
diff changeset
  2964
    "return the table of preallocated fix grayScale colors,
d8948d9d18eb preps for fixGrayColors
Claus Gittinger <cg@exept.de>
parents: 1724
diff changeset
  2965
     or nil if no fix gray colors were preallocated."
d8948d9d18eb preps for fixGrayColors
Claus Gittinger <cg@exept.de>
parents: 1724
diff changeset
  2966
d8948d9d18eb preps for fixGrayColors
Claus Gittinger <cg@exept.de>
parents: 1724
diff changeset
  2967
    ^ fixGrayColors
d8948d9d18eb preps for fixGrayColors
Claus Gittinger <cg@exept.de>
parents: 1724
diff changeset
  2968
d8948d9d18eb preps for fixGrayColors
Claus Gittinger <cg@exept.de>
parents: 1724
diff changeset
  2969
    "Created: 11.7.1996 / 17:49:24 / cg"
d8948d9d18eb preps for fixGrayColors
Claus Gittinger <cg@exept.de>
parents: 1724
diff changeset
  2970
!
d8948d9d18eb preps for fixGrayColors
Claus Gittinger <cg@exept.de>
parents: 1724
diff changeset
  2971
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2972
freeColor:colorIndex
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2973
    "free a color on the display, when its no longer needed"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2974
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2975
    ^ self subclassResponsibility
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2976
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2977
3220
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  2978
getRGBFrom:index
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  2979
    "get rgb components (0..100) of color in map at:index,
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  2980
     and evaluate the 3-arg block, aBlock with them"
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  2981
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  2982
    |triple|
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  2983
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  2984
    triple := self getScaledRGBFrom:index.
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  2985
    triple notNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  2986
	^ triple collect:[:val | self deviceColorValueToPercent:val]
3220
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  2987
    ].
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  2988
    ^ nil
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  2989
!
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  2990
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2991
getRGBFrom:index into:aBlock
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2992
    "get rgb components (0..100) of color in map at:index,
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2993
     and evaluate the 3-arg block, aBlock with them"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  2994
3220
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  2995
    |triple|
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  2996
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  2997
    triple := self getRGBFrom:index.
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  2998
    triple notNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  2999
	^ aBlock valueWithArguments:triple.
3220
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3000
    ].
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3001
    ^ nil
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3002
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3003
!
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3004
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3005
getRGBFromName:colorName
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3006
    "get rgb components (0..100) of color named colorName,
3220
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3007
     and return a 3-element array, containing them.
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3008
     The method here only handles some often used colors;
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3009
     getRGBFromName should not be used, since colorNames other
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3010
     than those below are X specific."
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3011
1674
787399517305 handle hex-r/g/b color names
Claus Gittinger <cg@exept.de>
parents: 1623
diff changeset
  3012
    |idx names triple r g b|
787399517305 handle hex-r/g/b color names
Claus Gittinger <cg@exept.de>
parents: 1623
diff changeset
  3013
787399517305 handle hex-r/g/b color names
Claus Gittinger <cg@exept.de>
parents: 1623
diff changeset
  3014
    (colorName startsWith:$#) ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3015
	"/ color in r/g/b hex notation
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3016
	r := Integer readFrom:(colorName copyFrom:2 to:3) radix:16.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3017
	g := Integer readFrom:(colorName copyFrom:4 to:5) radix:16.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3018
	b := Integer readFrom:(colorName copyFrom:6 to:7) radix:16.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3019
	r := (r * 100 / 255).
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3020
	g := (g * 100 / 255).
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3021
	b := (b * 100 / 255).
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3022
	^ Array with:r with:g with:b
1674
787399517305 handle hex-r/g/b color names
Claus Gittinger <cg@exept.de>
parents: 1623
diff changeset
  3023
    ].
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3024
1059
c040194dcab8 added internet explorers color-names
Claus Gittinger <cg@exept.de>
parents: 1045
diff changeset
  3025
    names := #(
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3026
		'red' 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3027
		'green' 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3028
		'blue' 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3029
		'yellow' 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3030
		'magenta' 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3031
		'cyan' 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3032
		'white' 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3033
		'black'
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3034
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3035
		'olive'
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3036
		'teal'
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3037
		'silver'
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3038
		'lime'
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3039
		'fuchsia'
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3040
		'aqua'
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3041
	      ).
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3042
    idx := names indexOf:colorName.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3043
    idx == 0 ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3044
	idx := names indexOf:colorName asLowercase.
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3045
    ].
3220
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3046
    idx ~~ 0 ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3047
	triple := #(
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3048
			(100   0   0)  "red"
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3049
			(  0 100   0)  "green"
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3050
			(  0   0 100)  "blue"
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3051
			(100 100   0)  "yellow"
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3052
			(100   0 100)  "magenta"
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3053
			(  0 100 100)  "cyan"
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3054
			(100 100 100)  "white"
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3055
			(  0   0   0)  "black"
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3056
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3057
			( 50  50   0)  "olive"
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3058
			(  0  50  50)  "teal"
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3059
			( 40  40  40)  "silver"
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3060
			( 20 100   0)  "lime"
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3061
			( 60   3 100)  "fuchsia"
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3062
			( 10 100 100)  "aqua"
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3063
		   ) at:idx.
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3064
                        
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3065
	^ triple
3220
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3066
    ].
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3067
    ^ nil
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3068
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3069
!
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3070
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3071
getRGBFromName:colorName into:aBlock
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3072
    "get rgb components (0..100) of color named colorName,
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3073
     and evaluate the 3-arg block, aBlock with them"
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3074
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3075
    |triple|
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3076
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3077
    triple := self getScaledRGBFromName:colorName.
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3078
    triple notNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3079
	^ aBlock value:(self deviceColorValueToPercent:(triple at:1))
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3080
		 value:(self deviceColorValueToPercent:(triple at:2))
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3081
		 value:(self deviceColorValueToPercent:(triple at:3))
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3082
    ].
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3083
    ^ nil
1059
c040194dcab8 added internet explorers color-names
Claus Gittinger <cg@exept.de>
parents: 1045
diff changeset
  3084
3220
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3085
    "
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3086
     Display getRGBFromName:'red' into:[:r :g :b | r printCR. g printCR. b printCR.]
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3087
    "
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3088
!
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3089
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3090
getScaledRGBFrom:index
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3091
    "get rgb components (0..devicesMaxColorVal) of color in map at:index,
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3092
     and return a 3-element array containing them"
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3093
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3094
    ^ self subclassResponsibility
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3095
!
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3096
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3097
getScaledRGBFrom:index into:aBlock
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3098
    "get rgb components (0..devicesMaxColorVal) of color in map at:index,
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3099
     and evaluate the 3-arg block, aBlock with them"
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3100
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3101
    |triple|
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3102
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3103
    triple := self getScaledRGBFrom:index.
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3104
    triple notNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3105
	^ aBlock valueWithArguments:triple.
3220
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3106
    ].
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3107
    ^ nil
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3108
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3109
!
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3110
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3111
getScaledRGBFromName:colorName
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3112
    "get rgb components (0..devicesMaxColorVal) of color named colorName,
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3113
     and return a 3-element array containing them"
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3114
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3115
    |triple|
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3116
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3117
    triple := self getRGBFromName:colorName.
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3118
    triple notNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3119
	^ triple collect:[:val | self percentToDeviceColorValue:val].
3220
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3120
    ].
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3121
    ^ nil.
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3122
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3123
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3124
996
ee97acd919e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 991
diff changeset
  3125
getScaledRGBFromName:colorName into:aBlock
3220
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3126
    "get rgb components (0..devicesMaxColorVal) of color named colorName,
996
ee97acd919e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 991
diff changeset
  3127
     and evaluate the 3-arg block, aBlock with them"
ee97acd919e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 991
diff changeset
  3128
3220
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3129
    |triple|
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3130
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3131
    triple := self getScaledRGBFromName:colorName.
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3132
    triple notNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3133
	^ aBlock valueWithArguments:triple.
3220
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3134
    ].
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3135
    ^ nil
996
ee97acd919e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 991
diff changeset
  3136
!
ee97acd919e2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 991
diff changeset
  3137
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3138
greenComponentOfColor:colorId
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3139
    "get green component (0..100) of color in map at:index"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3140
3220
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3141
    ^ (self getRGBFrom:colorId) at:2
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3142
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3143
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3144
listOfAvailableColors
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3145
    "return a list of all available colornames;
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3146
     This method should not be used, since colornames are
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3147
     very X specific. However, the names defined here are pretty common"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3148
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3149
    ^ #('red' 'green' 'blue' 'yellow' 'magenta' 'cyan' 'white' 'black')
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3150
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3151
937
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  3152
numFixGreen
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  3153
    "return the number of green shades in the
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  3154
     preallocated fix color cube (or 0 if there is none)"
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  3155
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  3156
    ^ numFixGreen
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  3157
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  3158
    "Created: 11.7.1996 / 17:50:12 / cg"
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  3159
!
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  3160
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  3161
numFixRed
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  3162
    "return the number of red shades in the
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  3163
     preallocated fix color cube (or 0 if there is none)"
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  3164
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  3165
    ^ numFixRed
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  3166
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  3167
    "Created: 11.7.1996 / 17:50:20 / cg"
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  3168
!
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  3169
974
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  3170
percentToDeviceColorValue:percent
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  3171
    ^ self subclassResponsibility
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  3172
!
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  3173
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3174
redComponentOfColor:colorId
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3175
    "get red component (0..100) of color in map at:index"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3176
3220
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3177
    ^ (self getRGBFrom:colorId) at:1
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3178
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3179
    "
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3180
     Display redComponentOfColor:1
e3e2f81a99df reorganized color protocl
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
  3181
    "
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3182
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3183
937
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  3184
releaseFixColors
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  3185
    "release the fix colorMap"
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  3186
1769
dd270a1ee0c0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1768
diff changeset
  3187
    fixColors := nil.
937
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  3188
    numFixRed := numFixGreen := numFixBlue := 0.
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  3189
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  3190
    "
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  3191
     Display releaseFixColors
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  3192
    "
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  3193
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  3194
    "Created: 11.7.1996 / 18:00:42 / cg"
1769
dd270a1ee0c0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1768
diff changeset
  3195
    "Modified: 23.6.1997 / 15:32:04 / cg"
dd270a1ee0c0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1768
diff changeset
  3196
!
dd270a1ee0c0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1768
diff changeset
  3197
dd270a1ee0c0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1768
diff changeset
  3198
releaseFixGrayColors
dd270a1ee0c0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1768
diff changeset
  3199
    "release the fix colorMap"
dd270a1ee0c0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1768
diff changeset
  3200
dd270a1ee0c0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1768
diff changeset
  3201
    fixGrayColors := nil.
dd270a1ee0c0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1768
diff changeset
  3202
dd270a1ee0c0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1768
diff changeset
  3203
    "
dd270a1ee0c0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1768
diff changeset
  3204
     Display releaseFixGrayColors
dd270a1ee0c0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1768
diff changeset
  3205
    "
dd270a1ee0c0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1768
diff changeset
  3206
dd270a1ee0c0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1768
diff changeset
  3207
    "Created: 23.6.1997 / 15:32:00 / cg"
937
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  3208
!
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  3209
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3210
setColor:index red:redVal green:greenVal blue:blueVal
974
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  3211
    "change color in map at:index to rgb (0..100).
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  3212
     This is a no-op on TrueColor systems."
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  3213
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  3214
    ^ self
937
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  3215
!
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  3216
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  3217
setDitherColors:colors
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  3218
    "set the table of preallocated emergency dither fix colors
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  3219
     These preallocated colors 
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  3220
     (white, black, red, green, blue and a few grayScales) prevent
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  3221
     running out of colors later, when images have to be dithered or
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  3222
     pen colors must be approximated.
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  3223
     ((Although, with such a small number of colors, the result will
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  3224
       definitely look poor))"
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  3225
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  3226
    ditherColors := colors.
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  3227
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  3228
    "Created: 11.7.1996 / 18:11:45 / cg"
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  3229
!
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  3230
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  3231
setFixColors:colors numRed:nR numGreen:nG numBlue:nB
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  3232
    "set the table of preallocated fix colors (a colorCube),
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  3233
     and the number of r/g/b entries in each dimension."
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  3234
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  3235
    fixColors := colors.
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  3236
    numFixRed := nR.
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  3237
    numFixGreen := nG.
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  3238
    numFixBlue := nB.
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  3239
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  3240
    "Created: 11.7.1996 / 17:56:18 / cg"
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  3241
    "Modified: 11.7.1996 / 17:57:10 / cg"
1768
d8948d9d18eb preps for fixGrayColors
Claus Gittinger <cg@exept.de>
parents: 1724
diff changeset
  3242
!
d8948d9d18eb preps for fixGrayColors
Claus Gittinger <cg@exept.de>
parents: 1724
diff changeset
  3243
d8948d9d18eb preps for fixGrayColors
Claus Gittinger <cg@exept.de>
parents: 1724
diff changeset
  3244
setFixGrayColors:colors
d8948d9d18eb preps for fixGrayColors
Claus Gittinger <cg@exept.de>
parents: 1724
diff changeset
  3245
    "set the table of preallocated fix gray colors"
d8948d9d18eb preps for fixGrayColors
Claus Gittinger <cg@exept.de>
parents: 1724
diff changeset
  3246
d8948d9d18eb preps for fixGrayColors
Claus Gittinger <cg@exept.de>
parents: 1724
diff changeset
  3247
    fixGrayColors := colors.
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3248
! !
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3249
3028
3a4b559f2c96 blocked deepCopy
Claus Gittinger <cg@exept.de>
parents: 3014
diff changeset
  3250
!DeviceWorkstation methodsFor:'copying'!
3a4b559f2c96 blocked deepCopy
Claus Gittinger <cg@exept.de>
parents: 3014
diff changeset
  3251
3a4b559f2c96 blocked deepCopy
Claus Gittinger <cg@exept.de>
parents: 3014
diff changeset
  3252
deepCopyUsing:aDictionary
3a4b559f2c96 blocked deepCopy
Claus Gittinger <cg@exept.de>
parents: 3014
diff changeset
  3253
    ^ nil
3a4b559f2c96 blocked deepCopy
Claus Gittinger <cg@exept.de>
parents: 3014
diff changeset
  3254
! !
3a4b559f2c96 blocked deepCopy
Claus Gittinger <cg@exept.de>
parents: 3014
diff changeset
  3255
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3256
!DeviceWorkstation methodsFor:'cursor stuff'!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3257
1562
9a061e6942b9 allow device to specify its builtIn cursors
Claus Gittinger <cg@exept.de>
parents: 1547
diff changeset
  3258
builtInCursorShapes
9a061e6942b9 allow device to specify its builtIn cursors
Claus Gittinger <cg@exept.de>
parents: 1547
diff changeset
  3259
    "return a collection of standard cursor names.
9a061e6942b9 allow device to specify its builtIn cursors
Claus Gittinger <cg@exept.de>
parents: 1547
diff changeset
  3260
     Hre none is assumed - so all cursors are created as user cursors
9a061e6942b9 allow device to specify its builtIn cursors
Claus Gittinger <cg@exept.de>
parents: 1547
diff changeset
  3261
     (see Cursor>>initializeNewCursors)"
9a061e6942b9 allow device to specify its builtIn cursors
Claus Gittinger <cg@exept.de>
parents: 1547
diff changeset
  3262
9a061e6942b9 allow device to specify its builtIn cursors
Claus Gittinger <cg@exept.de>
parents: 1547
diff changeset
  3263
    "/ if you add something here, also add to #shapeNumberFromCursor ...
9a061e6942b9 allow device to specify its builtIn cursors
Claus Gittinger <cg@exept.de>
parents: 1547
diff changeset
  3264
9a061e6942b9 allow device to specify its builtIn cursors
Claus Gittinger <cg@exept.de>
parents: 1547
diff changeset
  3265
    ^ #()
9a061e6942b9 allow device to specify its builtIn cursors
Claus Gittinger <cg@exept.de>
parents: 1547
diff changeset
  3266
9a061e6942b9 allow device to specify its builtIn cursors
Claus Gittinger <cg@exept.de>
parents: 1547
diff changeset
  3267
    "Created: 8.4.1997 / 10:32:31 / cg"
9a061e6942b9 allow device to specify its builtIn cursors
Claus Gittinger <cg@exept.de>
parents: 1547
diff changeset
  3268
!
9a061e6942b9 allow device to specify its builtIn cursors
Claus Gittinger <cg@exept.de>
parents: 1547
diff changeset
  3269
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3270
colorCursor:aCursorId foreground:fgColor background:bgColor
974
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  3271
    "change a cursors colors. 
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  3272
     Ignored on systems which do not support colored cursors."
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  3273
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  3274
    ^ self
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3275
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3276
2875
c861e7a3272d comment
Claus Gittinger <cg@exept.de>
parents: 2874
diff changeset
  3277
createCursorShape:aShapeSymbol
c861e7a3272d comment
Claus Gittinger <cg@exept.de>
parents: 2874
diff changeset
  3278
    "create a cursor given a shape-symbol; return a cursorID or nil.
c861e7a3272d comment
Claus Gittinger <cg@exept.de>
parents: 2874
diff changeset
  3279
     This only works for a few standard cursors, and returns nil
c861e7a3272d comment
Claus Gittinger <cg@exept.de>
parents: 2874
diff changeset
  3280
     if no such cursor exists.
974
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  3281
     Always care for a fallBack, in case of a nil return."
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  3282
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  3283
    ^  nil
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  3284
!
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  3285
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  3286
createCursorSourceForm:sourceForm maskForm:maskForm hotX:hx hotY:hy width:w height:h
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  3287
    "create a cursor given 2 bitmaps (source, mask) and a hotspot.
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  3288
     Returns nil, if no cursor can be created (for any reason)"
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  3289
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3290
    ^ self subclassResponsibility
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3291
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3292
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3293
destroyCursor:aCursorId
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3294
    "free a cursor"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3295
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3296
    ^ self subclassResponsibility
974
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  3297
!
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  3298
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  3299
needDeviceFormsForCursor
2843
e13e0c53924a keep registry of cursors here - no longer use a Cursor Lobby
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  3300
    "return true, if this device requires device-forms as opposed
e13e0c53924a keep registry of cursors here - no longer use a Cursor Lobby
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  3301
     to a simple bitmap-byteArray for creation.
e13e0c53924a keep registry of cursors here - no longer use a Cursor Lobby
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  3302
     Redefined in X- and Win- Workstation classes."
e13e0c53924a keep registry of cursors here - no longer use a Cursor Lobby
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  3303
974
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  3304
    ^ self subclassResponsibility
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  3305
!
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  3306
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  3307
shapeNumberFromSymbol:shape
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  3308
    "given a shape-symbol, return the corresponding cursor-number,
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  3309
     or nil if no such standard cursor exists."
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  3310
12797746a1f7 WIN32 changes
Claus Gittinger <cg@exept.de>
parents: 958
diff changeset
  3311
    ^ nil
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3312
! !
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3313
1542
49a181a61e4f dummy drop
Claus Gittinger <cg@exept.de>
parents: 1532
diff changeset
  3314
!DeviceWorkstation methodsFor:'drag & drop'!
49a181a61e4f dummy drop
Claus Gittinger <cg@exept.de>
parents: 1532
diff changeset
  3315
1582
ec428aba3f9c drop argument is always a collection
Claus Gittinger <cg@exept.de>
parents: 1580
diff changeset
  3316
drop:aCollectionOfDropObjects inWindowID:destinationId position:destinationPoint rootPosition:rootPoint
1542
49a181a61e4f dummy drop
Claus Gittinger <cg@exept.de>
parents: 1532
diff changeset
  3317
    "device specific drop here"
49a181a61e4f dummy drop
Claus Gittinger <cg@exept.de>
parents: 1532
diff changeset
  3318
49a181a61e4f dummy drop
Claus Gittinger <cg@exept.de>
parents: 1532
diff changeset
  3319
    "/ self subclassResponsibility
49a181a61e4f dummy drop
Claus Gittinger <cg@exept.de>
parents: 1532
diff changeset
  3320
49a181a61e4f dummy drop
Claus Gittinger <cg@exept.de>
parents: 1532
diff changeset
  3321
    "Created: 4.4.1997 / 18:33:44 / cg"
1582
ec428aba3f9c drop argument is always a collection
Claus Gittinger <cg@exept.de>
parents: 1580
diff changeset
  3322
    "Modified: 11.4.1997 / 12:43:23 / cg"
1542
49a181a61e4f dummy drop
Claus Gittinger <cg@exept.de>
parents: 1532
diff changeset
  3323
! !
49a181a61e4f dummy drop
Claus Gittinger <cg@exept.de>
parents: 1532
diff changeset
  3324
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3325
!DeviceWorkstation methodsFor:'drawing'!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3326
1030
ca9d23090688 pass srcGCId to bit-blitters (req'd on WINDOWS)
Claus Gittinger <cg@exept.de>
parents: 1024
diff changeset
  3327
copyFromId:sourceId x:srcX y:srcY gc:srcGCId to:destId x:dstX y:dstY gc:dstGCId width:w height:h
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3328
    "do a bit-blt"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3329
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3330
    ^ self subclassResponsibility
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3331
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3332
1247
c04af1fc542c added fallbacks for copy*FromPixmapId:*
Claus Gittinger <cg@exept.de>
parents: 1231
diff changeset
  3333
copyFromPixmapId:sourceId x:srcX y:srcY gc:srcGCId to:destId x:dstX y:dstY gc:dstGCId width:w height:h
c04af1fc542c added fallbacks for copy*FromPixmapId:*
Claus Gittinger <cg@exept.de>
parents: 1231
diff changeset
  3334
    "do a bit-blt from a pix- or bitmap.
c04af1fc542c added fallbacks for copy*FromPixmapId:*
Claus Gittinger <cg@exept.de>
parents: 1231
diff changeset
  3335
     Here, fall back into copyFromId:, which should also work.
c04af1fc542c added fallbacks for copy*FromPixmapId:*
Claus Gittinger <cg@exept.de>
parents: 1231
diff changeset
  3336
     Subclasses may redefine this for more performance or if required"
c04af1fc542c added fallbacks for copy*FromPixmapId:*
Claus Gittinger <cg@exept.de>
parents: 1231
diff changeset
  3337
c04af1fc542c added fallbacks for copy*FromPixmapId:*
Claus Gittinger <cg@exept.de>
parents: 1231
diff changeset
  3338
    ^ self copyFromId:sourceId x:srcX y:srcY gc:srcGCId to:destId x:dstX y:dstY gc:dstGCId width:w height:h
c04af1fc542c added fallbacks for copy*FromPixmapId:*
Claus Gittinger <cg@exept.de>
parents: 1231
diff changeset
  3339
!
c04af1fc542c added fallbacks for copy*FromPixmapId:*
Claus Gittinger <cg@exept.de>
parents: 1231
diff changeset
  3340
1030
ca9d23090688 pass srcGCId to bit-blitters (req'd on WINDOWS)
Claus Gittinger <cg@exept.de>
parents: 1024
diff changeset
  3341
copyPlaneFromId:sourceId x:srcX y:srcY gc:srcGCId to:destId x:dstX y:dstY gc:dstGCId width:w height:h
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3342
    "do a bit-blt, using the low-bit plane of the source only"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3343
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3344
    ^ self subclassResponsibility
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3345
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3346
1247
c04af1fc542c added fallbacks for copy*FromPixmapId:*
Claus Gittinger <cg@exept.de>
parents: 1231
diff changeset
  3347
copyPlaneFromPixmapId:sourceId x:srcX y:srcY gc:srcGCId to:destId x:dstX y:dstY gc:dstGCId width:w height:h
c04af1fc542c added fallbacks for copy*FromPixmapId:*
Claus Gittinger <cg@exept.de>
parents: 1231
diff changeset
  3348
    "do a bit-blt from a pix- or bitmap, using the low-bit plane of the source only.
c04af1fc542c added fallbacks for copy*FromPixmapId:*
Claus Gittinger <cg@exept.de>
parents: 1231
diff changeset
  3349
     Here, fall back into copyPlaneFromId:, which should also work.
c04af1fc542c added fallbacks for copy*FromPixmapId:*
Claus Gittinger <cg@exept.de>
parents: 1231
diff changeset
  3350
     Subclasses may redefine this for more performance or if required"
c04af1fc542c added fallbacks for copy*FromPixmapId:*
Claus Gittinger <cg@exept.de>
parents: 1231
diff changeset
  3351
c04af1fc542c added fallbacks for copy*FromPixmapId:*
Claus Gittinger <cg@exept.de>
parents: 1231
diff changeset
  3352
    ^ self copyPlaneFromId:sourceId x:srcX y:srcY gc:srcGCId to:destId x:dstX y:dstY gc:dstGCId width:w height:h
c04af1fc542c added fallbacks for copy*FromPixmapId:*
Claus Gittinger <cg@exept.de>
parents: 1231
diff changeset
  3353
!
c04af1fc542c added fallbacks for copy*FromPixmapId:*
Claus Gittinger <cg@exept.de>
parents: 1231
diff changeset
  3354
653
0ad3de022f8b fill/drawArc..w:h:.. renamed to ...width:height:...
Claus Gittinger <cg@exept.de>
parents: 631
diff changeset
  3355
displayArcX:x y:y width:width height:height from:startAngle angle:angle
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3356
	     in:aDrawableId with:aGCId
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3357
    "draw an arc"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3358
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3359
    ^ self subclassResponsibility
653
0ad3de022f8b fill/drawArc..w:h:.. renamed to ...width:height:...
Claus Gittinger <cg@exept.de>
parents: 631
diff changeset
  3360
0ad3de022f8b fill/drawArc..w:h:.. renamed to ...width:height:...
Claus Gittinger <cg@exept.de>
parents: 631
diff changeset
  3361
    "Created: 8.5.1996 / 08:44:43 / cg"
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3362
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3363
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3364
displayLineFromX:x0 y:y0 toX:x1 y:y1 in:aDrawableId with:aGCId
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3365
    "draw a line"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3366
1014
6be12d5937f5 removed obsolete font access methods
Claus Gittinger <cg@exept.de>
parents: 1011
diff changeset
  3367
    "
6be12d5937f5 removed obsolete font access methods
Claus Gittinger <cg@exept.de>
parents: 1011
diff changeset
  3368
     could add a bresenham line drawer here ...
6be12d5937f5 removed obsolete font access methods
Claus Gittinger <cg@exept.de>
parents: 1011
diff changeset
  3369
    "
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3370
    ^ self subclassResponsibility
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3371
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3372
2909
c8edb71fb275 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2906
diff changeset
  3373
displayLinesFromX:xStart step:xStep yValues:ydata scaleY:yScale transY:yTrans in:drawableId with:gcId
c8edb71fb275 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2906
diff changeset
  3374
    "draw a polygon starting at x; the y values derives from the collection yValues.
c8edb71fb275 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2906
diff changeset
  3375
     The associated x is a multiple of step. Each y value will be scaled and translated.
c8edb71fb275 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2906
diff changeset
  3376
     The implementation here is a fallback, using the line-draw primitive;
c8edb71fb275 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2906
diff changeset
  3377
     devices which support fast drawing of a polygon may redefine this for more performance."
c8edb71fb275 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2906
diff changeset
  3378
c8edb71fb275 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2906
diff changeset
  3379
    |x xLast yLast|
c8edb71fb275 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2906
diff changeset
  3380
c8edb71fb275 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2906
diff changeset
  3381
    ydata size == 0 ifTrue:[^ self].
c8edb71fb275 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2906
diff changeset
  3382
c8edb71fb275 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2906
diff changeset
  3383
    xLast := xStart.
c8edb71fb275 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2906
diff changeset
  3384
    yLast := (ydata at:1) * yScale + yTrans.
c8edb71fb275 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2906
diff changeset
  3385
    ydata from:2 do:[:y | |yT|
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3386
	x := xLast + xStep.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3387
	yT := y * yScale + yTrans.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3388
	self displayLineFromX:xLast rounded y:yLast rounded toX:x rounded y:yT rounded in:drawableId with:gcId.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3389
	xLast := x.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3390
	yLast := y.
2909
c8edb71fb275 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2906
diff changeset
  3391
    ]
c8edb71fb275 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2906
diff changeset
  3392
!
c8edb71fb275 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2906
diff changeset
  3393
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3394
displayOpaqueString:aString from:index1 to:index2 x:x y:y in:aDrawableId with:aGCId
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3395
    "draw a sub-string - draw foreground on background.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3396
     If the coordinates are not integers, retry with rounded." 
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3397
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3398
    self displayString:aString 
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3399
	 from:index1
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3400
	 to:index2
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3401
	 x:x 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3402
	 y:y 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3403
	 in:aDrawableId 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3404
	 with:aGCId 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3405
	 opaque:true
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3406
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3407
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3408
displayOpaqueString:aString x:x y:y in:aDrawableId with:aGCId
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3409
    "draw a string - draw foreground on background.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3410
     If the coordinates are not integers, retry with rounded." 
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3411
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3412
    self displayString:aString 
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3413
	 x:x 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3414
	 y:y 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3415
	 in:aDrawableId 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3416
	 with:aGCId 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3417
	 opaque:true
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3418
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3419
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3420
displayPointX:x y:y in:aDrawableId with:aGCId
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3421
    "draw a point"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3422
2622
c1f2727a424b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2621
diff changeset
  3423
    "/ could use
c1f2727a424b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2621
diff changeset
  3424
    "/ self displayLineFromX:x y:y toX:x y:y in:aDrawableId with:aGCId.
c1f2727a424b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2621
diff changeset
  3425
    "/ but then, we had to care for lineWidth & style ...
c1f2727a424b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2621
diff changeset
  3426
c1f2727a424b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2621
diff changeset
  3427
    ^ self subclassResponsibility
c1f2727a424b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2621
diff changeset
  3428
c1f2727a424b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2621
diff changeset
  3429
    "Modified: / 3.5.1999 / 14:26:32 / cg"
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3430
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3431
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3432
displayPolygon:aPolygon in:aDrawableId with:aGCId
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3433
    "draw a polygon"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3434
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3435
    "
1014
6be12d5937f5 removed obsolete font access methods
Claus Gittinger <cg@exept.de>
parents: 1011
diff changeset
  3436
     could draw the lines here
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3437
     but then, we have to reimplement all line and join styles here
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3438
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3439
    ^ self subclassResponsibility
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3440
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3441
2442
f24d2c50d551 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2435
diff changeset
  3442
displayPolylines:arrayOfPoints in:aDrawableId with:aGCId
f24d2c50d551 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2435
diff changeset
  3443
    "draw a bunch of lines"
f24d2c50d551 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2435
diff changeset
  3444
2523
4c197af8cc50 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2520
diff changeset
  3445
    |startPoint p|
2442
f24d2c50d551 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2435
diff changeset
  3446
f24d2c50d551 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2435
diff changeset
  3447
    1 to:arrayOfPoints size by:2 do:[:idx |
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3448
	p := arrayOfPoints at:idx.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3449
	idx odd ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3450
	    startPoint := p
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3451
	] ifFalse:[  
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3452
	    self 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3453
		displayLineFromX:startPoint x
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3454
		y:startPoint y
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3455
		toX:p x
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3456
		y:p y
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3457
		in:aDrawableId
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3458
		with:aGCId
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3459
	]
2442
f24d2c50d551 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2435
diff changeset
  3460
    ]
f24d2c50d551 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2435
diff changeset
  3461
!
f24d2c50d551 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2435
diff changeset
  3462
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3463
displayRectangleX:x y:y width:width height:height in:aDrawableId with:aGCId
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3464
    "draw a rectangle"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3465
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3466
    "
1014
6be12d5937f5 removed obsolete font access methods
Claus Gittinger <cg@exept.de>
parents: 1011
diff changeset
  3467
     could draw four lines here
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3468
     but then, we have to reimplement all line and join styles here
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3469
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3470
    ^ self subclassResponsibility
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3471
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3472
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3473
displayString:aString from:index1 to:index2 x:x y:y in:aDrawableId with:aGCId
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3474
    "draw a sub-string - draw foreground only.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3475
     If the coordinates are not integers, retry with rounded." 
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3476
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3477
    self 
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3478
	displayString:aString 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3479
	from:index1
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3480
	to:index2
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3481
	x:x 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3482
	y:y 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3483
	in:aDrawableId 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3484
	with:aGCId 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3485
	opaque:false
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3486
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3487
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3488
displayString:aString from:i1 to:i2 x:x y:y in:aDrawableId with:aGCId opaque:opaque
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3489
    "draw part of a string"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3490
1014
6be12d5937f5 removed obsolete font access methods
Claus Gittinger <cg@exept.de>
parents: 1011
diff changeset
  3491
    ^ self subclassResponsibility
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3492
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3493
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3494
displayString:aString x:x y:y in:aDrawableId with:aGCId
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3495
    "draw a string - draw foreground only.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3496
     If the coordinates are not integers, retry with rounded." 
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3497
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3498
    self 
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3499
	displayString:aString 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3500
	x:x 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3501
	y:y 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3502
	in:aDrawableId 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3503
	with:aGCId 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3504
	opaque:false
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3505
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3506
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3507
displayString:aString x:x y:y in:aDrawableId with:aGCId opaque:opaque
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3508
    "draw a string"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3509
1014
6be12d5937f5 removed obsolete font access methods
Claus Gittinger <cg@exept.de>
parents: 1011
diff changeset
  3510
    self displayString:aString
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3511
		  from:1
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3512
		    to:aString size
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3513
		     x:x 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3514
		     y:y 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3515
		     in:aDrawableId 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3516
		     with:aGCId
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3517
		     opaque:opaque
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3518
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3519
2002
8b5016b133b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1992
diff changeset
  3520
drawBits:imageBits bitsPerPixel:bitsPerPixel depth:imageDepth padding:pad
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3521
			  width:imageWidth height:imageHeight 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3522
			      x:srcx y:srcy
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3523
			   into:aDrawableId 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3524
			      x:dstx y:dsty 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3525
			  width:w height:h 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3526
			   with:aGCId
2002
8b5016b133b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1992
diff changeset
  3527
    "draw a bitimage which has depth id, width iw and height ih into
8b5016b133b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1992
diff changeset
  3528
     the drawable. draw a region of w/h pixels from srcx/srcy to dstx/dsty.
8b5016b133b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1992
diff changeset
  3529
     It has to be checked elsewhere, that server can do it with the given
8b5016b133b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1992
diff changeset
  3530
     depth; also it is assumed, that the colormap is setup correctly.
8b5016b133b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1992
diff changeset
  3531
     The actual bits per pixel may be different from the depth (for example,
8b5016b133b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1992
diff changeset
  3532
     on a depth-15 device, 16 bits/pixel may be used; also, many depth-24
8b5016b133b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1992
diff changeset
  3533
     systems actually use 32 bits/pixel)"
8b5016b133b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1992
diff changeset
  3534
8b5016b133b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1992
diff changeset
  3535
    ^ self subclassResponsibility
8b5016b133b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1992
diff changeset
  3536
!
8b5016b133b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1992
diff changeset
  3537
1602
9612b91c7416 comments;
Claus Gittinger <cg@exept.de>
parents: 1600
diff changeset
  3538
drawBits:imageBits bitsPerPixel:bitsPerPixel depth:imageDepth 
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3539
			  width:imageWidth height:imageHeight 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3540
			      x:srcx y:srcy
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3541
			   into:aDrawableId 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3542
			      x:dstx y:dsty 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3543
			  width:w height:h 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3544
			   with:aGCId
1602
9612b91c7416 comments;
Claus Gittinger <cg@exept.de>
parents: 1600
diff changeset
  3545
9612b91c7416 comments;
Claus Gittinger <cg@exept.de>
parents: 1600
diff changeset
  3546
    "draw a bitimage which has depth id, width iw and height ih into
9612b91c7416 comments;
Claus Gittinger <cg@exept.de>
parents: 1600
diff changeset
  3547
     the drawable. draw a region of w/h pixels from srcx/srcy to dstx/dsty.
9612b91c7416 comments;
Claus Gittinger <cg@exept.de>
parents: 1600
diff changeset
  3548
     It has to be checked elsewhere, that server can do it with the given
9612b91c7416 comments;
Claus Gittinger <cg@exept.de>
parents: 1600
diff changeset
  3549
     depth; also it is assumed, that the colormap is setup correctly.
9612b91c7416 comments;
Claus Gittinger <cg@exept.de>
parents: 1600
diff changeset
  3550
     The actual bits per pixel may be different from the depth (for example,
9612b91c7416 comments;
Claus Gittinger <cg@exept.de>
parents: 1600
diff changeset
  3551
     on a depth-15 device, 16 bits/pixel may be used; also, many depth-24
2004
ea86af0f802e comment
Claus Gittinger <cg@exept.de>
parents: 2002
diff changeset
  3552
     systems actually use 32 bits/pixel).
ea86af0f802e comment
Claus Gittinger <cg@exept.de>
parents: 2002
diff changeset
  3553
     This assumes a padding of 8-bits (i.e. byte-boundary), 
ea86af0f802e comment
Claus Gittinger <cg@exept.de>
parents: 2002
diff changeset
  3554
     which is the natural padding within ST/X."
1602
9612b91c7416 comments;
Claus Gittinger <cg@exept.de>
parents: 1600
diff changeset
  3555
2002
8b5016b133b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1992
diff changeset
  3556
    ^ self
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3557
	drawBits:imageBits
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3558
	bitsPerPixel:bitsPerPixel
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3559
	depth:imageDepth
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3560
	padding:8
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3561
	width:imageWidth height:imageHeight
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3562
	x:srcx y:srcy
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3563
	into:aDrawableId
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3564
	x:dstx y:dsty 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3565
	width:w height:h 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3566
	with:aGCId
2004
ea86af0f802e comment
Claus Gittinger <cg@exept.de>
parents: 2002
diff changeset
  3567
ea86af0f802e comment
Claus Gittinger <cg@exept.de>
parents: 2002
diff changeset
  3568
    "Created: / 16.4.1997 / 14:55:57 / cg"
ea86af0f802e comment
Claus Gittinger <cg@exept.de>
parents: 2002
diff changeset
  3569
    "Modified: / 21.1.1998 / 13:27:58 / cg"
2002
8b5016b133b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1992
diff changeset
  3570
!
8b5016b133b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1992
diff changeset
  3571
8b5016b133b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1992
diff changeset
  3572
drawBits:imageBits depth:imageDepth padding:pad width:imageWidth height:imageHeight
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3573
	x:srcx y:srcy into:aDrawableId x:dstx y:dsty width:w height:h with:aGCId
2002
8b5016b133b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1992
diff changeset
  3574
8b5016b133b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1992
diff changeset
  3575
    "draw a bitimage which has depth id, width iw and height ih into
8b5016b133b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1992
diff changeset
  3576
     the drawable. draw a region of w/h pixels from srcx/srcy to dstx/dsty.
8b5016b133b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1992
diff changeset
  3577
     It has to be checked elsewhere, that server can do it with the given
8b5016b133b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1992
diff changeset
  3578
     depth; also it is assumed, that the colormap is setup correctly"
8b5016b133b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1992
diff changeset
  3579
8b5016b133b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1992
diff changeset
  3580
    ^ self 
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3581
	drawBits:imageBits 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3582
	bitsPerPixel:imageDepth 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3583
	depth:imageDepth 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3584
	padding:pad
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3585
	width:imageWidth height:imageHeight 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3586
	x:srcx y:srcy
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3587
	into:aDrawableId 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3588
	x:dstx y:dsty 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3589
	width:w height:h 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3590
	with:aGCId
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3591
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3592
2004
ea86af0f802e comment
Claus Gittinger <cg@exept.de>
parents: 2002
diff changeset
  3593
drawBits:imageBits depth:imageDepth width:imageWidth height:imageHeight
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3594
		       x:srcx y:srcy
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3595
		    into:aDrawableId x:dstx y:dsty width:w height:h with:aGCId
2004
ea86af0f802e comment
Claus Gittinger <cg@exept.de>
parents: 2002
diff changeset
  3596
ea86af0f802e comment
Claus Gittinger <cg@exept.de>
parents: 2002
diff changeset
  3597
    "draw a bitimage which has depth id, width iw and height ih into
ea86af0f802e comment
Claus Gittinger <cg@exept.de>
parents: 2002
diff changeset
  3598
     the drawable. draw a region of w/h pixels from srcx/srcy to dstx/dsty.
ea86af0f802e comment
Claus Gittinger <cg@exept.de>
parents: 2002
diff changeset
  3599
     It has to be checked elsewhere, that server can do it with the given
ea86af0f802e comment
Claus Gittinger <cg@exept.de>
parents: 2002
diff changeset
  3600
     depth; also it is assumed, that the colormap is setup correctly.
ea86af0f802e comment
Claus Gittinger <cg@exept.de>
parents: 2002
diff changeset
  3601
     This assumes a padding of 8-bits (i.e. byte-boundary), 
ea86af0f802e comment
Claus Gittinger <cg@exept.de>
parents: 2002
diff changeset
  3602
     which is the natural padding within ST/X."
ea86af0f802e comment
Claus Gittinger <cg@exept.de>
parents: 2002
diff changeset
  3603
ea86af0f802e comment
Claus Gittinger <cg@exept.de>
parents: 2002
diff changeset
  3604
    ^ self 
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3605
	drawBits:imageBits 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3606
	bitsPerPixel:imageDepth 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3607
	depth:imageDepth 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3608
	width:imageWidth height:imageHeight 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3609
	x:srcx y:srcy
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3610
	into:aDrawableId 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3611
	x:dstx y:dsty 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3612
	width:w height:h 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3613
	with:aGCId
2004
ea86af0f802e comment
Claus Gittinger <cg@exept.de>
parents: 2002
diff changeset
  3614
ea86af0f802e comment
Claus Gittinger <cg@exept.de>
parents: 2002
diff changeset
  3615
    "Modified: / 21.1.1998 / 13:28:34 / cg"
ea86af0f802e comment
Claus Gittinger <cg@exept.de>
parents: 2002
diff changeset
  3616
!
ea86af0f802e comment
Claus Gittinger <cg@exept.de>
parents: 2002
diff changeset
  3617
653
0ad3de022f8b fill/drawArc..w:h:.. renamed to ...width:height:...
Claus Gittinger <cg@exept.de>
parents: 631
diff changeset
  3618
fillArcX:x y:y width:width height:height from:startAngle angle:angle
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3619
	       in:aDrawableId with:aGCId
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3620
    "fill an arc"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3621
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3622
    ^ self subclassResponsibility
653
0ad3de022f8b fill/drawArc..w:h:.. renamed to ...width:height:...
Claus Gittinger <cg@exept.de>
parents: 631
diff changeset
  3623
0ad3de022f8b fill/drawArc..w:h:.. renamed to ...width:height:...
Claus Gittinger <cg@exept.de>
parents: 631
diff changeset
  3624
    "Created: 8.5.1996 / 08:45:11 / cg"
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3625
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3626
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3627
fillPolygon:aPolygon in:aDrawableId with:aGCId
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3628
    "fill a polygon"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3629
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3630
    ^ self subclassResponsibility
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3631
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3632
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3633
fillRectangleX:x y:y width:width height:height in:aDrawableId with:aGCId
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3634
    "fill a rectangle"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3635
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3636
    ^ self subclassResponsibility
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3637
! !
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3638
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3639
!DeviceWorkstation methodsFor:'enumerating'!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3640
3189
1b561e0943cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3187
diff changeset
  3641
allTopViews
1b561e0943cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3187
diff changeset
  3642
    "return a collection of all my known top views"
1b561e0943cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3187
diff changeset
  3643
1b561e0943cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3187
diff changeset
  3644
    ^self allViews select:[:eachView | eachView isTopView].
1b561e0943cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3187
diff changeset
  3645
1b561e0943cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3187
diff changeset
  3646
!
1b561e0943cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3187
diff changeset
  3647
1215
ecc2bef560b5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1208
diff changeset
  3648
allViews
ecc2bef560b5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1208
diff changeset
  3649
    "return a collection of all my known views"
ecc2bef560b5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1208
diff changeset
  3650
1267
a27c2daaea25 remember lastView/id when searching view by id - helps often
Claus Gittinger <cg@exept.de>
parents: 1258
diff changeset
  3651
    |setOfViews|
1215
ecc2bef560b5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1208
diff changeset
  3652
3147
33419a1a34a0 brokenConnection: do not remove element from an enumerated collection
Claus Gittinger <cg@exept.de>
parents: 3145
diff changeset
  3653
    setOfViews := IdentitySet new.
33419a1a34a0 brokenConnection: do not remove element from an enumerated collection
Claus Gittinger <cg@exept.de>
parents: 3145
diff changeset
  3654
1215
ecc2bef560b5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1208
diff changeset
  3655
    knownViews notNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3656
	knownViews validElementsDo:[:v | setOfViews add:v].
1215
ecc2bef560b5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1208
diff changeset
  3657
    ].
ecc2bef560b5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1208
diff changeset
  3658
    ^ setOfViews
ecc2bef560b5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1208
diff changeset
  3659
3147
33419a1a34a0 brokenConnection: do not remove element from an enumerated collection
Claus Gittinger <cg@exept.de>
parents: 3145
diff changeset
  3660
    "Created: / 14.2.1997 / 14:29:43 / cg"
33419a1a34a0 brokenConnection: do not remove element from an enumerated collection
Claus Gittinger <cg@exept.de>
parents: 3145
diff changeset
  3661
    "Modified: / 19.1.2000 / 10:07:05 / cg"
1215
ecc2bef560b5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1208
diff changeset
  3662
!
ecc2bef560b5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1208
diff changeset
  3663
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3664
allViewsDo:aBlock
3147
33419a1a34a0 brokenConnection: do not remove element from an enumerated collection
Claus Gittinger <cg@exept.de>
parents: 3145
diff changeset
  3665
    "evaluate the argument, aBlock for all of my known views.
33419a1a34a0 brokenConnection: do not remove element from an enumerated collection
Claus Gittinger <cg@exept.de>
parents: 3145
diff changeset
  3666
     Warning do not use this to remove view 
33419a1a34a0 brokenConnection: do not remove element from an enumerated collection
Claus Gittinger <cg@exept.de>
parents: 3145
diff changeset
  3667
     (never remove elements from an enumerated collection)"
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3668
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3669
"/    idToViewMapping notNil ifTrue:[
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3670
"/        idToViewMapping keysAndValuesDo:[:id :aView |
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3671
"/            aView notNil ifTrue:[
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3672
"/                aBlock value:aView
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3673
"/            ]
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3674
"/      ]
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3675
        
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3676
    knownViews notNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3677
	knownViews validElementsDo:aBlock
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3678
    ]
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3679
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3680
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3681
     View defaultStyle:#iris.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3682
     Display allViewsDo:[:v | v initStyle. v redraw]
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3683
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3684
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3685
     View defaultStyle:#next.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3686
     Display allViewsDo:[:v | v initStyle. v redraw]
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3687
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3688
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3689
     View defaultStyle:#normal.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3690
     Display allViewsDo:[:v | v initStyle. v redraw]
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3691
    "
1215
ecc2bef560b5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1208
diff changeset
  3692
3147
33419a1a34a0 brokenConnection: do not remove element from an enumerated collection
Claus Gittinger <cg@exept.de>
parents: 3145
diff changeset
  3693
    "Modified: / 19.1.2000 / 10:13:32 / cg"
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3694
! !
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3695
3299
970960ffaef5 added DrawingOnClosedDevice signal
Claus Gittinger <cg@exept.de>
parents: 3263
diff changeset
  3696
!DeviceWorkstation methodsFor:'error handling'!
970960ffaef5 added DrawingOnClosedDevice signal
Claus Gittinger <cg@exept.de>
parents: 3263
diff changeset
  3697
970960ffaef5 added DrawingOnClosedDevice signal
Claus Gittinger <cg@exept.de>
parents: 3263
diff changeset
  3698
primitiveFailedOrClosedConnection
970960ffaef5 added DrawingOnClosedDevice signal
Claus Gittinger <cg@exept.de>
parents: 3263
diff changeset
  3699
    self isOpen ifFalse:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3700
	DrawingOnClosedDeviceSignal raiseRequestWith:self.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  3701
	^ nil
3299
970960ffaef5 added DrawingOnClosedDevice signal
Claus Gittinger <cg@exept.de>
parents: 3263
diff changeset
  3702
    ].
970960ffaef5 added DrawingOnClosedDevice signal
Claus Gittinger <cg@exept.de>
parents: 3263
diff changeset
  3703
    ^ super primitiveFailed
970960ffaef5 added DrawingOnClosedDevice signal
Claus Gittinger <cg@exept.de>
parents: 3263
diff changeset
  3704
! !
970960ffaef5 added DrawingOnClosedDevice signal
Claus Gittinger <cg@exept.de>
parents: 3263
diff changeset
  3705
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3706
!DeviceWorkstation methodsFor:'event forwarding'!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3707
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3708
buttonMotion:button x:x y:y view:aView
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3709
    "forward a button-motion for some view"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3710
3231
b7fc5adc9404 care for unknown view in event forwarding code
Claus Gittinger <cg@exept.de>
parents: 3224
diff changeset
  3711
    aView isNil ifTrue:[
3896
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  3712
	"/ event arrived, after I destroyed it myself
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  3713
	^ self
3858
ecbaa5d75c70 Use SynchronousWindowSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3834
diff changeset
  3714
    ].
ecbaa5d75c70 Use SynchronousWindowSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3834
diff changeset
  3715
    aView sensor buttonMotion:button x:x y:y view:aView
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3716
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3717
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3718
buttonMultiPress:button x:x y:y view:aView
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3719
    "forward a button-multi-press event for some view"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3720
3231
b7fc5adc9404 care for unknown view in event forwarding code
Claus Gittinger <cg@exept.de>
parents: 3224
diff changeset
  3721
    aView isNil ifTrue:[
3896
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  3722
	"/ event arrived, after I destroyed it myself
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  3723
	^ self
3858
ecbaa5d75c70 Use SynchronousWindowSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3834
diff changeset
  3724
    ].
ecbaa5d75c70 Use SynchronousWindowSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3834
diff changeset
  3725
    aView sensor buttonMultiPress:button x:x y:y view:aView
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3726
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3727
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3728
buttonPress:button x:x y:y view:aView
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3729
    "forward a button-press event for some view"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3730
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3731
    |sensor|
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3732
3231
b7fc5adc9404 care for unknown view in event forwarding code
Claus Gittinger <cg@exept.de>
parents: 3224
diff changeset
  3733
    aView isNil ifTrue:[
3896
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  3734
	"/ event arrived, after I destroyed it myself
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  3735
	^ self
3858
ecbaa5d75c70 Use SynchronousWindowSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3834
diff changeset
  3736
    ].
ecbaa5d75c70 Use SynchronousWindowSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3834
diff changeset
  3737
    sensor := aView sensor.
ecbaa5d75c70 Use SynchronousWindowSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3834
diff changeset
  3738
    WindowsRightButtonBehavior == true ifTrue:[
3896
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  3739
	button >= 2 ifTrue:[
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  3740
	    sensor buttonPress:1 x:x y:y view:aView.
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  3741
	    ^ self.
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  3742
	]
3858
ecbaa5d75c70 Use SynchronousWindowSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3834
diff changeset
  3743
    ].
ecbaa5d75c70 Use SynchronousWindowSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3834
diff changeset
  3744
    sensor buttonPress:button x:x y:y view:aView
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3745
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3746
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3747
buttonRelease:button x:x y:y view:aView
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3748
    "forward a button-release event for some view"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3749
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3750
    |sensor|
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3751
3231
b7fc5adc9404 care for unknown view in event forwarding code
Claus Gittinger <cg@exept.de>
parents: 3224
diff changeset
  3752
    aView isNil ifTrue:[
3896
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  3753
	"/ event arrived, after I destroyed it myself
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  3754
	^ self
3858
ecbaa5d75c70 Use SynchronousWindowSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3834
diff changeset
  3755
    ].
ecbaa5d75c70 Use SynchronousWindowSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3834
diff changeset
  3756
    sensor := aView sensor.
ecbaa5d75c70 Use SynchronousWindowSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3834
diff changeset
  3757
    WindowsRightButtonBehavior == true ifTrue:[
3896
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  3758
	button >= 2 ifTrue:[
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  3759
	    sensor buttonRelease:1 x:x y:y view:aView.
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  3760
	    sensor buttonPress:button x:x y:y view:aView.
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  3761
	    sensor buttonRelease:button x:x y:y view:aView.
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  3762
	    ^ self.
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  3763
	].
3858
ecbaa5d75c70 Use SynchronousWindowSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3834
diff changeset
  3764
    ].
ecbaa5d75c70 Use SynchronousWindowSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3834
diff changeset
  3765
    sensor buttonRelease:button x:x y:y view:aView
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3766
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3767
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3768
configureX:x y:y width:w height:h view:aView
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3769
    "forward a configure for some view"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3770
3231
b7fc5adc9404 care for unknown view in event forwarding code
Claus Gittinger <cg@exept.de>
parents: 3224
diff changeset
  3771
    aView isNil ifTrue:[
3896
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  3772
	"/ event arrived, after I destroyed it myself
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  3773
	^ self
3858
ecbaa5d75c70 Use SynchronousWindowSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3834
diff changeset
  3774
    ].
ecbaa5d75c70 Use SynchronousWindowSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3834
diff changeset
  3775
    aView sensor configureX:x y:y width:w height:h view:aView
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3776
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3777
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3778
coveredBy:otherView view:aView
3602
3df4b726ba4b Use WindowSensor for #coveredBy:
Stefan Vogel <sv@exept.de>
parents: 3597
diff changeset
  3779
    "forward a covered for some view
3df4b726ba4b Use WindowSensor for #coveredBy:
Stefan Vogel <sv@exept.de>
parents: 3597
diff changeset
  3780
     (aView has been covered by otherView)"
3df4b726ba4b Use WindowSensor for #coveredBy:
Stefan Vogel <sv@exept.de>
parents: 3597
diff changeset
  3781
3231
b7fc5adc9404 care for unknown view in event forwarding code
Claus Gittinger <cg@exept.de>
parents: 3224
diff changeset
  3782
    aView isNil ifTrue:[
3896
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  3783
	"/ event arrived, after I destroyed it myself
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  3784
	^ self
3858
ecbaa5d75c70 Use SynchronousWindowSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3834
diff changeset
  3785
    ].
ecbaa5d75c70 Use SynchronousWindowSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3834
diff changeset
  3786
    aView sensor coveredBy:otherView view:aView
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3787
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3788
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3789
destroyedView:aView
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3790
    "forward a destroyed event for some view"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3791
3953
18a1382ad660 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3941
diff changeset
  3792
    |sensor|
18a1382ad660 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3941
diff changeset
  3793
3231
b7fc5adc9404 care for unknown view in event forwarding code
Claus Gittinger <cg@exept.de>
parents: 3224
diff changeset
  3794
    aView isNil ifTrue:[
3953
18a1382ad660 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3941
diff changeset
  3795
        "/ event arrived, after I destroyed it myself
18a1382ad660 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3941
diff changeset
  3796
        ^ self
18a1382ad660 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3941
diff changeset
  3797
    ].
18a1382ad660 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3941
diff changeset
  3798
18a1382ad660 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3941
diff changeset
  3799
    "/ this one has special treatment - the destroyed could
18a1382ad660 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3941
diff changeset
  3800
    "/ (in certain situations) arrive after the view has shutdown its
18a1382ad660 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3941
diff changeset
  3801
    "/ sensor.
18a1382ad660 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3941
diff changeset
  3802
    sensor := aView sensor.
18a1382ad660 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3941
diff changeset
  3803
    sensor notNil ifTrue:[
18a1382ad660 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3941
diff changeset
  3804
        sensor destroyedView:aView
18a1382ad660 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3941
diff changeset
  3805
    ].
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3806
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3807
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3808
exposeX:x y:y width:w height:h view:aView
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3809
    "forward an expose for some view"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3810
3231
b7fc5adc9404 care for unknown view in event forwarding code
Claus Gittinger <cg@exept.de>
parents: 3224
diff changeset
  3811
    aView isNil ifTrue:[
3896
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  3812
	"/ event arrived, after I destroyed it myself
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  3813
	^ self
3858
ecbaa5d75c70 Use SynchronousWindowSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3834
diff changeset
  3814
    ].
ecbaa5d75c70 Use SynchronousWindowSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3834
diff changeset
  3815
    aView sensor exposeX:x y:y width:w height:h view:aView
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3816
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3817
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3818
focusInView:aView
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3819
    "forward a focusIn event for some view"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3820
3231
b7fc5adc9404 care for unknown view in event forwarding code
Claus Gittinger <cg@exept.de>
parents: 3224
diff changeset
  3821
    aView isNil ifTrue:[
3896
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  3822
	"/ event arrived, after I destroyed it myself
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  3823
	^ self
3858
ecbaa5d75c70 Use SynchronousWindowSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3834
diff changeset
  3824
    ].
ecbaa5d75c70 Use SynchronousWindowSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3834
diff changeset
  3825
    aView sensor focusInView:aView
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3826
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3827
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3828
focusOutView:aView 
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3829
    "forward a focusOut event for some view"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3830
3231
b7fc5adc9404 care for unknown view in event forwarding code
Claus Gittinger <cg@exept.de>
parents: 3224
diff changeset
  3831
    aView isNil ifTrue:[
3896
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  3832
	"/ event arrived, after I destroyed it myself
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  3833
	^ self
3858
ecbaa5d75c70 Use SynchronousWindowSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3834
diff changeset
  3834
    ].
ecbaa5d75c70 Use SynchronousWindowSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3834
diff changeset
  3835
    aView sensor focusOutView:aView
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3836
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3837
1295
ef93ded3c030 renamed graphicExpose -> graphicsExpose;
Claus Gittinger <cg@exept.de>
parents: 1287
diff changeset
  3838
graphicsExposeX:x y:y width:w height:h final:final view:aView
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3839
    "forward a graphic expose for some view"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3840
3231
b7fc5adc9404 care for unknown view in event forwarding code
Claus Gittinger <cg@exept.de>
parents: 3224
diff changeset
  3841
    aView isNil ifTrue:[
3896
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  3842
	"/ event arrived, after I destroyed it myself
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  3843
	^ self
3858
ecbaa5d75c70 Use SynchronousWindowSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3834
diff changeset
  3844
    ].
ecbaa5d75c70 Use SynchronousWindowSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3834
diff changeset
  3845
    aView sensor graphicsExposeX:x y:y width:w height:h final:final view:aView
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3846
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3847
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3848
keyPress:untranslatedKey x:x y:y view:aView
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3849
    "forward a key-press event for some view"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3850
509
3e4d2800717a resources
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  3851
    <resource: #keyboard (#Escape)>
3e4d2800717a resources
Claus Gittinger <cg@exept.de>
parents: 505
diff changeset
  3852
3858
ecbaa5d75c70 Use SynchronousWindowSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3834
diff changeset
  3853
    |xlatedKey|
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3854
492
e67b71dd143d added panic-ESC to release grab (Ctrl-ESC)
Claus Gittinger <cg@exept.de>
parents: 479
diff changeset
  3855
    "/
e67b71dd143d added panic-ESC to release grab (Ctrl-ESC)
Claus Gittinger <cg@exept.de>
parents: 479
diff changeset
  3856
    "/ ctrl-Esc gives up focus
e67b71dd143d added panic-ESC to release grab (Ctrl-ESC)
Claus Gittinger <cg@exept.de>
parents: 479
diff changeset
  3857
    "/
3691
9427485e2507 Fix previous change: Return in LicenceBox on startup crashed the system.
Stefan Vogel <sv@exept.de>
parents: 3690
diff changeset
  3858
    untranslatedKey == #Escape ifTrue:[
3896
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  3859
	(ctrlDown or:[metaDown]) ifTrue:[
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  3860
	    self ungrabPointer.  
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  3861
	    self ungrabKeyboard. 
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  3862
	    self setInputFocusTo:nil 
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  3863
	]
492
e67b71dd143d added panic-ESC to release grab (Ctrl-ESC)
Claus Gittinger <cg@exept.de>
parents: 479
diff changeset
  3864
    ].
e67b71dd143d added panic-ESC to release grab (Ctrl-ESC)
Claus Gittinger <cg@exept.de>
parents: 479
diff changeset
  3865
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3866
    self modifierKeyProcessing:untranslatedKey down:true.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3867
3231
b7fc5adc9404 care for unknown view in event forwarding code
Claus Gittinger <cg@exept.de>
parents: 3224
diff changeset
  3868
    aView isNil ifTrue:[
3896
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  3869
	"/ event arrived, after I destroyed it myself
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  3870
	^ self
3691
9427485e2507 Fix previous change: Return in LicenceBox on startup crashed the system.
Stefan Vogel <sv@exept.de>
parents: 3690
diff changeset
  3871
    ].
9427485e2507 Fix previous change: Return in LicenceBox on startup crashed the system.
Stefan Vogel <sv@exept.de>
parents: 3690
diff changeset
  3872
9427485e2507 Fix previous change: Return in LicenceBox on startup crashed the system.
Stefan Vogel <sv@exept.de>
parents: 3690
diff changeset
  3873
    xlatedKey := self translateKey:untranslatedKey forView:aView.
9427485e2507 Fix previous change: Return in LicenceBox on startup crashed the system.
Stefan Vogel <sv@exept.de>
parents: 3690
diff changeset
  3874
    xlatedKey == #Hardcopy ifTrue:[
3896
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  3875
	[
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  3876
	    Transcript topView application
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  3877
		saveScreenImage:(Image fromView:(aView topView) "inset:0" grab:true) defaultName:'hardcopy'.
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  3878
	] forkAt:Processor userSchedulingPriority + 1.
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  3879
	^ self.
3858
ecbaa5d75c70 Use SynchronousWindowSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3834
diff changeset
  3880
    ].
ecbaa5d75c70 Use SynchronousWindowSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3834
diff changeset
  3881
ecbaa5d75c70 Use SynchronousWindowSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3834
diff changeset
  3882
    aView sensor keyPress:untranslatedKey x:x y:y view:aView
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3883
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3884
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3885
keyRelease:untranslatedKey x:x y:y view:aView
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3886
    "forward a key-release event for some view"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3887
3858
ecbaa5d75c70 Use SynchronousWindowSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3834
diff changeset
  3888
    |xlatedKey|
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3889
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3890
    self modifierKeyProcessing:untranslatedKey down:false.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3891
3231
b7fc5adc9404 care for unknown view in event forwarding code
Claus Gittinger <cg@exept.de>
parents: 3224
diff changeset
  3892
    aView isNil ifTrue:[
3896
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  3893
	"/ event arrived, after I destroyed it myself
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  3894
	^ self
3691
9427485e2507 Fix previous change: Return in LicenceBox on startup crashed the system.
Stefan Vogel <sv@exept.de>
parents: 3690
diff changeset
  3895
    ].
9427485e2507 Fix previous change: Return in LicenceBox on startup crashed the system.
Stefan Vogel <sv@exept.de>
parents: 3690
diff changeset
  3896
9427485e2507 Fix previous change: Return in LicenceBox on startup crashed the system.
Stefan Vogel <sv@exept.de>
parents: 3690
diff changeset
  3897
    xlatedKey := self translateKey:untranslatedKey forView:aView.
9427485e2507 Fix previous change: Return in LicenceBox on startup crashed the system.
Stefan Vogel <sv@exept.de>
parents: 3690
diff changeset
  3898
    xlatedKey == #Hardcopy ifTrue:[^ self].
9427485e2507 Fix previous change: Return in LicenceBox on startup crashed the system.
Stefan Vogel <sv@exept.de>
parents: 3690
diff changeset
  3899
3858
ecbaa5d75c70 Use SynchronousWindowSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3834
diff changeset
  3900
    aView sensor keyRelease:untranslatedKey x:x y:y view:aView
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3901
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3902
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3903
mappedView:aView
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3904
    "forward a mapped event for some view"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3905
3231
b7fc5adc9404 care for unknown view in event forwarding code
Claus Gittinger <cg@exept.de>
parents: 3224
diff changeset
  3906
    aView isNil ifTrue:[
3896
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  3907
	"/ event arrived, after I destroyed it myself
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  3908
	^ self
3858
ecbaa5d75c70 Use SynchronousWindowSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3834
diff changeset
  3909
    ].
ecbaa5d75c70 Use SynchronousWindowSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3834
diff changeset
  3910
    aView sensor mappedView:aView
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3911
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3912
2733
5af2417bc450 pass x/y with mouseWheel event
Claus Gittinger <cg@exept.de>
parents: 2716
diff changeset
  3913
mouseWheelMotion:buttonState x:x y:y amount:amount deltaTime:dTime view:aView
2677
e2b213c76ec8 preps for WM_MOUSEWHEEL;
Claus Gittinger <cg@exept.de>
parents: 2669
diff changeset
  3914
    "the mousewheel was moved by some amount (signed).
e2b213c76ec8 preps for WM_MOUSEWHEEL;
Claus Gittinger <cg@exept.de>
parents: 2669
diff changeset
  3915
     This event is sent to the current pointer view (like keyPress/release)."
2699
01594e76fc92 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2685
diff changeset
  3916
3231
b7fc5adc9404 care for unknown view in event forwarding code
Claus Gittinger <cg@exept.de>
parents: 3224
diff changeset
  3917
    aView isNil ifTrue:[
3896
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  3918
	"/ event arrived, after I destroyed it myself
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  3919
	^ self
3858
ecbaa5d75c70 Use SynchronousWindowSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3834
diff changeset
  3920
    ].
ecbaa5d75c70 Use SynchronousWindowSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3834
diff changeset
  3921
    aView sensor mouseWheelMotion:buttonState x:x y:y amount:amount deltaTime:dTime view:aView
2699
01594e76fc92 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2685
diff changeset
  3922
01594e76fc92 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2685
diff changeset
  3923
    "Modified: / 21.5.1999 / 13:05:53 / cg"
2677
e2b213c76ec8 preps for WM_MOUSEWHEEL;
Claus Gittinger <cg@exept.de>
parents: 2669
diff changeset
  3924
!
e2b213c76ec8 preps for WM_MOUSEWHEEL;
Claus Gittinger <cg@exept.de>
parents: 2669
diff changeset
  3925
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3926
noExposeView:aView
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3927
    "forward a noExpose event for some view"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3928
3231
b7fc5adc9404 care for unknown view in event forwarding code
Claus Gittinger <cg@exept.de>
parents: 3224
diff changeset
  3929
    aView isNil ifTrue:[
3896
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  3930
	"/ event arrived, after I destroyed it myself
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  3931
	^ self
3858
ecbaa5d75c70 Use SynchronousWindowSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3834
diff changeset
  3932
    ].
ecbaa5d75c70 Use SynchronousWindowSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3834
diff changeset
  3933
    aView sensor noExposeView:aView
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3934
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3935
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3936
pointerEnter:buttonState x:x y:y view:aView
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3937
    "forward a pointer enter for some view"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3938
3231
b7fc5adc9404 care for unknown view in event forwarding code
Claus Gittinger <cg@exept.de>
parents: 3224
diff changeset
  3939
    aView isNil ifTrue:[
3896
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  3940
	"/ event arrived, after I destroyed it myself
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  3941
	^ self
3858
ecbaa5d75c70 Use SynchronousWindowSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3834
diff changeset
  3942
    ].
ecbaa5d75c70 Use SynchronousWindowSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3834
diff changeset
  3943
    aView sensor pointerEnter:buttonState x:x y:y view:aView
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3944
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3945
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3946
pointerLeave:buttonState view:aView
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3947
    "forward a pointer leave for some view"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3948
3231
b7fc5adc9404 care for unknown view in event forwarding code
Claus Gittinger <cg@exept.de>
parents: 3224
diff changeset
  3949
    aView isNil ifTrue:[
3896
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  3950
	"/ event arrived, after I destroyed it myself
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  3951
	^ self
3858
ecbaa5d75c70 Use SynchronousWindowSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3834
diff changeset
  3952
    ].
ecbaa5d75c70 Use SynchronousWindowSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3834
diff changeset
  3953
    aView sensor pointerLeave:buttonState view:aView
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3954
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3955
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3956
saveAndTerminateView:aView
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3957
    "forward a saveAndTerminate event for some view"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3958
3231
b7fc5adc9404 care for unknown view in event forwarding code
Claus Gittinger <cg@exept.de>
parents: 3224
diff changeset
  3959
    aView isNil ifTrue:[
3896
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  3960
	"/ event arrived, after I destroyed it myself
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  3961
	^ self
3858
ecbaa5d75c70 Use SynchronousWindowSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3834
diff changeset
  3962
    ].
ecbaa5d75c70 Use SynchronousWindowSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3834
diff changeset
  3963
    aView sensor saveAndTerminateView:aView
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3964
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3965
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3966
terminateView:aView
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3967
    "forward a terminate event for some view"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3968
3231
b7fc5adc9404 care for unknown view in event forwarding code
Claus Gittinger <cg@exept.de>
parents: 3224
diff changeset
  3969
    aView isNil ifTrue:[
3896
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  3970
	"/ event arrived, after I destroyed it myself
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  3971
	^ self
3858
ecbaa5d75c70 Use SynchronousWindowSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3834
diff changeset
  3972
    ].
ecbaa5d75c70 Use SynchronousWindowSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3834
diff changeset
  3973
    aView sensor terminateView:aView.
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3974
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3975
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3976
unmappedView:aView
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3977
    "forward an unmapped event for some view"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3978
3231
b7fc5adc9404 care for unknown view in event forwarding code
Claus Gittinger <cg@exept.de>
parents: 3224
diff changeset
  3979
    aView isNil ifTrue:[
3896
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  3980
	"/ event arrived, after I destroyed it myself
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  3981
	^ self
3858
ecbaa5d75c70 Use SynchronousWindowSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3834
diff changeset
  3982
    ].
ecbaa5d75c70 Use SynchronousWindowSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3834
diff changeset
  3983
    aView sensor unmappedView:aView
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3984
! !
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3985
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3986
!DeviceWorkstation methodsFor:'event handling'!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3987
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  3988
checkForEndOfDispatch
320
b7b8dc88fe9f interest is written with one 'r' (shame on me)
Claus Gittinger <cg@exept.de>
parents: 310
diff changeset
  3989
    "return true, if there are still any views of interest - 
349
507a573eba58 dont exit dispatch loop with last window (stopped when changing language with only a launcher open)
Claus Gittinger <cg@exept.de>
parents: 347
diff changeset
  3990
     if not, stop dispatch. 
507a573eba58 dont exit dispatch loop with last window (stopped when changing language with only a launcher open)
Claus Gittinger <cg@exept.de>
parents: 347
diff changeset
  3991
     This ends the dispatcher process when the last view is closed on that device.
507a573eba58 dont exit dispatch loop with last window (stopped when changing language with only a launcher open)
Claus Gittinger <cg@exept.de>
parents: 347
diff changeset
  3992
     We only do this for displays other that the default Display."
507a573eba58 dont exit dispatch loop with last window (stopped when changing language with only a launcher open)
Claus Gittinger <cg@exept.de>
parents: 347
diff changeset
  3993
423
98a3808d9902 additions for standAlone operation
Claus Gittinger <cg@exept.de>
parents: 414
diff changeset
  3994
    dispatching ifFalse:[^ self].
98a3808d9902 additions for standAlone operation
Claus Gittinger <cg@exept.de>
parents: 414
diff changeset
  3995
98a3808d9902 additions for standAlone operation
Claus Gittinger <cg@exept.de>
parents: 414
diff changeset
  3996
    self == Display ifTrue:[
3896
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  3997
	ExitOnLastClose == true ifFalse:[^ self].
423
98a3808d9902 additions for standAlone operation
Claus Gittinger <cg@exept.de>
parents: 414
diff changeset
  3998
    ].
2826
d41820391aec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2825
diff changeset
  3999
    exitOnLastClose == true ifFalse:[^ self].
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4000
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4001
    knownViews notNil ifTrue:[
3896
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  4002
	(knownViews findFirst:[:slot | 
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  4003
		slot notNil 
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  4004
		and:[slot ~~ 0             "/ if there is no non-popup
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  4005
		and:[slot isRootView not   "/ non-dialog ...
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  4006
		and:[slot isTopView        "/ stop dispatching.
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  4007
		and:[slot isPopUpView not
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  4008
		and:[slot isModal not
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  4009
		"and:[slot realized]"]]]]]]) == 0 ifTrue:[
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  4010
	    "/ my last view was closed
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  4011
	    dispatching := false.
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  4012
	    'DeviceWorkstation [info]: finished dispatch (last view closed)' infoPrintCR.
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  4013
	    LastActiveScreen == self ifTrue:[
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  4014
		LastActiveScreen := nil.
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  4015
		LastActiveProcess := nil.
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  4016
	    ].
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  4017
	    eventSema notNil ifTrue:[eventSema signal].  "/ get dispatchLoop out of its wait...
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  4018
	]
423
98a3808d9902 additions for standAlone operation
Claus Gittinger <cg@exept.de>
parents: 414
diff changeset
  4019
    ].
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4020
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4021
    "Modified: 19.9.1995 / 11:31:54 / claus"
1449
02f4faded623 end of dispatch if no realized topview
Claus Gittinger <cg@exept.de>
parents: 1429
diff changeset
  4022
    "Modified: 18.3.1997 / 10:42:11 / cg"
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4023
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4024
3646
b4947102141f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3645
diff changeset
  4025
cleanupAfterDispatch
b4947102141f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3645
diff changeset
  4026
    eventSema notNil ifTrue:[
3766
0b92741d06f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3747
diff changeset
  4027
	Processor disableSemaphore:eventSema.
0b92741d06f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3747
diff changeset
  4028
	eventSema := nil.
3646
b4947102141f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3645
diff changeset
  4029
    ].
b4947102141f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3645
diff changeset
  4030
    dispatchProcess := nil.
3742
448735909bc6 Try to get a defaultScreen
tm
parents: 3740
diff changeset
  4031
448735909bc6 Try to get a defaultScreen
tm
parents: 3740
diff changeset
  4032
    DefaultScreen == self ifTrue:[
3766
0b92741d06f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3747
diff changeset
  4033
	(Transcript isView and:[Transcript topView device ~~ self]) ifTrue:[
0b92741d06f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3747
diff changeset
  4034
	    DefaultScreen := Transcript topView device
0b92741d06f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3747
diff changeset
  4035
	] ifFalse:[
0b92741d06f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3747
diff changeset
  4036
	    "/ what should the defaultScreen be - help !!!!!!
0b92741d06f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3747
diff changeset
  4037
0b92741d06f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3747
diff changeset
  4038
	    DefaultScreen := DeviceWorkstation allSubInstances 
0b92741d06f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3747
diff changeset
  4039
				detect:[:aDevice | aDevice isOpen] ifNone:nil     
0b92741d06f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3747
diff changeset
  4040
	]
3742
448735909bc6 Try to get a defaultScreen
tm
parents: 3740
diff changeset
  4041
    ]
3646
b4947102141f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3645
diff changeset
  4042
!
b4947102141f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3645
diff changeset
  4043
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4044
dispatchEvent
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4045
    "get and process the next pending event - for any view"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4046
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4047
    self dispatchEventFor:nil withMask:nil
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4048
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4049
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4050
dispatchEventFor:aViewIdOrNil withMask:eventMask
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4051
    "central event handling method:
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4052
     get next event and send an appropriate message to the views sensor,
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4053
     or to the view directly (if the view has none).
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4054
     If the argument aViewIdOrNil is nil, events for any view are processed,
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4055
     otherwise only events for the view with given id are processed
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4056
     (in this case, nothing is done if no events are pending);
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4057
     if the argument aMask is nonNil, only events for this eventMask are
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4058
     handled. The mask is a device dependent event mask."
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4059
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4060
    ^ self subclassResponsibility
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4061
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4062
3645
7ed096386bd3 refactored event dispatch loop;
Claus Gittinger <cg@exept.de>
parents: 3644
diff changeset
  4063
dispatchLoop
7ed096386bd3 refactored event dispatch loop;
Claus Gittinger <cg@exept.de>
parents: 3644
diff changeset
  4064
    "the actual event dispatching loop."
7ed096386bd3 refactored event dispatch loop;
Claus Gittinger <cg@exept.de>
parents: 3644
diff changeset
  4065
7ed096386bd3 refactored event dispatch loop;
Claus Gittinger <cg@exept.de>
parents: 3644
diff changeset
  4066
    [dispatching] whileTrue:[
3691
9427485e2507 Fix previous change: Return in LicenceBox on startup crashed the system.
Stefan Vogel <sv@exept.de>
parents: 3690
diff changeset
  4067
	AbortSignal handle:[:ex |
9427485e2507 Fix previous change: Return in LicenceBox on startup crashed the system.
Stefan Vogel <sv@exept.de>
parents: 3690
diff changeset
  4068
	    ex return
9427485e2507 Fix previous change: Return in LicenceBox on startup crashed the system.
Stefan Vogel <sv@exept.de>
parents: 3690
diff changeset
  4069
	] do:[
9427485e2507 Fix previous change: Return in LicenceBox on startup crashed the system.
Stefan Vogel <sv@exept.de>
parents: 3690
diff changeset
  4070
	    self eventPending ifFalse:[
9427485e2507 Fix previous change: Return in LicenceBox on startup crashed the system.
Stefan Vogel <sv@exept.de>
parents: 3690
diff changeset
  4071
		Processor activeProcess setStateTo:#ioWait if:#active.
9427485e2507 Fix previous change: Return in LicenceBox on startup crashed the system.
Stefan Vogel <sv@exept.de>
parents: 3690
diff changeset
  4072
		eventSema wait.
9427485e2507 Fix previous change: Return in LicenceBox on startup crashed the system.
Stefan Vogel <sv@exept.de>
parents: 3690
diff changeset
  4073
	    ].
9427485e2507 Fix previous change: Return in LicenceBox on startup crashed the system.
Stefan Vogel <sv@exept.de>
parents: 3690
diff changeset
  4074
	    dispatching ifTrue:[
9427485e2507 Fix previous change: Return in LicenceBox on startup crashed the system.
Stefan Vogel <sv@exept.de>
parents: 3690
diff changeset
  4075
		self dispatchPendingEvents.
9427485e2507 Fix previous change: Return in LicenceBox on startup crashed the system.
Stefan Vogel <sv@exept.de>
parents: 3690
diff changeset
  4076
	    ].
9427485e2507 Fix previous change: Return in LicenceBox on startup crashed the system.
Stefan Vogel <sv@exept.de>
parents: 3690
diff changeset
  4077
	]
3645
7ed096386bd3 refactored event dispatch loop;
Claus Gittinger <cg@exept.de>
parents: 3644
diff changeset
  4078
    ]
7ed096386bd3 refactored event dispatch loop;
Claus Gittinger <cg@exept.de>
parents: 3644
diff changeset
  4079
!
7ed096386bd3 refactored event dispatch loop;
Claus Gittinger <cg@exept.de>
parents: 3644
diff changeset
  4080
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4081
dispatchModalWhile:aBlock
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4082
    "get and process next event for any view as long as the 
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4083
     argument-block evaluates to true.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4084
     This is a modal loop, not switching to other processes,
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4085
     effectively polling the device in a (nice) busy loop. 
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4086
     This should only be (and is only) used for emergency cases.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4087
     (such as a graphical debugger, debugging the event-dispatcher itself)"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4088
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4089
    |myFd|
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4090
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4091
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4092
     if this display has a fileDescriptor to wait on,
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4093
     it is used; otherwise we poll (with a delay to not lock up
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4094
     the workstation)
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4095
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4096
    myFd := self displayFileDescriptor.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4097
    [aBlock value] whileTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  4098
	self eventPending ifFalse:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  4099
	    myFd isNil ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  4100
		OperatingSystem millisecondDelay:50
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  4101
	    ] ifFalse:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  4102
		OperatingSystem selectOn:myFd withTimeOut:50.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  4103
	    ].
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  4104
	    Processor evaluateTimeouts.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  4105
	].
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  4106
	self eventPending ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  4107
	    self dispatchEvent
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  4108
	].
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4109
    ]
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4110
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4111
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4112
dispatchPendingEvents
405
b64b47fd3480 new Xsync scheme
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  4113
    "go dispatch events as long as there is one.
b64b47fd3480 new Xsync scheme
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  4114
     This is only used with modal operation.
b64b47fd3480 new Xsync scheme
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  4115
     (i.e. when in the modal debugger)"
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4116
2114
29e62b08dd96 handle signals in eventLoop
Claus Gittinger <cg@exept.de>
parents: 2106
diff changeset
  4117
    Object osSignalInterruptSignal handle:[:ex |
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  4118
	ex return
2114
29e62b08dd96 handle signals in eventLoop
Claus Gittinger <cg@exept.de>
parents: 2106
diff changeset
  4119
    ] do:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  4120
	[self eventPending] whileTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  4121
	    self dispatchEventFor:nil withMask:nil
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  4122
	]
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4123
    ]
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4124
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4125
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4126
disposeButtonEventsFor:aViewIdOrNil
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4127
    "dispose (i.e. forget) all pending button events on this display"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4128
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4129
    |mask|
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4130
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4131
    mask := self eventMaskFor:#buttonPress.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4132
    mask := mask bitOr:(self eventMaskFor:#buttonRelease).
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4133
    mask := mask bitOr:(self eventMaskFor:#buttonMotion).
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4134
    self disposeEventsWithMask:mask for:aViewIdOrNil
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4135
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4136
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4137
disposeEvents
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4138
    "dispose (i.e. forget) all events pending on this display"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4139
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4140
    [self eventPending] whileTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  4141
	self getEventFor:nil withMask:nil
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4142
    ].
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4143
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4144
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4145
disposeEventsWithMask:aMask for:aWindowId
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4146
    "dispose (throw away) specific events"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4147
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4148
    ^ self subclassResponsibility
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4149
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4150
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4151
eventMaskFor:anEventSymbol
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4152
    ^ self subclassResponsibility
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4153
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4154
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4155
eventPending
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4156
    "return true, if any event is pending"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4157
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4158
    ^ self subclassResponsibility
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4159
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4160
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4161
eventPending:anEventSymbol for:aWindowId
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4162
    "return true, if a specific event is pending for a specific window.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4163
     This expects device independent event symbols (such as #buttonPress,
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4164
     #buttonRelease etc.) as first argument."
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4165
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4166
    ^ self subclassResponsibility
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4167
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4168
3224
b7f5e47f9598 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3220
diff changeset
  4169
eventPending:anEventMask for:aWindowId withSync:doSync
b7f5e47f9598 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3220
diff changeset
  4170
    "return true, if any of the masked events is pending
b7f5e47f9598 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3220
diff changeset
  4171
     for a specific window.
b7f5e47f9598 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3220
diff changeset
  4172
     This expects a device dependent event mask as first argument."
b7f5e47f9598 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3220
diff changeset
  4173
b7f5e47f9598 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3220
diff changeset
  4174
    ^ self subclassResponsibility
b7f5e47f9598 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3220
diff changeset
  4175
!
b7f5e47f9598 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3220
diff changeset
  4176
405
b64b47fd3480 new Xsync scheme
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  4177
eventPendingWithSync:doSync
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4178
    "return true, if any event is pending"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4179
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4180
    ^ self subclassResponsibility
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4181
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4182
332
48f78f549e5f dont want two dispatchers after restart (addknownView started it; Smalltalk>>restart did it again)
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  4183
eventQueued
48f78f549e5f dont want two dispatchers after restart (addknownView started it; Smalltalk>>restart did it again)
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  4184
    "return true, if any event is pending in some internal queue.
48f78f549e5f dont want two dispatchers after restart (addknownView started it; Smalltalk>>restart did it again)
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  4185
     The fallBack here returns true if events are pending on the display connection;
48f78f549e5f dont want two dispatchers after restart (addknownView started it; Smalltalk>>restart did it again)
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  4186
     only devices which use internal queues (i.e. Xlib) need to redefine this."
48f78f549e5f dont want two dispatchers after restart (addknownView started it; Smalltalk>>restart did it again)
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  4187
48f78f549e5f dont want two dispatchers after restart (addknownView started it; Smalltalk>>restart did it again)
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  4188
    ^ self eventPending
48f78f549e5f dont want two dispatchers after restart (addknownView started it; Smalltalk>>restart did it again)
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  4189
!
48f78f549e5f dont want two dispatchers after restart (addknownView started it; Smalltalk>>restart did it again)
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  4190
2169
fb3c024a91c5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2140
diff changeset
  4191
eventQueuedAlready
fb3c024a91c5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2140
diff changeset
  4192
    "return true, if any event is pending in some internal queue.
fb3c024a91c5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2140
diff changeset
  4193
     The fallBack here returns true if events are pending on the display connection;
fb3c024a91c5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2140
diff changeset
  4194
     only devices which use internal queues (i.e. Xlib) need to redefine this."
fb3c024a91c5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2140
diff changeset
  4195
fb3c024a91c5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2140
diff changeset
  4196
    ^ self eventPending
fb3c024a91c5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2140
diff changeset
  4197
!
fb3c024a91c5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2140
diff changeset
  4198
405
b64b47fd3480 new Xsync scheme
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  4199
eventsPending:anEventMask for:aWindowId withSync:doSync
3224
b7f5e47f9598 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3220
diff changeset
  4200
    "obsolete - will vanish."
b7f5e47f9598 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3220
diff changeset
  4201
b7f5e47f9598 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3220
diff changeset
  4202
    ^ self eventPending:anEventMask for:aWindowId withSync:doSync
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4203
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4204
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4205
setEventMask:aMask in:aWindowId
310
6ed27eebc243 stefans event queue changes
Claus Gittinger <cg@exept.de>
parents: 293
diff changeset
  4206
    "arrange that only events from aMask are reported to a view.
6ed27eebc243 stefans event queue changes
Claus Gittinger <cg@exept.de>
parents: 293
diff changeset
  4207
     Highly device specific, to be defined in concrete subclasses"
6ed27eebc243 stefans event queue changes
Claus Gittinger <cg@exept.de>
parents: 293
diff changeset
  4208
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4209
    ^ self subclassResponsibility
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4210
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4211
3645
7ed096386bd3 refactored event dispatch loop;
Claus Gittinger <cg@exept.de>
parents: 3644
diff changeset
  4212
setupDispatchLoop
7ed096386bd3 refactored event dispatch loop;
Claus Gittinger <cg@exept.de>
parents: 3644
diff changeset
  4213
    "create & start the display event dispatch process."
7ed096386bd3 refactored event dispatch loop;
Claus Gittinger <cg@exept.de>
parents: 3644
diff changeset
  4214
7ed096386bd3 refactored event dispatch loop;
Claus Gittinger <cg@exept.de>
parents: 3644
diff changeset
  4215
    |fd checkBlock|
7ed096386bd3 refactored event dispatch loop;
Claus Gittinger <cg@exept.de>
parents: 3644
diff changeset
  4216
7ed096386bd3 refactored event dispatch loop;
Claus Gittinger <cg@exept.de>
parents: 3644
diff changeset
  4217
    fd := self displayFileDescriptor.
7ed096386bd3 refactored event dispatch loop;
Claus Gittinger <cg@exept.de>
parents: 3644
diff changeset
  4218
7ed096386bd3 refactored event dispatch loop;
Claus Gittinger <cg@exept.de>
parents: 3644
diff changeset
  4219
    eventSema := Semaphore new name:'display inputSema'.
7ed096386bd3 refactored event dispatch loop;
Claus Gittinger <cg@exept.de>
parents: 3644
diff changeset
  4220
7ed096386bd3 refactored event dispatch loop;
Claus Gittinger <cg@exept.de>
parents: 3644
diff changeset
  4221
    "/ arrange for the processor to signal that semaphore when input
7ed096386bd3 refactored event dispatch loop;
Claus Gittinger <cg@exept.de>
parents: 3644
diff changeset
  4222
    "/ is available or #eventPending returns true
7ed096386bd3 refactored event dispatch loop;
Claus Gittinger <cg@exept.de>
parents: 3644
diff changeset
  4223
7ed096386bd3 refactored event dispatch loop;
Claus Gittinger <cg@exept.de>
parents: 3644
diff changeset
  4224
    fd isNil ifTrue:[
3691
9427485e2507 Fix previous change: Return in LicenceBox on startup crashed the system.
Stefan Vogel <sv@exept.de>
parents: 3690
diff changeset
  4225
	"no fd -- so have to check for input also"
9427485e2507 Fix previous change: Return in LicenceBox on startup crashed the system.
Stefan Vogel <sv@exept.de>
parents: 3690
diff changeset
  4226
	checkBlock := [self eventPending].
3645
7ed096386bd3 refactored event dispatch loop;
Claus Gittinger <cg@exept.de>
parents: 3644
diff changeset
  4227
    ] ifFalse:[
3691
9427485e2507 Fix previous change: Return in LicenceBox on startup crashed the system.
Stefan Vogel <sv@exept.de>
parents: 3690
diff changeset
  4228
	"there is a fd, so checkblock has to check only the internal queue"
9427485e2507 Fix previous change: Return in LicenceBox on startup crashed the system.
Stefan Vogel <sv@exept.de>
parents: 3690
diff changeset
  4229
	checkBlock := [self eventQueued].
3645
7ed096386bd3 refactored event dispatch loop;
Claus Gittinger <cg@exept.de>
parents: 3644
diff changeset
  4230
    ].
7ed096386bd3 refactored event dispatch loop;
Claus Gittinger <cg@exept.de>
parents: 3644
diff changeset
  4231
7ed096386bd3 refactored event dispatch loop;
Claus Gittinger <cg@exept.de>
parents: 3644
diff changeset
  4232
    "/ handle all incoming events from the device, sitting on a semaphore.
7ed096386bd3 refactored event dispatch loop;
Claus Gittinger <cg@exept.de>
parents: 3644
diff changeset
  4233
    "/ Tell Processor to trigger this semaphore when some event arrives
7ed096386bd3 refactored event dispatch loop;
Claus Gittinger <cg@exept.de>
parents: 3644
diff changeset
  4234
    "/ for me. Since a select alone may not be enough to know if events are pending 
7ed096386bd3 refactored event dispatch loop;
Claus Gittinger <cg@exept.de>
parents: 3644
diff changeset
  4235
    "/ (Xlib reads out event-queue while doing output), we also install a poll-check block.        
7ed096386bd3 refactored event dispatch loop;
Claus Gittinger <cg@exept.de>
parents: 3644
diff changeset
  4236
    "/ The poll check is also req'd for systems where we cannot do a select
7ed096386bd3 refactored event dispatch loop;
Claus Gittinger <cg@exept.de>
parents: 3644
diff changeset
  4237
    "/ on the eventQ (i.e. windows).
7ed096386bd3 refactored event dispatch loop;
Claus Gittinger <cg@exept.de>
parents: 3644
diff changeset
  4238
7ed096386bd3 refactored event dispatch loop;
Claus Gittinger <cg@exept.de>
parents: 3644
diff changeset
  4239
    Processor signal:eventSema onInput:fd orCheck:checkBlock.
7ed096386bd3 refactored event dispatch loop;
Claus Gittinger <cg@exept.de>
parents: 3644
diff changeset
  4240
7ed096386bd3 refactored event dispatch loop;
Claus Gittinger <cg@exept.de>
parents: 3644
diff changeset
  4241
7ed096386bd3 refactored event dispatch loop;
Claus Gittinger <cg@exept.de>
parents: 3644
diff changeset
  4242
    DeviceIOErrorSignal handle:[:ex |
3691
9427485e2507 Fix previous change: Return in LicenceBox on startup crashed the system.
Stefan Vogel <sv@exept.de>
parents: 3690
diff changeset
  4243
	"/ test for handlerBlock until the signal is changed to be classed based.
9427485e2507 Fix previous change: Return in LicenceBox on startup crashed the system.
Stefan Vogel <sv@exept.de>
parents: 3690
diff changeset
  4244
	ex signal handlerBlock notNil ifTrue:[
9427485e2507 Fix previous change: Return in LicenceBox on startup crashed the system.
Stefan Vogel <sv@exept.de>
parents: 3690
diff changeset
  4245
	    ex defaultAction.
9427485e2507 Fix previous change: Return in LicenceBox on startup crashed the system.
Stefan Vogel <sv@exept.de>
parents: 3690
diff changeset
  4246
	] ifFalse:[
9427485e2507 Fix previous change: Return in LicenceBox on startup crashed the system.
Stefan Vogel <sv@exept.de>
parents: 3690
diff changeset
  4247
	    'DeviceWorkstation [warning]: stop dispatch due to I/O error' errorPrintCR.
9427485e2507 Fix previous change: Return in LicenceBox on startup crashed the system.
Stefan Vogel <sv@exept.de>
parents: 3690
diff changeset
  4248
	    self brokenConnection.
9427485e2507 Fix previous change: Return in LicenceBox on startup crashed the system.
Stefan Vogel <sv@exept.de>
parents: 3690
diff changeset
  4249
	].
9427485e2507 Fix previous change: Return in LicenceBox on startup crashed the system.
Stefan Vogel <sv@exept.de>
parents: 3690
diff changeset
  4250
	ex return.
3645
7ed096386bd3 refactored event dispatch loop;
Claus Gittinger <cg@exept.de>
parents: 3644
diff changeset
  4251
    ] do:[
3691
9427485e2507 Fix previous change: Return in LicenceBox on startup crashed the system.
Stefan Vogel <sv@exept.de>
parents: 3690
diff changeset
  4252
	self initializeDeviceResources.
9427485e2507 Fix previous change: Return in LicenceBox on startup crashed the system.
Stefan Vogel <sv@exept.de>
parents: 3690
diff changeset
  4253
	[
9427485e2507 Fix previous change: Return in LicenceBox on startup crashed the system.
Stefan Vogel <sv@exept.de>
parents: 3690
diff changeset
  4254
	    self dispatchLoop
9427485e2507 Fix previous change: Return in LicenceBox on startup crashed the system.
Stefan Vogel <sv@exept.de>
parents: 3690
diff changeset
  4255
	] ifCurtailed:[
9427485e2507 Fix previous change: Return in LicenceBox on startup crashed the system.
Stefan Vogel <sv@exept.de>
parents: 3690
diff changeset
  4256
	    self cleanupAfterDispatch.
9427485e2507 Fix previous change: Return in LicenceBox on startup crashed the system.
Stefan Vogel <sv@exept.de>
parents: 3690
diff changeset
  4257
	    self emergencyCloseConnection.
9427485e2507 Fix previous change: Return in LicenceBox on startup crashed the system.
Stefan Vogel <sv@exept.de>
parents: 3690
diff changeset
  4258
	].
9427485e2507 Fix previous change: Return in LicenceBox on startup crashed the system.
Stefan Vogel <sv@exept.de>
parents: 3690
diff changeset
  4259
	self cleanupAfterDispatch.
9427485e2507 Fix previous change: Return in LicenceBox on startup crashed the system.
Stefan Vogel <sv@exept.de>
parents: 3690
diff changeset
  4260
	self close.
3645
7ed096386bd3 refactored event dispatch loop;
Claus Gittinger <cg@exept.de>
parents: 3644
diff changeset
  4261
    ].
7ed096386bd3 refactored event dispatch loop;
Claus Gittinger <cg@exept.de>
parents: 3644
diff changeset
  4262
!
7ed096386bd3 refactored event dispatch loop;
Claus Gittinger <cg@exept.de>
parents: 3644
diff changeset
  4263
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4264
startDispatch
1719
c9d6b6fc6fb0 systems without a display fd install a checkBlock only and an fd of -1 (windows)
Claus Gittinger <cg@exept.de>
parents: 1717
diff changeset
  4265
    "create & start the display event dispatch process."
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4266
3645
7ed096386bd3 refactored event dispatch loop;
Claus Gittinger <cg@exept.de>
parents: 3644
diff changeset
  4267
    |p nm|
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4268
1185
f72f2a0d97cf code cleanup (obsolete pureEvent stuff removed)
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
  4269
    "/
f72f2a0d97cf code cleanup (obsolete pureEvent stuff removed)
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
  4270
    "/ only allow one dispatcher process per display
f72f2a0d97cf code cleanup (obsolete pureEvent stuff removed)
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
  4271
    "/
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4272
    dispatching ifTrue:[^ self].
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4273
    dispatching := true.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4274
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4275
    AllScreens isNil ifTrue:[
3691
9427485e2507 Fix previous change: Return in LicenceBox on startup crashed the system.
Stefan Vogel <sv@exept.de>
parents: 3690
diff changeset
  4276
	AllScreens := IdentitySet new:1
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4277
    ].
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4278
    AllScreens add:self.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4279
3645
7ed096386bd3 refactored event dispatch loop;
Claus Gittinger <cg@exept.de>
parents: 3644
diff changeset
  4280
    p := [ self setupDispatchLoop ] newProcess.
1185
f72f2a0d97cf code cleanup (obsolete pureEvent stuff removed)
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
  4281
f72f2a0d97cf code cleanup (obsolete pureEvent stuff removed)
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
  4282
    "/
f72f2a0d97cf code cleanup (obsolete pureEvent stuff removed)
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
  4283
    "/ give the process a nice name (for the processMonitor)
f72f2a0d97cf code cleanup (obsolete pureEvent stuff removed)
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
  4284
    "/
762
49440bdc3135 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
  4285
    (nm := self displayName) notNil ifTrue:[
3691
9427485e2507 Fix previous change: Return in LicenceBox on startup crashed the system.
Stefan Vogel <sv@exept.de>
parents: 3690
diff changeset
  4286
	nm := 'event dispatcher (' ,  nm , ')'.
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4287
    ] ifFalse:[
3691
9427485e2507 Fix previous change: Return in LicenceBox on startup crashed the system.
Stefan Vogel <sv@exept.de>
parents: 3690
diff changeset
  4288
	nm := 'event dispatcher'.
762
49440bdc3135 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
  4289
    ].
49440bdc3135 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
  4290
    p name:nm.
958
690ee3ab59cd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 957
diff changeset
  4291
    p priority:(Processor userInterruptPriority).
2969
c0c385edd320 explicit mark of the dispatcher process as a systemProcess.
Claus Gittinger <cg@exept.de>
parents: 2963
diff changeset
  4292
    p beSystemProcess.
958
690ee3ab59cd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 957
diff changeset
  4293
    dispatchProcess := p.
690ee3ab59cd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 957
diff changeset
  4294
    p resume.
2892
311e2ec176a9 New method #stopDispatcher
Stefan Vogel <sv@exept.de>
parents: 2885
diff changeset
  4295
!
311e2ec176a9 New method #stopDispatcher
Stefan Vogel <sv@exept.de>
parents: 2885
diff changeset
  4296
311e2ec176a9 New method #stopDispatcher
Stefan Vogel <sv@exept.de>
parents: 2885
diff changeset
  4297
stopDispatch
311e2ec176a9 New method #stopDispatcher
Stefan Vogel <sv@exept.de>
parents: 2885
diff changeset
  4298
    "stop the dispatch process"
311e2ec176a9 New method #stopDispatcher
Stefan Vogel <sv@exept.de>
parents: 2885
diff changeset
  4299
311e2ec176a9 New method #stopDispatcher
Stefan Vogel <sv@exept.de>
parents: 2885
diff changeset
  4300
    |p|
311e2ec176a9 New method #stopDispatcher
Stefan Vogel <sv@exept.de>
parents: 2885
diff changeset
  4301
2924
9b42e9bafdf7 Forget about cached Displays (cg)
Stefan Vogel <sv@exept.de>
parents: 2922
diff changeset
  4302
    LastActiveScreen == self ifTrue:[
3766
0b92741d06f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3747
diff changeset
  4303
	LastActiveScreen := nil.
0b92741d06f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3747
diff changeset
  4304
	LastActiveProcess := nil.
2924
9b42e9bafdf7 Forget about cached Displays (cg)
Stefan Vogel <sv@exept.de>
parents: 2922
diff changeset
  4305
    ].
9b42e9bafdf7 Forget about cached Displays (cg)
Stefan Vogel <sv@exept.de>
parents: 2922
diff changeset
  4306
2892
311e2ec176a9 New method #stopDispatcher
Stefan Vogel <sv@exept.de>
parents: 2885
diff changeset
  4307
    (p := dispatchProcess) notNil ifTrue:[
3766
0b92741d06f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3747
diff changeset
  4308
	dispatchProcess := nil.
0b92741d06f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3747
diff changeset
  4309
	p terminateWithAllSubprocessesInGroup.
0b92741d06f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3747
diff changeset
  4310
	p terminateNoSignal.   "/ just in case
2892
311e2ec176a9 New method #stopDispatcher
Stefan Vogel <sv@exept.de>
parents: 2885
diff changeset
  4311
    ]
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4312
! !
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4313
2669
7754d5eddaba event sending abstracted (partial common code for X & Win32)
Claus Gittinger <cg@exept.de>
parents: 2648
diff changeset
  4314
!DeviceWorkstation methodsFor:'event sending'!
7754d5eddaba event sending abstracted (partial common code for X & Win32)
Claus Gittinger <cg@exept.de>
parents: 2648
diff changeset
  4315
7754d5eddaba event sending abstracted (partial common code for X & Win32)
Claus Gittinger <cg@exept.de>
parents: 2648
diff changeset
  4316
sendKeyOrButtonEvent:typeSymbol x:xPos y:yPos keyOrButton:keySymCodeOrButtonNr state:stateMask toViewId:targetId
7754d5eddaba event sending abstracted (partial common code for X & Win32)
Claus Gittinger <cg@exept.de>
parents: 2648
diff changeset
  4317
    "send a keyPress/Release or buttonPress/Release event to some (possibly alien) view.
7754d5eddaba event sending abstracted (partial common code for X & Win32)
Claus Gittinger <cg@exept.de>
parents: 2648
diff changeset
  4318
     TypeSymbol must be one of: #keyPress, #keyRelease, #buttonPress , #buttonRelease.
7754d5eddaba event sending abstracted (partial common code for X & Win32)
Claus Gittinger <cg@exept.de>
parents: 2648
diff changeset
  4319
     For buttonEvents, the keySymCodeOrButtonNr must be the buttons number (1, 2 ...);
7754d5eddaba event sending abstracted (partial common code for X & Win32)
Claus Gittinger <cg@exept.de>
parents: 2648
diff changeset
  4320
     for key events, it can be either a symbol (as listen in X's keySyms)
7754d5eddaba event sending abstracted (partial common code for X & Win32)
Claus Gittinger <cg@exept.de>
parents: 2648
diff changeset
  4321
     or a numeric keysym code. If state is nil, the modifier bits (shift & control)
7754d5eddaba event sending abstracted (partial common code for X & Win32)
Claus Gittinger <cg@exept.de>
parents: 2648
diff changeset
  4322
     are computed from the keyboardMap - if non-nil, these are passed as modifierbits.
7754d5eddaba event sending abstracted (partial common code for X & Win32)
Claus Gittinger <cg@exept.de>
parents: 2648
diff changeset
  4323
     The non-nil case is the lowlevel entry, where state must include any shift/ctrl information
7754d5eddaba event sending abstracted (partial common code for X & Win32)
Claus Gittinger <cg@exept.de>
parents: 2648
diff changeset
  4324
     (not very user friendly)"
7754d5eddaba event sending abstracted (partial common code for X & Win32)
Claus Gittinger <cg@exept.de>
parents: 2648
diff changeset
  4325
7754d5eddaba event sending abstracted (partial common code for X & Win32)
Claus Gittinger <cg@exept.de>
parents: 2648
diff changeset
  4326
    self subclassResponsibility
7754d5eddaba event sending abstracted (partial common code for X & Win32)
Claus Gittinger <cg@exept.de>
parents: 2648
diff changeset
  4327
!
7754d5eddaba event sending abstracted (partial common code for X & Win32)
Claus Gittinger <cg@exept.de>
parents: 2648
diff changeset
  4328
7754d5eddaba event sending abstracted (partial common code for X & Win32)
Claus Gittinger <cg@exept.de>
parents: 2648
diff changeset
  4329
simulateKeyboardInput:aCharacterOrString inViewId:viewId
7754d5eddaba event sending abstracted (partial common code for X & Win32)
Claus Gittinger <cg@exept.de>
parents: 2648
diff changeset
  4330
    "send input to some other view, by simulating keyPress/keyRelease
7754d5eddaba event sending abstracted (partial common code for X & Win32)
Claus Gittinger <cg@exept.de>
parents: 2648
diff changeset
  4331
     events. 
7754d5eddaba event sending abstracted (partial common code for X & Win32)
Claus Gittinger <cg@exept.de>
parents: 2648
diff changeset
  4332
     Only a few control characters are supported.
7754d5eddaba event sending abstracted (partial common code for X & Win32)
Claus Gittinger <cg@exept.de>
parents: 2648
diff changeset
  4333
     Notice: not all alien views allow this kind of synthetic input;
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  4334
	     some simply ignore it."
2669
7754d5eddaba event sending abstracted (partial common code for X & Win32)
Claus Gittinger <cg@exept.de>
parents: 2648
diff changeset
  4335
7754d5eddaba event sending abstracted (partial common code for X & Win32)
Claus Gittinger <cg@exept.de>
parents: 2648
diff changeset
  4336
    |control code state|
7754d5eddaba event sending abstracted (partial common code for X & Win32)
Claus Gittinger <cg@exept.de>
parents: 2648
diff changeset
  4337
7754d5eddaba event sending abstracted (partial common code for X & Win32)
Claus Gittinger <cg@exept.de>
parents: 2648
diff changeset
  4338
    aCharacterOrString isString ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  4339
	aCharacterOrString do:[:char |
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  4340
	    self simulateKeyboardInput:char inViewId:viewId
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  4341
	].
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  4342
	^ self
2669
7754d5eddaba event sending abstracted (partial common code for X & Win32)
Claus Gittinger <cg@exept.de>
parents: 2648
diff changeset
  4343
    ].
7754d5eddaba event sending abstracted (partial common code for X & Win32)
Claus Gittinger <cg@exept.de>
parents: 2648
diff changeset
  4344
7754d5eddaba event sending abstracted (partial common code for X & Win32)
Claus Gittinger <cg@exept.de>
parents: 2648
diff changeset
  4345
    control := false.
7754d5eddaba event sending abstracted (partial common code for X & Win32)
Claus Gittinger <cg@exept.de>
parents: 2648
diff changeset
  4346
    code := aCharacterOrString asciiValue.
7754d5eddaba event sending abstracted (partial common code for X & Win32)
Claus Gittinger <cg@exept.de>
parents: 2648
diff changeset
  4347
7754d5eddaba event sending abstracted (partial common code for X & Win32)
Claus Gittinger <cg@exept.de>
parents: 2648
diff changeset
  4348
    (aCharacterOrString == Character cr) ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  4349
	code := #Return
2669
7754d5eddaba event sending abstracted (partial common code for X & Win32)
Claus Gittinger <cg@exept.de>
parents: 2648
diff changeset
  4350
    ] ifFalse:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  4351
	(aCharacterOrString == Character tab) ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  4352
	    code := #Tab 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  4353
	] ifFalse:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  4354
	    (aCharacterOrString == Character esc) ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  4355
		code := #Escape 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  4356
	    ]
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  4357
	]
2669
7754d5eddaba event sending abstracted (partial common code for X & Win32)
Claus Gittinger <cg@exept.de>
parents: 2648
diff changeset
  4358
    ].
7754d5eddaba event sending abstracted (partial common code for X & Win32)
Claus Gittinger <cg@exept.de>
parents: 2648
diff changeset
  4359
7754d5eddaba event sending abstracted (partial common code for X & Win32)
Claus Gittinger <cg@exept.de>
parents: 2648
diff changeset
  4360
    control ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  4361
	state := self ctrlModifierMask
2669
7754d5eddaba event sending abstracted (partial common code for X & Win32)
Claus Gittinger <cg@exept.de>
parents: 2648
diff changeset
  4362
    ].
7754d5eddaba event sending abstracted (partial common code for X & Win32)
Claus Gittinger <cg@exept.de>
parents: 2648
diff changeset
  4363
7754d5eddaba event sending abstracted (partial common code for X & Win32)
Claus Gittinger <cg@exept.de>
parents: 2648
diff changeset
  4364
7754d5eddaba event sending abstracted (partial common code for X & Win32)
Claus Gittinger <cg@exept.de>
parents: 2648
diff changeset
  4365
    "/ the stuff below should not be needed 
7754d5eddaba event sending abstracted (partial common code for X & Win32)
Claus Gittinger <cg@exept.de>
parents: 2648
diff changeset
  4366
    "/ (sendKeyOrButtonevent should be able to figure out things itself)
7754d5eddaba event sending abstracted (partial common code for X & Win32)
Claus Gittinger <cg@exept.de>
parents: 2648
diff changeset
  4367
    "/ however, on some linux systems it seems to not work correctly.
7754d5eddaba event sending abstracted (partial common code for X & Win32)
Claus Gittinger <cg@exept.de>
parents: 2648
diff changeset
  4368
    "/ Hopefully, this is correct ...
7754d5eddaba event sending abstracted (partial common code for X & Win32)
Claus Gittinger <cg@exept.de>
parents: 2648
diff changeset
  4369
7754d5eddaba event sending abstracted (partial common code for X & Win32)
Claus Gittinger <cg@exept.de>
parents: 2648
diff changeset
  4370
    code isNumber ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  4371
	code >= $A asciiValue ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  4372
	    code <= $Z asciiValue ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  4373
		state := self shiftModifierMask
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  4374
	    ]
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  4375
	]
2669
7754d5eddaba event sending abstracted (partial common code for X & Win32)
Claus Gittinger <cg@exept.de>
parents: 2648
diff changeset
  4376
    ].
7754d5eddaba event sending abstracted (partial common code for X & Win32)
Claus Gittinger <cg@exept.de>
parents: 2648
diff changeset
  4377
7754d5eddaba event sending abstracted (partial common code for X & Win32)
Claus Gittinger <cg@exept.de>
parents: 2648
diff changeset
  4378
    self sendKeyOrButtonEvent:#keyPress x:0 y:0 keyOrButton:code state:state toViewId:viewId.
7754d5eddaba event sending abstracted (partial common code for X & Win32)
Claus Gittinger <cg@exept.de>
parents: 2648
diff changeset
  4379
    self sendKeyOrButtonEvent:#keyRelease x:0 y:0 keyOrButton:code state:state toViewId:viewId
7754d5eddaba event sending abstracted (partial common code for X & Win32)
Claus Gittinger <cg@exept.de>
parents: 2648
diff changeset
  4380
7754d5eddaba event sending abstracted (partial common code for X & Win32)
Claus Gittinger <cg@exept.de>
parents: 2648
diff changeset
  4381
    "
7754d5eddaba event sending abstracted (partial common code for X & Win32)
Claus Gittinger <cg@exept.de>
parents: 2648
diff changeset
  4382
      sending input to some (possibly alien) view:
7754d5eddaba event sending abstracted (partial common code for X & Win32)
Claus Gittinger <cg@exept.de>
parents: 2648
diff changeset
  4383
7754d5eddaba event sending abstracted (partial common code for X & Win32)
Claus Gittinger <cg@exept.de>
parents: 2648
diff changeset
  4384
      |point id|
7754d5eddaba event sending abstracted (partial common code for X & Win32)
Claus Gittinger <cg@exept.de>
parents: 2648
diff changeset
  4385
7754d5eddaba event sending abstracted (partial common code for X & Win32)
Claus Gittinger <cg@exept.de>
parents: 2648
diff changeset
  4386
      point :=  Display pointFromUser.
7754d5eddaba event sending abstracted (partial common code for X & Win32)
Claus Gittinger <cg@exept.de>
parents: 2648
diff changeset
  4387
      id := Display viewIdFromPoint:point.
7754d5eddaba event sending abstracted (partial common code for X & Win32)
Claus Gittinger <cg@exept.de>
parents: 2648
diff changeset
  4388
      Display simulateKeyboardInput:'Hello_world' inViewId:id
7754d5eddaba event sending abstracted (partial common code for X & Win32)
Claus Gittinger <cg@exept.de>
parents: 2648
diff changeset
  4389
    "
7754d5eddaba event sending abstracted (partial common code for X & Win32)
Claus Gittinger <cg@exept.de>
parents: 2648
diff changeset
  4390
7754d5eddaba event sending abstracted (partial common code for X & Win32)
Claus Gittinger <cg@exept.de>
parents: 2648
diff changeset
  4391
    "Modified: 11.6.1996 / 10:59:42 / cg"
7754d5eddaba event sending abstracted (partial common code for X & Win32)
Claus Gittinger <cg@exept.de>
parents: 2648
diff changeset
  4392
! !
7754d5eddaba event sending abstracted (partial common code for X & Win32)
Claus Gittinger <cg@exept.de>
parents: 2648
diff changeset
  4393
1014
6be12d5937f5 removed obsolete font access methods
Claus Gittinger <cg@exept.de>
parents: 1011
diff changeset
  4394
!DeviceWorkstation methodsFor:'font helpers'!
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4395
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4396
ascentOf:aFontId
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4397
    "return the number of pixels above the base line of a font"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4398
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4399
    ^ self subclassResponsibility
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4400
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4401
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4402
descentOf:aFontId
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4403
    "return the number of pixels below the base line of a font"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4404
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4405
    ^ self subclassResponsibility
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4406
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4407
439
9948e62438f1 dummy font encoding & fullName support
Claus Gittinger <cg@exept.de>
parents: 423
diff changeset
  4408
encodingOf:aFontId
9948e62438f1 dummy font encoding & fullName support
Claus Gittinger <cg@exept.de>
parents: 423
diff changeset
  4409
    "return the characterEncoding of a font.
3992
0780e10218a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  4410
     Here, we assume an iso8859-1 encoding"
0780e10218a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  4411
3994
68f73cb27edb *** empty log message ***
ca
parents: 3992
diff changeset
  4412
    ^ #'iso8859-1'
439
9948e62438f1 dummy font encoding & fullName support
Claus Gittinger <cg@exept.de>
parents: 423
diff changeset
  4413
9948e62438f1 dummy font encoding & fullName support
Claus Gittinger <cg@exept.de>
parents: 423
diff changeset
  4414
    "Created: 23.2.1996 / 00:39:06 / cg"
9948e62438f1 dummy font encoding & fullName support
Claus Gittinger <cg@exept.de>
parents: 423
diff changeset
  4415
!
9948e62438f1 dummy font encoding & fullName support
Claus Gittinger <cg@exept.de>
parents: 423
diff changeset
  4416
1014
6be12d5937f5 removed obsolete font access methods
Claus Gittinger <cg@exept.de>
parents: 1011
diff changeset
  4417
maxAscentOf:aFontId
6be12d5937f5 removed obsolete font access methods
Claus Gittinger <cg@exept.de>
parents: 1011
diff changeset
  4418
    "return the number of pixels above the base line of the tallest character
6be12d5937f5 removed obsolete font access methods
Claus Gittinger <cg@exept.de>
parents: 1011
diff changeset
  4419
     in a font"
6be12d5937f5 removed obsolete font access methods
Claus Gittinger <cg@exept.de>
parents: 1011
diff changeset
  4420
6be12d5937f5 removed obsolete font access methods
Claus Gittinger <cg@exept.de>
parents: 1011
diff changeset
  4421
    ^ self subclassResponsibility
6be12d5937f5 removed obsolete font access methods
Claus Gittinger <cg@exept.de>
parents: 1011
diff changeset
  4422
!
6be12d5937f5 removed obsolete font access methods
Claus Gittinger <cg@exept.de>
parents: 1011
diff changeset
  4423
6be12d5937f5 removed obsolete font access methods
Claus Gittinger <cg@exept.de>
parents: 1011
diff changeset
  4424
maxDescentOf:aFontId
6be12d5937f5 removed obsolete font access methods
Claus Gittinger <cg@exept.de>
parents: 1011
diff changeset
  4425
    "return the number of pixels below the base line of the tallest character
6be12d5937f5 removed obsolete font access methods
Claus Gittinger <cg@exept.de>
parents: 1011
diff changeset
  4426
     in a font"
6be12d5937f5 removed obsolete font access methods
Claus Gittinger <cg@exept.de>
parents: 1011
diff changeset
  4427
6be12d5937f5 removed obsolete font access methods
Claus Gittinger <cg@exept.de>
parents: 1011
diff changeset
  4428
    ^ self subclassResponsibility
6be12d5937f5 removed obsolete font access methods
Claus Gittinger <cg@exept.de>
parents: 1011
diff changeset
  4429
!
6be12d5937f5 removed obsolete font access methods
Claus Gittinger <cg@exept.de>
parents: 1011
diff changeset
  4430
6be12d5937f5 removed obsolete font access methods
Claus Gittinger <cg@exept.de>
parents: 1011
diff changeset
  4431
maxWidthOfFont:aFontId
6be12d5937f5 removed obsolete font access methods
Claus Gittinger <cg@exept.de>
parents: 1011
diff changeset
  4432
    "return the width in pixels of the widest character a specific font"
6be12d5937f5 removed obsolete font access methods
Claus Gittinger <cg@exept.de>
parents: 1011
diff changeset
  4433
6be12d5937f5 removed obsolete font access methods
Claus Gittinger <cg@exept.de>
parents: 1011
diff changeset
  4434
    ^ self subclassResponsibility
6be12d5937f5 removed obsolete font access methods
Claus Gittinger <cg@exept.de>
parents: 1011
diff changeset
  4435
!
6be12d5937f5 removed obsolete font access methods
Claus Gittinger <cg@exept.de>
parents: 1011
diff changeset
  4436
6be12d5937f5 removed obsolete font access methods
Claus Gittinger <cg@exept.de>
parents: 1011
diff changeset
  4437
minWidthOfFont:aFontId
6be12d5937f5 removed obsolete font access methods
Claus Gittinger <cg@exept.de>
parents: 1011
diff changeset
  4438
    "return the width in pixels of the smallest character a specific font"
6be12d5937f5 removed obsolete font access methods
Claus Gittinger <cg@exept.de>
parents: 1011
diff changeset
  4439
6be12d5937f5 removed obsolete font access methods
Claus Gittinger <cg@exept.de>
parents: 1011
diff changeset
  4440
    ^ self subclassResponsibility
6be12d5937f5 removed obsolete font access methods
Claus Gittinger <cg@exept.de>
parents: 1011
diff changeset
  4441
! !
6be12d5937f5 removed obsolete font access methods
Claus Gittinger <cg@exept.de>
parents: 1011
diff changeset
  4442
6be12d5937f5 removed obsolete font access methods
Claus Gittinger <cg@exept.de>
parents: 1011
diff changeset
  4443
!DeviceWorkstation methodsFor:'font stuff'!
6be12d5937f5 removed obsolete font access methods
Claus Gittinger <cg@exept.de>
parents: 1011
diff changeset
  4444
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4445
facesInFamily:aFamilyName
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4446
    "return a set of all available font faces in aFamily on this display"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4447
465
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4448
    ^ self facesInFamily:aFamilyName filtering:nil 
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4449
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4450
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4451
    "
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4452
     Display facesInFamily:'times'
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4453
     Display facesInFamily:'fixed'
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4454
    "
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4455
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4456
    "Modified: 27.2.1996 / 01:33:47 / cg"
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4457
!
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4458
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4459
facesInFamily:aFamilyName filtering:filterBlock
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4460
    "return a set of all available font faces in aFamily on this display.
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4461
     But only those matching filterBlock (if nonNil)."
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4462
479
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4463
    |fonts|
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4464
3419
04d77587de17 Do not return font infos as sorted collections
Stefan Vogel <sv@exept.de>
parents: 3415
diff changeset
  4465
    fonts := self fontsInFamily:aFamilyName 
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  4466
		  filtering:[:f| f face notNil and:[filterBlock isNil or:[filterBlock value:f]]].
479
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4467
    fonts size == 0 ifTrue:[^ nil].
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4468
3419
04d77587de17 Do not return font infos as sorted collections
Stefan Vogel <sv@exept.de>
parents: 3415
diff changeset
  4469
    ^ fonts collect:[:descr | descr face]
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4470
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4471
    "
465
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4472
     Display facesInFamily:'fixed' filtering:[:f |
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  4473
	f encoding notNil and:[f encoding startsWith:'jis']]
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4474
    "
465
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4475
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4476
    "Created: 27.2.1996 / 01:33:25 / cg"
479
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4477
    "Modified: 29.2.1996 / 04:29:01 / cg"
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4478
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4479
2220
0db8feaf7bcf added #flushListOfAvailableFonts for protocol completeness.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  4480
flushListOfAvailableFonts
0db8feaf7bcf added #flushListOfAvailableFonts for protocol completeness.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  4481
    "flush any cached font information - dummy here,
0db8feaf7bcf added #flushListOfAvailableFonts for protocol completeness.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  4482
     but should be implemented in subclasses, which keep
0db8feaf7bcf added #flushListOfAvailableFonts for protocol completeness.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  4483
     a list of available device fonts.
0db8feaf7bcf added #flushListOfAvailableFonts for protocol completeness.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  4484
     This should be flushed, to allow update whenever new fonts
0db8feaf7bcf added #flushListOfAvailableFonts for protocol completeness.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  4485
     are installed or the system-font-path changes."
0db8feaf7bcf added #flushListOfAvailableFonts for protocol completeness.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  4486
0db8feaf7bcf added #flushListOfAvailableFonts for protocol completeness.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  4487
    "Created: / 4.8.1998 / 16:52:13 / cg"
0db8feaf7bcf added #flushListOfAvailableFonts for protocol completeness.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  4488
!
0db8feaf7bcf added #flushListOfAvailableFonts for protocol completeness.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  4489
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4490
fontFamilies
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4491
    "return a set of all available font families on this display"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4492
465
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4493
    ^ self fontFamiliesFiltering:nil
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4494
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4495
    "
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4496
     Display fontFamilies
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4497
    "
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4498
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4499
    "Modified: 27.2.1996 / 01:31:14 / cg"
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4500
!
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4501
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4502
fontFamiliesFiltering:aFilterBlock
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4503
    "return a set of all available font families on this display,
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4504
     but only those matching aFilterBlock (if nonNil)."
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4505
479
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4506
    |fonts|
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4507
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4508
    fonts := self fontsFiltering:aFilterBlock.
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4509
    fonts size == 0 ifTrue:[^ nil].
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4510
3834
7c929f131457 code cleanup
Claus Gittinger <cg@exept.de>
parents: 3831
diff changeset
  4511
    ^ fonts collect:[:descr | descr family] thenSelect:[:family | family notNil]
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4512
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4513
    "
465
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4514
     Display fontFamiliesFiltering:[:f | 
3896
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  4515
	f encoding notNil and:[f encoding startsWith:'jis']]
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4516
    "
465
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4517
479
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4518
    "Modified: 29.2.1996 / 04:31:51 / cg"
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4519
!
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4520
3478
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  4521
fontMetricsOf:fontId
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  4522
    "return a fonts metrics info object"
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  4523
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  4524
    |info|
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  4525
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  4526
    info := DeviceWorkstation::DeviceFontMetrics new.
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  4527
    info
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  4528
      ascent:(self ascentOf:fontId)
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  4529
      descent:(self descentOf:fontId)
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  4530
      maxAscent:(self maxAscentOf:fontId)
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  4531
      maxDescent:(self maxDescentOf:fontId)
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  4532
      minWidth:(self minWidthOfFont:fontId)
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  4533
      maxWidth:(self maxWidthOfFont:fontId)
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  4534
      avgWidth:(self widthOf:' ' inFont:fontId).
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  4535
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  4536
    ^ info
991
b3a0b903bd7f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 976
diff changeset
  4537
!
b3a0b903bd7f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 976
diff changeset
  4538
1045
b03222053583 added query for a fonts real resolution (kludge for X)
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  4539
fontResolutionOf:fontId
b03222053583 added query for a fonts real resolution (kludge for X)
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  4540
    "return the resolution (as dpiX @ dpiY) of the font - this is usually the displays resolution,
b03222053583 added query for a fonts real resolution (kludge for X)
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  4541
     but due to errors in some XServer installations, some use 75dpi fonts on higher
b03222053583 added query for a fonts real resolution (kludge for X)
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  4542
     resolution displays and vice/versa."
b03222053583 added query for a fonts real resolution (kludge for X)
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  4543
b03222053583 added query for a fonts real resolution (kludge for X)
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  4544
    ^ self resolution
b03222053583 added query for a fonts real resolution (kludge for X)
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  4545
!
b03222053583 added query for a fonts real resolution (kludge for X)
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
  4546
479
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4547
fontsFiltering:aFilterBlock
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4548
    "return a set of all available font on this display,
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4549
     but only those matching aFilterBlock (if nonNil)."
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4550
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4551
    |allFonts fonts|
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4552
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4553
    allFonts := self listOfAvailableFonts.
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4554
    allFonts isNil ifTrue:[^ nil].
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4555
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4556
    fonts := Set new.
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4557
    allFonts do:[:fntDescr |
3896
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  4558
	(aFilterBlock isNil or:[aFilterBlock value:fntDescr]) ifTrue:[
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  4559
	    fonts add:fntDescr
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  4560
	]
479
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4561
    ].
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4562
    ^ fonts
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4563
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4564
    "
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4565
     Display fontsFiltering:[:f | 
3896
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  4566
	f encoding notNil and:[f encoding startsWith:'jis']]
479
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4567
    "
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4568
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4569
    "Modified: 29.2.1996 / 04:30:35 / cg"
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4570
!
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4571
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4572
fontsInFamily:aFamilyName face:aFaceName filtering:filter
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4573
    "return a set of all available fonts in aFamily/aFace on this display.
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4574
     But only thise matching filter (if nonNil)."
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4575
3834
7c929f131457 code cleanup
Claus Gittinger <cg@exept.de>
parents: 3831
diff changeset
  4576
    ^ self
3896
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  4577
	fontsFiltering:[:fntDescr |
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  4578
	    (aFamilyName match:fntDescr family) 
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  4579
	    and:[ (aFaceName match:fntDescr face)
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  4580
	    and:[ (filter isNil or:[filter value:fntDescr]) ]]
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  4581
	]
479
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4582
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4583
    "
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4584
     Display fontsInFamily:'fixed' face:'medium' filtering:[:f |
3896
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  4585
	f encoding notNil and:[f encoding startsWith:'jis']]   
479
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4586
    "
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4587
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4588
    "Created: 29.2.1996 / 04:32:56 / cg"
1796
9384026b7b20 allow matchPattern in #fontsWithFamily:*
Claus Gittinger <cg@exept.de>
parents: 1794
diff changeset
  4589
    "Modified: 30.6.1997 / 11:07:21 / cg"
479
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4590
!
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4591
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4592
fontsInFamily:aFamilyName face:aFaceName style:aStyleName filtering:filter
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4593
    "return a set of all available font in aFamily/aFace/aStyle
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4594
     on this display.
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4595
     But only those matching filter (if nonNIl)."
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4596
3834
7c929f131457 code cleanup
Claus Gittinger <cg@exept.de>
parents: 3831
diff changeset
  4597
    ^ self
3896
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  4598
	fontsFiltering:[:fntDescr |
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  4599
		(aFamilyName match:fntDescr family) 
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  4600
		and:[ (aFaceName match:fntDescr face) 
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  4601
		and:[ (aStyleName match:fntDescr style) 
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  4602
		and:[ (filter isNil or:[filter value:fntDescr]) ]]]
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  4603
	]
479
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4604
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4605
    "
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4606
     Display fontsInFamily:'fixed' face:'medium' style:'roman' filtering:[:f |
3896
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  4607
	f encoding notNil and:[f encoding startsWith:'jis']]
1796
9384026b7b20 allow matchPattern in #fontsWithFamily:*
Claus Gittinger <cg@exept.de>
parents: 1794
diff changeset
  4608
    "
9384026b7b20 allow matchPattern in #fontsWithFamily:*
Claus Gittinger <cg@exept.de>
parents: 1794
diff changeset
  4609
    "
9384026b7b20 allow matchPattern in #fontsWithFamily:*
Claus Gittinger <cg@exept.de>
parents: 1794
diff changeset
  4610
     Display fontsInFamily:'fixed' face:'*' style:'roman' filtering:[:f |
3896
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  4611
	f encoding notNil and:[f encoding startsWith:'jis']]  
479
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4612
    "
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4613
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4614
    "Created: 29.2.1996 / 04:25:30 / cg"
1796
9384026b7b20 allow matchPattern in #fontsWithFamily:*
Claus Gittinger <cg@exept.de>
parents: 1794
diff changeset
  4615
    "Modified: 30.6.1997 / 11:07:08 / cg"
479
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4616
!
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4617
3834
7c929f131457 code cleanup
Claus Gittinger <cg@exept.de>
parents: 3831
diff changeset
  4618
fontsInFamily:aFamilyName filtering:filter
479
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4619
    "return a set of all available font in aFamily on this display.
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4620
     But only those matching filterBlock (if nonNil)."
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4621
3834
7c929f131457 code cleanup
Claus Gittinger <cg@exept.de>
parents: 3831
diff changeset
  4622
    ^ self
3896
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  4623
	fontsFiltering:[:fntDescr |
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  4624
	    (aFamilyName match:fntDescr family) 
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  4625
	    and:[ (filter isNil or:[filter value:fntDescr]) ]
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  4626
	]
479
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4627
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4628
    "
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4629
     Display fontsInFamily:'fixed' filtering:[:f |
3896
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  4630
	f encoding notNil and:[f encoding startsWith:'jis']]
1796
9384026b7b20 allow matchPattern in #fontsWithFamily:*
Claus Gittinger <cg@exept.de>
parents: 1794
diff changeset
  4631
    "
9384026b7b20 allow matchPattern in #fontsWithFamily:*
Claus Gittinger <cg@exept.de>
parents: 1794
diff changeset
  4632
    "
9384026b7b20 allow matchPattern in #fontsWithFamily:*
Claus Gittinger <cg@exept.de>
parents: 1794
diff changeset
  4633
     Display fontsInFamily:'*' filtering:[:f |
3896
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  4634
	f encoding notNil and:[f encoding startsWith:'jis']] 
1796
9384026b7b20 allow matchPattern in #fontsWithFamily:*
Claus Gittinger <cg@exept.de>
parents: 1794
diff changeset
  4635
    "
9384026b7b20 allow matchPattern in #fontsWithFamily:*
Claus Gittinger <cg@exept.de>
parents: 1794
diff changeset
  4636
479
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4637
    "Created: 29.2.1996 / 04:27:49 / cg"
1796
9384026b7b20 allow matchPattern in #fontsWithFamily:*
Claus Gittinger <cg@exept.de>
parents: 1794
diff changeset
  4638
    "Modified: 30.6.1997 / 11:06:36 / cg"
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4639
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4640
3415
5318d7f58d35 Rename #fullNameOf: to #fullFontNameOf:
Stefan Vogel <sv@exept.de>
parents: 3413
diff changeset
  4641
fullFontNameOf:aFontId
439
9948e62438f1 dummy font encoding & fullName support
Claus Gittinger <cg@exept.de>
parents: 423
diff changeset
  4642
    "return the full name of a font.
9948e62438f1 dummy font encoding & fullName support
Claus Gittinger <cg@exept.de>
parents: 423
diff changeset
  4643
     Here, we return nil, not knowing anything about fonts"
9948e62438f1 dummy font encoding & fullName support
Claus Gittinger <cg@exept.de>
parents: 423
diff changeset
  4644
9948e62438f1 dummy font encoding & fullName support
Claus Gittinger <cg@exept.de>
parents: 423
diff changeset
  4645
    ^ nil
9948e62438f1 dummy font encoding & fullName support
Claus Gittinger <cg@exept.de>
parents: 423
diff changeset
  4646
9948e62438f1 dummy font encoding & fullName support
Claus Gittinger <cg@exept.de>
parents: 423
diff changeset
  4647
    "Created: 23.2.1996 / 00:43:19 / cg"
9948e62438f1 dummy font encoding & fullName support
Claus Gittinger <cg@exept.de>
parents: 423
diff changeset
  4648
!
9948e62438f1 dummy font encoding & fullName support
Claus Gittinger <cg@exept.de>
parents: 423
diff changeset
  4649
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4650
getDefaultFont
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4651
    "return a default font id 
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4652
     - used when class Font cannot find anything usable"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4653
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4654
    ^ self subclassResponsibility
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4655
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4656
2854
50a01bc5e535 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2853
diff changeset
  4657
getFontWithFamily:familyString face:faceString style:styleString size:sizeArg encoding:encodingSym
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4658
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4659
    "try to get the specified font, return id.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4660
     If not available, try next smaller font. 
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4661
     If no font fits, return nil"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4662
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4663
    ^ self subclassResponsibility
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4664
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4665
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4666
listOfAvailableFonts
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4667
    "return a list containing all fonts on this display.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4668
     The returned list is an array of 4-element arrays, each
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4669
     containing family, face, style, size and encoding."
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4670
535
bff0f0248f93 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  4671
    ^ self subclassResponsibility
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4672
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4673
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4674
releaseFont:aFontId
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4675
    "free a font"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4676
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4677
    ^ self subclassResponsibility
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4678
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4679
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4680
sizesInFamily:aFamilyName face:aFaceName style:aStyleName
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4681
    "return a set of all available font sizes in aFamily/aFace/aStyle
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4682
     on this display"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4683
465
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4684
    ^ self sizesInFamily:aFamilyName face:aFaceName style:aStyleName filtering:nil
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4685
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4686
    "
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4687
     Display sizesInFamily:'times' face:'medium' style:'italic'
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4688
    "
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4689
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4690
    "Modified: 27.2.1996 / 01:38:42 / cg"
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4691
!
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4692
3419
04d77587de17 Do not return font infos as sorted collections
Stefan Vogel <sv@exept.de>
parents: 3415
diff changeset
  4693
sizesInFamily:aFamilyName face:aFaceName style:aStyleName filtering:filterBlock
465
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4694
    "return a set of all available font sizes in aFamily/aFace/aStyle
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4695
     on this display.
3419
04d77587de17 Do not return font infos as sorted collections
Stefan Vogel <sv@exept.de>
parents: 3415
diff changeset
  4696
     But only those matching filterBlock (if notNil)."
465
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4697
479
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4698
    |fonts|
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4699
3419
04d77587de17 Do not return font infos as sorted collections
Stefan Vogel <sv@exept.de>
parents: 3415
diff changeset
  4700
    fonts := self fontsInFamily:aFamilyName face:aFaceName style:aStyleName 
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  4701
		  filtering:[:f| f size notNil and:[filterBlock isNil or:[filterBlock value:f]]].
479
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4702
    fonts size == 0 ifTrue:[^ nil].
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4703
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4704
    ^ fonts collect:[:descr | descr size].
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4705
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4706
    "
465
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4707
     Display sizesInFamily:'fixed' face:'medium' style:'roman' filtering:[:f |
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  4708
	f encoding notNil and:[f encoding startsWith:'jis']]
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4709
    "
465
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4710
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4711
    "Created: 27.2.1996 / 01:37:56 / cg"
479
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4712
    "Modified: 29.2.1996 / 04:26:52 / cg"
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4713
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4714
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4715
stylesInFamily:aFamilyName face:aFaceName
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4716
    "return a set of all available font styles in aFamily/aFace on this display"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4717
465
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4718
    ^ self stylesInFamily:aFamilyName face:aFaceName filtering:nil 
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4719
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4720
    "
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4721
     Display stylesInFamily:'times' face:'medium'
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4722
     Display stylesInFamily:'times' face:'bold'
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4723
    "
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4724
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4725
    "Modified: 27.2.1996 / 01:35:43 / cg"
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4726
!
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4727
3419
04d77587de17 Do not return font infos as sorted collections
Stefan Vogel <sv@exept.de>
parents: 3415
diff changeset
  4728
stylesInFamily:aFamilyName face:aFaceName filtering:filterBlock
465
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4729
    "return a set of all available font styles in aFamily/aFace on this display.
3419
04d77587de17 Do not return font infos as sorted collections
Stefan Vogel <sv@exept.de>
parents: 3415
diff changeset
  4730
     But only thise matching filterBlock (if notNil)."
465
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4731
479
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4732
    |fonts|
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4733
3834
7c929f131457 code cleanup
Claus Gittinger <cg@exept.de>
parents: 3831
diff changeset
  4734
    fonts := self 
3896
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  4735
		fontsInFamily:aFamilyName face:aFaceName
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  4736
		filtering:[:f| 
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  4737
				f style notNil 
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  4738
				and:[filterBlock isNil or:[filterBlock value:f]]
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  4739
			  ].
479
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4740
    fonts size == 0 ifTrue:[^ nil].
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4741
3419
04d77587de17 Do not return font infos as sorted collections
Stefan Vogel <sv@exept.de>
parents: 3415
diff changeset
  4742
    ^ fonts collect:[:descr | descr style]
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4743
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4744
    "
465
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4745
     Display stylesInFamily:'fixed' face:'medium' filtering:[:f |
3896
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  4746
	f encoding notNil and:[f encoding startsWith:'jis']]
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4747
    "
465
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4748
731d2d077883 added filter for font-extraction methods
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
  4749
    "Created: 27.2.1996 / 01:35:22 / cg"
479
a1ec90f1dc5c more & better fontSelection stuff
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  4750
    "Modified: 29.2.1996 / 04:33:59 / cg"
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4751
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4752
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4753
widthOf:aString from:index1 to:index2 inFont:aFontId
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4754
    "return the width in pixels of a substring in a specific font"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4755
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4756
    ^ self subclassResponsibility
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4757
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4758
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4759
widthOf:aString inFont:aFontId
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4760
    "return the width in pixels of a string in a specific font"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4761
1014
6be12d5937f5 removed obsolete font access methods
Claus Gittinger <cg@exept.de>
parents: 1011
diff changeset
  4762
    ^ self widthOf:aString from:1 to:(aString size) inFont:aFontId
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4763
! !
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4764
3177
8aa3c800394a category rename
Claus Gittinger <cg@exept.de>
parents: 3163
diff changeset
  4765
!DeviceWorkstation methodsFor:'grabbing'!
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4766
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4767
activeKeyboardGrab
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4768
    "return the view, which currently has the keyboard grabbed,
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4769
     or nil, if there is none"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4770
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4771
    ^ activeKeyboardGrab
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4772
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4773
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4774
activePointerGrab
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4775
    "return the view, which currently has the pointer grabbed,
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4776
     or nil, if there is none"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4777
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4778
    ^ activePointerGrab
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4779
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4780
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4781
grabKeyboardIn:aWindowId
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4782
    "grab the keyboard - all keyboard input will be sent to the view
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4783
     with id aWindowId"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4784
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4785
    ^ self subclassResponsibility
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4786
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4787
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4788
grabKeyboardInView:aView
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4789
    "grab the keyboard - all keyboard input will be sent to aView.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4790
     Return true if ok, false if it failed for some reason."
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4791
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4792
    activeKeyboardGrab notNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  4793
	self ungrabKeyboard.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  4794
	activeKeyboardGrab := nil
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4795
    ].
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4796
    (self grabKeyboardIn:(aView id)) ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  4797
	activeKeyboardGrab := aView.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  4798
	^ true
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4799
    ].
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4800
    ^ false
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4801
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4802
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4803
grabPointerIn:aWindowId
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4804
    "grap the pointer; all pointer events will be reported to the view
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4805
     with id aWindowId. Return true if ok, false if it failed for some reason."
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4806
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4807
    ^ self grabPointerIn:aWindowId withCursor:nil pointerMode:#async keyboardMode:#sync confineTo:nil
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4808
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4809
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4810
grabPointerIn:aWindowId withCursor:cursorId pointerMode:pMode keyboardMode:kMode confineTo:confineId
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4811
    "grap the pointer - all pointer events will be reported to aWindowId. The cursor will be set to cursorId
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4812
     for the duration of the grab. For pMode/kMode, see X documentation. The pointer is restricted to
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4813
     confineId - if non-nil."
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4814
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4815
    ^ self subclassResponsibility
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4816
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4817
3091
707f8b9fda46 restore oldGrab in #xxxFromUser
ca
parents: 3078
diff changeset
  4818
grabPointerIn:aWindowId withCursorId:aCursorIdOrNil
707f8b9fda46 restore oldGrab in #xxxFromUser
ca
parents: 3078
diff changeset
  4819
    "grap the pointer; all pointer events will be reported to the view
707f8b9fda46 restore oldGrab in #xxxFromUser
ca
parents: 3078
diff changeset
  4820
     with id aWindowId. Return true if ok, false if it failed for some reason."
707f8b9fda46 restore oldGrab in #xxxFromUser
ca
parents: 3078
diff changeset
  4821
707f8b9fda46 restore oldGrab in #xxxFromUser
ca
parents: 3078
diff changeset
  4822
    ^ self grabPointerIn:aWindowId withCursor:aCursorIdOrNil pointerMode:#async keyboardMode:#sync confineTo:nil
707f8b9fda46 restore oldGrab in #xxxFromUser
ca
parents: 3078
diff changeset
  4823
!
707f8b9fda46 restore oldGrab in #xxxFromUser
ca
parents: 3078
diff changeset
  4824
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4825
grabPointerInView:aView
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4826
    "grap the pointer; all pointer events will be reported to
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4827
     aView. Return true if ok, false if it failed for some reason."
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4828
3694
6cb1198151d2 common code eliminated
Claus Gittinger <cg@exept.de>
parents: 3691
diff changeset
  4829
    ^ self grabPointerInView:aView withCursor:nil
6cb1198151d2 common code eliminated
Claus Gittinger <cg@exept.de>
parents: 3691
diff changeset
  4830
!
6cb1198151d2 common code eliminated
Claus Gittinger <cg@exept.de>
parents: 3691
diff changeset
  4831
6cb1198151d2 common code eliminated
Claus Gittinger <cg@exept.de>
parents: 3691
diff changeset
  4832
grabPointerInView:aView withCursor:aCursorOrNil
3091
707f8b9fda46 restore oldGrab in #xxxFromUser
ca
parents: 3078
diff changeset
  4833
    "grap the pointer; all pointer events will be reported to
707f8b9fda46 restore oldGrab in #xxxFromUser
ca
parents: 3078
diff changeset
  4834
     aView. Return true if ok, false if it failed for some reason."
707f8b9fda46 restore oldGrab in #xxxFromUser
ca
parents: 3078
diff changeset
  4835
3694
6cb1198151d2 common code eliminated
Claus Gittinger <cg@exept.de>
parents: 3691
diff changeset
  4836
    |cId vId ok|
3091
707f8b9fda46 restore oldGrab in #xxxFromUser
ca
parents: 3078
diff changeset
  4837
707f8b9fda46 restore oldGrab in #xxxFromUser
ca
parents: 3078
diff changeset
  4838
    activePointerGrab notNil ifTrue:[
3766
0b92741d06f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3747
diff changeset
  4839
	self ungrabPointer.
0b92741d06f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3747
diff changeset
  4840
	activePointerGrab := nil
3694
6cb1198151d2 common code eliminated
Claus Gittinger <cg@exept.de>
parents: 3691
diff changeset
  4841
    ].
6cb1198151d2 common code eliminated
Claus Gittinger <cg@exept.de>
parents: 3691
diff changeset
  4842
    vId := aView id.
6cb1198151d2 common code eliminated
Claus Gittinger <cg@exept.de>
parents: 3691
diff changeset
  4843
    aCursorOrNil notNil ifTrue:[
3766
0b92741d06f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3747
diff changeset
  4844
	cId := aCursorOrNil id.
0b92741d06f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3747
diff changeset
  4845
	ok := self grabPointerIn:vId withCursorId:cId.
3694
6cb1198151d2 common code eliminated
Claus Gittinger <cg@exept.de>
parents: 3691
diff changeset
  4846
    ] ifFalse:[
3766
0b92741d06f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3747
diff changeset
  4847
	ok := self grabPointerIn:vId.
3694
6cb1198151d2 common code eliminated
Claus Gittinger <cg@exept.de>
parents: 3691
diff changeset
  4848
    ].
6cb1198151d2 common code eliminated
Claus Gittinger <cg@exept.de>
parents: 3691
diff changeset
  4849
6cb1198151d2 common code eliminated
Claus Gittinger <cg@exept.de>
parents: 3691
diff changeset
  4850
    ok ifTrue:[
3766
0b92741d06f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3747
diff changeset
  4851
	activePointerGrab := aView.
0b92741d06f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3747
diff changeset
  4852
	^ true
3091
707f8b9fda46 restore oldGrab in #xxxFromUser
ca
parents: 3078
diff changeset
  4853
    ].
707f8b9fda46 restore oldGrab in #xxxFromUser
ca
parents: 3078
diff changeset
  4854
    ^ false
707f8b9fda46 restore oldGrab in #xxxFromUser
ca
parents: 3078
diff changeset
  4855
!
707f8b9fda46 restore oldGrab in #xxxFromUser
ca
parents: 3078
diff changeset
  4856
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4857
setActivePointerGrab:aView
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4858
    "DO NOT USE. private kludge - will vanish"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4859
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4860
    activePointerGrab := aView
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4861
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4862
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4863
ungrabKeyboard
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4864
    "release the keyboard"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4865
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4866
    ^ self subclassResponsibility
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4867
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4868
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4869
ungrabPointer
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4870
    "release the pointer"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4871
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4872
    ^ self subclassResponsibility
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4873
! !
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4874
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4875
!DeviceWorkstation methodsFor:'graphic context stuff'!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4876
1710
df5f8609825d win changes (pass drawableId to clip methods)
Claus Gittinger <cg@exept.de>
parents: 1708
diff changeset
  4877
noClipIn:aDrawableId gc:aGCId
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4878
    "disable clipping rectangle"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4879
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4880
    ^ self subclassResponsibility
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4881
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4882
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4883
setBackground:bgColorIndex in:aGCId
3528
0685e8772b51 setForegroundColor/setBackgroundColor in gc added
james
parents: 3517
diff changeset
  4884
    "set background color-index to be drawn with"
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4885
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4886
    ^ self subclassResponsibility
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4887
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4888
3597
322d40d45f02 fix #setForegroundColor: ans setBackgroundColor: for non-device colors
Stefan Vogel <sv@exept.de>
parents: 3572
diff changeset
  4889
setBackgroundColor:color in:aGCId
3528
0685e8772b51 setForegroundColor/setBackgroundColor in gc added
james
parents: 3517
diff changeset
  4890
    "set background color to be drawn with"
0685e8772b51 setForegroundColor/setBackgroundColor in gc added
james
parents: 3517
diff changeset
  4891
0685e8772b51 setForegroundColor/setBackgroundColor in gc added
james
parents: 3517
diff changeset
  4892
    |colorId deviceColor|
0685e8772b51 setForegroundColor/setBackgroundColor in gc added
james
parents: 3517
diff changeset
  4893
3597
322d40d45f02 fix #setForegroundColor: ans setBackgroundColor: for non-device colors
Stefan Vogel <sv@exept.de>
parents: 3572
diff changeset
  4894
    (color isOnDevice:self) ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  4895
	colorId := color colorId.
3597
322d40d45f02 fix #setForegroundColor: ans setBackgroundColor: for non-device colors
Stefan Vogel <sv@exept.de>
parents: 3572
diff changeset
  4896
    ] ifFalse:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  4897
	deviceColor := color onDevice:self.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  4898
	deviceColor notNil ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  4899
	    colorId := deviceColor colorId.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  4900
	]
3528
0685e8772b51 setForegroundColor/setBackgroundColor in gc added
james
parents: 3517
diff changeset
  4901
    ].
0685e8772b51 setForegroundColor/setBackgroundColor in gc added
james
parents: 3517
diff changeset
  4902
    colorId isNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  4903
	'DeviceWorkstation [warning]: could not set bg color' infoPrintCR.
3528
0685e8772b51 setForegroundColor/setBackgroundColor in gc added
james
parents: 3517
diff changeset
  4904
    ] ifFalse:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  4905
	self setBackground:colorId in:aGCId.
3528
0685e8772b51 setForegroundColor/setBackgroundColor in gc added
james
parents: 3517
diff changeset
  4906
    ]
0685e8772b51 setForegroundColor/setBackgroundColor in gc added
james
parents: 3517
diff changeset
  4907
!
0685e8772b51 setForegroundColor/setBackgroundColor in gc added
james
parents: 3517
diff changeset
  4908
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4909
setBitmapMask:aBitmapId in:aGCId
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4910
    "set or clear the drawing mask - a bitmap mask using current fg/bg"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4911
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4912
    ^ self subclassResponsibility
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4913
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4914
1682
4cee768638e1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1677
diff changeset
  4915
setClipByChildren:aBool in:aDrawableID gc:aGCId
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4916
    "enable/disable drawing into child views"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4917
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4918
    ^ self subclassResponsibility
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4919
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4920
1710
df5f8609825d win changes (pass drawableId to clip methods)
Claus Gittinger <cg@exept.de>
parents: 1708
diff changeset
  4921
setClipX:clipX y:clipY width:clipWidth height:clipHeight in:drawableId gc:aGCId
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4922
    "clip to a rectangle"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4923
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4924
    ^ self subclassResponsibility
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4925
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4926
787
cc0b6b03fbe7 added setDashes: ...
Claus Gittinger <cg@exept.de>
parents: 783
diff changeset
  4927
setDashes:dashList dashOffset:offset in:aGCId
cc0b6b03fbe7 added setDashes: ...
Claus Gittinger <cg@exept.de>
parents: 783
diff changeset
  4928
    "set dash attributes.
cc0b6b03fbe7 added setDashes: ...
Claus Gittinger <cg@exept.de>
parents: 783
diff changeset
  4929
     Ignored here - it may be left unimplemented by some devices."
cc0b6b03fbe7 added setDashes: ...
Claus Gittinger <cg@exept.de>
parents: 783
diff changeset
  4930
cc0b6b03fbe7 added setDashes: ...
Claus Gittinger <cg@exept.de>
parents: 783
diff changeset
  4931
    ^ self subclassResponsibility
cc0b6b03fbe7 added setDashes: ...
Claus Gittinger <cg@exept.de>
parents: 783
diff changeset
  4932
cc0b6b03fbe7 added setDashes: ...
Claus Gittinger <cg@exept.de>
parents: 783
diff changeset
  4933
    "Created: 4.6.1996 / 18:50:38 / cg"
cc0b6b03fbe7 added setDashes: ...
Claus Gittinger <cg@exept.de>
parents: 783
diff changeset
  4934
    "Modified: 4.6.1996 / 19:05:22 / cg"
cc0b6b03fbe7 added setDashes: ...
Claus Gittinger <cg@exept.de>
parents: 783
diff changeset
  4935
!
cc0b6b03fbe7 added setDashes: ...
Claus Gittinger <cg@exept.de>
parents: 783
diff changeset
  4936
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4937
setFont:aFontId in:aGCId
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4938
    "set font to be drawn in"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4939
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4940
    ^ self subclassResponsibility
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4941
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4942
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4943
setForeground:fgColorIndex background:bgColorIndex in:aGCId
3528
0685e8772b51 setForegroundColor/setBackgroundColor in gc added
james
parents: 3517
diff changeset
  4944
    "set foreground and background color-indices to be drawn with"
0685e8772b51 setForegroundColor/setBackgroundColor in gc added
james
parents: 3517
diff changeset
  4945
0685e8772b51 setForegroundColor/setBackgroundColor in gc added
james
parents: 3517
diff changeset
  4946
    self setForeground:fgColorIndex in:aGCId.
0685e8772b51 setForegroundColor/setBackgroundColor in gc added
james
parents: 3517
diff changeset
  4947
    self setBackground:bgColorIndex in:aGCId.
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4948
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4949
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4950
setForeground:fgColorIndex in:aGCId
3528
0685e8772b51 setForegroundColor/setBackgroundColor in gc added
james
parents: 3517
diff changeset
  4951
    "set the foreground color-index to be drawn with"
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4952
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4953
    ^ self subclassResponsibility
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4954
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4955
3528
0685e8772b51 setForegroundColor/setBackgroundColor in gc added
james
parents: 3517
diff changeset
  4956
setForegroundColor:fgColor backgroundColor:bgColor in:aGCId
0685e8772b51 setForegroundColor/setBackgroundColor in gc added
james
parents: 3517
diff changeset
  4957
    "set foreground and background colors to be drawn with"
0685e8772b51 setForegroundColor/setBackgroundColor in gc added
james
parents: 3517
diff changeset
  4958
0685e8772b51 setForegroundColor/setBackgroundColor in gc added
james
parents: 3517
diff changeset
  4959
    self setForegroundColor:fgColor in:aGCId.
0685e8772b51 setForegroundColor/setBackgroundColor in gc added
james
parents: 3517
diff changeset
  4960
    self setBackgroundColor:bgColor in:aGCId.
0685e8772b51 setForegroundColor/setBackgroundColor in gc added
james
parents: 3517
diff changeset
  4961
!
0685e8772b51 setForegroundColor/setBackgroundColor in gc added
james
parents: 3517
diff changeset
  4962
3597
322d40d45f02 fix #setForegroundColor: ans setBackgroundColor: for non-device colors
Stefan Vogel <sv@exept.de>
parents: 3572
diff changeset
  4963
setForegroundColor:color in:aGCId
3528
0685e8772b51 setForegroundColor/setBackgroundColor in gc added
james
parents: 3517
diff changeset
  4964
    "set the foreground color to be drawn with"
0685e8772b51 setForegroundColor/setBackgroundColor in gc added
james
parents: 3517
diff changeset
  4965
0685e8772b51 setForegroundColor/setBackgroundColor in gc added
james
parents: 3517
diff changeset
  4966
    |colorId deviceColor|
0685e8772b51 setForegroundColor/setBackgroundColor in gc added
james
parents: 3517
diff changeset
  4967
3597
322d40d45f02 fix #setForegroundColor: ans setBackgroundColor: for non-device colors
Stefan Vogel <sv@exept.de>
parents: 3572
diff changeset
  4968
    (color isOnDevice:self) ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  4969
	colorId := color colorId.
3597
322d40d45f02 fix #setForegroundColor: ans setBackgroundColor: for non-device colors
Stefan Vogel <sv@exept.de>
parents: 3572
diff changeset
  4970
    ] ifFalse:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  4971
	deviceColor := color onDevice:self.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  4972
	deviceColor notNil ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  4973
	    colorId := deviceColor colorId.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  4974
	]
3528
0685e8772b51 setForegroundColor/setBackgroundColor in gc added
james
parents: 3517
diff changeset
  4975
    ].
0685e8772b51 setForegroundColor/setBackgroundColor in gc added
james
parents: 3517
diff changeset
  4976
    colorId isNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  4977
	'DeviceWorkstation [warning]: could not set fg color' infoPrintCR.
3528
0685e8772b51 setForegroundColor/setBackgroundColor in gc added
james
parents: 3517
diff changeset
  4978
    ] ifFalse:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  4979
	self setForeground:colorId in:aGCId.
3528
0685e8772b51 setForegroundColor/setBackgroundColor in gc added
james
parents: 3517
diff changeset
  4980
    ]
0685e8772b51 setForegroundColor/setBackgroundColor in gc added
james
parents: 3517
diff changeset
  4981
!
0685e8772b51 setForegroundColor/setBackgroundColor in gc added
james
parents: 3517
diff changeset
  4982
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4983
setFunction:aFunctionSymbol in:aGCId
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4984
    "set alu function to be drawn with"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4985
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4986
    ^ self subclassResponsibility
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4987
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4988
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4989
setGraphicsExposures:aBoolean in:aGCId
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4990
    "set or clear the graphics exposures flag"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4991
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4992
    ^ self subclassResponsibility
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4993
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4994
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4995
setLineWidth:aNumber style:lineStyle cap:capStyle join:joinStyle in:aGCId
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4996
    "set line attributes"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4997
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4998
    ^ self subclassResponsibility
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  4999
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5000
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5001
setMaskOriginX:orgX y:orgY in:aGCid
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5002
    "set the mask origin"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5003
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5004
    ^ self subclassResponsibility
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5005
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5006
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5007
setPixmapMask:aPixmapId in:aGCId
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5008
    "set or clear the drawing mask - a pixmap mask providing full color"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5009
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5010
    ^ self subclassResponsibility
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5011
! !
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5012
3883
4e01a59afccb method category rename
Claus Gittinger <cg@exept.de>
parents: 3880
diff changeset
  5013
!DeviceWorkstation methodsFor:'initialization & release'!
0
48194c26a46c Initial revision
claus
parents:
diff changeset
  5014
1973
fda63fa03595 preps for timeout handling
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  5015
brokenConnection
fda63fa03595 preps for timeout handling
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  5016
    "the connection to the display device was lost."
fda63fa03595 preps for timeout handling
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  5017
3770
9f2ef977834e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3766
diff changeset
  5018
    dispatching ifTrue:[
3896
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  5019
	'DeviceWorkstation [info]: finished dispatch (broken connection)' infoPrintCR.
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  5020
	dispatching := false.
3770
9f2ef977834e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3766
diff changeset
  5021
    ].
3208
2deb87a630ef Fix error handling
Stefan Vogel <sv@exept.de>
parents: 3193
diff changeset
  5022
    self emergencyCloseConnection.
1973
fda63fa03595 preps for timeout handling
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  5023
    displayId := nil.
fda63fa03595 preps for timeout handling
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  5024
2924
9b42e9bafdf7 Forget about cached Displays (cg)
Stefan Vogel <sv@exept.de>
parents: 2922
diff changeset
  5025
    LastActiveScreen == self ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5026
	LastActiveScreen := nil.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5027
	LastActiveProcess := nil.
2924
9b42e9bafdf7 Forget about cached Displays (cg)
Stefan Vogel <sv@exept.de>
parents: 2922
diff changeset
  5028
    ].
9b42e9bafdf7 Forget about cached Displays (cg)
Stefan Vogel <sv@exept.de>
parents: 2922
diff changeset
  5029
1973
fda63fa03595 preps for timeout handling
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  5030
    "/ tell all of my views about this.
fda63fa03595 preps for timeout handling
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  5031
    "/ first, all topViews get a notification ...
fda63fa03595 preps for timeout handling
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  5032
3148
909a1c3c2953 brokenConnection: wakeup the wGroup process to allow it detecting
Claus Gittinger <cg@exept.de>
parents: 3147
diff changeset
  5033
    self allViews do:[:aView |
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5034
	|wg sensor|
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5035
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5036
	aView isTopView ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5037
	    "/ notice: we must manually wakeup the
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5038
	    "/ windowGroup process here (it might be waiting on
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5039
	    "/ an event, and the destroy below is executed by
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5040
	    "/ another thread.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5041
	    "/ Otherwise, the windowGroup process would
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5042
	    "/ not terminate itself in this case.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5043
	    (wg := aView windowGroup) notNil ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5044
		sensor := wg sensor
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5045
	    ].
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5046
	    aView destroyed.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5047
	    sensor notNil ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5048
		sensor eventSemaphore signal.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5049
	    ].
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5050
	]
1973
fda63fa03595 preps for timeout handling
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  5051
    ].
fda63fa03595 preps for timeout handling
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  5052
fda63fa03595 preps for timeout handling
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  5053
    self releaseDeviceResources.
fda63fa03595 preps for timeout handling
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  5054
3148
909a1c3c2953 brokenConnection: wakeup the wGroup process to allow it detecting
Claus Gittinger <cg@exept.de>
parents: 3147
diff changeset
  5055
    "Modified: / 19.1.2000 / 10:36:02 / cg"
1973
fda63fa03595 preps for timeout handling
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  5056
!
fda63fa03595 preps for timeout handling
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  5057
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5058
close
3555
6ff09db833b0 terminate event process, when closed.
Claus Gittinger <cg@exept.de>
parents: 3529
diff changeset
  5059
    "close down connection to Display - usually never done for the main screen"
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5060
1196
40c9cbe53ac4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1194
diff changeset
  5061
    self releaseDeviceResources.
1194
b38e3cbe03b2 splitted close into #closeConnection and resource releasing #close.
Claus Gittinger <cg@exept.de>
parents: 1192
diff changeset
  5062
    self closeConnection.
3770
9f2ef977834e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3766
diff changeset
  5063
    dispatching ifTrue:[
3896
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  5064
	'DeviceWorkstation [info]: finished dispatch (close)' infoPrintCR.
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  5065
	dispatching := false.
3770
9f2ef977834e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3766
diff changeset
  5066
    ].
3565
1718cebba40b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3555
diff changeset
  5067
    dispatchProcess notNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5068
	dispatchProcess terminate.
3565
1718cebba40b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3555
diff changeset
  5069
    ].
1194
b38e3cbe03b2 splitted close into #closeConnection and resource releasing #close.
Claus Gittinger <cg@exept.de>
parents: 1192
diff changeset
  5070
b38e3cbe03b2 splitted close into #closeConnection and resource releasing #close.
Claus Gittinger <cg@exept.de>
parents: 1192
diff changeset
  5071
    "Modified: 13.1.1997 / 22:13:18 / cg"
b38e3cbe03b2 splitted close into #closeConnection and resource releasing #close.
Claus Gittinger <cg@exept.de>
parents: 1192
diff changeset
  5072
!
b38e3cbe03b2 splitted close into #closeConnection and resource releasing #close.
Claus Gittinger <cg@exept.de>
parents: 1192
diff changeset
  5073
b38e3cbe03b2 splitted close into #closeConnection and resource releasing #close.
Claus Gittinger <cg@exept.de>
parents: 1192
diff changeset
  5074
closeConnection
b38e3cbe03b2 splitted close into #closeConnection and resource releasing #close.
Claus Gittinger <cg@exept.de>
parents: 1192
diff changeset
  5075
    "close down connection to Display - usually never done"
b38e3cbe03b2 splitted close into #closeConnection and resource releasing #close.
Claus Gittinger <cg@exept.de>
parents: 1192
diff changeset
  5076
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5077
    ^ self subclassResponsibility
1194
b38e3cbe03b2 splitted close into #closeConnection and resource releasing #close.
Claus Gittinger <cg@exept.de>
parents: 1192
diff changeset
  5078
b38e3cbe03b2 splitted close into #closeConnection and resource releasing #close.
Claus Gittinger <cg@exept.de>
parents: 1192
diff changeset
  5079
    "Created: 13.1.1997 / 22:10:07 / cg"
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5080
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5081
3014
8891a63e066b emergencyClose
Claus Gittinger <cg@exept.de>
parents: 3013
diff changeset
  5082
emergencyCloseConnection
8891a63e066b emergencyClose
Claus Gittinger <cg@exept.de>
parents: 3013
diff changeset
  5083
    "close down connection to the Display in case of emergency;
8891a63e066b emergencyClose
Claus Gittinger <cg@exept.de>
parents: 3013
diff changeset
  5084
     this is usually invoked after an error and should not try to flush
8891a63e066b emergencyClose
Claus Gittinger <cg@exept.de>
parents: 3013
diff changeset
  5085
     any outstanding graphics requests - usually never done"
8891a63e066b emergencyClose
Claus Gittinger <cg@exept.de>
parents: 3013
diff changeset
  5086
8891a63e066b emergencyClose
Claus Gittinger <cg@exept.de>
parents: 3013
diff changeset
  5087
    ^ self close
8891a63e066b emergencyClose
Claus Gittinger <cg@exept.de>
parents: 3013
diff changeset
  5088
8891a63e066b emergencyClose
Claus Gittinger <cg@exept.de>
parents: 3013
diff changeset
  5089
    "Created: 13.1.1997 / 22:10:07 / cg"
8891a63e066b emergencyClose
Claus Gittinger <cg@exept.de>
parents: 3013
diff changeset
  5090
!
8891a63e066b emergencyClose
Claus Gittinger <cg@exept.de>
parents: 3013
diff changeset
  5091
2818
d5453b85243d added an exitOnLastClose instVar flag. (smc requirement)
Claus Gittinger <cg@exept.de>
parents: 2793
diff changeset
  5092
exitOnLastClose:aBoolean
d5453b85243d added an exitOnLastClose instVar flag. (smc requirement)
Claus Gittinger <cg@exept.de>
parents: 2793
diff changeset
  5093
    "set/clear the flag which controls if the
d5453b85243d added an exitOnLastClose instVar flag. (smc requirement)
Claus Gittinger <cg@exept.de>
parents: 2793
diff changeset
  5094
     event dispatching should stop when the last view is closed."
d5453b85243d added an exitOnLastClose instVar flag. (smc requirement)
Claus Gittinger <cg@exept.de>
parents: 2793
diff changeset
  5095
d5453b85243d added an exitOnLastClose instVar flag. (smc requirement)
Claus Gittinger <cg@exept.de>
parents: 2793
diff changeset
  5096
    self == Display ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5097
	ExitOnLastClose := aBoolean
2818
d5453b85243d added an exitOnLastClose instVar flag. (smc requirement)
Claus Gittinger <cg@exept.de>
parents: 2793
diff changeset
  5098
    ].
d5453b85243d added an exitOnLastClose instVar flag. (smc requirement)
Claus Gittinger <cg@exept.de>
parents: 2793
diff changeset
  5099
    exitOnLastClose := aBoolean
d5453b85243d added an exitOnLastClose instVar flag. (smc requirement)
Claus Gittinger <cg@exept.de>
parents: 2793
diff changeset
  5100
d5453b85243d added an exitOnLastClose instVar flag. (smc requirement)
Claus Gittinger <cg@exept.de>
parents: 2793
diff changeset
  5101
    "Modified: 23.4.1996 / 22:01:28 / cg"
d5453b85243d added an exitOnLastClose instVar flag. (smc requirement)
Claus Gittinger <cg@exept.de>
parents: 2793
diff changeset
  5102
!
d5453b85243d added an exitOnLastClose instVar flag. (smc requirement)
Claus Gittinger <cg@exept.de>
parents: 2793
diff changeset
  5103
3831
3469f195000d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3829
diff changeset
  5104
initializeDefaultKeyboardMappingsIn:aKeyboardMap
3469f195000d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3829
diff changeset
  5105
    aKeyboardMap bindValue:#Copy          to:#Cmdc.     "copy selection to buffer"
3469f195000d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3829
diff changeset
  5106
    aKeyboardMap bindValue:#Cut           to:#Cmdx.     "cut selection into buffer"
3469f195000d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3829
diff changeset
  5107
    aKeyboardMap bindValue:#Paste         to:#Cmdv.     "paste buffer or external selection"
3469f195000d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3829
diff changeset
  5108
3469f195000d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3829
diff changeset
  5109
    aKeyboardMap bindValue:#UserInterrupt to:#Ctrlc.    "interrupt window process"
3469f195000d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3829
diff changeset
  5110
!
3469f195000d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3829
diff changeset
  5111
2861
098094668b4b moved some init stuff from XWorkstat to here
Claus Gittinger <cg@exept.de>
parents: 2859
diff changeset
  5112
initializeDefaultValues
2866
8774c96b5bc0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2861
diff changeset
  5113
    isSlow := false.
8774c96b5bc0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2861
diff changeset
  5114
    motionEventCompression := true.
3630
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
  5115
    buttonTranslation isNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5116
	buttonTranslation := ButtonTranslation.
3630
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
  5117
    ].
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
  5118
    multiClickTimeDelta isNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5119
	multiClickTimeDelta := MultiClickTimeDelta.
3630
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
  5120
    ].
2867
482df0fb4034 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2866
diff changeset
  5121
    shiftDown := false.
482df0fb4034 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2866
diff changeset
  5122
    ctrlDown := false.
482df0fb4034 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2866
diff changeset
  5123
    metaDown := false.
482df0fb4034 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2866
diff changeset
  5124
    altDown := false.
482df0fb4034 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2866
diff changeset
  5125
2861
098094668b4b moved some init stuff from XWorkstat to here
Claus Gittinger <cg@exept.de>
parents: 2859
diff changeset
  5126
    self initializeModifierMappings
098094668b4b moved some init stuff from XWorkstat to here
Claus Gittinger <cg@exept.de>
parents: 2859
diff changeset
  5127
!
098094668b4b moved some init stuff from XWorkstat to here
Claus Gittinger <cg@exept.de>
parents: 2859
diff changeset
  5128
1196
40c9cbe53ac4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1194
diff changeset
  5129
initializeDeviceResources
40c9cbe53ac4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1194
diff changeset
  5130
    "initialize heavily used device resources - to avoid looking them up later"
40c9cbe53ac4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1194
diff changeset
  5131
1623
56c2fd4250c8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  5132
    blackColor isNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5133
	blackColor := Color black onDevice:self.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5134
	whiteColor := Color white onDevice:self.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5135
	Color getPrimaryColorsOn:self.
1623
56c2fd4250c8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1622
diff changeset
  5136
    ]
1369
aac4d7d4a6ba checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1352
diff changeset
  5137
aac4d7d4a6ba checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1352
diff changeset
  5138
    "Modified: 24.2.1997 / 22:07:50 / cg"
1196
40c9cbe53ac4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1194
diff changeset
  5139
!
40c9cbe53ac4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1194
diff changeset
  5140
2855
f1fca530bab1 moved signal creation up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 2854
diff changeset
  5141
initializeDeviceSignals
2983
33a985356bbd Fix X error handling
Stefan Vogel <sv@exept.de>
parents: 2978
diff changeset
  5142
    deviceErrorSignal := DeviceErrorSignal newSignal.
2855
f1fca530bab1 moved signal creation up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 2854
diff changeset
  5143
    deviceErrorSignal nameClass:self message:#deviceErrorSignal.
2983
33a985356bbd Fix X error handling
Stefan Vogel <sv@exept.de>
parents: 2978
diff changeset
  5144
    deviceIOErrorSignal := DeviceIOErrorSignal newSignal.
2855
f1fca530bab1 moved signal creation up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 2854
diff changeset
  5145
    deviceIOErrorSignal nameClass:self message:#deviceIOErrorSignal.
f1fca530bab1 moved signal creation up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 2854
diff changeset
  5146
!
f1fca530bab1 moved signal creation up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 2854
diff changeset
  5147
0
48194c26a46c Initial revision
claus
parents:
diff changeset
  5148
initializeFor:aDisplayOrNilForAny
48194c26a46c Initial revision
claus
parents:
diff changeset
  5149
    "initialize the receiver for a connection to a display. If the
48194c26a46c Initial revision
claus
parents:
diff changeset
  5150
     argument is non-nil, it should specify which workstation should be
48194c26a46c Initial revision
claus
parents:
diff changeset
  5151
     connected to (in a device specific manner). For X displays, this is
48194c26a46c Initial revision
claus
parents:
diff changeset
  5152
     to be the display-string i.e. hostname:displayNr.
48194c26a46c Initial revision
claus
parents:
diff changeset
  5153
     If the argument is nil,  connect to the default display."
48194c26a46c Initial revision
claus
parents:
diff changeset
  5154
71
6a42b2b115f8 *** empty log message ***
claus
parents: 57
diff changeset
  5155
    ^ self subclassResponsibility
0
48194c26a46c Initial revision
claus
parents:
diff changeset
  5156
!
48194c26a46c Initial revision
claus
parents:
diff changeset
  5157
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5158
initializeKeyboardMap
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5159
    "keystrokes from the server are translated via the keyboard map.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5160
     Untranslated keystrokes arrive either as characters, or symbols
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5161
     (which are the keySyms as symbol). The mapping table which is
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5162
     setup here, is used in sendKeyPress:... later.
2876
dbe1454f8539 allow for a device to suppress shadowViews.
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
  5163
     Here, an empty (no-translation) keyboard map is setup initially;
dbe1454f8539 allow for a device to suppress shadowViews.
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
  5164
     this is usually filled via the keyboard.rc startup file.
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5165
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5166
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5167
    keyboardMap isNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5168
	keyboardMap := KeyboardMap new.
3831
3469f195000d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3829
diff changeset
  5169
	self initializeDefaultKeyboardMappingsIn:keyboardMap
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5170
    ].
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5171
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5172
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5173
     no more setup here - moved everything out into 'display.rc' file
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5174
    "
0
48194c26a46c Initial revision
claus
parents:
diff changeset
  5175
!
48194c26a46c Initial revision
claus
parents:
diff changeset
  5176
2861
098094668b4b moved some init stuff from XWorkstat to here
Claus Gittinger <cg@exept.de>
parents: 2859
diff changeset
  5177
initializeModifierMappings
098094668b4b moved some init stuff from XWorkstat to here
Claus Gittinger <cg@exept.de>
parents: 2859
diff changeset
  5178
    shiftModifiers := ctrlModifiers := altModifiers := metaModifiers := nil.
098094668b4b moved some init stuff from XWorkstat to here
Claus Gittinger <cg@exept.de>
parents: 2859
diff changeset
  5179
098094668b4b moved some init stuff from XWorkstat to here
Claus Gittinger <cg@exept.de>
parents: 2859
diff changeset
  5180
    shiftModifiers := #(Shift_L Shift_R Shift).
098094668b4b moved some init stuff from XWorkstat to here
Claus Gittinger <cg@exept.de>
parents: 2859
diff changeset
  5181
    ctrlModifiers := #(Control_L Control_R Control).
098094668b4b moved some init stuff from XWorkstat to here
Claus Gittinger <cg@exept.de>
parents: 2859
diff changeset
  5182
    metaModifiers := #(Alt_L Meta_L Meta_R Meta).
098094668b4b moved some init stuff from XWorkstat to here
Claus Gittinger <cg@exept.de>
parents: 2859
diff changeset
  5183
    altModifiers := #(Alt_R Alt).
098094668b4b moved some init stuff from XWorkstat to here
Claus Gittinger <cg@exept.de>
parents: 2859
diff changeset
  5184
!
098094668b4b moved some init stuff from XWorkstat to here
Claus Gittinger <cg@exept.de>
parents: 2859
diff changeset
  5185
814
af7d16f05815 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  5186
initializeScreenProperties
af7d16f05815 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  5187
    "setup screen specific properties."
af7d16f05815 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  5188
885
07df2e77a8fe dont clobber the supportsDeepIcons flag
Claus Gittinger <cg@exept.de>
parents: 857
diff changeset
  5189
    supportsDeepIcons isNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5190
	supportsDeepIcons := false.
937
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  5191
    ].
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  5192
1768
d8948d9d18eb preps for fixGrayColors
Claus Gittinger <cg@exept.de>
parents: 1724
diff changeset
  5193
    fixColors := fixGrayColors := ditherColors := nil.
937
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  5194
    numFixRed := numFixGreen := numFixBlue := 0.
e4db13d571c0 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  5195
1622
35706c4ba17f get device colors early
Claus Gittinger <cg@exept.de>
parents: 1602
diff changeset
  5196
    "Modified: 21.4.1997 / 12:04:37 / cg"
814
af7d16f05815 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  5197
!
af7d16f05815 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 812
diff changeset
  5198
2997
dfffdde8ab34 lazy init of ViewStyle stuff
Stefan Vogel <sv@exept.de>
parents: 2983
diff changeset
  5199
initializeViewStyle
dfffdde8ab34 lazy init of ViewStyle stuff
Stefan Vogel <sv@exept.de>
parents: 2983
diff changeset
  5200
    "late viewStyle init - if no viewStyle has been read yet."
dfffdde8ab34 lazy init of ViewStyle stuff
Stefan Vogel <sv@exept.de>
parents: 2983
diff changeset
  5201
dfffdde8ab34 lazy init of ViewStyle stuff
Stefan Vogel <sv@exept.de>
parents: 2983
diff changeset
  5202
    View styleSheet isNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5203
	self class currentScreenQuerySignal answer:self do:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5204
	    View readStyleSheetAndUpdateAllStyleCaches
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5205
	]
2997
dfffdde8ab34 lazy init of ViewStyle stuff
Stefan Vogel <sv@exept.de>
parents: 2983
diff changeset
  5206
    ].
dfffdde8ab34 lazy init of ViewStyle stuff
Stefan Vogel <sv@exept.de>
parents: 2983
diff changeset
  5207
!
dfffdde8ab34 lazy init of ViewStyle stuff
Stefan Vogel <sv@exept.de>
parents: 2983
diff changeset
  5208
276
160e1410c537 entry to invalidate display connection during early initialization
Claus Gittinger <cg@exept.de>
parents: 261
diff changeset
  5209
invalidateConnection
609
c9847d4fa398 commentary
Claus Gittinger <cg@exept.de>
parents: 600
diff changeset
  5210
    "clear my connection handle - sent after an imageRestart to
c9847d4fa398 commentary
Claus Gittinger <cg@exept.de>
parents: 600
diff changeset
  5211
     forget about our previous life"
c9847d4fa398 commentary
Claus Gittinger <cg@exept.de>
parents: 600
diff changeset
  5212
276
160e1410c537 entry to invalidate display connection during early initialization
Claus Gittinger <cg@exept.de>
parents: 261
diff changeset
  5213
    displayId := nil
609
c9847d4fa398 commentary
Claus Gittinger <cg@exept.de>
parents: 600
diff changeset
  5214
c9847d4fa398 commentary
Claus Gittinger <cg@exept.de>
parents: 600
diff changeset
  5215
    "Modified: 24.4.1996 / 19:38:46 / cg"
276
160e1410c537 entry to invalidate display connection during early initialization
Claus Gittinger <cg@exept.de>
parents: 261
diff changeset
  5216
!
160e1410c537 entry to invalidate display connection during early initialization
Claus Gittinger <cg@exept.de>
parents: 261
diff changeset
  5217
0
48194c26a46c Initial revision
claus
parents:
diff changeset
  5218
reinitialize
3630
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
  5219
    "historic leftover (old subclasses call super reinitialize)"
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
  5220
!
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
  5221
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
  5222
reinitializeFor:aDisplayName
0
48194c26a46c Initial revision
claus
parents:
diff changeset
  5223
    "reinit after snapin"
48194c26a46c Initial revision
claus
parents:
diff changeset
  5224
3630
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
  5225
    |prevKnownViews "prevMapping" prevWidth prevHeight|
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
  5226
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
  5227
    "do subclass specific reinitialization"
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
  5228
    self reinitialize.
0
48194c26a46c Initial revision
claus
parents:
diff changeset
  5229
3239
a50a526d2396 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3236
diff changeset
  5230
    blackColor notNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5231
	blackColor releaseFromDevice. 
3239
a50a526d2396 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3236
diff changeset
  5232
    ].
a50a526d2396 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3236
diff changeset
  5233
    whiteColor notNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5234
	whiteColor releaseFromDevice.
3239
a50a526d2396 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3236
diff changeset
  5235
    ].
2846
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
  5236
    self releaseDeviceFonts.
2845
0794fef6db4a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
  5237
    self releaseDeviceCursors.
0794fef6db4a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2843
diff changeset
  5238
    self releaseDeviceColors.
3240
c93e33069fb5 color reinitialization when coming up on another device
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  5239
    Color flushDeviceColorsFor:self.
414
bf996c417cc8 flush device fonts early; allow selective flushing; catch errors during reinitialize of views
Claus Gittinger <cg@exept.de>
parents: 405
diff changeset
  5240
0
48194c26a46c Initial revision
claus
parents:
diff changeset
  5241
    displayId := nil.
51
bab0d5f83df3 *** empty log message ***
claus
parents: 46
diff changeset
  5242
    dispatching := false.
151
claus
parents: 146
diff changeset
  5243
    dispatchProcess := nil.
46
7b331e9012fd *** empty log message ***
claus
parents: 43
diff changeset
  5244
505
f939ab04e30c only adjust geometry of views at restart if the displays dimension has changed
Claus Gittinger <cg@exept.de>
parents: 492
diff changeset
  5245
    prevWidth := width.
f939ab04e30c only adjust geometry of views at restart if the displays dimension has changed
Claus Gittinger <cg@exept.de>
parents: 492
diff changeset
  5246
    prevHeight := height.
f939ab04e30c only adjust geometry of views at restart if the displays dimension has changed
Claus Gittinger <cg@exept.de>
parents: 492
diff changeset
  5247
46
7b331e9012fd *** empty log message ***
claus
parents: 43
diff changeset
  5248
"/    prevMapping := idToViewMapping.
7b331e9012fd *** empty log message ***
claus
parents: 43
diff changeset
  5249
"/    idToViewMapping := nil.
7b331e9012fd *** empty log message ***
claus
parents: 43
diff changeset
  5250
0
48194c26a46c Initial revision
claus
parents:
diff changeset
  5251
    prevKnownViews := knownViews.
2403
5ea6cb91c1e4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2390
diff changeset
  5252
    idToTableIndexMapping := nil.
0
48194c26a46c Initial revision
claus
parents:
diff changeset
  5253
    knownViews := nil.
48194c26a46c Initial revision
claus
parents:
diff changeset
  5254
    knownIds := nil.
1267
a27c2daaea25 remember lastView/id when searching view by id - helps often
Claus Gittinger <cg@exept.de>
parents: 1258
diff changeset
  5255
    lastId := nil.
a27c2daaea25 remember lastView/id when searching view by id - helps often
Claus Gittinger <cg@exept.de>
parents: 1258
diff changeset
  5256
    lastView := nil.
0
48194c26a46c Initial revision
claus
parents:
diff changeset
  5257
3630
2b2f6649c014 Change Workstation initialization.
Stefan Vogel <sv@exept.de>
parents: 3602
diff changeset
  5258
    self initializeFor:aDisplayName.
899
fda82596dea6 exit from image restart, if connection is refused
Claus Gittinger <cg@exept.de>
parents: 885
diff changeset
  5259
    displayId isNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5260
	^ nil
899
fda82596dea6 exit from image restart, if connection is refused
Claus Gittinger <cg@exept.de>
parents: 885
diff changeset
  5261
    ].
0
48194c26a46c Initial revision
claus
parents:
diff changeset
  5262
43
1d44cc4da884 *** empty log message ***
claus
parents: 39
diff changeset
  5263
    "
1d44cc4da884 *** empty log message ***
claus
parents: 39
diff changeset
  5264
     first, all Forms must be recreated
51
bab0d5f83df3 *** empty log message ***
claus
parents: 46
diff changeset
  5265
     (since they may be needed for view recreation as
43
1d44cc4da884 *** empty log message ***
claus
parents: 39
diff changeset
  5266
      background or icons)
1d44cc4da884 *** empty log message ***
claus
parents: 39
diff changeset
  5267
    "
0
48194c26a46c Initial revision
claus
parents:
diff changeset
  5268
    Form reinitializeAllOn:self.
48194c26a46c Initial revision
claus
parents:
diff changeset
  5269
46
7b331e9012fd *** empty log message ***
claus
parents: 43
diff changeset
  5270
"/    prevMapping notNil ifTrue:[
0
48194c26a46c Initial revision
claus
parents:
diff changeset
  5271
    prevKnownViews notNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5272
	"
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5273
	 first round: flush all device specific stuff
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5274
	"
51
bab0d5f83df3 *** empty log message ***
claus
parents: 46
diff changeset
  5275
"/      prevMapping keysAndValuesDo:[:anId :aView |
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5276
	prevKnownViews do:[:aView |
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5277
	    (aView notNil and:[aView ~~ 0]) ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5278
		aView prepareForReinit
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5279
	    ]
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5280
	].
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5281
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5282
	"
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5283
	 2nd round: all views should reinstall themself
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5284
		    on the new display
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5285
	"
51
bab0d5f83df3 *** empty log message ***
claus
parents: 46
diff changeset
  5286
"/      prevMapping keysAndValuesDo:[:anId :aView |
505
f939ab04e30c only adjust geometry of views at restart if the displays dimension has changed
Claus Gittinger <cg@exept.de>
parents: 492
diff changeset
  5287
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5288
	prevKnownViews do:[:aView |
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5289
	    (aView notNil and:[aView ~~ 0]) ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5290
		"have to re-create the view"
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5291
		UserInterruptSignal catch:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5292
		    AbortSignal catch:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5293
			GraphicsContext drawingOnClosedDrawableSignal handle:[:ex |
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5294
			    'DeviceWorkstation [warning]: drawing attempt on closed drawable during reinit' errorPrintCR.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5295
			    ex return
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5296
			] do:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5297
			    aView reinitialize
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5298
			]
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5299
		    ]
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5300
		]
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5301
	    ]
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5302
	].
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5303
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5304
	(prevWidth ~~ width
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5305
	or:[prevHeight ~~ height]) ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5306
	    "
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5307
	     3rd round: all views get a chance to handle
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5308
			changed environment (colors, font sizes etc)
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5309
	    "
505
f939ab04e30c only adjust geometry of views at restart if the displays dimension has changed
Claus Gittinger <cg@exept.de>
parents: 492
diff changeset
  5310
"/          prevMapping keysAndValuesDo:[:anId :aView |
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5311
	    prevKnownViews do:[:aView |
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5312
		(aView notNil and:[aView ~~ 0]) ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5313
		    aView reAdjustGeometry
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5314
		]
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5315
	    ].
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5316
	]
0
48194c26a46c Initial revision
claus
parents:
diff changeset
  5317
    ].
8
640de5f72f88 last version before change of dispatch
claus
parents: 5
diff changeset
  5318
    dispatching := false.
505
f939ab04e30c only adjust geometry of views at restart if the displays dimension has changed
Claus Gittinger <cg@exept.de>
parents: 492
diff changeset
  5319
2139
717e95ca7308 handle user interrupt during reinitialization
Claus Gittinger <cg@exept.de>
parents: 2126
diff changeset
  5320
    "Modified: / 7.6.1998 / 02:45:13 / cg"
1196
40c9cbe53ac4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1194
diff changeset
  5321
!
40c9cbe53ac4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1194
diff changeset
  5322
40c9cbe53ac4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1194
diff changeset
  5323
releaseDeviceResources
2837
93962b39371c resourceRelease fix
Claus Gittinger <cg@exept.de>
parents: 2826
diff changeset
  5324
    "release any cached device resources.
93962b39371c resourceRelease fix
Claus Gittinger <cg@exept.de>
parents: 2826
diff changeset
  5325
     This is invoked when closed or when the display connection is broken
93962b39371c resourceRelease fix
Claus Gittinger <cg@exept.de>
parents: 2826
diff changeset
  5326
     (i.e. be prepared to not be able to release resources regularily)"
93962b39371c resourceRelease fix
Claus Gittinger <cg@exept.de>
parents: 2826
diff changeset
  5327
3121
38f39f3f92a0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3108
diff changeset
  5328
    blackColor notNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5329
	blackColor releaseFromDevice. 
3121
38f39f3f92a0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3108
diff changeset
  5330
    ].
38f39f3f92a0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3108
diff changeset
  5331
    whiteColor notNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5332
	whiteColor releaseFromDevice.
3121
38f39f3f92a0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3108
diff changeset
  5333
    ].
2837
93962b39371c resourceRelease fix
Claus Gittinger <cg@exept.de>
parents: 2826
diff changeset
  5334
2924
9b42e9bafdf7 Forget about cached Displays (cg)
Stefan Vogel <sv@exept.de>
parents: 2922
diff changeset
  5335
    LastActiveScreen == self ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5336
	LastActiveScreen := nil.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5337
	LastActiveProcess := nil.
2924
9b42e9bafdf7 Forget about cached Displays (cg)
Stefan Vogel <sv@exept.de>
parents: 2922
diff changeset
  5338
    ].
9b42e9bafdf7 Forget about cached Displays (cg)
Stefan Vogel <sv@exept.de>
parents: 2922
diff changeset
  5339
2837
93962b39371c resourceRelease fix
Claus Gittinger <cg@exept.de>
parents: 2826
diff changeset
  5340
    blackColor := whiteColor := nil.
1225
797de68f0760 release deviceResources when closing a connection
Claus Gittinger <cg@exept.de>
parents: 1219
diff changeset
  5341
1231
75e038ced9d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1225
diff changeset
  5342
    Image releaseResourcesOnDevice:self.
2837
93962b39371c resourceRelease fix
Claus Gittinger <cg@exept.de>
parents: 2826
diff changeset
  5343
    self releaseDeviceColors.
2843
e13e0c53924a keep registry of cursors here - no longer use a Cursor Lobby
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
  5344
    self releaseDeviceCursors.
2846
05c5fdd17641 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
  5345
    self releaseDeviceFonts.
1225
797de68f0760 release deviceResources when closing a connection
Claus Gittinger <cg@exept.de>
parents: 1219
diff changeset
  5346
    DeviceGraphicsContext releaseResourcesOnDevice:self.
797de68f0760 release deviceResources when closing a connection
Claus Gittinger <cg@exept.de>
parents: 1219
diff changeset
  5347
2837
93962b39371c resourceRelease fix
Claus Gittinger <cg@exept.de>
parents: 2826
diff changeset
  5348
    focusView := activeView := rootView := lastView := nil.
93962b39371c resourceRelease fix
Claus Gittinger <cg@exept.de>
parents: 2826
diff changeset
  5349
    activeKeyboardGrab := activePointerGrab := nil.
93962b39371c resourceRelease fix
Claus Gittinger <cg@exept.de>
parents: 2826
diff changeset
  5350
    AllScreens remove:self ifAbsent:nil.
93962b39371c resourceRelease fix
Claus Gittinger <cg@exept.de>
parents: 2826
diff changeset
  5351
1231
75e038ced9d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1225
diff changeset
  5352
    "Modified: 16.1.1997 / 19:34:11 / cg"
133
claus
parents: 123
diff changeset
  5353
! !
claus
parents: 123
diff changeset
  5354
71
6a42b2b115f8 *** empty log message ***
claus
parents: 57
diff changeset
  5355
!DeviceWorkstation methodsFor:'interactive queries'!
6a42b2b115f8 *** empty log message ***
claus
parents: 57
diff changeset
  5356
1843
5d1847be6a55 added #colorFromUser
Claus Gittinger <cg@exept.de>
parents: 1840
diff changeset
  5357
colorFromUser
5d1847be6a55 added #colorFromUser
Claus Gittinger <cg@exept.de>
parents: 1840
diff changeset
  5358
    "{ Pragma: +optSpace }"
5d1847be6a55 added #colorFromUser
Claus Gittinger <cg@exept.de>
parents: 1840
diff changeset
  5359
5d1847be6a55 added #colorFromUser
Claus Gittinger <cg@exept.de>
parents: 1840
diff changeset
  5360
    "let user specify a point on the screen (by pressing the left button),
5d1847be6a55 added #colorFromUser
Claus Gittinger <cg@exept.de>
parents: 1840
diff changeset
  5361
     return the color of that pixel."
5d1847be6a55 added #colorFromUser
Claus Gittinger <cg@exept.de>
parents: 1840
diff changeset
  5362
1973
fda63fa03595 preps for timeout handling
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  5363
    |p|
1843
5d1847be6a55 added #colorFromUser
Claus Gittinger <cg@exept.de>
parents: 1840
diff changeset
  5364
5d1847be6a55 added #colorFromUser
Claus Gittinger <cg@exept.de>
parents: 1840
diff changeset
  5365
    p := self pointFromUser.
5d1847be6a55 added #colorFromUser
Claus Gittinger <cg@exept.de>
parents: 1840
diff changeset
  5366
    ^ self rootView colorAt:p 
5d1847be6a55 added #colorFromUser
Claus Gittinger <cg@exept.de>
parents: 1840
diff changeset
  5367
5d1847be6a55 added #colorFromUser
Claus Gittinger <cg@exept.de>
parents: 1840
diff changeset
  5368
    "
5d1847be6a55 added #colorFromUser
Claus Gittinger <cg@exept.de>
parents: 1840
diff changeset
  5369
     Display colorFromUser
5d1847be6a55 added #colorFromUser
Claus Gittinger <cg@exept.de>
parents: 1840
diff changeset
  5370
    "
5d1847be6a55 added #colorFromUser
Claus Gittinger <cg@exept.de>
parents: 1840
diff changeset
  5371
5d1847be6a55 added #colorFromUser
Claus Gittinger <cg@exept.de>
parents: 1840
diff changeset
  5372
    "Modified: 1.8.1997 / 20:00:41 / cg"
5d1847be6a55 added #colorFromUser
Claus Gittinger <cg@exept.de>
parents: 1840
diff changeset
  5373
!
5d1847be6a55 added #colorFromUser
Claus Gittinger <cg@exept.de>
parents: 1840
diff changeset
  5374
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5375
originFromUser:extent
1198
314566302208 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  5376
    "{ Pragma: +optSpace }"
314566302208 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  5377
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5378
    "let user specify a rectangles origin on the screen, return the rectangle.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5379
     Start with initialRectangle. 
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5380
     Can be used for dragging operations."
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5381
3091
707f8b9fda46 restore oldGrab in #xxxFromUser
ca
parents: 3078
diff changeset
  5382
    |curs origin root rect prevGrab|
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5383
1499
57d3525f8abd #on: -> #onDevice:
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  5384
    curs := Cursor origin onDevice:self.
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5385
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5386
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5387
     just in case; wait for button to be down ...
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5388
    "
2252
53bad848ffa8 replaced yields by a delay
Claus Gittinger <cg@exept.de>
parents: 2220
diff changeset
  5389
    [self leftButtonPressed] whileFalse:[Delay waitForSeconds:0.05].
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5390
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5391
    root := self rootView.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5392
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5393
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5394
     grab and wait for leftButton being pressed
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5395
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5396
    origin := self pointerPosition.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5397
1722
4ceaeda95cc3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1719
diff changeset
  5398
    root clippedByChildren:false.
1198
314566302208 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  5399
    root foreground:blackColor background:whiteColor.
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5400
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5401
    root xoring:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5402
	|left right top bottom newOrigin newCorner p|
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5403
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5404
	rect := origin extent:extent.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5405
	root displayRectangle:rect.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5406
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5407
	prevGrab := activePointerGrab.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5408
	self grabPointerInView:root withCursor:curs.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5409
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5410
	[self leftButtonPressed] whileTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5411
	    newOrigin := self pointerPosition.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5412
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5413
	    (newOrigin ~= origin) ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5414
		root displayRectangle:rect.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5415
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5416
		self 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5417
		    grabPointerIn:root id 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5418
		    withCursor:curs id
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5419
		    pointerMode:#async 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5420
		    keyboardMode:#sync 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5421
		    confineTo:nil.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5422
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5423
		rect := newOrigin extent:extent.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5424
		root displayRectangle:rect.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5425
		self disposeButtonEventsFor:nil.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5426
		self flush.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5427
		origin := newOrigin.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5428
	    ] ifFalse:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5429
		Delay waitForSeconds:0.05
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5430
	    ]
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5431
	].
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5432
	root displayRectangle:rect.
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5433
    ].
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5434
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5435
    self ungrabPointer.
3091
707f8b9fda46 restore oldGrab in #xxxFromUser
ca
parents: 3078
diff changeset
  5436
    prevGrab notNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5437
	self grabPointerInView:prevGrab.
3091
707f8b9fda46 restore oldGrab in #xxxFromUser
ca
parents: 3078
diff changeset
  5438
    ].
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5439
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5440
    "flush all events pending on my display"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5441
1722
4ceaeda95cc3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1719
diff changeset
  5442
    root clippedByChildren:true.
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5443
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5444
    self flush.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5445
    self disposeButtonEventsFor:nil.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5446
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5447
    ^ rect
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5448
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5449
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5450
     Display originFromUser:200@200
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5451
    "
1198
314566302208 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  5452
2252
53bad848ffa8 replaced yields by a delay
Claus Gittinger <cg@exept.de>
parents: 2220
diff changeset
  5453
    "Modified: / 18.8.1998 / 15:00:14 / cg"
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5454
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5455
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5456
pointFromUser
1198
314566302208 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  5457
    "{ Pragma: +optSpace }"
314566302208 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  5458
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5459
    "let user specify a point on the screen (by pressing the left button)"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5460
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5461
    ^ self pointFromUserShowing:(Cursor crossHair).
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5462
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5463
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5464
     Display pointFromUser
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5465
    "
1198
314566302208 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  5466
314566302208 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  5467
    "Modified: 13.1.1997 / 22:53:05 / cg"
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5468
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5469
81
4ba554473294 *** empty log message ***
claus
parents: 75
diff changeset
  5470
pointFromUserShowing:aCursor
1198
314566302208 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  5471
    "{ Pragma: +optSpace }"
314566302208 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  5472
81
4ba554473294 *** empty log message ***
claus
parents: 75
diff changeset
  5473
    "let user specify a point on the screen (by pressing leftButton).
4ba554473294 *** empty log message ***
claus
parents: 75
diff changeset
  5474
     Show aCursor while waiting."
4ba554473294 *** empty log message ***
claus
parents: 75
diff changeset
  5475
3091
707f8b9fda46 restore oldGrab in #xxxFromUser
ca
parents: 3078
diff changeset
  5476
    |p prevGrab|
707f8b9fda46 restore oldGrab in #xxxFromUser
ca
parents: 3078
diff changeset
  5477
707f8b9fda46 restore oldGrab in #xxxFromUser
ca
parents: 3078
diff changeset
  5478
    prevGrab := activePointerGrab.
23
4a7e02de7b72 *** empty log message ***
claus
parents: 21
diff changeset
  5479
    self ungrabPointer.
3091
707f8b9fda46 restore oldGrab in #xxxFromUser
ca
parents: 3078
diff changeset
  5480
    self grabPointerInView:(self rootView) withCursor:(aCursor onDevice:self).
157
claus
parents: 151
diff changeset
  5481
    "
claus
parents: 151
diff changeset
  5482
     wait for leftButton ...
claus
parents: 151
diff changeset
  5483
    "
2252
53bad848ffa8 replaced yields by a delay
Claus Gittinger <cg@exept.de>
parents: 2220
diff changeset
  5484
    [self leftButtonPressed] whileFalse:[Delay waitForSeconds:0.05].
157
claus
parents: 151
diff changeset
  5485
23
4a7e02de7b72 *** empty log message ***
claus
parents: 21
diff changeset
  5486
    p := self pointerPosition.
4a7e02de7b72 *** empty log message ***
claus
parents: 21
diff changeset
  5487
4a7e02de7b72 *** empty log message ***
claus
parents: 21
diff changeset
  5488
    self ungrabPointer.
3091
707f8b9fda46 restore oldGrab in #xxxFromUser
ca
parents: 3078
diff changeset
  5489
    prevGrab notNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5490
	self grabPointerInView:prevGrab
3091
707f8b9fda46 restore oldGrab in #xxxFromUser
ca
parents: 3078
diff changeset
  5491
    ].
23
4a7e02de7b72 *** empty log message ***
claus
parents: 21
diff changeset
  5492
4a7e02de7b72 *** empty log message ***
claus
parents: 21
diff changeset
  5493
    "flush all events pending on myself"
81
4ba554473294 *** empty log message ***
claus
parents: 75
diff changeset
  5494
    self disposeButtonEventsFor:nil.
23
4a7e02de7b72 *** empty log message ***
claus
parents: 21
diff changeset
  5495
    ^ p
4a7e02de7b72 *** empty log message ***
claus
parents: 21
diff changeset
  5496
71
6a42b2b115f8 *** empty log message ***
claus
parents: 57
diff changeset
  5497
    "
81
4ba554473294 *** empty log message ***
claus
parents: 75
diff changeset
  5498
     Display pointFromUserShowing:(Cursor stop)   
133
claus
parents: 123
diff changeset
  5499
     Display pointFromUserShowing:(Cursor crossHair)   
157
claus
parents: 151
diff changeset
  5500
     Display pointFromUserShowing:(Cursor origin)   
81
4ba554473294 *** empty log message ***
claus
parents: 75
diff changeset
  5501
     Display pointFromUser
4ba554473294 *** empty log message ***
claus
parents: 75
diff changeset
  5502
    "
1198
314566302208 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  5503
2252
53bad848ffa8 replaced yields by a delay
Claus Gittinger <cg@exept.de>
parents: 2220
diff changeset
  5504
    "Modified: / 18.8.1998 / 15:00:19 / cg"
81
4ba554473294 *** empty log message ***
claus
parents: 75
diff changeset
  5505
!
4ba554473294 *** empty log message ***
claus
parents: 75
diff changeset
  5506
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5507
rectangleFromUser
1198
314566302208 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  5508
    "{ Pragma: +optSpace }"
314566302208 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  5509
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5510
    "let user specify a rectangle in the screen, return the rectangle"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5511
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5512
    |origin|
81
4ba554473294 *** empty log message ***
claus
parents: 75
diff changeset
  5513
4ba554473294 *** empty log message ***
claus
parents: 75
diff changeset
  5514
    "
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5515
     get origin
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5516
    "
1499
57d3525f8abd #on: -> #onDevice:
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  5517
    origin := self pointFromUserShowing:(Cursor origin onDevice:self).
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5518
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5519
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5520
     get corner
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5521
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5522
    ^ self rectangleFromUser:(origin corner:origin). 
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5523
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5524
    "
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5525
     Display rectangleFromUser    
71
6a42b2b115f8 *** empty log message ***
claus
parents: 57
diff changeset
  5526
    "
1198
314566302208 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  5527
1499
57d3525f8abd #on: -> #onDevice:
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  5528
    "Modified: 28.3.1997 / 16:14:44 / cg"
23
4a7e02de7b72 *** empty log message ***
claus
parents: 21
diff changeset
  5529
!
4a7e02de7b72 *** empty log message ***
claus
parents: 21
diff changeset
  5530
81
4ba554473294 *** empty log message ***
claus
parents: 75
diff changeset
  5531
rectangleFromUser:initialRectangle
1198
314566302208 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  5532
    "{ Pragma: +optSpace }"
314566302208 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  5533
81
4ba554473294 *** empty log message ***
claus
parents: 75
diff changeset
  5534
    "let user specify a rectangle on the screen, return the rectangle.
133
claus
parents: 123
diff changeset
  5535
     Start with initialRectangle. 
claus
parents: 123
diff changeset
  5536
     A helper for rectangleFromUser; can also be used for resizing operations."
81
4ba554473294 *** empty log message ***
claus
parents: 75
diff changeset
  5537
1824
322aba0f79e7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1810
diff changeset
  5538
    ^ self rectangleFromUser:initialRectangle keepExtent:false
322aba0f79e7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1810
diff changeset
  5539
322aba0f79e7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1810
diff changeset
  5540
    "
322aba0f79e7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1810
diff changeset
  5541
     Display rectangleFromUser:(100@100 corner:300@300)
322aba0f79e7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1810
diff changeset
  5542
    "
322aba0f79e7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1810
diff changeset
  5543
322aba0f79e7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1810
diff changeset
  5544
    "Modified: 24.7.1997 / 16:04:54 / cg"
322aba0f79e7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1810
diff changeset
  5545
!
322aba0f79e7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1810
diff changeset
  5546
322aba0f79e7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1810
diff changeset
  5547
rectangleFromUser:initialRectangle keepExtent:keepExtent
322aba0f79e7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1810
diff changeset
  5548
    "{ Pragma: +optSpace }"
322aba0f79e7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1810
diff changeset
  5549
322aba0f79e7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1810
diff changeset
  5550
    "let user specify a rectangle on the screen, return the rectangle.
322aba0f79e7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1810
diff changeset
  5551
     Start with initialRectangle. 
322aba0f79e7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1810
diff changeset
  5552
     A helper for rectangleFromUser; can also be used for resizing operations."
322aba0f79e7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1810
diff changeset
  5553
3091
707f8b9fda46 restore oldGrab in #xxxFromUser
ca
parents: 3078
diff changeset
  5554
    |curs1 origin corner root rect doRegrab prevGrab|
2324
a50065345df3 do not regrab under win32, when dragging a rectangleFromUser
Claus Gittinger <cg@exept.de>
parents: 2308
diff changeset
  5555
a50065345df3 do not regrab under win32, when dragging a rectangleFromUser
Claus Gittinger <cg@exept.de>
parents: 2308
diff changeset
  5556
    "/ regrabbing leads to horrible flicker and
a50065345df3 do not regrab under win32, when dragging a rectangleFromUser
Claus Gittinger <cg@exept.de>
parents: 2308
diff changeset
  5557
    "/ events being sent to applications under the mouse.
a50065345df3 do not regrab under win32, when dragging a rectangleFromUser
Claus Gittinger <cg@exept.de>
parents: 2308
diff changeset
  5558
    "/ on windows displays.
a50065345df3 do not regrab under win32, when dragging a rectangleFromUser
Claus Gittinger <cg@exept.de>
parents: 2308
diff changeset
  5559
    doRegrab := self class ~~ WinWorkstation.
157
claus
parents: 151
diff changeset
  5560
1824
322aba0f79e7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1810
diff changeset
  5561
    keepExtent ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5562
	curs1 := Cursor origin 
1824
322aba0f79e7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1810
diff changeset
  5563
    ] ifFalse:[    
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5564
	curs1 := Cursor corner
1824
322aba0f79e7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1810
diff changeset
  5565
    ].
322aba0f79e7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1810
diff changeset
  5566
    curs1 := curs1 onDevice:self.
134
claus
parents: 133
diff changeset
  5567
    root := self rootView.
81
4ba554473294 *** empty log message ***
claus
parents: 75
diff changeset
  5568
4ba554473294 *** empty log message ***
claus
parents: 75
diff changeset
  5569
    "
4ba554473294 *** empty log message ***
claus
parents: 75
diff changeset
  5570
     grab and wait for leftButton being pressed
4ba554473294 *** empty log message ***
claus
parents: 75
diff changeset
  5571
    "
4ba554473294 *** empty log message ***
claus
parents: 75
diff changeset
  5572
    origin := initialRectangle origin.
4ba554473294 *** empty log message ***
claus
parents: 75
diff changeset
  5573
1722
4ceaeda95cc3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1719
diff changeset
  5574
    root clippedByChildren:false.
1198
314566302208 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  5575
    root foreground:blackColor background:whiteColor.
81
4ba554473294 *** empty log message ***
claus
parents: 75
diff changeset
  5576
4ba554473294 *** empty log message ***
claus
parents: 75
diff changeset
  5577
    root xoring:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5578
	|left right top bottom newOrigin newCorner p curs|
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5579
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5580
	keepExtent ifFalse:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5581
	    corner := origin.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5582
	    rect := origin corner:corner.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5583
	    root displayRectangle:rect.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5584
	].
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5585
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5586
	prevGrab := activePointerGrab.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5587
	self grabPointerInView:root withCursor:curs1.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5588
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5589
	"
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5590
	 just in case; wait for button to be down ...
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5591
	"
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5592
	[self leftButtonPressed] whileFalse:[Delay waitForSeconds:0.05].
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5593
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5594
	keepExtent ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5595
	    p := self pointerPosition.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5596
	    origin := p.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5597
	    corner := origin + initialRectangle extent.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5598
	    rect := origin corner:corner.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5599
	    root displayRectangle:rect.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5600
	].
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5601
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5602
	[self leftButtonPressed] whileTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5603
	    left := initialRectangle origin x.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5604
	    top := initialRectangle origin y.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5605
	    right := initialRectangle corner x.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5606
	    bottom := initialRectangle corner y.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5607
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5608
	    p := self pointerPosition.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5609
	    keepExtent ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5610
		newOrigin := p.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5611
		newCorner := newOrigin + initialRectangle extent.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5612
		curs := curs1.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5613
	    ] ifFalse:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5614
		p x < initialRectangle left ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5615
		    p y < initialRectangle top ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5616
			curs := Cursor topLeft.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5617
			left := p x.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5618
			top := p y.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5619
		    ] ifFalse:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5620
			curs := Cursor bottomLeft.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5621
			left := p x.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5622
			bottom := p y
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5623
		    ]
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5624
		] ifFalse:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5625
		    p y < initialRectangle top ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5626
			curs := Cursor topRight.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5627
			right := p x.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5628
			top := p y
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5629
		    ] ifFalse:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5630
			curs := Cursor bottomRight.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5631
			right := p x.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5632
			bottom := p y
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5633
		    ]
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5634
		].
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5635
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5636
		newOrigin := left @ top.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5637
		newCorner := right @ bottom.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5638
	    ].
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5639
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5640
	    ((newOrigin ~= origin) or:[newCorner ~= corner]) ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5641
		root displayRectangle:rect.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5642
		doRegrab ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5643
		    self grabPointerInView:root withCursor:curs1.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5644
		].
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5645
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5646
		origin :=  newOrigin.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5647
		corner :=  newCorner.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5648
		rect := origin corner:corner.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5649
		root displayRectangle:rect.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5650
		self disposeButtonEventsFor:nil.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5651
		self flush.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5652
	    ] ifFalse:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5653
		Delay waitForSeconds:0.05
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5654
	    ]
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5655
	].
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5656
	root displayRectangle:rect.
23
4a7e02de7b72 *** empty log message ***
claus
parents: 21
diff changeset
  5657
    ].
4a7e02de7b72 *** empty log message ***
claus
parents: 21
diff changeset
  5658
3091
707f8b9fda46 restore oldGrab in #xxxFromUser
ca
parents: 3078
diff changeset
  5659
23
4a7e02de7b72 *** empty log message ***
claus
parents: 21
diff changeset
  5660
    self ungrabPointer.
3091
707f8b9fda46 restore oldGrab in #xxxFromUser
ca
parents: 3078
diff changeset
  5661
    prevGrab notNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5662
	self grabPointerInView:prevGrab
3091
707f8b9fda46 restore oldGrab in #xxxFromUser
ca
parents: 3078
diff changeset
  5663
    ].
23
4a7e02de7b72 *** empty log message ***
claus
parents: 21
diff changeset
  5664
4a7e02de7b72 *** empty log message ***
claus
parents: 21
diff changeset
  5665
    "flush all events pending on my display"
81
4ba554473294 *** empty log message ***
claus
parents: 75
diff changeset
  5666
1722
4ceaeda95cc3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1719
diff changeset
  5667
    root clippedByChildren:true.
81
4ba554473294 *** empty log message ***
claus
parents: 75
diff changeset
  5668
151
claus
parents: 146
diff changeset
  5669
    self flush.
81
4ba554473294 *** empty log message ***
claus
parents: 75
diff changeset
  5670
    self disposeButtonEventsFor:nil.
4ba554473294 *** empty log message ***
claus
parents: 75
diff changeset
  5671
4ba554473294 *** empty log message ***
claus
parents: 75
diff changeset
  5672
    ^ rect
157
claus
parents: 151
diff changeset
  5673
claus
parents: 151
diff changeset
  5674
    "
1824
322aba0f79e7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1810
diff changeset
  5675
     Display rectangleFromUser
157
claus
parents: 151
diff changeset
  5676
     Display rectangleFromUser:(100@100 corner:300@300)
1824
322aba0f79e7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1810
diff changeset
  5677
     Display rectangleFromUser:(100@100 corner:300@300) keepExtent:true
322aba0f79e7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1810
diff changeset
  5678
    "
322aba0f79e7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1810
diff changeset
  5679
2252
53bad848ffa8 replaced yields by a delay
Claus Gittinger <cg@exept.de>
parents: 2220
diff changeset
  5680
    "Created: / 24.7.1997 / 15:26:47 / cg"
2324
a50065345df3 do not regrab under win32, when dragging a rectangleFromUser
Claus Gittinger <cg@exept.de>
parents: 2308
diff changeset
  5681
    "Modified: / 10.9.1998 / 17:38:41 / cg"
81
4ba554473294 *** empty log message ***
claus
parents: 75
diff changeset
  5682
!
4ba554473294 *** empty log message ***
claus
parents: 75
diff changeset
  5683
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5684
topviewFromUser
1198
314566302208 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  5685
    "{ Pragma: +optSpace }"
314566302208 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  5686
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5687
    "let user specify a view on the screen; if the selected view is
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5688
     not an ST/X view, nil is returned.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5689
     Otherwise, the topview is returned."
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5690
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5691
    |v|
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5692
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5693
    v := self viewFromUser.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5694
    v notNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5695
	v := v topView
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5696
    ].
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5697
    ^ v 
157
claus
parents: 151
diff changeset
  5698
claus
parents: 151
diff changeset
  5699
    "
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5700
     Display topviewFromUser
157
claus
parents: 151
diff changeset
  5701
    "
1198
314566302208 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  5702
314566302208 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  5703
    "Modified: 13.1.1997 / 22:53:15 / cg"
190
claus
parents: 188
diff changeset
  5704
!
claus
parents: 188
diff changeset
  5705
23
4a7e02de7b72 *** empty log message ***
claus
parents: 21
diff changeset
  5706
viewFromUser
1198
314566302208 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  5707
    "{ Pragma: +optSpace }"
314566302208 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  5708
23
4a7e02de7b72 *** empty log message ***
claus
parents: 21
diff changeset
  5709
    "let user specify a view on the screen; if the selected view is
133
claus
parents: 123
diff changeset
  5710
     not an ST/X view, nil is returned.
claus
parents: 123
diff changeset
  5711
     This returns the view being clicked in, which is not always a topView.
claus
parents: 123
diff changeset
  5712
     (send topView to the returned view or use topviewFromUser,
claus
parents: 123
diff changeset
  5713
      to get the topview)"
23
4a7e02de7b72 *** empty log message ***
claus
parents: 21
diff changeset
  5714
71
6a42b2b115f8 *** empty log message ***
claus
parents: 57
diff changeset
  5715
    ^ self viewFromPoint:(self pointFromUser) 
6a42b2b115f8 *** empty log message ***
claus
parents: 57
diff changeset
  5716
6a42b2b115f8 *** empty log message ***
claus
parents: 57
diff changeset
  5717
    "
133
claus
parents: 123
diff changeset
  5718
     Display viewFromUser 
71
6a42b2b115f8 *** empty log message ***
claus
parents: 57
diff changeset
  5719
    "
6a42b2b115f8 *** empty log message ***
claus
parents: 57
diff changeset
  5720
    "
6a42b2b115f8 *** empty log message ***
claus
parents: 57
diff changeset
  5721
     |v|
6a42b2b115f8 *** empty log message ***
claus
parents: 57
diff changeset
  5722
     v := Display viewFromUser.
6a42b2b115f8 *** empty log message ***
claus
parents: 57
diff changeset
  5723
     v notNil ifTrue:[v topView] ifFalse:[nil]
6a42b2b115f8 *** empty log message ***
claus
parents: 57
diff changeset
  5724
    "
1198
314566302208 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  5725
314566302208 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  5726
    "Modified: 13.1.1997 / 22:53:17 / cg"
71
6a42b2b115f8 *** empty log message ***
claus
parents: 57
diff changeset
  5727
!
6a42b2b115f8 *** empty log message ***
claus
parents: 57
diff changeset
  5728
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5729
viewIdFromUser
1198
314566302208 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  5730
    "{ Pragma: +optSpace }"
314566302208 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  5731
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5732
    "let user specify a view on the screen, return its window id.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5733
     This works even for non smalltalk views.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5734
     This returns the id of the view being clicked in, 
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5735
     which is not always a topView."
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5736
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5737
    ^ self viewIdFromPoint:(self pointFromUser) 
71
6a42b2b115f8 *** empty log message ***
claus
parents: 57
diff changeset
  5738
6a42b2b115f8 *** empty log message ***
claus
parents: 57
diff changeset
  5739
    "
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5740
     Display viewIdFromUser 
71
6a42b2b115f8 *** empty log message ***
claus
parents: 57
diff changeset
  5741
    "
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5742
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5743
    "Created: 18.9.1995 / 23:07:20 / claus"
1198
314566302208 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  5744
    "Modified: 13.1.1997 / 22:53:20 / cg"
0
48194c26a46c Initial revision
claus
parents:
diff changeset
  5745
! !
48194c26a46c Initial revision
claus
parents:
diff changeset
  5746
48194c26a46c Initial revision
claus
parents:
diff changeset
  5747
!DeviceWorkstation methodsFor:'keyboard mapping'!
48194c26a46c Initial revision
claus
parents:
diff changeset
  5748
339
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  5749
altModifiers
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  5750
    "Return the set of keys which are treated as Alt-keys.
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  5751
     This set is initialized at startup from what the server thinks
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  5752
     are alt-keys."
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  5753
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  5754
    ^ altModifiers
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  5755
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  5756
    "
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  5757
     Display altModifiers        
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  5758
    "
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  5759
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  5760
    "Created: 2.1.1996 / 14:57:13 / cg"
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  5761
    "Modified: 2.1.1996 / 15:01:54 / cg"
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  5762
!
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  5763
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  5764
altModifiers:arrayOfAltModifierKeys
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  5765
    "Change the set of keys which are treated as Alt-keys."
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  5766
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  5767
    altModifiers := arrayOfAltModifierKeys
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  5768
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  5769
    "Created: 2.1.1996 / 14:58:24 / cg"
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  5770
!
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  5771
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  5772
metaModifiers
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  5773
    "Return the set of keys which are treated as Meta-keys (i.e. Cmd-keys).
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  5774
     This set is initialized at startup from what the server thinks
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  5775
     are meta-keys."
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  5776
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  5777
    ^ metaModifiers
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  5778
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  5779
    "
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  5780
     Display metaModifiers      
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  5781
    "
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  5782
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  5783
    "Created: 2.1.1996 / 14:57:35 / cg"
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  5784
    "Modified: 2.1.1996 / 15:02:00 / cg"
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  5785
!
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  5786
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  5787
metaModifiers:arrayOfMetaModifierKeys
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  5788
    "Change the set of keys which are treated as Meta-keys (i.e. Cmd keys)."
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  5789
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  5790
    metaModifiers := arrayOfMetaModifierKeys
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  5791
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  5792
    "Created: 2.1.1996 / 14:58:41 / cg"
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  5793
!
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  5794
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5795
modifierKeyProcessing:key down:pressed
339
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  5796
    "internal, private method.
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  5797
     Called with every keyPress/keyRelease to update the xxxDown flags."
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  5798
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5799
    (altModifiers notNil and:[altModifiers includes:key]) ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5800
	altDown := pressed
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5801
    ] ifFalse:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5802
	(metaModifiers notNil and:[metaModifiers includes:key]) ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5803
	    metaDown := pressed
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5804
	] ifFalse:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5805
	    (shiftModifiers notNil and:[shiftModifiers includes:key]) ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5806
		shiftDown := pressed
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5807
	    ] ifFalse:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5808
		(ctrlModifiers notNil and:[ctrlModifiers includes:key]) ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5809
		    ctrlDown := pressed
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5810
		]
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5811
	    ]
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5812
	]
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5813
    ]
339
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  5814
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  5815
    "Modified: 2.1.1996 / 15:00:25 / cg"
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5816
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5817
473
e954ce348a47 added protocol for reverse modifier mappings
Claus Gittinger <cg@exept.de>
parents: 465
diff changeset
  5818
modifierKeyTopFor:key
e954ce348a47 added protocol for reverse modifier mappings
Claus Gittinger <cg@exept.de>
parents: 465
diff changeset
  5819
    "reverse translation for a modifier key
e954ce348a47 added protocol for reverse modifier mappings
Claus Gittinger <cg@exept.de>
parents: 465
diff changeset
  5820
     (i.e. to get the keyTop from a modifier)"
e954ce348a47 added protocol for reverse modifier mappings
Claus Gittinger <cg@exept.de>
parents: 465
diff changeset
  5821
532
ec41a5862bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 509
diff changeset
  5822
    |t modifiers|
ec41a5862bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 509
diff changeset
  5823
ec41a5862bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 509
diff changeset
  5824
    key == #Alt ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5825
	modifiers := altModifiers
532
ec41a5862bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 509
diff changeset
  5826
    ] ifFalse:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5827
	key == #Cmd ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5828
	    modifiers := metaModifiers
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5829
	]
473
e954ce348a47 added protocol for reverse modifier mappings
Claus Gittinger <cg@exept.de>
parents: 465
diff changeset
  5830
    ].
2053
ed3192986b0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2027
diff changeset
  5831
ed3192986b0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2027
diff changeset
  5832
    "/ temporary kludge ...
532
ec41a5862bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 509
diff changeset
  5833
    (modifiers size > 0) ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5834
	(modifiers includes:'Num_Lock') ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5835
	    modifiers := modifiers copy.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5836
	    modifiers remove:'Num_Lock'
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5837
	]
2053
ed3192986b0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2027
diff changeset
  5838
    ].
ed3192986b0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2027
diff changeset
  5839
ed3192986b0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2027
diff changeset
  5840
    (modifiers size > 0) ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5841
	t := modifiers first.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5842
	(t includes:$_) ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5843
	    t := t copyTo:(t indexOf:$_)-1
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5844
	].
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5845
	^ t
473
e954ce348a47 added protocol for reverse modifier mappings
Claus Gittinger <cg@exept.de>
parents: 465
diff changeset
  5846
    ].
e954ce348a47 added protocol for reverse modifier mappings
Claus Gittinger <cg@exept.de>
parents: 465
diff changeset
  5847
    ^ key
e954ce348a47 added protocol for reverse modifier mappings
Claus Gittinger <cg@exept.de>
parents: 465
diff changeset
  5848
2053
ed3192986b0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2027
diff changeset
  5849
    "Created: / 28.2.1996 / 17:07:08 / cg"
ed3192986b0f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2027
diff changeset
  5850
    "Modified: / 7.2.1998 / 16:18:17 / cg"
473
e954ce348a47 added protocol for reverse modifier mappings
Claus Gittinger <cg@exept.de>
parents: 465
diff changeset
  5851
!
e954ce348a47 added protocol for reverse modifier mappings
Claus Gittinger <cg@exept.de>
parents: 465
diff changeset
  5852
e954ce348a47 added protocol for reverse modifier mappings
Claus Gittinger <cg@exept.de>
parents: 465
diff changeset
  5853
modifierKeyTranslationFor:untranslatedKey
e954ce348a47 added protocol for reverse modifier mappings
Claus Gittinger <cg@exept.de>
parents: 465
diff changeset
  5854
    "map possible modifiers to a smaller set of common symbols.
e954ce348a47 added protocol for reverse modifier mappings
Claus Gittinger <cg@exept.de>
parents: 465
diff changeset
  5855
     Especially, left/right keys are mapped to a common one."
e954ce348a47 added protocol for reverse modifier mappings
Claus Gittinger <cg@exept.de>
parents: 465
diff changeset
  5856
e954ce348a47 added protocol for reverse modifier mappings
Claus Gittinger <cg@exept.de>
parents: 465
diff changeset
  5857
    "should this come from a configurable variable ?"
e954ce348a47 added protocol for reverse modifier mappings
Claus Gittinger <cg@exept.de>
parents: 465
diff changeset
  5858
1022
e41ea5762606 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  5859
    "/ the next statement will vanish ....
473
e954ce348a47 added protocol for reverse modifier mappings
Claus Gittinger <cg@exept.de>
parents: 465
diff changeset
  5860
    (untranslatedKey == #Control
e954ce348a47 added protocol for reverse modifier mappings
Claus Gittinger <cg@exept.de>
parents: 465
diff changeset
  5861
    or:[untranslatedKey == #'Control_L'   
e954ce348a47 added protocol for reverse modifier mappings
Claus Gittinger <cg@exept.de>
parents: 465
diff changeset
  5862
    or:[untranslatedKey == #'Control_R']]) ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5863
	^ #Ctrl
473
e954ce348a47 added protocol for reverse modifier mappings
Claus Gittinger <cg@exept.de>
parents: 465
diff changeset
  5864
    ].
1022
e41ea5762606 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  5865
e41ea5762606 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  5866
    (untranslatedKey == #Ctrl
e41ea5762606 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  5867
    or:[untranslatedKey == #'Ctrl_L' 
e41ea5762606 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  5868
    or:[untranslatedKey == #'Ctrl_R']]) ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5869
	^ #Ctrl
1022
e41ea5762606 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  5870
    ].
473
e954ce348a47 added protocol for reverse modifier mappings
Claus Gittinger <cg@exept.de>
parents: 465
diff changeset
  5871
    (untranslatedKey == #'Shift'   
e954ce348a47 added protocol for reverse modifier mappings
Claus Gittinger <cg@exept.de>
parents: 465
diff changeset
  5872
    or:[untranslatedKey == #'Shift_L'   
e954ce348a47 added protocol for reverse modifier mappings
Claus Gittinger <cg@exept.de>
parents: 465
diff changeset
  5873
    or:[untranslatedKey == #'Shift_R']]) ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5874
	^ #Shift
473
e954ce348a47 added protocol for reverse modifier mappings
Claus Gittinger <cg@exept.de>
parents: 465
diff changeset
  5875
    ].
e954ce348a47 added protocol for reverse modifier mappings
Claus Gittinger <cg@exept.de>
parents: 465
diff changeset
  5876
    (untranslatedKey == #'Alt'   
e954ce348a47 added protocol for reverse modifier mappings
Claus Gittinger <cg@exept.de>
parents: 465
diff changeset
  5877
    or:[untranslatedKey == #'Alt_L'   
e954ce348a47 added protocol for reverse modifier mappings
Claus Gittinger <cg@exept.de>
parents: 465
diff changeset
  5878
    or:[untranslatedKey == #'Alt_R']]) ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5879
	^ #Alt
473
e954ce348a47 added protocol for reverse modifier mappings
Claus Gittinger <cg@exept.de>
parents: 465
diff changeset
  5880
    ].
e954ce348a47 added protocol for reverse modifier mappings
Claus Gittinger <cg@exept.de>
parents: 465
diff changeset
  5881
    (untranslatedKey == #'Meta'   
e954ce348a47 added protocol for reverse modifier mappings
Claus Gittinger <cg@exept.de>
parents: 465
diff changeset
  5882
    or:[untranslatedKey == #'Meta_L'   
e954ce348a47 added protocol for reverse modifier mappings
Claus Gittinger <cg@exept.de>
parents: 465
diff changeset
  5883
    or:[untranslatedKey == #'Meta_R']]) ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5884
	^ #Meta
473
e954ce348a47 added protocol for reverse modifier mappings
Claus Gittinger <cg@exept.de>
parents: 465
diff changeset
  5885
    ].
e954ce348a47 added protocol for reverse modifier mappings
Claus Gittinger <cg@exept.de>
parents: 465
diff changeset
  5886
    (untranslatedKey == #'Cmd'   
e954ce348a47 added protocol for reverse modifier mappings
Claus Gittinger <cg@exept.de>
parents: 465
diff changeset
  5887
    or:[untranslatedKey == #'Cmd_L'   
e954ce348a47 added protocol for reverse modifier mappings
Claus Gittinger <cg@exept.de>
parents: 465
diff changeset
  5888
    or:[untranslatedKey == #'Cmd_R']]) ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5889
	^ #Cmd
473
e954ce348a47 added protocol for reverse modifier mappings
Claus Gittinger <cg@exept.de>
parents: 465
diff changeset
  5890
    ].
e954ce348a47 added protocol for reverse modifier mappings
Claus Gittinger <cg@exept.de>
parents: 465
diff changeset
  5891
    ^ nil
e954ce348a47 added protocol for reverse modifier mappings
Claus Gittinger <cg@exept.de>
parents: 465
diff changeset
  5892
e954ce348a47 added protocol for reverse modifier mappings
Claus Gittinger <cg@exept.de>
parents: 465
diff changeset
  5893
    "Created: 28.2.1996 / 16:40:46 / cg"
e954ce348a47 added protocol for reverse modifier mappings
Claus Gittinger <cg@exept.de>
parents: 465
diff changeset
  5894
    "Modified: 28.2.1996 / 17:11:34 / cg"
e954ce348a47 added protocol for reverse modifier mappings
Claus Gittinger <cg@exept.de>
parents: 465
diff changeset
  5895
!
e954ce348a47 added protocol for reverse modifier mappings
Claus Gittinger <cg@exept.de>
parents: 465
diff changeset
  5896
3236
3c7711c2e661 add new method:
ca
parents: 3231
diff changeset
  5897
prependModifierToKey:untranslatedKey
473
e954ce348a47 added protocol for reverse modifier mappings
Claus Gittinger <cg@exept.de>
parents: 465
diff changeset
  5898
    |xlatedKey s modifier|
51
bab0d5f83df3 *** empty log message ***
claus
parents: 46
diff changeset
  5899
bab0d5f83df3 *** empty log message ***
claus
parents: 46
diff changeset
  5900
    xlatedKey := untranslatedKey.
3323
a093f7005873 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3311
diff changeset
  5901
    xlatedKey isCharacter ifFalse:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5902
	xlatedKey := xlatedKey asSymbol
3323
a093f7005873 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3311
diff changeset
  5903
    ].
145
claus
parents: 144
diff changeset
  5904
473
e954ce348a47 added protocol for reverse modifier mappings
Claus Gittinger <cg@exept.de>
parents: 465
diff changeset
  5905
    modifier := self modifierKeyTranslationFor:untranslatedKey.
e954ce348a47 added protocol for reverse modifier mappings
Claus Gittinger <cg@exept.de>
parents: 465
diff changeset
  5906
    "/
e954ce348a47 added protocol for reverse modifier mappings
Claus Gittinger <cg@exept.de>
parents: 465
diff changeset
  5907
    "/ only prepend, if this is not a modifier
e954ce348a47 added protocol for reverse modifier mappings
Claus Gittinger <cg@exept.de>
parents: 465
diff changeset
  5908
    "/
e954ce348a47 added protocol for reverse modifier mappings
Claus Gittinger <cg@exept.de>
parents: 465
diff changeset
  5909
    modifier isNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5910
	s := xlatedKey asString.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5911
	ctrlDown ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5912
	    xlatedKey := 'Ctrl' , s
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5913
	].
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5914
	metaDown ifTrue:[                     "/ sigh - new hp's have both CMD and META keys.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5915
	    xlatedKey := 'Cmd' , s
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5916
	].
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5917
	altDown ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5918
	    xlatedKey := 'Alt' , s
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5919
	].
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5920
	xlatedKey isCharacter ifFalse:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5921
	    xlatedKey := xlatedKey asSymbol
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  5922
	].
51
bab0d5f83df3 *** empty log message ***
claus
parents: 46
diff changeset
  5923
    ].
bab0d5f83df3 *** empty log message ***
claus
parents: 46
diff changeset
  5924
3236
3c7711c2e661 add new method:
ca
parents: 3231
diff changeset
  5925
    ^ xlatedKey
3c7711c2e661 add new method:
ca
parents: 3231
diff changeset
  5926
!
3c7711c2e661 add new method:
ca
parents: 3231
diff changeset
  5927
3c7711c2e661 add new method:
ca
parents: 3231
diff changeset
  5928
translateKey:untranslatedKey forView:aView
3c7711c2e661 add new method:
ca
parents: 3231
diff changeset
  5929
    "Return the key translated via the translation table.
3c7711c2e661 add new method:
ca
parents: 3231
diff changeset
  5930
     Your application program should never depend on the values returned
3c7711c2e661 add new method:
ca
parents: 3231
diff changeset
  5931
     by this method, but instead use symbolic keys (such as #FindNext).
3c7711c2e661 add new method:
ca
parents: 3231
diff changeset
  5932
     Doing so allows easier reconfiguration by changing the translation map
3c7711c2e661 add new method:
ca
parents: 3231
diff changeset
  5933
     in the 'smalltalk.rc' or 'display.rc' startup files.
3c7711c2e661 add new method:
ca
parents: 3231
diff changeset
  5934
3c7711c2e661 add new method:
ca
parents: 3231
diff changeset
  5935
     First, the modifier is prepended, making character X into
3c7711c2e661 add new method:
ca
parents: 3231
diff changeset
  5936
     AltX, CtrlX or CmdX (on many systems, no separate Cmd (or Meta)
3c7711c2e661 add new method:
ca
parents: 3231
diff changeset
  5937
     key exists; on those we always get AltX if the metaModifiers are not set correctly).
3c7711c2e661 add new method:
ca
parents: 3231
diff changeset
  5938
     If multiple modifiers are active, the symbol becoms the concatenation
3c7711c2e661 add new method:
ca
parents: 3231
diff changeset
  5939
     as in AltCtrlq (for control-alt-q). Shift will affect the last component,
3c7711c2e661 add new method:
ca
parents: 3231
diff changeset
  5940
     thus the above with shift becoms: AltCtrlQ instead.
3c7711c2e661 add new method:
ca
parents: 3231
diff changeset
  5941
     Some keyboards offer both Alt and Meta keys - on those, the first has a
3c7711c2e661 add new method:
ca
parents: 3231
diff changeset
  5942
     prefix of Alt, the second has Cmd as prefix. Keyboards with only an Alt
3c7711c2e661 add new method:
ca
parents: 3231
diff changeset
  5943
     key will will create prefix codes of Cmd for that.
3c7711c2e661 add new method:
ca
parents: 3231
diff changeset
  5944
     For symbolic keys (i.e.Tab, Backspace etc, shift is ignored).
3c7711c2e661 add new method:
ca
parents: 3231
diff changeset
  5945
     Then the result is used as a key into the translation keyboardMap
3c7711c2e661 add new method:
ca
parents: 3231
diff changeset
  5946
     to get the final return value."
3c7711c2e661 add new method:
ca
parents: 3231
diff changeset
  5947
3831
3469f195000d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3829
diff changeset
  5948
    |xlatedKey|
3236
3c7711c2e661 add new method:
ca
parents: 3231
diff changeset
  5949
3c7711c2e661 add new method:
ca
parents: 3231
diff changeset
  5950
    xlatedKey := self prependModifierToKey:untranslatedKey.
3c7711c2e661 add new method:
ca
parents: 3231
diff changeset
  5951
3c7711c2e661 add new method:
ca
parents: 3231
diff changeset
  5952
    "/ translate via keyboardMap
3c7711c2e661 add new method:
ca
parents: 3231
diff changeset
  5953
3831
3469f195000d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3829
diff changeset
  5954
    xlatedKey := aView keyboardMap valueFor:xlatedKey.
259
Claus Gittinger <cg@exept.de>
parents: 249
diff changeset
  5955
    xlatedKey isCharacter ifFalse:[
3896
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  5956
	xlatedKey := xlatedKey asSymbol
259
Claus Gittinger <cg@exept.de>
parents: 249
diff changeset
  5957
    ].
51
bab0d5f83df3 *** empty log message ***
claus
parents: 46
diff changeset
  5958
    ^ xlatedKey
339
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  5959
473
e954ce348a47 added protocol for reverse modifier mappings
Claus Gittinger <cg@exept.de>
parents: 465
diff changeset
  5960
    "Modified: 28.2.1996 / 17:12:16 / cg"
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5961
! !
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5962
339
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  5963
!DeviceWorkstation methodsFor:'keyboard queries'!
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5964
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5965
altDown
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5966
    "return true, if the alt-key is currently pressed."
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5967
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  5968
    ^ altDown
249
f33de7016dba modifierKeyProcessing (altDown/metaDown ...) now done in smalltalk
Claus Gittinger <cg@exept.de>
parents: 241
diff changeset
  5969
!
f33de7016dba modifierKeyProcessing (altDown/metaDown ...) now done in smalltalk
Claus Gittinger <cg@exept.de>
parents: 241
diff changeset
  5970
3244
b067af26a26a cleanup
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
  5971
altModifierMask
b067af26a26a cleanup
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
  5972
    "return the mask bit for the alt modifier key"
b067af26a26a cleanup
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
  5973
b067af26a26a cleanup
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
  5974
    self subclassResponsibility
b067af26a26a cleanup
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
  5975
b067af26a26a cleanup
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
  5976
!
b067af26a26a cleanup
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
  5977
339
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  5978
ctrlDown   
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  5979
    "return true, if the control-key is currently pressed."
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  5980
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  5981
    ^ ctrlDown   
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  5982
!
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  5983
3244
b067af26a26a cleanup
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
  5984
ctrlModifierMask
b067af26a26a cleanup
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
  5985
    "return the mask bit for the ctrl modifier key"
b067af26a26a cleanup
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
  5986
b067af26a26a cleanup
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
  5987
    self subclassResponsibility
b067af26a26a cleanup
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
  5988
b067af26a26a cleanup
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
  5989
!
b067af26a26a cleanup
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
  5990
1114
1e1d28b9876a added queries for left- and rightShift keys.
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  5991
leftShiftDown
1e1d28b9876a added queries for left- and rightShift keys.
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  5992
    "return true, if the left shift-key is currently pressed.
1e1d28b9876a added queries for left- and rightShift keys.
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  5993
     Here, we dont differentiate between left and right shift keys."
1e1d28b9876a added queries for left- and rightShift keys.
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  5994
1e1d28b9876a added queries for left- and rightShift keys.
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  5995
    ^ shiftDown
1e1d28b9876a added queries for left- and rightShift keys.
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  5996
1e1d28b9876a added queries for left- and rightShift keys.
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  5997
    "Created: 9.11.1996 / 19:06:48 / cg"
1e1d28b9876a added queries for left- and rightShift keys.
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  5998
!
1e1d28b9876a added queries for left- and rightShift keys.
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  5999
339
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  6000
metaDown
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  6001
    "return true, if the meta-key (alt-key on systems without meta)
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  6002
     is currently pressed."
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  6003
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  6004
    ^ metaDown
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  6005
!
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  6006
3244
b067af26a26a cleanup
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
  6007
metaModifierMask
b067af26a26a cleanup
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
  6008
    "return the mask bit for the meta modifier key"
b067af26a26a cleanup
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
  6009
b067af26a26a cleanup
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
  6010
    self subclassResponsibility
b067af26a26a cleanup
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
  6011
b067af26a26a cleanup
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
  6012
!
b067af26a26a cleanup
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
  6013
1114
1e1d28b9876a added queries for left- and rightShift keys.
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  6014
rightShiftDown
1e1d28b9876a added queries for left- and rightShift keys.
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  6015
    "return true, if the right shift-key is currently pressed.
1e1d28b9876a added queries for left- and rightShift keys.
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  6016
     Here, we dont differentiate between left and right shift keys."
1e1d28b9876a added queries for left- and rightShift keys.
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  6017
1e1d28b9876a added queries for left- and rightShift keys.
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  6018
    ^ shiftDown
1e1d28b9876a added queries for left- and rightShift keys.
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  6019
1e1d28b9876a added queries for left- and rightShift keys.
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  6020
    "Created: 9.11.1996 / 19:06:56 / cg"
1e1d28b9876a added queries for left- and rightShift keys.
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  6021
!
1e1d28b9876a added queries for left- and rightShift keys.
Claus Gittinger <cg@exept.de>
parents: 1079
diff changeset
  6022
339
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  6023
shiftDown
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  6024
    "return true, if the shift-key is currently pressed."
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  6025
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  6026
    ^ shiftDown
3244
b067af26a26a cleanup
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
  6027
!
b067af26a26a cleanup
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
  6028
b067af26a26a cleanup
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
  6029
shiftModifierMask
b067af26a26a cleanup
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
  6030
    "return the mask bit for the shift modifier key"
b067af26a26a cleanup
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
  6031
b067af26a26a cleanup
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
  6032
    self subclassResponsibility
b067af26a26a cleanup
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
  6033
339
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  6034
! !
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  6035
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  6036
!DeviceWorkstation methodsFor:'misc'!
16bc1232293b added modifier-changing protocol
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  6037
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6038
beep
1198
314566302208 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  6039
    "{ Pragma: +optSpace }"
314566302208 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  6040
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6041
    "output an audible beep or bell"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6042
3078
9ee450338884 allow for beep to be disabled
ps
parents: 3073
diff changeset
  6043
    UserPreferences current beepEnabled ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6044
	Stdout nextPut:(Character bell)
1906
6fa8e10f3a51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1881
diff changeset
  6045
    ]
1198
314566302208 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  6046
3078
9ee450338884 allow for beep to be disabled
ps
parents: 3073
diff changeset
  6047
    "Modified: / 13.1.1997 / 22:56:13 / cg"
9ee450338884 allow for beep to be disabled
ps
parents: 3073
diff changeset
  6048
    "Modified: / 3.12.1999 / 17:13:52 / ps"
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6049
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6050
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6051
buffered
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6052
    "buffer drawing - do not send it immediately to the display.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6053
     This is the default; see comment in #unBuffered."
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6054
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6055
    ^ self
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6056
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6057
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6058
compressMotionEvents:aBoolean
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6059
    "turn on/off motion event compression 
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6060
     - compressions makes always sense except in free-hand drawing of curves"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6061
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6062
    motionEventCompression := aBoolean
115
1d93fd8c5371 *** empty log message ***
claus
parents: 109
diff changeset
  6063
!
1d93fd8c5371 *** empty log message ***
claus
parents: 109
diff changeset
  6064
2744
7129de2192f7 #hasShape -> #supportsArbitraryShapedViews
Claus Gittinger <cg@exept.de>
parents: 2735
diff changeset
  6065
flush 
7129de2192f7 #hasShape -> #supportsArbitraryShapedViews
Claus Gittinger <cg@exept.de>
parents: 2735
diff changeset
  6066
    "send all buffered drawing to the display.
7129de2192f7 #hasShape -> #supportsArbitraryShapedViews
Claus Gittinger <cg@exept.de>
parents: 2735
diff changeset
  6067
     This used to be called #synchronizeOutput, but has been renamed
7129de2192f7 #hasShape -> #supportsArbitraryShapedViews
Claus Gittinger <cg@exept.de>
parents: 2735
diff changeset
  6068
     for ST-80 compatibility."
7129de2192f7 #hasShape -> #supportsArbitraryShapedViews
Claus Gittinger <cg@exept.de>
parents: 2735
diff changeset
  6069
7129de2192f7 #hasShape -> #supportsArbitraryShapedViews
Claus Gittinger <cg@exept.de>
parents: 2735
diff changeset
  6070
    ^ self
7129de2192f7 #hasShape -> #supportsArbitraryShapedViews
Claus Gittinger <cg@exept.de>
parents: 2735
diff changeset
  6071
!
7129de2192f7 #hasShape -> #supportsArbitraryShapedViews
Claus Gittinger <cg@exept.de>
parents: 2735
diff changeset
  6072
2716
b295e9763c24 added a slot for the current focusView
Claus Gittinger <cg@exept.de>
parents: 2712
diff changeset
  6073
focusView
b295e9763c24 added a slot for the current focusView
Claus Gittinger <cg@exept.de>
parents: 2712
diff changeset
  6074
    ^ focusView
b295e9763c24 added a slot for the current focusView
Claus Gittinger <cg@exept.de>
parents: 2712
diff changeset
  6075
!
b295e9763c24 added a slot for the current focusView
Claus Gittinger <cg@exept.de>
parents: 2712
diff changeset
  6076
b295e9763c24 added a slot for the current focusView
Claus Gittinger <cg@exept.de>
parents: 2712
diff changeset
  6077
focusView:aView
b295e9763c24 added a slot for the current focusView
Claus Gittinger <cg@exept.de>
parents: 2712
diff changeset
  6078
    focusView := aView
b295e9763c24 added a slot for the current focusView
Claus Gittinger <cg@exept.de>
parents: 2712
diff changeset
  6079
!
b295e9763c24 added a slot for the current focusView
Claus Gittinger <cg@exept.de>
parents: 2712
diff changeset
  6080
3385
777869fdc56d restoreWindows is better (I hope)
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  6081
redrawAllWindows
777869fdc56d restoreWindows is better (I hope)
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  6082
    |setOfViews|
777869fdc56d restoreWindows is better (I hope)
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  6083
777869fdc56d restoreWindows is better (I hope)
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  6084
    setOfViews := self knownViews.
777869fdc56d restoreWindows is better (I hope)
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  6085
777869fdc56d restoreWindows is better (I hope)
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  6086
    setOfViews do:[:aView |
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6087
	aView shown ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6088
	    aView isRootView ifFalse:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6089
		aView clear; invalidate
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6090
	    ]
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6091
	]
3385
777869fdc56d restoreWindows is better (I hope)
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  6092
    ]
777869fdc56d restoreWindows is better (I hope)
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  6093
777869fdc56d restoreWindows is better (I hope)
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  6094
    "
777869fdc56d restoreWindows is better (I hope)
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  6095
     Display redrawAllWindows
777869fdc56d restoreWindows is better (I hope)
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  6096
    "
777869fdc56d restoreWindows is better (I hope)
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  6097
777869fdc56d restoreWindows is better (I hope)
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  6098
    "Modified: 15.10.1997 / 19:06:26 / cg"
777869fdc56d restoreWindows is better (I hope)
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  6099
!
777869fdc56d restoreWindows is better (I hope)
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  6100
2536
92335e8cf854 repadding support
Claus Gittinger <cg@exept.de>
parents: 2528
diff changeset
  6101
repadBits:givenBits width:imageWidth height:imageHeight depth:imageDepth from:givenPadding to:wantedPadding
92335e8cf854 repadding support
Claus Gittinger <cg@exept.de>
parents: 2528
diff changeset
  6102
    "repadding support - required for some devices when drawing images"
92335e8cf854 repadding support
Claus Gittinger <cg@exept.de>
parents: 2528
diff changeset
  6103
92335e8cf854 repadding support
Claus Gittinger <cg@exept.de>
parents: 2528
diff changeset
  6104
    |newBits bytesPerLineGiven bytesPerLineWanted 
92335e8cf854 repadding support
Claus Gittinger <cg@exept.de>
parents: 2528
diff changeset
  6105
     dstIndex "{ Class: SmallInteger }"
92335e8cf854 repadding support
Claus Gittinger <cg@exept.de>
parents: 2528
diff changeset
  6106
     srcIndex "{ Class: SmallInteger }"|
92335e8cf854 repadding support
Claus Gittinger <cg@exept.de>
parents: 2528
diff changeset
  6107
92335e8cf854 repadding support
Claus Gittinger <cg@exept.de>
parents: 2528
diff changeset
  6108
    bytesPerLineGiven := ((width * imageDepth) + givenPadding - 1) // 8.
92335e8cf854 repadding support
Claus Gittinger <cg@exept.de>
parents: 2528
diff changeset
  6109
    bytesPerLineWanted := ((width * imageDepth) + wantedPadding - 1) // 8.
92335e8cf854 repadding support
Claus Gittinger <cg@exept.de>
parents: 2528
diff changeset
  6110
92335e8cf854 repadding support
Claus Gittinger <cg@exept.de>
parents: 2528
diff changeset
  6111
    bytesPerLineGiven == bytesPerLineWanted ifTrue:[^ givenBits].
92335e8cf854 repadding support
Claus Gittinger <cg@exept.de>
parents: 2528
diff changeset
  6112
92335e8cf854 repadding support
Claus Gittinger <cg@exept.de>
parents: 2528
diff changeset
  6113
    newBits := ByteArray new:(bytesPerLineWanted * height).
92335e8cf854 repadding support
Claus Gittinger <cg@exept.de>
parents: 2528
diff changeset
  6114
    srcIndex := dstIndex := 1.
92335e8cf854 repadding support
Claus Gittinger <cg@exept.de>
parents: 2528
diff changeset
  6115
    1 to:height do:[:row |
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6116
	newBits 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6117
	    replaceFrom:dstIndex
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6118
	    to:(dstIndex + bytesPerLineWanted - 1)
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6119
	    with:givenBits
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6120
	    startingAt:srcIndex.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6121
	dstIndex := dstIndex + bytesPerLineWanted.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6122
	srcIndex := srcIndex + bytesPerLineGiven.
2536
92335e8cf854 repadding support
Claus Gittinger <cg@exept.de>
parents: 2528
diff changeset
  6123
    ].
92335e8cf854 repadding support
Claus Gittinger <cg@exept.de>
parents: 2528
diff changeset
  6124
    ^ newBits.
92335e8cf854 repadding support
Claus Gittinger <cg@exept.de>
parents: 2528
diff changeset
  6125
        
92335e8cf854 repadding support
Claus Gittinger <cg@exept.de>
parents: 2528
diff changeset
  6126
!
92335e8cf854 repadding support
Claus Gittinger <cg@exept.de>
parents: 2528
diff changeset
  6127
1926
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  6128
restoreWindows
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  6129
    "restore the display.
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  6130
     Here, a view is popped over all of the screen temporarily"
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  6131
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  6132
    |v|
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  6133
3385
777869fdc56d restoreWindows is better (I hope)
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  6134
    self flush.
1926
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  6135
    v := PopUpView onDevice:self.
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  6136
    v origin:0@0 corner:(self bounds corner).
3385
777869fdc56d restoreWindows is better (I hope)
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  6137
    v raise.
777869fdc56d restoreWindows is better (I hope)
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  6138
    v realize.
777869fdc56d restoreWindows is better (I hope)
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  6139
    self flush.
777869fdc56d restoreWindows is better (I hope)
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  6140
777869fdc56d restoreWindows is better (I hope)
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  6141
    Delay waitForSeconds:0.2.
777869fdc56d restoreWindows is better (I hope)
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  6142
    v destroy.
777869fdc56d restoreWindows is better (I hope)
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  6143
    self flush.
777869fdc56d restoreWindows is better (I hope)
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  6144
    Delay waitForSeconds:0.2.
777869fdc56d restoreWindows is better (I hope)
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  6145
    self flush.
777869fdc56d restoreWindows is better (I hope)
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  6146
777869fdc56d restoreWindows is better (I hope)
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  6147
    self redrawAllWindows.
1926
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  6148
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  6149
    "
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  6150
     Display restoreWindows
3385
777869fdc56d restoreWindows is better (I hope)
Claus Gittinger <cg@exept.de>
parents: 3360
diff changeset
  6151
     Display redrawAllWindows
1926
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  6152
    "
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  6153
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  6154
    "Modified: 15.10.1997 / 19:06:26 / cg"
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  6155
!
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  6156
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6157
ringBell
1198
314566302208 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  6158
    "{ Pragma: +optSpace }"
314566302208 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  6159
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6160
    "alias for beep; for ST-80 compatibility"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6161
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6162
    self beep
1198
314566302208 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  6163
314566302208 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  6164
    "Modified: 13.1.1997 / 22:56:02 / cg"
115
1d93fd8c5371 *** empty log message ***
claus
parents: 109
diff changeset
  6165
!
1d93fd8c5371 *** empty log message ***
claus
parents: 109
diff changeset
  6166
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6167
setInputFocusTo:aWindowId
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6168
    ^ self subclassResponsibility
115
1d93fd8c5371 *** empty log message ***
claus
parents: 109
diff changeset
  6169
!
1d93fd8c5371 *** empty log message ***
claus
parents: 109
diff changeset
  6170
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6171
sync
1198
314566302208 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  6172
    "{ Pragma: +optSpace }"
314566302208 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  6173
314566302208 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  6174
    "send all buffered drawing to the display and wait until its processed/drawn.
314566302208 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  6175
     See also #flush, which does not wait.
314566302208 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  6176
     ST-80 seems to only support flush."
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6177
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6178
    self flush
1198
314566302208 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  6179
314566302208 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  6180
    "Modified: 13.1.1997 / 22:55:44 / cg"
115
1d93fd8c5371 *** empty log message ***
claus
parents: 109
diff changeset
  6181
!
1d93fd8c5371 *** empty log message ***
claus
parents: 109
diff changeset
  6182
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6183
synchronizeOutput
1198
314566302208 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  6184
    "{ Pragma: +optSpace }"
314566302208 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  6185
3430
1ca3730f78de Use <resource:#obsolete>
Stefan Vogel <sv@exept.de>
parents: 3424
diff changeset
  6186
    <resource:#obsolete>
1ca3730f78de Use <resource:#obsolete>
Stefan Vogel <sv@exept.de>
parents: 3424
diff changeset
  6187
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6188
    "send all buffered drawing to the display.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6189
     OBSOLETE: please use #flush for ST-80 compatibility."
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6190
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6191
    self obsoleteMethodWarning:'use #flush'.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6192
    ^ self flush
1198
314566302208 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  6193
314566302208 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  6194
    "Modified: 13.1.1997 / 22:53:44 / cg"
115
1d93fd8c5371 *** empty log message ***
claus
parents: 109
diff changeset
  6195
!
1d93fd8c5371 *** empty log message ***
claus
parents: 109
diff changeset
  6196
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6197
unBuffered
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6198
    "make all drawing be sent immediately to the display.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6199
     This may horribly slow down your drawings, but will result
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6200
     in any errors to be delivered right after the bad operation
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6201
     (in X only). Only useful for debugging."
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6202
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6203
    ^ self
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6204
! !
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6205
1717
4e48d1778b27 added setPointerPosition: for recorder/playback support
Claus Gittinger <cg@exept.de>
parents: 1710
diff changeset
  6206
!DeviceWorkstation methodsFor:'pointer stuff'!
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6207
2869
0f9e9dcfd2ee checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2867
diff changeset
  6208
anyButtonMotionMask
0f9e9dcfd2ee checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2867
diff changeset
  6209
    "return an integer for masking out any button from a motion
0f9e9dcfd2ee checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2867
diff changeset
  6210
     buttonStates value. This is very device specific and to
0f9e9dcfd2ee checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2867
diff changeset
  6211
     be redefined by concrete subclasses."
0f9e9dcfd2ee checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2867
diff changeset
  6212
0f9e9dcfd2ee checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2867
diff changeset
  6213
    ^ self subclassResponsibility
0f9e9dcfd2ee checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2867
diff changeset
  6214
0f9e9dcfd2ee checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2867
diff changeset
  6215
    "Created: 15.10.1997 / 19:17:00 / cg"
0f9e9dcfd2ee checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2867
diff changeset
  6216
!
0f9e9dcfd2ee checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2867
diff changeset
  6217
1926
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  6218
anyButtonPressed
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  6219
    "return true, if the any button is currently pressed"
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  6220
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  6221
    ^ (self buttonStates bitAnd:self anyButtonStateMask) ~~ 0
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  6222
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  6223
    "Created: 15.10.1997 / 19:16:32 / cg"
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  6224
!
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  6225
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  6226
anyButtonStateMask
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  6227
    "return an integer for masking out any button from a
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  6228
     buttonStates value. This is very device specific and to
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  6229
     be redefined by concrete subclasses."
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  6230
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  6231
    ^ self subclassResponsibility
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  6232
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  6233
    "Created: 15.10.1997 / 19:17:00 / cg"
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  6234
!
e0966ecc8766 Some Squeak compatibility.
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  6235
2880
9dda5e03b02b missing subClassResponsibilty protocol
Claus Gittinger <cg@exept.de>
parents: 2876
diff changeset
  6236
button1MotionMask
9dda5e03b02b missing subClassResponsibilty protocol
Claus Gittinger <cg@exept.de>
parents: 2876
diff changeset
  6237
    "return an integer for masking out the left button from a
9dda5e03b02b missing subClassResponsibilty protocol
Claus Gittinger <cg@exept.de>
parents: 2876
diff changeset
  6238
     motion buttonStates value. This is very device specific and to
9dda5e03b02b missing subClassResponsibilty protocol
Claus Gittinger <cg@exept.de>
parents: 2876
diff changeset
  6239
     be redefined by concrete subclasses."
9dda5e03b02b missing subClassResponsibilty protocol
Claus Gittinger <cg@exept.de>
parents: 2876
diff changeset
  6240
9dda5e03b02b missing subClassResponsibilty protocol
Claus Gittinger <cg@exept.de>
parents: 2876
diff changeset
  6241
    ^ self subclassResponsibility
9dda5e03b02b missing subClassResponsibilty protocol
Claus Gittinger <cg@exept.de>
parents: 2876
diff changeset
  6242
!
9dda5e03b02b missing subClassResponsibilty protocol
Claus Gittinger <cg@exept.de>
parents: 2876
diff changeset
  6243
9dda5e03b02b missing subClassResponsibilty protocol
Claus Gittinger <cg@exept.de>
parents: 2876
diff changeset
  6244
button2MotionMask
9dda5e03b02b missing subClassResponsibilty protocol
Claus Gittinger <cg@exept.de>
parents: 2876
diff changeset
  6245
    "return an integer for masking out the middle button from a
9dda5e03b02b missing subClassResponsibilty protocol
Claus Gittinger <cg@exept.de>
parents: 2876
diff changeset
  6246
     motion buttonStates value. This is very device specific and to
9dda5e03b02b missing subClassResponsibilty protocol
Claus Gittinger <cg@exept.de>
parents: 2876
diff changeset
  6247
     be redefined by concrete subclasses."
9dda5e03b02b missing subClassResponsibilty protocol
Claus Gittinger <cg@exept.de>
parents: 2876
diff changeset
  6248
9dda5e03b02b missing subClassResponsibilty protocol
Claus Gittinger <cg@exept.de>
parents: 2876
diff changeset
  6249
    ^ self subclassResponsibility
9dda5e03b02b missing subClassResponsibilty protocol
Claus Gittinger <cg@exept.de>
parents: 2876
diff changeset
  6250
!
9dda5e03b02b missing subClassResponsibilty protocol
Claus Gittinger <cg@exept.de>
parents: 2876
diff changeset
  6251
9dda5e03b02b missing subClassResponsibilty protocol
Claus Gittinger <cg@exept.de>
parents: 2876
diff changeset
  6252
button3MotionMask
9dda5e03b02b missing subClassResponsibilty protocol
Claus Gittinger <cg@exept.de>
parents: 2876
diff changeset
  6253
    "return an integer for masking out the right button from a
9dda5e03b02b missing subClassResponsibilty protocol
Claus Gittinger <cg@exept.de>
parents: 2876
diff changeset
  6254
     motion buttonStates value. This is very device specific and to
9dda5e03b02b missing subClassResponsibilty protocol
Claus Gittinger <cg@exept.de>
parents: 2876
diff changeset
  6255
     be redefined by concrete subclasses."
9dda5e03b02b missing subClassResponsibilty protocol
Claus Gittinger <cg@exept.de>
parents: 2876
diff changeset
  6256
9dda5e03b02b missing subClassResponsibilty protocol
Claus Gittinger <cg@exept.de>
parents: 2876
diff changeset
  6257
    ^ self subclassResponsibility
9dda5e03b02b missing subClassResponsibilty protocol
Claus Gittinger <cg@exept.de>
parents: 2876
diff changeset
  6258
!
9dda5e03b02b missing subClassResponsibilty protocol
Claus Gittinger <cg@exept.de>
parents: 2876
diff changeset
  6259
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6260
buttonStates
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6261
    "return an integer representing the state of the pointer buttons;
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6262
     a one-bit represents a pressed button. The bit positions are device specific
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6263
     and to be returned by the *ButtonStateMask methods.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6264
     Must be redefined by concrete subclasses."
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6265
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6266
    ^ self subclassResponsibility
115
1d93fd8c5371 *** empty log message ***
claus
parents: 109
diff changeset
  6267
!
1d93fd8c5371 *** empty log message ***
claus
parents: 109
diff changeset
  6268
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6269
leftButtonPressed
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6270
    "return true, if the left button is currently pressed"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6271
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6272
    ^ (self buttonStates bitAnd:self leftButtonStateMask) ~~ 0
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6273
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6274
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6275
leftButtonStateMask
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6276
    "return an integer for masking out the left button from a
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6277
     buttonStates value. This is very device specific and to
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6278
     be redefined by concrete subclasses."
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6279
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6280
    ^ self subclassResponsibility
115
1d93fd8c5371 *** empty log message ***
claus
parents: 109
diff changeset
  6281
!
1d93fd8c5371 *** empty log message ***
claus
parents: 109
diff changeset
  6282
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6283
middleButtonPressed
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6284
    "return true, if the middle button is currently pressed"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6285
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6286
    ^ (self buttonStates bitAnd:self middleButtonStateMask) ~~ 0
115
1d93fd8c5371 *** empty log message ***
claus
parents: 109
diff changeset
  6287
!
1d93fd8c5371 *** empty log message ***
claus
parents: 109
diff changeset
  6288
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6289
middleButtonStateMask
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6290
    "return an integer for masking out the middle button from a
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6291
     buttonStates value. This is very device specific and to
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6292
     be redefined by concrete subclasses."
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6294
    ^ self subclassResponsibility
115
1d93fd8c5371 *** empty log message ***
claus
parents: 109
diff changeset
  6295
!
1d93fd8c5371 *** empty log message ***
claus
parents: 109
diff changeset
  6296
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6297
pointerPosition
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6298
    "return the current pointer position in root-window coordinates.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6299
     Must be redefined by concrete subclasses."
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6300
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6301
    ^ self subclassResponsibility
115
1d93fd8c5371 *** empty log message ***
claus
parents: 109
diff changeset
  6302
!
1d93fd8c5371 *** empty log message ***
claus
parents: 109
diff changeset
  6303
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6304
rightButtonPressed
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6305
    "return true, if the right button is currently pressed"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6306
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6307
    ^ (self buttonStates bitAnd:self rightButtonStateMask) ~~ 0
115
1d93fd8c5371 *** empty log message ***
claus
parents: 109
diff changeset
  6308
!
1d93fd8c5371 *** empty log message ***
claus
parents: 109
diff changeset
  6309
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6310
rightButtonStateMask
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6311
    "return an integer for masking out the right button from a
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6312
     buttonStates value. This is very device specific and to
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6313
     be redefined by concrete subclasses."
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6314
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6315
    ^ self subclassResponsibility
115
1d93fd8c5371 *** empty log message ***
claus
parents: 109
diff changeset
  6316
!
1d93fd8c5371 *** empty log message ***
claus
parents: 109
diff changeset
  6317
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6318
rootPositionOfLastEvent
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6319
    "return the position in root-window coordinates
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6320
     of the last button, key or pointer event.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6321
     Must be redefined by concrete subclasses."
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6322
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6323
    ^ self subclassResponsibility
1717
4e48d1778b27 added setPointerPosition: for recorder/playback support
Claus Gittinger <cg@exept.de>
parents: 1710
diff changeset
  6324
!
4e48d1778b27 added setPointerPosition: for recorder/playback support
Claus Gittinger <cg@exept.de>
parents: 1710
diff changeset
  6325
4e48d1778b27 added setPointerPosition: for recorder/playback support
Claus Gittinger <cg@exept.de>
parents: 1710
diff changeset
  6326
setPointerPosition:newPosition
4e48d1778b27 added setPointerPosition: for recorder/playback support
Claus Gittinger <cg@exept.de>
parents: 1710
diff changeset
  6327
    "change the pointer position in root-window coordinates."
4e48d1778b27 added setPointerPosition: for recorder/playback support
Claus Gittinger <cg@exept.de>
parents: 1710
diff changeset
  6328
3896
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  6329
    self setPointerPosition:newPosition in:(self rootView id)
1717
4e48d1778b27 added setPointerPosition: for recorder/playback support
Claus Gittinger <cg@exept.de>
parents: 1710
diff changeset
  6330
4e48d1778b27 added setPointerPosition: for recorder/playback support
Claus Gittinger <cg@exept.de>
parents: 1710
diff changeset
  6331
    "
4e48d1778b27 added setPointerPosition: for recorder/playback support
Claus Gittinger <cg@exept.de>
parents: 1710
diff changeset
  6332
     Display setPointerPosition:10@30
4e48d1778b27 added setPointerPosition: for recorder/playback support
Claus Gittinger <cg@exept.de>
parents: 1710
diff changeset
  6333
    "
4e48d1778b27 added setPointerPosition: for recorder/playback support
Claus Gittinger <cg@exept.de>
parents: 1710
diff changeset
  6334
!
4e48d1778b27 added setPointerPosition: for recorder/playback support
Claus Gittinger <cg@exept.de>
parents: 1710
diff changeset
  6335
4e48d1778b27 added setPointerPosition: for recorder/playback support
Claus Gittinger <cg@exept.de>
parents: 1710
diff changeset
  6336
setPointerPosition:newPosition in:aWindowID
4e48d1778b27 added setPointerPosition: for recorder/playback support
Claus Gittinger <cg@exept.de>
parents: 1710
diff changeset
  6337
    "change the pointer position relative to some views origin.
4e48d1778b27 added setPointerPosition: for recorder/playback support
Claus Gittinger <cg@exept.de>
parents: 1710
diff changeset
  6338
     Must be redefined by concrete subclasses."
4e48d1778b27 added setPointerPosition: for recorder/playback support
Claus Gittinger <cg@exept.de>
parents: 1710
diff changeset
  6339
4e48d1778b27 added setPointerPosition: for recorder/playback support
Claus Gittinger <cg@exept.de>
parents: 1710
diff changeset
  6340
    ^ self subclassResponsibility
4e48d1778b27 added setPointerPosition: for recorder/playback support
Claus Gittinger <cg@exept.de>
parents: 1710
diff changeset
  6341
4e48d1778b27 added setPointerPosition: for recorder/playback support
Claus Gittinger <cg@exept.de>
parents: 1710
diff changeset
  6342
    "
4e48d1778b27 added setPointerPosition: for recorder/playback support
Claus Gittinger <cg@exept.de>
parents: 1710
diff changeset
  6343
     Display setPointerPosition:10@30
4e48d1778b27 added setPointerPosition: for recorder/playback support
Claus Gittinger <cg@exept.de>
parents: 1710
diff changeset
  6344
    "
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6345
! !
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6346
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6347
!DeviceWorkstation methodsFor:'printing & storing'!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6348
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6349
printOn:aStream
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6350
    "for your convenience, add the name of the display connection
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6351
     or 'default' to the printed representation."
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6352
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6353
    |name|
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6354
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6355
    super printOn:aStream.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6356
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6357
    aStream nextPut:$(.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6358
    (name := self displayName) isNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6359
	name := 'defaultDisplay'
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6360
    ].
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6361
    aStream nextPutAll:name.
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6362
    aStream nextPut:$)
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6363
! !
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6364
3791
a9342b99295c Fix clipboard handling.
Stefan Vogel <sv@exept.de>
parents: 3771
diff changeset
  6365
!DeviceWorkstation methodsFor:'queries'!
a9342b99295c Fix clipboard handling.
Stefan Vogel <sv@exept.de>
parents: 3771
diff changeset
  6366
a9342b99295c Fix clipboard handling.
Stefan Vogel <sv@exept.de>
parents: 3771
diff changeset
  6367
supportedClipboards
a9342b99295c Fix clipboard handling.
Stefan Vogel <sv@exept.de>
parents: 3771
diff changeset
  6368
    "answer a collection of symbols with the supported clipboards..
a9342b99295c Fix clipboard handling.
Stefan Vogel <sv@exept.de>
parents: 3771
diff changeset
  6369
     At least clipboard should be supported on any platform"
a9342b99295c Fix clipboard handling.
Stefan Vogel <sv@exept.de>
parents: 3771
diff changeset
  6370
a9342b99295c Fix clipboard handling.
Stefan Vogel <sv@exept.de>
parents: 3771
diff changeset
  6371
    ^ #(clipboard)
a9342b99295c Fix clipboard handling.
Stefan Vogel <sv@exept.de>
parents: 3771
diff changeset
  6372
! !
a9342b99295c Fix clipboard handling.
Stefan Vogel <sv@exept.de>
parents: 3771
diff changeset
  6373
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6374
!DeviceWorkstation methodsFor:'retrieving pixels'!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6375
1461
6d8b022bfcd8 renamed getBitsFrom to getBitsFromId
Claus Gittinger <cg@exept.de>
parents: 1460
diff changeset
  6376
getBitsFromId:aDrawableId x:srcx y:srcy width:w height:h into:imageBits
1460
e068ac480152 splitted getBitsFrom into pixmap-get and view-get (windows)
Claus Gittinger <cg@exept.de>
parents: 1454
diff changeset
  6377
    "get bits from a view drawable into the imageBits. The storage for the bits
e068ac480152 splitted getBitsFrom into pixmap-get and view-get (windows)
Claus Gittinger <cg@exept.de>
parents: 1454
diff changeset
  6378
     must be big enough for the data to fit. If ok, returns an array with some
e068ac480152 splitted getBitsFrom into pixmap-get and view-get (windows)
Claus Gittinger <cg@exept.de>
parents: 1454
diff changeset
  6379
     info and the bits in imageBits. The info contains the depth, bitOrder and
e068ac480152 splitted getBitsFrom into pixmap-get and view-get (windows)
Claus Gittinger <cg@exept.de>
parents: 1454
diff changeset
  6380
     number of bytes per scanline. The number of bytes per scanline is not known
e068ac480152 splitted getBitsFrom into pixmap-get and view-get (windows)
Claus Gittinger <cg@exept.de>
parents: 1454
diff changeset
  6381
     in advance, since the X-server is free to return whatever it thinks is a good padding."
e068ac480152 splitted getBitsFrom into pixmap-get and view-get (windows)
Claus Gittinger <cg@exept.de>
parents: 1454
diff changeset
  6382
e068ac480152 splitted getBitsFrom into pixmap-get and view-get (windows)
Claus Gittinger <cg@exept.de>
parents: 1454
diff changeset
  6383
    self subclassResponsibility
e068ac480152 splitted getBitsFrom into pixmap-get and view-get (windows)
Claus Gittinger <cg@exept.de>
parents: 1454
diff changeset
  6384
e068ac480152 splitted getBitsFrom into pixmap-get and view-get (windows)
Claus Gittinger <cg@exept.de>
parents: 1454
diff changeset
  6385
    "Created: 19.3.1997 / 13:41:21 / cg"
e068ac480152 splitted getBitsFrom into pixmap-get and view-get (windows)
Claus Gittinger <cg@exept.de>
parents: 1454
diff changeset
  6386
!
e068ac480152 splitted getBitsFrom into pixmap-get and view-get (windows)
Claus Gittinger <cg@exept.de>
parents: 1454
diff changeset
  6387
1461
6d8b022bfcd8 renamed getBitsFrom to getBitsFromId
Claus Gittinger <cg@exept.de>
parents: 1460
diff changeset
  6388
getBitsFromPixmapId:aDrawableId x:srcx y:srcy width:w height:h into:imageBits
1460
e068ac480152 splitted getBitsFrom into pixmap-get and view-get (windows)
Claus Gittinger <cg@exept.de>
parents: 1454
diff changeset
  6389
    "get bits from a drawable into the imageBits. The storage for the bits
e068ac480152 splitted getBitsFrom into pixmap-get and view-get (windows)
Claus Gittinger <cg@exept.de>
parents: 1454
diff changeset
  6390
     must be big enough for the data to fit. If ok, returns an array with some
e068ac480152 splitted getBitsFrom into pixmap-get and view-get (windows)
Claus Gittinger <cg@exept.de>
parents: 1454
diff changeset
  6391
     info and the bits in imageBits. The info contains the depth, bitOrder and
e068ac480152 splitted getBitsFrom into pixmap-get and view-get (windows)
Claus Gittinger <cg@exept.de>
parents: 1454
diff changeset
  6392
     number of bytes per scanline. The number of bytes per scanline is not known
e068ac480152 splitted getBitsFrom into pixmap-get and view-get (windows)
Claus Gittinger <cg@exept.de>
parents: 1454
diff changeset
  6393
     in advance, since the X-server is free to return whatever it thinks is a good padding."
e068ac480152 splitted getBitsFrom into pixmap-get and view-get (windows)
Claus Gittinger <cg@exept.de>
parents: 1454
diff changeset
  6394
e068ac480152 splitted getBitsFrom into pixmap-get and view-get (windows)
Claus Gittinger <cg@exept.de>
parents: 1454
diff changeset
  6395
    ^ self
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6396
	getBitsFromId:aDrawableId 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6397
	x:srcx 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6398
	y:srcy 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6399
	width:w 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6400
	height:h 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6401
	into:imageBits
1460
e068ac480152 splitted getBitsFrom into pixmap-get and view-get (windows)
Claus Gittinger <cg@exept.de>
parents: 1454
diff changeset
  6402
e068ac480152 splitted getBitsFrom into pixmap-get and view-get (windows)
Claus Gittinger <cg@exept.de>
parents: 1454
diff changeset
  6403
    "Created: 19.3.1997 / 13:43:04 / cg"
e068ac480152 splitted getBitsFrom into pixmap-get and view-get (windows)
Claus Gittinger <cg@exept.de>
parents: 1454
diff changeset
  6404
    "Modified: 19.3.1997 / 13:43:38 / cg"
e068ac480152 splitted getBitsFrom into pixmap-get and view-get (windows)
Claus Gittinger <cg@exept.de>
parents: 1454
diff changeset
  6405
!
e068ac480152 splitted getBitsFrom into pixmap-get and view-get (windows)
Claus Gittinger <cg@exept.de>
parents: 1454
diff changeset
  6406
1461
6d8b022bfcd8 renamed getBitsFrom to getBitsFromId
Claus Gittinger <cg@exept.de>
parents: 1460
diff changeset
  6407
getBitsFromViewId:aDrawableId x:srcx y:srcy width:w height:h into:imageBits
1460
e068ac480152 splitted getBitsFrom into pixmap-get and view-get (windows)
Claus Gittinger <cg@exept.de>
parents: 1454
diff changeset
  6408
    "get bits from a drawable into the imageBits. The storage for the bits
e068ac480152 splitted getBitsFrom into pixmap-get and view-get (windows)
Claus Gittinger <cg@exept.de>
parents: 1454
diff changeset
  6409
     must be big enough for the data to fit. If ok, returns an array with some
e068ac480152 splitted getBitsFrom into pixmap-get and view-get (windows)
Claus Gittinger <cg@exept.de>
parents: 1454
diff changeset
  6410
     info and the bits in imageBits. The info contains the depth, bitOrder and
e068ac480152 splitted getBitsFrom into pixmap-get and view-get (windows)
Claus Gittinger <cg@exept.de>
parents: 1454
diff changeset
  6411
     number of bytes per scanline. The number of bytes per scanline is not known
e068ac480152 splitted getBitsFrom into pixmap-get and view-get (windows)
Claus Gittinger <cg@exept.de>
parents: 1454
diff changeset
  6412
     in advance, since the X-server is free to return whatever it thinks is a good padding."
e068ac480152 splitted getBitsFrom into pixmap-get and view-get (windows)
Claus Gittinger <cg@exept.de>
parents: 1454
diff changeset
  6413
e068ac480152 splitted getBitsFrom into pixmap-get and view-get (windows)
Claus Gittinger <cg@exept.de>
parents: 1454
diff changeset
  6414
    ^ self
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6415
	getBitsFromId:aDrawableId 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6416
	x:srcx 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6417
	y:srcy 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6418
	width:w 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6419
	height:h 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6420
	into:imageBits
1460
e068ac480152 splitted getBitsFrom into pixmap-get and view-get (windows)
Claus Gittinger <cg@exept.de>
parents: 1454
diff changeset
  6421
e068ac480152 splitted getBitsFrom into pixmap-get and view-get (windows)
Claus Gittinger <cg@exept.de>
parents: 1454
diff changeset
  6422
    "Created: 19.3.1997 / 13:43:04 / cg"
e068ac480152 splitted getBitsFrom into pixmap-get and view-get (windows)
Claus Gittinger <cg@exept.de>
parents: 1454
diff changeset
  6423
    "Modified: 19.3.1997 / 13:43:42 / cg"
e068ac480152 splitted getBitsFrom into pixmap-get and view-get (windows)
Claus Gittinger <cg@exept.de>
parents: 1454
diff changeset
  6424
!
e068ac480152 splitted getBitsFrom into pixmap-get and view-get (windows)
Claus Gittinger <cg@exept.de>
parents: 1454
diff changeset
  6425
2712
641bad954139 need gc-arg in getPixel (for WIN32)
Claus Gittinger <cg@exept.de>
parents: 2699
diff changeset
  6426
getPixelX:x y:y from:aDrawableId with:gcId
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6427
    "return the pixel value at x/y"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6428
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6429
    ^ self subclassResponsibility
2712
641bad954139 need gc-arg in getPixel (for WIN32)
Claus Gittinger <cg@exept.de>
parents: 2699
diff changeset
  6430
641bad954139 need gc-arg in getPixel (for WIN32)
Claus Gittinger <cg@exept.de>
parents: 2699
diff changeset
  6431
    "Created: / 22.5.1999 / 01:40:42 / cg"
115
1d93fd8c5371 *** empty log message ***
claus
parents: 109
diff changeset
  6432
! !
1d93fd8c5371 *** empty log message ***
claus
parents: 109
diff changeset
  6433
1022
e41ea5762606 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  6434
!DeviceWorkstation methodsFor:'selections'!
e41ea5762606 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  6435
1789
a7390f03e067 added clipBoardEncoding
Claus Gittinger <cg@exept.de>
parents: 1788
diff changeset
  6436
clipBoardEncoding
a7390f03e067 added clipBoardEncoding
Claus Gittinger <cg@exept.de>
parents: 1788
diff changeset
  6437
    "return the assumed default clibBoards encoding
a7390f03e067 added clipBoardEncoding
Claus Gittinger <cg@exept.de>
parents: 1788
diff changeset
  6438
     if a raw string (i.e. without encoding information) is pasted.
3858
ecbaa5d75c70 Use SynchronousWindowSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3834
diff changeset
  6439
     Useful on X11, if a sjis or euc string is pasted from a netscape
1789
a7390f03e067 added clipBoardEncoding
Claus Gittinger <cg@exept.de>
parents: 1788
diff changeset
  6440
     or other program."
a7390f03e067 added clipBoardEncoding
Claus Gittinger <cg@exept.de>
parents: 1788
diff changeset
  6441
a7390f03e067 added clipBoardEncoding
Claus Gittinger <cg@exept.de>
parents: 1788
diff changeset
  6442
    ^ clipBoardEncoding
a7390f03e067 added clipBoardEncoding
Claus Gittinger <cg@exept.de>
parents: 1788
diff changeset
  6443
a7390f03e067 added clipBoardEncoding
Claus Gittinger <cg@exept.de>
parents: 1788
diff changeset
  6444
    "
a7390f03e067 added clipBoardEncoding
Claus Gittinger <cg@exept.de>
parents: 1788
diff changeset
  6445
     Screen current clipBoardEncoding
a7390f03e067 added clipBoardEncoding
Claus Gittinger <cg@exept.de>
parents: 1788
diff changeset
  6446
    "
a7390f03e067 added clipBoardEncoding
Claus Gittinger <cg@exept.de>
parents: 1788
diff changeset
  6447
a7390f03e067 added clipBoardEncoding
Claus Gittinger <cg@exept.de>
parents: 1788
diff changeset
  6448
    "Created: 28.6.1997 / 13:46:02 / cg"
1794
3d80e825f47a added clipboardEncoding
Claus Gittinger <cg@exept.de>
parents: 1789
diff changeset
  6449
    "Modified: 28.6.1997 / 17:28:08 / cg"
1789
a7390f03e067 added clipBoardEncoding
Claus Gittinger <cg@exept.de>
parents: 1788
diff changeset
  6450
!
a7390f03e067 added clipBoardEncoding
Claus Gittinger <cg@exept.de>
parents: 1788
diff changeset
  6451
a7390f03e067 added clipBoardEncoding
Claus Gittinger <cg@exept.de>
parents: 1788
diff changeset
  6452
clipBoardEncoding:aSymbol
3858
ecbaa5d75c70 Use SynchronousWindowSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3834
diff changeset
  6453
    "set the assumed default clipBoard's encoding
1789
a7390f03e067 added clipBoardEncoding
Claus Gittinger <cg@exept.de>
parents: 1788
diff changeset
  6454
     if a raw string (i.e. without encoding information) is pasted.
3858
ecbaa5d75c70 Use SynchronousWindowSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 3834
diff changeset
  6455
     Useful on X11, if a sjis or euc string is pasted from a netscape
1789
a7390f03e067 added clipBoardEncoding
Claus Gittinger <cg@exept.de>
parents: 1788
diff changeset
  6456
     or other program."
a7390f03e067 added clipBoardEncoding
Claus Gittinger <cg@exept.de>
parents: 1788
diff changeset
  6457
a7390f03e067 added clipBoardEncoding
Claus Gittinger <cg@exept.de>
parents: 1788
diff changeset
  6458
    clipBoardEncoding := aSymbol
a7390f03e067 added clipBoardEncoding
Claus Gittinger <cg@exept.de>
parents: 1788
diff changeset
  6459
a7390f03e067 added clipBoardEncoding
Claus Gittinger <cg@exept.de>
parents: 1788
diff changeset
  6460
    "
1794
3d80e825f47a added clipboardEncoding
Claus Gittinger <cg@exept.de>
parents: 1789
diff changeset
  6461
     Screen current clipBoardEncoding:#sjis
3d80e825f47a added clipboardEncoding
Claus Gittinger <cg@exept.de>
parents: 1789
diff changeset
  6462
     Screen current clipBoardEncoding:#euc
1789
a7390f03e067 added clipBoardEncoding
Claus Gittinger <cg@exept.de>
parents: 1788
diff changeset
  6463
     Screen current clipBoardEncoding:nil
a7390f03e067 added clipBoardEncoding
Claus Gittinger <cg@exept.de>
parents: 1788
diff changeset
  6464
    "
a7390f03e067 added clipBoardEncoding
Claus Gittinger <cg@exept.de>
parents: 1788
diff changeset
  6465
a7390f03e067 added clipBoardEncoding
Claus Gittinger <cg@exept.de>
parents: 1788
diff changeset
  6466
    "Created: 28.6.1997 / 13:46:12 / cg"
1794
3d80e825f47a added clipboardEncoding
Claus Gittinger <cg@exept.de>
parents: 1789
diff changeset
  6467
    "Modified: 28.6.1997 / 17:28:02 / cg"
1789
a7390f03e067 added clipBoardEncoding
Claus Gittinger <cg@exept.de>
parents: 1788
diff changeset
  6468
!
a7390f03e067 added clipBoardEncoding
Claus Gittinger <cg@exept.de>
parents: 1788
diff changeset
  6469
1131
a56eddec63ab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1130
diff changeset
  6470
getCopyBuffer
1130
d75bad6174be added protocol to set/retrieve the per-display copyBuffer
Claus Gittinger <cg@exept.de>
parents: 1128
diff changeset
  6471
    "return the copyBuffers contents. 
d75bad6174be added protocol to set/retrieve the per-display copyBuffer
Claus Gittinger <cg@exept.de>
parents: 1128
diff changeset
  6472
     This is an ST/X internal buffer (i.e. its not visible to alien views)."
d75bad6174be added protocol to set/retrieve the per-display copyBuffer
Claus Gittinger <cg@exept.de>
parents: 1128
diff changeset
  6473
d75bad6174be added protocol to set/retrieve the per-display copyBuffer
Claus Gittinger <cg@exept.de>
parents: 1128
diff changeset
  6474
    ^ copyBuffer
d75bad6174be added protocol to set/retrieve the per-display copyBuffer
Claus Gittinger <cg@exept.de>
parents: 1128
diff changeset
  6475
d75bad6174be added protocol to set/retrieve the per-display copyBuffer
Claus Gittinger <cg@exept.de>
parents: 1128
diff changeset
  6476
    "Modified: 11.12.1996 / 12:55:42 / cg"
1131
a56eddec63ab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1130
diff changeset
  6477
    "Created: 11.12.1996 / 13:34:34 / cg"
a56eddec63ab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1130
diff changeset
  6478
!
a56eddec63ab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1130
diff changeset
  6479
3639
d6c5f8560d01 copyBuffer history
Claus Gittinger <cg@exept.de>
parents: 3638
diff changeset
  6480
getCopyBufferHistory
d6c5f8560d01 copyBuffer history
Claus Gittinger <cg@exept.de>
parents: 3638
diff changeset
  6481
    "return the copyBufferHistory. 
d6c5f8560d01 copyBuffer history
Claus Gittinger <cg@exept.de>
parents: 3638
diff changeset
  6482
     This is an ST/X internal buffer (i.e. its not visible to alien views)."
d6c5f8560d01 copyBuffer history
Claus Gittinger <cg@exept.de>
parents: 3638
diff changeset
  6483
d6c5f8560d01 copyBuffer history
Claus Gittinger <cg@exept.de>
parents: 3638
diff changeset
  6484
    ^ CopyBufferHistory
d6c5f8560d01 copyBuffer history
Claus Gittinger <cg@exept.de>
parents: 3638
diff changeset
  6485
!
d6c5f8560d01 copyBuffer history
Claus Gittinger <cg@exept.de>
parents: 3638
diff changeset
  6486
2881
220eafd70135 protocol completed
Claus Gittinger <cg@exept.de>
parents: 2880
diff changeset
  6487
getSelectionFor:drawableId
220eafd70135 protocol completed
Claus Gittinger <cg@exept.de>
parents: 2880
diff changeset
  6488
    "Retrieve the common per-display selection text.
220eafd70135 protocol completed
Claus Gittinger <cg@exept.de>
parents: 2880
diff changeset
  6489
     For clipBoard mechanisms to work (into ST/X), 
220eafd70135 protocol completed
Claus Gittinger <cg@exept.de>
parents: 2880
diff changeset
  6490
     this must be redefined in a concrete subclass"
220eafd70135 protocol completed
Claus Gittinger <cg@exept.de>
parents: 2880
diff changeset
  6491
220eafd70135 protocol completed
Claus Gittinger <cg@exept.de>
parents: 2880
diff changeset
  6492
    ^ nil
220eafd70135 protocol completed
Claus Gittinger <cg@exept.de>
parents: 2880
diff changeset
  6493
!
220eafd70135 protocol completed
Claus Gittinger <cg@exept.de>
parents: 2880
diff changeset
  6494
1022
e41ea5762606 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  6495
getTextSelectionFor:aDrawableId
1130
d75bad6174be added protocol to set/retrieve the per-display copyBuffer
Claus Gittinger <cg@exept.de>
parents: 1128
diff changeset
  6496
    "Retrieve the common per-display selection text.
1788
48da00c2df26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1787
diff changeset
  6497
     For clipBoard mechanisms to work (into ST/X), 
1130
d75bad6174be added protocol to set/retrieve the per-display copyBuffer
Claus Gittinger <cg@exept.de>
parents: 1128
diff changeset
  6498
     this must be redefined in a concrete subclass"
1022
e41ea5762606 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  6499
e41ea5762606 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  6500
    ^ nil
1130
d75bad6174be added protocol to set/retrieve the per-display copyBuffer
Claus Gittinger <cg@exept.de>
parents: 1128
diff changeset
  6501
d75bad6174be added protocol to set/retrieve the per-display copyBuffer
Claus Gittinger <cg@exept.de>
parents: 1128
diff changeset
  6502
    "Modified: 11.12.1996 / 12:56:57 / cg"
d75bad6174be added protocol to set/retrieve the per-display copyBuffer
Claus Gittinger <cg@exept.de>
parents: 1128
diff changeset
  6503
!
d75bad6174be added protocol to set/retrieve the per-display copyBuffer
Claus Gittinger <cg@exept.de>
parents: 1128
diff changeset
  6504
3639
d6c5f8560d01 copyBuffer history
Claus Gittinger <cg@exept.de>
parents: 3638
diff changeset
  6505
rememberCopyBuffer
d6c5f8560d01 copyBuffer history
Claus Gittinger <cg@exept.de>
parents: 3638
diff changeset
  6506
    copyBuffer size == 0 ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6507
	^ self
3639
d6c5f8560d01 copyBuffer history
Claus Gittinger <cg@exept.de>
parents: 3638
diff changeset
  6508
    ].
d6c5f8560d01 copyBuffer history
Claus Gittinger <cg@exept.de>
parents: 3638
diff changeset
  6509
d6c5f8560d01 copyBuffer history
Claus Gittinger <cg@exept.de>
parents: 3638
diff changeset
  6510
    CopyBufferHistory isNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6511
	CopyBufferHistory := OrderedCollection new.
3639
d6c5f8560d01 copyBuffer history
Claus Gittinger <cg@exept.de>
parents: 3638
diff changeset
  6512
    ].
d6c5f8560d01 copyBuffer history
Claus Gittinger <cg@exept.de>
parents: 3638
diff changeset
  6513
    CopyBufferHistory remove:copyBuffer ifAbsent:nil.
d6c5f8560d01 copyBuffer history
Claus Gittinger <cg@exept.de>
parents: 3638
diff changeset
  6514
    CopyBufferHistory addFirst:copyBuffer.
d6c5f8560d01 copyBuffer history
Claus Gittinger <cg@exept.de>
parents: 3638
diff changeset
  6515
    CopyBufferHistory size > 10 ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6516
	CopyBufferHistory removeLast
3639
d6c5f8560d01 copyBuffer history
Claus Gittinger <cg@exept.de>
parents: 3638
diff changeset
  6517
    ].
d6c5f8560d01 copyBuffer history
Claus Gittinger <cg@exept.de>
parents: 3638
diff changeset
  6518
!
d6c5f8560d01 copyBuffer history
Claus Gittinger <cg@exept.de>
parents: 3638
diff changeset
  6519
1343
6399da90054b clipBoard stuff
Claus Gittinger <cg@exept.de>
parents: 1310
diff changeset
  6520
selectionAsString
6399da90054b clipBoard stuff
Claus Gittinger <cg@exept.de>
parents: 1310
diff changeset
  6521
    "return my current selection as a string"
6399da90054b clipBoard stuff
Claus Gittinger <cg@exept.de>
parents: 1310
diff changeset
  6522
6399da90054b clipBoard stuff
Claus Gittinger <cg@exept.de>
parents: 1310
diff changeset
  6523
    |o s|
6399da90054b clipBoard stuff
Claus Gittinger <cg@exept.de>
parents: 1310
diff changeset
  6524
6399da90054b clipBoard stuff
Claus Gittinger <cg@exept.de>
parents: 1310
diff changeset
  6525
    o := self getCopyBuffer.
6399da90054b clipBoard stuff
Claus Gittinger <cg@exept.de>
parents: 1310
diff changeset
  6526
    s := o.
6399da90054b clipBoard stuff
Claus Gittinger <cg@exept.de>
parents: 1310
diff changeset
  6527
    o isString ifFalse:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6528
	o isNil ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6529
	    s := ''
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6530
	] ifFalse:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6531
	    (o isStringCollection) ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6532
		o := o collect:[:each| each isNil ifTrue:[nil] ifFalse:[each string]].
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6533
		s := o asStringWithCRsFrom:1 to:(o size) compressTabs:false withCR:false.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6534
		s := s string.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6535
	    ] ifFalse:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6536
		Object recursiveStoreStringSignal handle:[:ex |
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6537
		   s := ''
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6538
		] do:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6539
		   s := o storeString
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6540
		]
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6541
	    ]
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6542
	]
1343
6399da90054b clipBoard stuff
Claus Gittinger <cg@exept.de>
parents: 1310
diff changeset
  6543
    ].
6399da90054b clipBoard stuff
Claus Gittinger <cg@exept.de>
parents: 1310
diff changeset
  6544
    ^ s
6399da90054b clipBoard stuff
Claus Gittinger <cg@exept.de>
parents: 1310
diff changeset
  6545
1992
14e554fc38b4 Remove 'condition is always false...'
Stefan Vogel <sv@exept.de>
parents: 1991
diff changeset
  6546
    "Created: / 13.2.1997 / 13:10:30 / cg"
14e554fc38b4 Remove 'condition is always false...'
Stefan Vogel <sv@exept.de>
parents: 1991
diff changeset
  6547
    "Modified: / 20.1.1998 / 14:11:01 / stefan"
1343
6399da90054b clipBoard stuff
Claus Gittinger <cg@exept.de>
parents: 1310
diff changeset
  6548
!
6399da90054b clipBoard stuff
Claus Gittinger <cg@exept.de>
parents: 1310
diff changeset
  6549
1130
d75bad6174be added protocol to set/retrieve the per-display copyBuffer
Claus Gittinger <cg@exept.de>
parents: 1128
diff changeset
  6550
setCopyBuffer:something
d75bad6174be added protocol to set/retrieve the per-display copyBuffer
Claus Gittinger <cg@exept.de>
parents: 1128
diff changeset
  6551
    "set the copyBuffers contents.
d75bad6174be added protocol to set/retrieve the per-display copyBuffer
Claus Gittinger <cg@exept.de>
parents: 1128
diff changeset
  6552
     This is an ST/X internal buffer (i.e. its not visible to alien views)."
d75bad6174be added protocol to set/retrieve the per-display copyBuffer
Claus Gittinger <cg@exept.de>
parents: 1128
diff changeset
  6553
d75bad6174be added protocol to set/retrieve the per-display copyBuffer
Claus Gittinger <cg@exept.de>
parents: 1128
diff changeset
  6554
    copyBuffer := something.
d75bad6174be added protocol to set/retrieve the per-display copyBuffer
Claus Gittinger <cg@exept.de>
parents: 1128
diff changeset
  6555
d75bad6174be added protocol to set/retrieve the per-display copyBuffer
Claus Gittinger <cg@exept.de>
parents: 1128
diff changeset
  6556
    "Created: 11.12.1996 / 12:54:23 / cg"
d75bad6174be added protocol to set/retrieve the per-display copyBuffer
Claus Gittinger <cg@exept.de>
parents: 1128
diff changeset
  6557
    "Modified: 11.12.1996 / 12:55:53 / cg"
d75bad6174be added protocol to set/retrieve the per-display copyBuffer
Claus Gittinger <cg@exept.de>
parents: 1128
diff changeset
  6558
!
d75bad6174be added protocol to set/retrieve the per-display copyBuffer
Claus Gittinger <cg@exept.de>
parents: 1128
diff changeset
  6559
1675
cd55092f5510 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1674
diff changeset
  6560
setSelection:anObject owner:aWindowId
cd55092f5510 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1674
diff changeset
  6561
    "set the common per-display object selection.
cd55092f5510 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1674
diff changeset
  6562
     This can be used by other Smalltalk(X) applications only.
1788
48da00c2df26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1787
diff changeset
  6563
     For clipBoard mechanisms to work (out of ST/X), 
1675
cd55092f5510 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1674
diff changeset
  6564
     this must be redefined in a concrete subclass"
cd55092f5510 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1674
diff changeset
  6565
cd55092f5510 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1674
diff changeset
  6566
    ^ nil
cd55092f5510 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1674
diff changeset
  6567
!
cd55092f5510 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1674
diff changeset
  6568
1022
e41ea5762606 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  6569
setTextSelection:aString owner:aWindowId
1130
d75bad6174be added protocol to set/retrieve the per-display copyBuffer
Claus Gittinger <cg@exept.de>
parents: 1128
diff changeset
  6570
    "Set the common per-display selection text.
1788
48da00c2df26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1787
diff changeset
  6571
     For clipBoard mechanisms to work (out of ST/X), 
1130
d75bad6174be added protocol to set/retrieve the per-display copyBuffer
Claus Gittinger <cg@exept.de>
parents: 1128
diff changeset
  6572
     this must be redefined in a concrete subclass"
1022
e41ea5762606 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  6573
e41ea5762606 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  6574
    ^ nil
1130
d75bad6174be added protocol to set/retrieve the per-display copyBuffer
Claus Gittinger <cg@exept.de>
parents: 1128
diff changeset
  6575
d75bad6174be added protocol to set/retrieve the per-display copyBuffer
Claus Gittinger <cg@exept.de>
parents: 1128
diff changeset
  6576
    "Modified: 11.12.1996 / 12:56:36 / cg"
3690
tm
parents: 3689
diff changeset
  6577
!
tm
parents: 3689
diff changeset
  6578
tm
parents: 3689
diff changeset
  6579
setTextSelection:something ownerView:aView
tm
parents: 3689
diff changeset
  6580
    "set the text selection - both the local one, and tell the display
tm
parents: 3689
diff changeset
  6581
     that we have changed it (i.e. place it into the clipBoard)."
tm
parents: 3689
diff changeset
  6582
3710
d844874799d1 avoid error if a destroyed view tries to set the selection
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  6583
    |s viewID|
3690
tm
parents: 3689
diff changeset
  6584
tm
parents: 3689
diff changeset
  6585
    self rememberCopyBuffer.
tm
parents: 3689
diff changeset
  6586
    self setCopyBuffer:something.
3803
bdf335907724 *** empty log message ***
penk
parents: 3792
diff changeset
  6587
    s := something ? ''.
3690
tm
parents: 3689
diff changeset
  6588
    s isString ifFalse:[
3896
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  6589
	s := s asStringWithCRsFrom:1 to:(s size) compressTabs:false withCR:false
3710
d844874799d1 avoid error if a destroyed view tries to set the selection
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  6590
    ].
d844874799d1 avoid error if a destroyed view tries to set the selection
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  6591
d844874799d1 avoid error if a destroyed view tries to set the selection
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  6592
    viewID := aView id.
d844874799d1 avoid error if a destroyed view tries to set the selection
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  6593
    viewID notNil ifTrue:[ "/ if the view is not already closed
3896
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  6594
	"/ for now - should add support to pass emphasis information too
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  6595
	s := s string.
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  6596
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  6597
	(self setTextSelection:s owner:viewID) ifFalse:[
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  6598
	    'DeviceWorkstation [warning]: could not copy selection to clipBoard' errorPrintCR.
268d2a3ee2b5 rootView access only via message
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
  6599
	]
3690
tm
parents: 3689
diff changeset
  6600
    ]
1022
e41ea5762606 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  6601
! !
e41ea5762606 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1014
diff changeset
  6602
1677
2a980405798c prepared to fetch default style values from the device (for windows)
Claus Gittinger <cg@exept.de>
parents: 1675
diff changeset
  6603
!DeviceWorkstation methodsFor:'style defaults'!
2a980405798c prepared to fetch default style values from the device (for windows)
Claus Gittinger <cg@exept.de>
parents: 1675
diff changeset
  6604
2a980405798c prepared to fetch default style values from the device (for windows)
Claus Gittinger <cg@exept.de>
parents: 1675
diff changeset
  6605
defaultStyleValueFor:aKey
2a980405798c prepared to fetch default style values from the device (for windows)
Claus Gittinger <cg@exept.de>
parents: 1675
diff changeset
  6606
    "return a default style value, given a key.
2a980405798c prepared to fetch default style values from the device (for windows)
Claus Gittinger <cg@exept.de>
parents: 1675
diff changeset
  6607
     These defaults are used if nothing is specified
2a980405798c prepared to fetch default style values from the device (for windows)
Claus Gittinger <cg@exept.de>
parents: 1675
diff changeset
  6608
     in the style sheet 
2a980405798c prepared to fetch default style values from the device (for windows)
Claus Gittinger <cg@exept.de>
parents: 1675
diff changeset
  6609
     This allows for empty values in style sheets, and defaults
2a980405798c prepared to fetch default style values from the device (for windows)
Claus Gittinger <cg@exept.de>
parents: 1675
diff changeset
  6610
     being provided by the display (which makes sense with Windows,
2a980405798c prepared to fetch default style values from the device (for windows)
Claus Gittinger <cg@exept.de>
parents: 1675
diff changeset
  6611
     where the systemDefaults are used ..."
2a980405798c prepared to fetch default style values from the device (for windows)
Claus Gittinger <cg@exept.de>
parents: 1675
diff changeset
  6612
2a980405798c prepared to fetch default style values from the device (for windows)
Claus Gittinger <cg@exept.de>
parents: 1675
diff changeset
  6613
    <resource: #style (#viewSpacing 
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6614
		       #borderColor #borderWidth
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6615
		       #viewBackgroundColor #shadowColor #lightColor
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6616
		      )>
1677
2a980405798c prepared to fetch default style values from the device (for windows)
Claus Gittinger <cg@exept.de>
parents: 1675
diff changeset
  6617
2a980405798c prepared to fetch default style values from the device (for windows)
Claus Gittinger <cg@exept.de>
parents: 1675
diff changeset
  6618
    aKey == #viewSpacing ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6619
	^ self verticalPixelPerMillimeter rounded       "/ 1 millimeter
1677
2a980405798c prepared to fetch default style values from the device (for windows)
Claus Gittinger <cg@exept.de>
parents: 1675
diff changeset
  6620
    ].
2a980405798c prepared to fetch default style values from the device (for windows)
Claus Gittinger <cg@exept.de>
parents: 1675
diff changeset
  6621
2a980405798c prepared to fetch default style values from the device (for windows)
Claus Gittinger <cg@exept.de>
parents: 1675
diff changeset
  6622
    aKey == #borderColor ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6623
	^ Color black
1677
2a980405798c prepared to fetch default style values from the device (for windows)
Claus Gittinger <cg@exept.de>
parents: 1675
diff changeset
  6624
    ].
2a980405798c prepared to fetch default style values from the device (for windows)
Claus Gittinger <cg@exept.de>
parents: 1675
diff changeset
  6625
    aKey == #borderWidth ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6626
	^ 1
1677
2a980405798c prepared to fetch default style values from the device (for windows)
Claus Gittinger <cg@exept.de>
parents: 1675
diff changeset
  6627
    ].
2a980405798c prepared to fetch default style values from the device (for windows)
Claus Gittinger <cg@exept.de>
parents: 1675
diff changeset
  6628
2a980405798c prepared to fetch default style values from the device (for windows)
Claus Gittinger <cg@exept.de>
parents: 1675
diff changeset
  6629
    aKey == #shadowColor ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6630
	^ Color black
1677
2a980405798c prepared to fetch default style values from the device (for windows)
Claus Gittinger <cg@exept.de>
parents: 1675
diff changeset
  6631
    ].
2a980405798c prepared to fetch default style values from the device (for windows)
Claus Gittinger <cg@exept.de>
parents: 1675
diff changeset
  6632
    aKey == #lightColor ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6633
	^ Color white
1677
2a980405798c prepared to fetch default style values from the device (for windows)
Claus Gittinger <cg@exept.de>
parents: 1675
diff changeset
  6634
    ].
2a980405798c prepared to fetch default style values from the device (for windows)
Claus Gittinger <cg@exept.de>
parents: 1675
diff changeset
  6635
    aKey == #viewBackgroundColor ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6636
	^ Color white
1677
2a980405798c prepared to fetch default style values from the device (for windows)
Claus Gittinger <cg@exept.de>
parents: 1675
diff changeset
  6637
    ].
1684
32f486a73484 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1682
diff changeset
  6638
    aKey == #scrollerViewBackgroundColor ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6639
	^ Color white
1684
32f486a73484 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1682
diff changeset
  6640
    ].
1677
2a980405798c prepared to fetch default style values from the device (for windows)
Claus Gittinger <cg@exept.de>
parents: 1675
diff changeset
  6641
2a980405798c prepared to fetch default style values from the device (for windows)
Claus Gittinger <cg@exept.de>
parents: 1675
diff changeset
  6642
    aKey == #textForegroundColor ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6643
	^ Color black.
1677
2a980405798c prepared to fetch default style values from the device (for windows)
Claus Gittinger <cg@exept.de>
parents: 1675
diff changeset
  6644
    ].
1684
32f486a73484 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1682
diff changeset
  6645
    aKey == #textBackgroundColor ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6646
	^ Color white.
1684
32f486a73484 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1682
diff changeset
  6647
    ].
32f486a73484 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1682
diff changeset
  6648
    aKey == #selectionForegroundColor ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6649
	^ Color white.
1684
32f486a73484 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1682
diff changeset
  6650
    ].
32f486a73484 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1682
diff changeset
  6651
    aKey == #selectionBackgroundColor ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6652
	^ Color black.
1684
32f486a73484 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1682
diff changeset
  6653
    ].
1677
2a980405798c prepared to fetch default style values from the device (for windows)
Claus Gittinger <cg@exept.de>
parents: 1675
diff changeset
  6654
2a980405798c prepared to fetch default style values from the device (for windows)
Claus Gittinger <cg@exept.de>
parents: 1675
diff changeset
  6655
    ^ nil.
2a980405798c prepared to fetch default style values from the device (for windows)
Claus Gittinger <cg@exept.de>
parents: 1675
diff changeset
  6656
2a980405798c prepared to fetch default style values from the device (for windows)
Claus Gittinger <cg@exept.de>
parents: 1675
diff changeset
  6657
    "Modified: 29.4.1997 / 11:16:57 / dq"
1684
32f486a73484 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1682
diff changeset
  6658
    "Modified: 29.4.1997 / 17:17:15 / cg"
1677
2a980405798c prepared to fetch default style values from the device (for windows)
Claus Gittinger <cg@exept.de>
parents: 1675
diff changeset
  6659
! !
2a980405798c prepared to fetch default style values from the device (for windows)
Claus Gittinger <cg@exept.de>
parents: 1675
diff changeset
  6660
54
29a6b2f8e042 *** empty log message ***
claus
parents: 51
diff changeset
  6661
!DeviceWorkstation methodsFor:'view registration'!
0
48194c26a46c Initial revision
claus
parents:
diff changeset
  6662
206
4284b80bebdf changed to use ExternalAddress handles for all Window, Font,
Claus Gittinger <cg@exept.de>
parents: 193
diff changeset
  6663
addKnownView:aView withId:aWindowID
4284b80bebdf changed to use ExternalAddress handles for all Window, Font,
Claus Gittinger <cg@exept.de>
parents: 193
diff changeset
  6664
    "add the View aView with id:aWindowID to the list of known views/id's.
51
bab0d5f83df3 *** empty log message ***
claus
parents: 46
diff changeset
  6665
     This map is needed later (on event arrival) to get the view from
bab0d5f83df3 *** empty log message ***
claus
parents: 46
diff changeset
  6666
     the views id (which is passed along with the devices event) quickly."
0
48194c26a46c Initial revision
claus
parents:
diff changeset
  6667
1217
451410b9551b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1215
diff changeset
  6668
    |freeIdx newArr sz newSize wasBlocked|
46
7b331e9012fd *** empty log message ***
claus
parents: 43
diff changeset
  6669
1483
fe145cc26d57 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1478
diff changeset
  6670
    wasBlocked := OperatingSystem blockInterrupts.
fe145cc26d57 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1478
diff changeset
  6671
0
48194c26a46c Initial revision
claus
parents:
diff changeset
  6672
    knownViews isNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6673
	knownViews := WeakArray new:50.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6674
	knownIds := Array new:50.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6675
	freeIdx := 1.
54
29a6b2f8e042 *** empty log message ***
claus
parents: 51
diff changeset
  6676
    ] ifFalse:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6677
	freeIdx := knownViews identityIndexOf:nil.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6678
	freeIdx == 0 ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6679
	    freeIdx := knownViews identityIndexOf:0.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6680
	    [freeIdx ~~ 0 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6681
	     and:[(knownIds at:freeIdx) notNil]] whileTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6682
		"/ mhmh - the view is already clear in the weakArray
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6683
		"/ but the id is not.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6684
		"/ (i.e. its collected, but not yet finalized)
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6685
		"/ skip this entry.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6686
		"/ 'XXX ' print. (knownIds at:freeIdx) displayString printCR.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6687
		freeIdx := knownViews identityIndexOf:0 startingAt:(freeIdx + 1).
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6688
	    ].
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6689
	].
0
48194c26a46c Initial revision
claus
parents:
diff changeset
  6690
    ].
46
7b331e9012fd *** empty log message ***
claus
parents: 43
diff changeset
  6691
118
25e775072a89 *** empty log message ***
claus
parents: 115
diff changeset
  6692
    freeIdx == 0 ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6693
	sz := knownViews size.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6694
	newSize := sz * 2.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6695
	newArr := WeakArray new:newSize.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6696
	newArr replaceFrom:1 to:sz with:knownViews.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6697
	knownViews := newArr.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6698
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6699
	newArr := Array new:newSize.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6700
	newArr replaceFrom:1 to:sz with:knownIds.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6701
	knownIds := newArr.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6702
	freeIdx := sz + 1.
54
29a6b2f8e042 *** empty log message ***
claus
parents: 51
diff changeset
  6703
    ].
29a6b2f8e042 *** empty log message ***
claus
parents: 51
diff changeset
  6704
    knownViews at:freeIdx put:aView.
206
4284b80bebdf changed to use ExternalAddress handles for all Window, Font,
Claus Gittinger <cg@exept.de>
parents: 193
diff changeset
  6705
    knownIds at:freeIdx put:aWindowID.
1483
fe145cc26d57 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1478
diff changeset
  6706
    wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
190
claus
parents: 188
diff changeset
  6707
1473
a44838bcddf0 keep indices - avoids another weak collection
Claus Gittinger <cg@exept.de>
parents: 1467
diff changeset
  6708
    idToTableIndexMapping notNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6709
	idToTableIndexMapping at:aWindowID put:freeIdx.
1406
2aa01c6279f0 fast mapping from viewID to view (experimental)
Claus Gittinger <cg@exept.de>
parents: 1383
diff changeset
  6710
    ].
2aa01c6279f0 fast mapping from viewID to view (experimental)
Claus Gittinger <cg@exept.de>
parents: 1383
diff changeset
  6711
332
48f78f549e5f dont want two dispatchers after restart (addknownView started it; Smalltalk>>restart did it again)
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  6712
"/    dispatching ifFalse:[
48f78f549e5f dont want two dispatchers after restart (addknownView started it; Smalltalk>>restart did it again)
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  6713
"/        self startDispatch
48f78f549e5f dont want two dispatchers after restart (addknownView started it; Smalltalk>>restart did it again)
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  6714
"/    ].
48f78f549e5f dont want two dispatchers after restart (addknownView started it; Smalltalk>>restart did it again)
Claus Gittinger <cg@exept.de>
parents: 320
diff changeset
  6715
1515
2bf89d832d58 checkes for lost-view bug
Claus Gittinger <cg@exept.de>
parents: 1499
diff changeset
  6716
    "Modified: 2.4.1997 / 19:15:46 / cg"
1525
5e1fb2aea9ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1522
diff changeset
  6717
!
0
48194c26a46c Initial revision
claus
parents:
diff changeset
  6718
2874
213e4f118402 postRealize and initializeHooks added.
Claus Gittinger <cg@exept.de>
parents: 2872
diff changeset
  6719
initializeTopViewHookFor:aView
213e4f118402 postRealize and initializeHooks added.
Claus Gittinger <cg@exept.de>
parents: 2872
diff changeset
  6720
    "callBack from topViews initialize method.
213e4f118402 postRealize and initializeHooks added.
Claus Gittinger <cg@exept.de>
parents: 2872
diff changeset
  6721
     empty here, but may be useful ..."
213e4f118402 postRealize and initializeHooks added.
Claus Gittinger <cg@exept.de>
parents: 2872
diff changeset
  6722
!
213e4f118402 postRealize and initializeHooks added.
Claus Gittinger <cg@exept.de>
parents: 2872
diff changeset
  6723
213e4f118402 postRealize and initializeHooks added.
Claus Gittinger <cg@exept.de>
parents: 2872
diff changeset
  6724
realizedTopViewHookFor:aView
213e4f118402 postRealize and initializeHooks added.
Claus Gittinger <cg@exept.de>
parents: 2872
diff changeset
  6725
    "callBack from topViews realize method.
213e4f118402 postRealize and initializeHooks added.
Claus Gittinger <cg@exept.de>
parents: 2872
diff changeset
  6726
     empty here, but may be useful ..."
213e4f118402 postRealize and initializeHooks added.
Claus Gittinger <cg@exept.de>
parents: 2872
diff changeset
  6727
!
213e4f118402 postRealize and initializeHooks added.
Claus Gittinger <cg@exept.de>
parents: 2872
diff changeset
  6728
1478
042a65d624cd reorganize knownViews/knownIds table when views are removed.
Claus Gittinger <cg@exept.de>
parents: 1475
diff changeset
  6729
removeKnownView:aView withId:aViewId
51
bab0d5f83df3 *** empty log message ***
claus
parents: 46
diff changeset
  6730
    "remove aView from the list of known views/id's."
0
48194c26a46c Initial revision
claus
parents:
diff changeset
  6731
1973
fda63fa03595 preps for timeout handling
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  6732
    |index wasBlocked nV nI n dstIdx v id newSize|
54
29a6b2f8e042 *** empty log message ***
claus
parents: 51
diff changeset
  6733
1267
a27c2daaea25 remember lastView/id when searching view by id - helps often
Claus Gittinger <cg@exept.de>
parents: 1258
diff changeset
  6734
    lastId := nil.
a27c2daaea25 remember lastView/id when searching view by id - helps often
Claus Gittinger <cg@exept.de>
parents: 1258
diff changeset
  6735
    lastView := nil.
2824
f69e30f28bd1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2818
diff changeset
  6736
    focusView == aView ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6737
	focusView := nil
2824
f69e30f28bd1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2818
diff changeset
  6738
    ].
46
7b331e9012fd *** empty log message ***
claus
parents: 43
diff changeset
  6739
0
48194c26a46c Initial revision
claus
parents:
diff changeset
  6740
    knownViews notNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6741
	wasBlocked := OperatingSystem blockInterrupts.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6742
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6743
	index := 0.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6744
	aViewId notNil ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6745
	    idToTableIndexMapping notNil ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6746
		index := idToTableIndexMapping at:aViewId ifAbsent:0.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6747
	    ]
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6748
	].
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6749
	index == 0 ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6750
	    aView notNil ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6751
		index := knownViews identityIndexOf:aView.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6752
	    ].
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6753
	].
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6754
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6755
	index ~~ 0 ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6756
	    idToTableIndexMapping notNil ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6757
		aViewId notNil ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6758
		    idToTableIndexMapping removeKey:aViewId ifAbsent:nil
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6759
		] ifFalse:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6760
		    id := knownIds at:index.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6761
		    id notNil ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6762
			idToTableIndexMapping removeKey:id ifAbsent:nil.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6763
		    ]
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6764
		]
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6765
	    ].
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6766
	    knownViews at:index put:nil.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6767
	    knownIds at:index put:nil.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6768
	    lastId := nil.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6769
	    lastView := nil.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6770
	].
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6771
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6772
	wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6773
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6774
	aView notNil ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6775
	    aView isTopView ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6776
		"/ check for sparsely filled knownViews - array
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6777
		wasBlocked := OperatingSystem blockInterrupts.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6778
		n := 0.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6779
		knownViews do:[:v |
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6780
		    (v notNil and:[v ~~ 0]) ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6781
			n := n + 1
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6782
		    ].
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6783
		].
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6784
		n < (knownViews size * 2 // 3) ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6785
		    newSize := n * 3 // 2.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6786
		    newSize > 50 ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6787
			nV := WeakArray new:newSize.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6788
			nI := Array new:newSize.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6789
			dstIdx := 1.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6790
			1 to:knownViews size do:[:srcIdx |
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6791
			    v := knownViews at:srcIdx.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6792
			    (v notNil and:[v ~~ 0]) ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6793
				nV at:dstIdx put:v.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6794
				nI at:dstIdx put:(knownIds at:srcIdx).
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6795
				dstIdx := dstIdx + 1.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6796
			    ].
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6797
			].
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6798
			idToTableIndexMapping := nil.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6799
			knownViews := nV.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6800
			knownIds := nI.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6801
			idToTableIndexMapping := Dictionary new.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6802
			knownIds keysAndValuesDo:[:idx :id |
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6803
			    id notNil ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6804
				idToTableIndexMapping at:id put:idx
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6805
			    ]
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6806
			].
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6807
		    ].
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6808
		].
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6809
		wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6810
	    ].
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6811
	].
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6812
	self checkForEndOfDispatch.
0
48194c26a46c Initial revision
claus
parents:
diff changeset
  6813
    ]
958
690ee3ab59cd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 957
diff changeset
  6814
1478
042a65d624cd reorganize knownViews/knownIds table when views are removed.
Claus Gittinger <cg@exept.de>
parents: 1475
diff changeset
  6815
    "Created: 22.3.1997 / 14:56:20 / cg"
1493
b162273f59f9 oops - idToTableIndexMapping seems to become nil ?!
Claus Gittinger <cg@exept.de>
parents: 1484
diff changeset
  6816
    "Modified: 27.3.1997 / 17:13:28 / cg"
0
48194c26a46c Initial revision
claus
parents:
diff changeset
  6817
!
48194c26a46c Initial revision
claus
parents:
diff changeset
  6818
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6819
viewFromId:aWindowID
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6820
    "given an Id, return the corresponding view."
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6821
1473
a44838bcddf0 keep indices - avoids another weak collection
Claus Gittinger <cg@exept.de>
parents: 1467
diff changeset
  6822
    |index v idx|
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6823
1267
a27c2daaea25 remember lastView/id when searching view by id - helps often
Claus Gittinger <cg@exept.de>
parents: 1258
diff changeset
  6824
    aWindowID = lastId ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6825
	lastView notNil ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6826
	    ^ lastView
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6827
	]
1267
a27c2daaea25 remember lastView/id when searching view by id - helps often
Claus Gittinger <cg@exept.de>
parents: 1258
diff changeset
  6828
    ].
a27c2daaea25 remember lastView/id when searching view by id - helps often
Claus Gittinger <cg@exept.de>
parents: 1258
diff changeset
  6829
1473
a44838bcddf0 keep indices - avoids another weak collection
Claus Gittinger <cg@exept.de>
parents: 1467
diff changeset
  6830
    idToTableIndexMapping notNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6831
	idx := idToTableIndexMapping at:aWindowID ifAbsent:nil.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6832
	idx notNil ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6833
	    v := knownViews at:idx.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6834
	    (v notNil and:[v ~~ 0]) ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6835
		lastView := v.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6836
		lastId := aWindowID.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6837
		^ v
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6838
	    ].
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6839
	]
1407
3528a4779c8b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1406
diff changeset
  6840
    ].
3528a4779c8b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1406
diff changeset
  6841
2254
705357007714 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2252
diff changeset
  6842
    knownIds isNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6843
	^ nil
2254
705357007714 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2252
diff changeset
  6844
    ].
705357007714 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2252
diff changeset
  6845
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6846
    index := knownIds indexOf:aWindowID.
1484
fa9c2604f2ac update lastView/Id
Claus Gittinger <cg@exept.de>
parents: 1483
diff changeset
  6847
    index == 0 ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6848
	^ nil
1484
fa9c2604f2ac update lastView/Id
Claus Gittinger <cg@exept.de>
parents: 1483
diff changeset
  6849
    ].
1267
a27c2daaea25 remember lastView/id when searching view by id - helps often
Claus Gittinger <cg@exept.de>
parents: 1258
diff changeset
  6850
1078
f7b6f15899ab changed WeakArray to set emptied slots to zero
Claus Gittinger <cg@exept.de>
parents: 1075
diff changeset
  6851
    v := knownViews at:index.
f7b6f15899ab changed WeakArray to set emptied slots to zero
Claus Gittinger <cg@exept.de>
parents: 1075
diff changeset
  6852
    v == 0 ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6853
	knownViews at:index put:nil.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6854
	knownIds at:index put:nil.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6855
	^ nil
1078
f7b6f15899ab changed WeakArray to set emptied slots to zero
Claus Gittinger <cg@exept.de>
parents: 1075
diff changeset
  6856
    ].
1267
a27c2daaea25 remember lastView/id when searching view by id - helps often
Claus Gittinger <cg@exept.de>
parents: 1258
diff changeset
  6857
a27c2daaea25 remember lastView/id when searching view by id - helps often
Claus Gittinger <cg@exept.de>
parents: 1258
diff changeset
  6858
    lastId := aWindowID.
a27c2daaea25 remember lastView/id when searching view by id - helps often
Claus Gittinger <cg@exept.de>
parents: 1258
diff changeset
  6859
    lastView := v.
a27c2daaea25 remember lastView/id when searching view by id - helps often
Claus Gittinger <cg@exept.de>
parents: 1258
diff changeset
  6860
1078
f7b6f15899ab changed WeakArray to set emptied slots to zero
Claus Gittinger <cg@exept.de>
parents: 1075
diff changeset
  6861
    ^ v
1267
a27c2daaea25 remember lastView/id when searching view by id - helps often
Claus Gittinger <cg@exept.de>
parents: 1258
diff changeset
  6862
1484
fa9c2604f2ac update lastView/Id
Claus Gittinger <cg@exept.de>
parents: 1483
diff changeset
  6863
    "Modified: 22.3.1997 / 17:19:59 / cg"
1525
5e1fb2aea9ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1522
diff changeset
  6864
!
5e1fb2aea9ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1522
diff changeset
  6865
5e1fb2aea9ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1522
diff changeset
  6866
viewIdKnown:aWindowID
5e1fb2aea9ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1522
diff changeset
  6867
    "return true, if I still consider a windowId as being valid"
5e1fb2aea9ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1522
diff changeset
  6868
1547
8a883445adce oops - viewIdKnown: bug
Claus Gittinger <cg@exept.de>
parents: 1542
diff changeset
  6869
    |index v|
1525
5e1fb2aea9ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1522
diff changeset
  6870
5e1fb2aea9ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1522
diff changeset
  6871
    aWindowID = lastId ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6872
	lastView notNil ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6873
	    ^ true
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6874
	]
1525
5e1fb2aea9ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1522
diff changeset
  6875
    ].
5e1fb2aea9ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1522
diff changeset
  6876
5e1fb2aea9ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1522
diff changeset
  6877
    idToTableIndexMapping notNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6878
	index := idToTableIndexMapping at:aWindowID ifAbsent:nil.
1525
5e1fb2aea9ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1522
diff changeset
  6879
    ].
1547
8a883445adce oops - viewIdKnown: bug
Claus Gittinger <cg@exept.de>
parents: 1542
diff changeset
  6880
    index isNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6881
	index := knownIds indexOf:aWindowID.
1547
8a883445adce oops - viewIdKnown: bug
Claus Gittinger <cg@exept.de>
parents: 1542
diff changeset
  6882
    ].
1526
86e77ecad87b lostView problem
Claus Gittinger <cg@exept.de>
parents: 1525
diff changeset
  6883
    index ~~ 0 ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6884
	v := knownViews at:index.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6885
	^ (v notNil and:[v ~~ 0])
1526
86e77ecad87b lostView problem
Claus Gittinger <cg@exept.de>
parents: 1525
diff changeset
  6886
    ].
86e77ecad87b lostView problem
Claus Gittinger <cg@exept.de>
parents: 1525
diff changeset
  6887
    ^ false.
1525
5e1fb2aea9ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1522
diff changeset
  6888
5e1fb2aea9ec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1522
diff changeset
  6889
    "Created: 4.4.1997 / 11:01:07 / cg"
1547
8a883445adce oops - viewIdKnown: bug
Claus Gittinger <cg@exept.de>
parents: 1542
diff changeset
  6890
    "Modified: 4.4.1997 / 19:07:55 / cg"
0
48194c26a46c Initial revision
claus
parents:
diff changeset
  6891
! !
48194c26a46c Initial revision
claus
parents:
diff changeset
  6892
12
9f0995fac1fa *** empty log message ***
claus
parents: 10
diff changeset
  6893
!DeviceWorkstation methodsFor:'window stuff'!
9f0995fac1fa *** empty log message ***
claus
parents: 10
diff changeset
  6894
2756
d2daf1434a84 protocol completeness
Claus Gittinger <cg@exept.de>
parents: 2749
diff changeset
  6895
activateWindow:aWindowId
d2daf1434a84 protocol completeness
Claus Gittinger <cg@exept.de>
parents: 2749
diff changeset
  6896
    "make a window active.
d2daf1434a84 protocol completeness
Claus Gittinger <cg@exept.de>
parents: 2749
diff changeset
  6897
     Noop here"
d2daf1434a84 protocol completeness
Claus Gittinger <cg@exept.de>
parents: 2749
diff changeset
  6898
d2daf1434a84 protocol completeness
Claus Gittinger <cg@exept.de>
parents: 2749
diff changeset
  6899
    "Created: / 5.6.1999 / 22:07:08 / cg"
d2daf1434a84 protocol completeness
Claus Gittinger <cg@exept.de>
parents: 2749
diff changeset
  6900
!
d2daf1434a84 protocol completeness
Claus Gittinger <cg@exept.de>
parents: 2749
diff changeset
  6901
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6902
clearRectangleX:x y:y width:width height:height in:aWindowId
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6903
    "clear a rectangular area of a window to its view background"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6904
2648
43b0bec3e49a comments
Claus Gittinger <cg@exept.de>
parents: 2636
diff changeset
  6905
    "/ mhmh - should not be needed
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6906
    ^ self subclassResponsibility
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6907
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6908
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6909
clearWindow:aWindowId
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6910
    "clear a windows to its view background"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6911
2648
43b0bec3e49a comments
Claus Gittinger <cg@exept.de>
parents: 2636
diff changeset
  6912
    "/ mhmh - should not be needed
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6913
    ^ self subclassResponsibility
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6914
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6915
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6916
lowerWindow:aWindowId
609
c9847d4fa398 commentary
Claus Gittinger <cg@exept.de>
parents: 600
diff changeset
  6917
    "lower a window"
c9847d4fa398 commentary
Claus Gittinger <cg@exept.de>
parents: 600
diff changeset
  6918
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6919
    ^ self subclassResponsibility
609
c9847d4fa398 commentary
Claus Gittinger <cg@exept.de>
parents: 600
diff changeset
  6920
c9847d4fa398 commentary
Claus Gittinger <cg@exept.de>
parents: 600
diff changeset
  6921
    "Modified: 24.4.1996 / 19:40:04 / cg"
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6922
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6923
2106
8fdc7283a99f pass minExtent/maxExtent to mapView:...
Claus Gittinger <cg@exept.de>
parents: 2053
diff changeset
  6924
mapView:aView id:aWindowId iconified:aBoolean atX:xPos y:yPos width:w height:h
8fdc7283a99f pass minExtent/maxExtent to mapView:...
Claus Gittinger <cg@exept.de>
parents: 2053
diff changeset
  6925
    "map a window - either as icon or as a real view - needed for restart"
8fdc7283a99f pass minExtent/maxExtent to mapView:...
Claus Gittinger <cg@exept.de>
parents: 2053
diff changeset
  6926
8fdc7283a99f pass minExtent/maxExtent to mapView:...
Claus Gittinger <cg@exept.de>
parents: 2053
diff changeset
  6927
    "/ OBSOLETE interface - this looses the minExtent/maxExtent properties
8fdc7283a99f pass minExtent/maxExtent to mapView:...
Claus Gittinger <cg@exept.de>
parents: 2053
diff changeset
  6928
    "/ use mapView:...minWidth:minHeight:maxWidth:maxHeight:
8fdc7283a99f pass minExtent/maxExtent to mapView:...
Claus Gittinger <cg@exept.de>
parents: 2053
diff changeset
  6929
8fdc7283a99f pass minExtent/maxExtent to mapView:...
Claus Gittinger <cg@exept.de>
parents: 2053
diff changeset
  6930
    ^ self
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6931
	mapView:aView id:aWindowId iconified:aBoolean atX:xPos y:yPos
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6932
	width:w height:h minExtent:nil maxExtent:nil
2106
8fdc7283a99f pass minExtent/maxExtent to mapView:...
Claus Gittinger <cg@exept.de>
parents: 2053
diff changeset
  6933
!
8fdc7283a99f pass minExtent/maxExtent to mapView:...
Claus Gittinger <cg@exept.de>
parents: 2053
diff changeset
  6934
2126
1f108c76dfdb moved event dispatching code to view (where it belongs)
Claus Gittinger <cg@exept.de>
parents: 2114
diff changeset
  6935
mapView:aView id:aWindowId iconified:aBoolean atX:xPos y:yPos
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6936
	width:w height:h minExtent:minExt maxExtent:maxExt
2126
1f108c76dfdb moved event dispatching code to view (where it belongs)
Claus Gittinger <cg@exept.de>
parents: 2114
diff changeset
  6937
    "make a window visible - either as icon or as a real view - needed for restart"
1f108c76dfdb moved event dispatching code to view (where it belongs)
Claus Gittinger <cg@exept.de>
parents: 2114
diff changeset
  6938
1f108c76dfdb moved event dispatching code to view (where it belongs)
Claus Gittinger <cg@exept.de>
parents: 2114
diff changeset
  6939
    ^ self subclassResponsibility
1f108c76dfdb moved event dispatching code to view (where it belongs)
Claus Gittinger <cg@exept.de>
parents: 2114
diff changeset
  6940
1f108c76dfdb moved event dispatching code to view (where it belongs)
Claus Gittinger <cg@exept.de>
parents: 2114
diff changeset
  6941
    "Modified: 24.4.1996 / 19:43:17 / cg"
1f108c76dfdb moved event dispatching code to view (where it belongs)
Claus Gittinger <cg@exept.de>
parents: 2114
diff changeset
  6942
!
1f108c76dfdb moved event dispatching code to view (where it belongs)
Claus Gittinger <cg@exept.de>
parents: 2114
diff changeset
  6943
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6944
mapWindow:aWindowId
609
c9847d4fa398 commentary
Claus Gittinger <cg@exept.de>
parents: 600
diff changeset
  6945
    "map a window"
c9847d4fa398 commentary
Claus Gittinger <cg@exept.de>
parents: 600
diff changeset
  6946
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6947
    ^ self subclassResponsibility
609
c9847d4fa398 commentary
Claus Gittinger <cg@exept.de>
parents: 600
diff changeset
  6948
c9847d4fa398 commentary
Claus Gittinger <cg@exept.de>
parents: 600
diff changeset
  6949
    "Modified: 24.4.1996 / 19:43:06 / cg"
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6950
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6951
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6952
moveResizeWindow:aWindowId x:x y:y width:w height:h
609
c9847d4fa398 commentary
Claus Gittinger <cg@exept.de>
parents: 600
diff changeset
  6953
    "move & resize a window"
c9847d4fa398 commentary
Claus Gittinger <cg@exept.de>
parents: 600
diff changeset
  6954
1002
01fd2863c317 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  6955
    "/ fallBack: move & resize as two individual operations
01fd2863c317 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  6956
01fd2863c317 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  6957
    self moveWindow:aWindowId x:x y:y.
1003
1853d7b77c73 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1002
diff changeset
  6958
    self resizeWindow:aWindowId width:w height:h.
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6959
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6960
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6961
moveWindow:aWindowId x:x y:y
609
c9847d4fa398 commentary
Claus Gittinger <cg@exept.de>
parents: 600
diff changeset
  6962
    "move a window"
c9847d4fa398 commentary
Claus Gittinger <cg@exept.de>
parents: 600
diff changeset
  6963
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6964
    ^ self subclassResponsibility
609
c9847d4fa398 commentary
Claus Gittinger <cg@exept.de>
parents: 600
diff changeset
  6965
c9847d4fa398 commentary
Claus Gittinger <cg@exept.de>
parents: 600
diff changeset
  6966
    "Modified: 24.4.1996 / 19:40:36 / cg"
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6967
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6968
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6969
raiseWindow:aWindowId
609
c9847d4fa398 commentary
Claus Gittinger <cg@exept.de>
parents: 600
diff changeset
  6970
    "raise a window"
c9847d4fa398 commentary
Claus Gittinger <cg@exept.de>
parents: 600
diff changeset
  6971
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6972
    ^ self subclassResponsibility
609
c9847d4fa398 commentary
Claus Gittinger <cg@exept.de>
parents: 600
diff changeset
  6973
c9847d4fa398 commentary
Claus Gittinger <cg@exept.de>
parents: 600
diff changeset
  6974
    "Modified: 24.4.1996 / 19:40:42 / cg"
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6975
!
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6976
2428
191f961209f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2403
diff changeset
  6977
reparentWindow:windowId to:newParentWindowId
191f961209f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2403
diff changeset
  6978
    "change a windows parent (an optional interface).
191f961209f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2403
diff changeset
  6979
     Returns true if successfull."
191f961209f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2403
diff changeset
  6980
191f961209f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2403
diff changeset
  6981
    ^ false
191f961209f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2403
diff changeset
  6982
!
191f961209f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2403
diff changeset
  6983
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6984
resizeWindow:aWindowId width:w height:h
609
c9847d4fa398 commentary
Claus Gittinger <cg@exept.de>
parents: 600
diff changeset
  6985
    "resize a window"
c9847d4fa398 commentary
Claus Gittinger <cg@exept.de>
parents: 600
diff changeset
  6986
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  6987
    ^ self subclassResponsibility
609
c9847d4fa398 commentary
Claus Gittinger <cg@exept.de>
parents: 600
diff changeset
  6988
c9847d4fa398 commentary
Claus Gittinger <cg@exept.de>
parents: 600
diff changeset
  6989
    "Modified: 24.4.1996 / 19:40:47 / cg"
12
9f0995fac1fa *** empty log message ***
claus
parents: 10
diff changeset
  6990
!
9f0995fac1fa *** empty log message ***
claus
parents: 10
diff changeset
  6991
9f0995fac1fa *** empty log message ***
claus
parents: 10
diff changeset
  6992
restoreCursors
1475
5347f953763a commentary
Claus Gittinger <cg@exept.de>
parents: 1473
diff changeset
  6993
    "restore the cursors of all views to their current cursor.
5347f953763a commentary
Claus Gittinger <cg@exept.de>
parents: 1473
diff changeset
  6994
     This undoes the effect of #setCursors:"
46
7b331e9012fd *** empty log message ***
claus
parents: 43
diff changeset
  6995
12
9f0995fac1fa *** empty log message ***
claus
parents: 10
diff changeset
  6996
    knownViews notNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6997
	knownViews validElementsDo:[:aView |
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6998
	    |c vid cid|
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  6999
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  7000
	    (vid := aView id) notNil ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  7001
		c := aView cursor.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  7002
		(c notNil and:[(cid := c id) notNil]) ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  7003
		    self setCursor:cid in:vid
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  7004
		]
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  7005
	    ]
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  7006
	].
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  7007
	self flush
12
9f0995fac1fa *** empty log message ***
claus
parents: 10
diff changeset
  7008
    ]
9f0995fac1fa *** empty log message ***
claus
parents: 10
diff changeset
  7009
1475
5347f953763a commentary
Claus Gittinger <cg@exept.de>
parents: 1473
diff changeset
  7010
    "
5347f953763a commentary
Claus Gittinger <cg@exept.de>
parents: 1473
diff changeset
  7011
     Display setCursors:(Cursor wait).
5347f953763a commentary
Claus Gittinger <cg@exept.de>
parents: 1473
diff changeset
  7012
     Delay waitForSeconds:5.
5347f953763a commentary
Claus Gittinger <cg@exept.de>
parents: 1473
diff changeset
  7013
     Display restoreCursors
5347f953763a commentary
Claus Gittinger <cg@exept.de>
parents: 1473
diff changeset
  7014
    "
5347f953763a commentary
Claus Gittinger <cg@exept.de>
parents: 1473
diff changeset
  7015
5347f953763a commentary
Claus Gittinger <cg@exept.de>
parents: 1473
diff changeset
  7016
    "Modified: 20.3.1997 / 16:28:25 / cg"
12
9f0995fac1fa *** empty log message ***
claus
parents: 10
diff changeset
  7017
!
9f0995fac1fa *** empty log message ***
claus
parents: 10
diff changeset
  7018
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  7019
setBackingStore:how in:aWindowId
2648
43b0bec3e49a comments
Claus Gittinger <cg@exept.de>
parents: 2636
diff changeset
  7020
    "turn on/off backing-store for a window.
43b0bec3e49a comments
Claus Gittinger <cg@exept.de>
parents: 2636
diff changeset
  7021
     A view with backingStore will redraw automatically
43b0bec3e49a comments
Claus Gittinger <cg@exept.de>
parents: 2636
diff changeset
  7022
     from the backing pixmap (without sending expose events).
43b0bec3e49a comments
Claus Gittinger <cg@exept.de>
parents: 2636
diff changeset
  7023
     An implementation may ignore this request."
23
4a7e02de7b72 *** empty log message ***
claus
parents: 21
diff changeset
  7024
1002
01fd2863c317 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  7025
    "/ default here is to ignore the request
23
4a7e02de7b72 *** empty log message ***
claus
parents: 21
diff changeset
  7026
!
4a7e02de7b72 *** empty log message ***
claus
parents: 21
diff changeset
  7027
1007
6b6b2a63f01d support for non-selectable devices (WIN32)
Claus Gittinger <cg@exept.de>
parents: 1003
diff changeset
  7028
setBitGravity:how in:aWindowId
6b6b2a63f01d support for non-selectable devices (WIN32)
Claus Gittinger <cg@exept.de>
parents: 1003
diff changeset
  7029
    "set bit gravity for a window"
6b6b2a63f01d support for non-selectable devices (WIN32)
Claus Gittinger <cg@exept.de>
parents: 1003
diff changeset
  7030
6b6b2a63f01d support for non-selectable devices (WIN32)
Claus Gittinger <cg@exept.de>
parents: 1003
diff changeset
  7031
    "/ default here is to ignore the request
6b6b2a63f01d support for non-selectable devices (WIN32)
Claus Gittinger <cg@exept.de>
parents: 1003
diff changeset
  7032
!
6b6b2a63f01d support for non-selectable devices (WIN32)
Claus Gittinger <cg@exept.de>
parents: 1003
diff changeset
  7033
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  7034
setCursor:aCursorId in:aWindowId
2648
43b0bec3e49a comments
Claus Gittinger <cg@exept.de>
parents: 2636
diff changeset
  7035
    "set a windows cursor"
43b0bec3e49a comments
Claus Gittinger <cg@exept.de>
parents: 2636
diff changeset
  7036
43b0bec3e49a comments
Claus Gittinger <cg@exept.de>
parents: 2636
diff changeset
  7037
    "/ mhmh - could be ignored
12
9f0995fac1fa *** empty log message ***
claus
parents: 10
diff changeset
  7038
    ^ self subclassResponsibility
9f0995fac1fa *** empty log message ***
claus
parents: 10
diff changeset
  7039
!
9f0995fac1fa *** empty log message ***
claus
parents: 10
diff changeset
  7040
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  7041
setCursors:aCursor
1475
5347f953763a commentary
Claus Gittinger <cg@exept.de>
parents: 1473
diff changeset
  7042
    "change the cursor of all views on the receiver device
5347f953763a commentary
Claus Gittinger <cg@exept.de>
parents: 1473
diff changeset
  7043
     to aCursorId, without affecting the views idea of what
5347f953763a commentary
Claus Gittinger <cg@exept.de>
parents: 1473
diff changeset
  7044
     the cursor is (so that it can be restored from the views
5347f953763a commentary
Claus Gittinger <cg@exept.de>
parents: 1473
diff changeset
  7045
     cursor instance variable later).
5347f953763a commentary
Claus Gittinger <cg@exept.de>
parents: 1473
diff changeset
  7046
     Use of this is not recommended - its better to change
5347f953763a commentary
Claus Gittinger <cg@exept.de>
parents: 1473
diff changeset
  7047
     the cursor of a windowGroup alone."
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  7048
2648
43b0bec3e49a comments
Claus Gittinger <cg@exept.de>
parents: 2636
diff changeset
  7049
    |id|
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  7050
3063
cb325adb5731 care for nil cursor in #setCursors:
Claus Gittinger <cg@exept.de>
parents: 3038
diff changeset
  7051
    aCursor isNil ifTrue:[^ self].
cb325adb5731 care for nil cursor in #setCursors:
Claus Gittinger <cg@exept.de>
parents: 3038
diff changeset
  7052
1499
57d3525f8abd #on: -> #onDevice:
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  7053
    id := (aCursor onDevice:self) id.
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  7054
    id notNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  7055
	knownViews validElementsDo:[:aView |
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  7056
	    |vid|
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  7057
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  7058
	    (vid := aView id) notNil ifTrue:[
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  7059
		self setCursor:id in:vid
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  7060
	    ]
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  7061
	].
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  7062
	self flush
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  7063
    ]
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  7064
1475
5347f953763a commentary
Claus Gittinger <cg@exept.de>
parents: 1473
diff changeset
  7065
    "
5347f953763a commentary
Claus Gittinger <cg@exept.de>
parents: 1473
diff changeset
  7066
     Display setCursors:(Cursor wait).
5347f953763a commentary
Claus Gittinger <cg@exept.de>
parents: 1473
diff changeset
  7067
     Delay waitForSeconds:5.
5347f953763a commentary
Claus Gittinger <cg@exept.de>
parents: 1473
diff changeset
  7068
     Display restoreCursors.
5347f953763a commentary
Claus Gittinger <cg@exept.de>
parents: 1473
diff changeset
  7069
    "
5347f953763a commentary
Claus Gittinger <cg@exept.de>
parents: 1473
diff changeset
  7070
1499
57d3525f8abd #on: -> #onDevice:
Claus Gittinger <cg@exept.de>
parents: 1493
diff changeset
  7071
    "Modified: 28.3.1997 / 16:14:59 / cg"
0
48194c26a46c Initial revision
claus
parents:
diff changeset
  7072
!
48194c26a46c Initial revision
claus
parents:
diff changeset
  7073
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  7074
setIconName:aString in:aWindowId
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  7075
    "set a windows icon name"
10
470d292c3218 before big change
claus
parents: 8
diff changeset
  7076
1002
01fd2863c317 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  7077
    "/ default here is to ignore the request
0
48194c26a46c Initial revision
claus
parents:
diff changeset
  7078
!
48194c26a46c Initial revision
claus
parents:
diff changeset
  7079
48194c26a46c Initial revision
claus
parents:
diff changeset
  7080
setSaveUnder:yesOrNo in:aWindowId
2648
43b0bec3e49a comments
Claus Gittinger <cg@exept.de>
parents: 2636
diff changeset
  7081
    "turn on/off save-under for a window.
43b0bec3e49a comments
Claus Gittinger <cg@exept.de>
parents: 2636
diff changeset
  7082
     A view with saveUnder will save the pixels of the
43b0bec3e49a comments
Claus Gittinger <cg@exept.de>
parents: 2636
diff changeset
  7083
     area covered by itself and repair from those when
43b0bec3e49a comments
Claus Gittinger <cg@exept.de>
parents: 2636
diff changeset
  7084
     unmapped (therefore, no expose events are generated later).
43b0bec3e49a comments
Claus Gittinger <cg@exept.de>
parents: 2636
diff changeset
  7085
     It is especially useful for popUp menus.
43b0bec3e49a comments
Claus Gittinger <cg@exept.de>
parents: 2636
diff changeset
  7086
     An implementation may ignore this request."
10
470d292c3218 before big change
claus
parents: 8
diff changeset
  7087
1002
01fd2863c317 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  7088
    "/ default here is to ignore the request
0
48194c26a46c Initial revision
claus
parents:
diff changeset
  7089
!
48194c26a46c Initial revision
claus
parents:
diff changeset
  7090
1881
7450acf4b454 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1870
diff changeset
  7091
setTransient:aWindowId for:aMainWindowId
2648
43b0bec3e49a comments
Claus Gittinger <cg@exept.de>
parents: 2636
diff changeset
  7092
    "set aWindowId to be a transient of aMainWindow.
43b0bec3e49a comments
Claus Gittinger <cg@exept.de>
parents: 2636
diff changeset
  7093
     This informs the windowManager that those are to
43b0bec3e49a comments
Claus Gittinger <cg@exept.de>
parents: 2636
diff changeset
  7094
     be handled as a group w.r.t. iconification and deiconification.
43b0bec3e49a comments
Claus Gittinger <cg@exept.de>
parents: 2636
diff changeset
  7095
     An implementation may ignore this 
43b0bec3e49a comments
Claus Gittinger <cg@exept.de>
parents: 2636
diff changeset
  7096
     (being somewhat inconvenient to the user, though)"
43b0bec3e49a comments
Claus Gittinger <cg@exept.de>
parents: 2636
diff changeset
  7097
43b0bec3e49a comments
Claus Gittinger <cg@exept.de>
parents: 2636
diff changeset
  7098
    "/ default here is to ignore the request
1881
7450acf4b454 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1870
diff changeset
  7099
7450acf4b454 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1870
diff changeset
  7100
    "Created: 20.8.1997 / 20:38:32 / cg"
7450acf4b454 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1870
diff changeset
  7101
!
7450acf4b454 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1870
diff changeset
  7102
0
48194c26a46c Initial revision
claus
parents:
diff changeset
  7103
setWindowBackground:aColorIndex in:aWindowId
10
470d292c3218 before big change
claus
parents: 8
diff changeset
  7104
    "set a windows background color"
0
48194c26a46c Initial revision
claus
parents:
diff changeset
  7105
48194c26a46c Initial revision
claus
parents:
diff changeset
  7106
    ^ self subclassResponsibility
48194c26a46c Initial revision
claus
parents:
diff changeset
  7107
!
48194c26a46c Initial revision
claus
parents:
diff changeset
  7108
48194c26a46c Initial revision
claus
parents:
diff changeset
  7109
setWindowBackgroundPixmap:aPixmapId in:aWindowId
2636
cf6a430fb036 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2634
diff changeset
  7110
    "set a windows background pattern to be a form.
cf6a430fb036 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2634
diff changeset
  7111
     No need to be implemented in concrete workstation;
cf6a430fb036 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2634
diff changeset
  7112
     if not implemented, its done by (slower) smalltalk code
cf6a430fb036 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2634
diff changeset
  7113
     (must return false from #supportsViewBackgroundPixmap query)"
cf6a430fb036 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2634
diff changeset
  7114
cf6a430fb036 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2634
diff changeset
  7115
    ^ self
cf6a430fb036 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2634
diff changeset
  7116
cf6a430fb036 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2634
diff changeset
  7117
    "Modified: / 4.5.1999 / 19:06:13 / cg"
0
48194c26a46c Initial revision
claus
parents:
diff changeset
  7118
!
48194c26a46c Initial revision
claus
parents:
diff changeset
  7119
48194c26a46c Initial revision
claus
parents:
diff changeset
  7120
setWindowBorderColor:aColorIndex in:aWindowId
10
470d292c3218 before big change
claus
parents: 8
diff changeset
  7121
    "set a windows border color"
470d292c3218 before big change
claus
parents: 8
diff changeset
  7122
1002
01fd2863c317 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  7123
    "/ default here is to ignore the request
01fd2863c317 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  7124
01fd2863c317 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  7125
    ^ self
0
48194c26a46c Initial revision
claus
parents:
diff changeset
  7126
!
48194c26a46c Initial revision
claus
parents:
diff changeset
  7127
48194c26a46c Initial revision
claus
parents:
diff changeset
  7128
setWindowBorderPixmap:aPixmapId in:aWindowId
10
470d292c3218 before big change
claus
parents: 8
diff changeset
  7129
    "set a windows border pattern"
470d292c3218 before big change
claus
parents: 8
diff changeset
  7130
1002
01fd2863c317 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  7131
    "/ default here is to ignore the request
01fd2863c317 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  7132
01fd2863c317 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  7133
    ^ self
0
48194c26a46c Initial revision
claus
parents:
diff changeset
  7134
!
48194c26a46c Initial revision
claus
parents:
diff changeset
  7135
48194c26a46c Initial revision
claus
parents:
diff changeset
  7136
setWindowBorderShape:aPixmapId in:aWindowId
10
470d292c3218 before big change
claus
parents: 8
diff changeset
  7137
    "set a windows border shape"
470d292c3218 before big change
claus
parents: 8
diff changeset
  7138
1002
01fd2863c317 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  7139
    "/ default here is to ignore the request
01fd2863c317 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  7140
01fd2863c317 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  7141
    ^ self
0
48194c26a46c Initial revision
claus
parents:
diff changeset
  7142
!
48194c26a46c Initial revision
claus
parents:
diff changeset
  7143
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  7144
setWindowBorderWidth:aNumber in:aWindowId
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  7145
    "set a windows border width"
10
470d292c3218 before big change
claus
parents: 8
diff changeset
  7146
0
48194c26a46c Initial revision
claus
parents:
diff changeset
  7147
    ^ self subclassResponsibility
48194c26a46c Initial revision
claus
parents:
diff changeset
  7148
!
48194c26a46c Initial revision
claus
parents:
diff changeset
  7149
857
df5125310d86 New method #setWindowClass:name:in: to give a hint to the window manager.
Stefan Vogel <sv@exept.de>
parents: 849
diff changeset
  7150
setWindowClass:wClass name:wName in:aWindowId
df5125310d86 New method #setWindowClass:name:in: to give a hint to the window manager.
Stefan Vogel <sv@exept.de>
parents: 849
diff changeset
  7151
    "define class and name of a window.
df5125310d86 New method #setWindowClass:name:in: to give a hint to the window manager.
Stefan Vogel <sv@exept.de>
parents: 849
diff changeset
  7152
     This may be used by the window manager to
df5125310d86 New method #setWindowClass:name:in: to give a hint to the window manager.
Stefan Vogel <sv@exept.de>
parents: 849
diff changeset
  7153
     select client specific resources."
df5125310d86 New method #setWindowClass:name:in: to give a hint to the window manager.
Stefan Vogel <sv@exept.de>
parents: 849
diff changeset
  7154
1007
6b6b2a63f01d support for non-selectable devices (WIN32)
Claus Gittinger <cg@exept.de>
parents: 1003
diff changeset
  7155
    "/ default here is to ignore the request
857
df5125310d86 New method #setWindowClass:name:in: to give a hint to the window manager.
Stefan Vogel <sv@exept.de>
parents: 849
diff changeset
  7156
df5125310d86 New method #setWindowClass:name:in: to give a hint to the window manager.
Stefan Vogel <sv@exept.de>
parents: 849
diff changeset
  7157
    "Created: 14.6.1996 / 17:23:34 / stefan"
df5125310d86 New method #setWindowClass:name:in: to give a hint to the window manager.
Stefan Vogel <sv@exept.de>
parents: 849
diff changeset
  7158
!
df5125310d86 New method #setWindowClass:name:in: to give a hint to the window manager.
Stefan Vogel <sv@exept.de>
parents: 849
diff changeset
  7159
1007
6b6b2a63f01d support for non-selectable devices (WIN32)
Claus Gittinger <cg@exept.de>
parents: 1003
diff changeset
  7160
setWindowGravity:how in:aWindowId
6b6b2a63f01d support for non-selectable devices (WIN32)
Claus Gittinger <cg@exept.de>
parents: 1003
diff changeset
  7161
    "set window gravity for a window"
6b6b2a63f01d support for non-selectable devices (WIN32)
Claus Gittinger <cg@exept.de>
parents: 1003
diff changeset
  7162
6b6b2a63f01d support for non-selectable devices (WIN32)
Claus Gittinger <cg@exept.de>
parents: 1003
diff changeset
  7163
    "/ default here is to ignore the request
6b6b2a63f01d support for non-selectable devices (WIN32)
Claus Gittinger <cg@exept.de>
parents: 1003
diff changeset
  7164
!
6b6b2a63f01d support for non-selectable devices (WIN32)
Claus Gittinger <cg@exept.de>
parents: 1003
diff changeset
  7165
0
48194c26a46c Initial revision
claus
parents:
diff changeset
  7166
setWindowIcon:aForm in:aWindowId
2648
43b0bec3e49a comments
Claus Gittinger <cg@exept.de>
parents: 2636
diff changeset
  7167
    "define a bitmap to be used as icon"
43b0bec3e49a comments
Claus Gittinger <cg@exept.de>
parents: 2636
diff changeset
  7168
43b0bec3e49a comments
Claus Gittinger <cg@exept.de>
parents: 2636
diff changeset
  7169
    self
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  7170
	setWindowIcon:aForm 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  7171
	mask:nil 
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  7172
	in:aWindowId
1375
df3d3e894ee1 prepare for iconMasks
Claus Gittinger <cg@exept.de>
parents: 1369
diff changeset
  7173
!
df3d3e894ee1 prepare for iconMasks
Claus Gittinger <cg@exept.de>
parents: 1369
diff changeset
  7174
df3d3e894ee1 prepare for iconMasks
Claus Gittinger <cg@exept.de>
parents: 1369
diff changeset
  7175
setWindowIcon:aForm mask:aMaskForm in:aWindowId
df3d3e894ee1 prepare for iconMasks
Claus Gittinger <cg@exept.de>
parents: 1369
diff changeset
  7176
    "set a windows icon & iconMask"
10
470d292c3218 before big change
claus
parents: 8
diff changeset
  7177
2648
43b0bec3e49a comments
Claus Gittinger <cg@exept.de>
parents: 2636
diff changeset
  7178
    "/ default here is to ignore the request
0
48194c26a46c Initial revision
claus
parents:
diff changeset
  7179
!
48194c26a46c Initial revision
claus
parents:
diff changeset
  7180
48194c26a46c Initial revision
claus
parents:
diff changeset
  7181
setWindowIconWindow:aView in:aWindowId
10
470d292c3218 before big change
claus
parents: 8
diff changeset
  7182
    "set a windows icon window"
470d292c3218 before big change
claus
parents: 8
diff changeset
  7183
2648
43b0bec3e49a comments
Claus Gittinger <cg@exept.de>
parents: 2636
diff changeset
  7184
    "/ default here is to ignore the request
43b0bec3e49a comments
Claus Gittinger <cg@exept.de>
parents: 2636
diff changeset
  7185
!
43b0bec3e49a comments
Claus Gittinger <cg@exept.de>
parents: 2636
diff changeset
  7186
3244
b067af26a26a cleanup
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
  7187
setWindowMinExtent:minExt maxExtent:maxExt in:aWindowId
b067af26a26a cleanup
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
  7188
    "set a windows minimum & max extents.
b067af26a26a cleanup
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
  7189
     nil arguments are ignored."
b067af26a26a cleanup
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
  7190
b067af26a26a cleanup
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
  7191
    |minW minH maxW maxH|
b067af26a26a cleanup
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
  7192
b067af26a26a cleanup
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
  7193
    minExt notNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  7194
	minW := minExt x.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  7195
	minH := minExt y.
3244
b067af26a26a cleanup
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
  7196
    ].
b067af26a26a cleanup
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
  7197
    maxExt notNil ifTrue:[
3689
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  7198
	maxW := maxExt x.
70352e2ce86a hardcopy
tm
parents: 3688
diff changeset
  7199
	maxH := maxExt y.
3244
b067af26a26a cleanup
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
  7200
    ].
b067af26a26a cleanup
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
  7201
    self setWindowMinExtentX:minW y:minH maxExtentX:maxW y:maxH in:aWindowId
b067af26a26a cleanup
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
  7202
!
b067af26a26a cleanup
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
  7203
b067af26a26a cleanup
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
  7204
setWindowMinExtentX:minW y:minH maxExtentX:maxW y:maxH in:aWindowId
2648
43b0bec3e49a comments
Claus Gittinger <cg@exept.de>
parents: 2636
diff changeset
  7205
    "set a windows minimum & max extents.
43b0bec3e49a comments
Claus Gittinger <cg@exept.de>
parents: 2636
diff changeset
  7206
     nil arguments are ignored."
43b0bec3e49a comments
Claus Gittinger <cg@exept.de>
parents: 2636
diff changeset
  7207
0
48194c26a46c Initial revision
claus
parents:
diff changeset
  7208
    ^ self subclassResponsibility
48194c26a46c Initial revision
claus
parents:
diff changeset
  7209
!
48194c26a46c Initial revision
claus
parents:
diff changeset
  7210
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  7211
setWindowName:aString in:aWindowId
2872
43211120243f comment
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
  7212
    "define a windows name (i.e. windowTitle)"
10
470d292c3218 before big change
claus
parents: 8
diff changeset
  7213
0
48194c26a46c Initial revision
claus
parents:
diff changeset
  7214
    ^ self subclassResponsibility
48194c26a46c Initial revision
claus
parents:
diff changeset
  7215
!
48194c26a46c Initial revision
claus
parents:
diff changeset
  7216
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  7217
setWindowShape:aPixmapId in:aWindowId
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  7218
    "set a windows visible shape"
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  7219
1002
01fd2863c317 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  7220
    "/ default here is to ignore the request
0
48194c26a46c Initial revision
claus
parents:
diff changeset
  7221
!
48194c26a46c Initial revision
claus
parents:
diff changeset
  7222
48194c26a46c Initial revision
claus
parents:
diff changeset
  7223
unmapWindow:aWindowId
609
c9847d4fa398 commentary
Claus Gittinger <cg@exept.de>
parents: 600
diff changeset
  7224
    "unmap a window"
c9847d4fa398 commentary
Claus Gittinger <cg@exept.de>
parents: 600
diff changeset
  7225
0
48194c26a46c Initial revision
claus
parents:
diff changeset
  7226
    ^ self subclassResponsibility
609
c9847d4fa398 commentary
Claus Gittinger <cg@exept.de>
parents: 600
diff changeset
  7227
c9847d4fa398 commentary
Claus Gittinger <cg@exept.de>
parents: 600
diff changeset
  7228
    "Modified: 24.4.1996 / 19:42:39 / cg"
1532
bdc213364d58 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1526
diff changeset
  7229
!
bdc213364d58 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1526
diff changeset
  7230
bdc213364d58 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1526
diff changeset
  7231
windowIsIconified:aWindowId
bdc213364d58 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1526
diff changeset
  7232
    "return true, if a window is iconified"
bdc213364d58 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1526
diff changeset
  7233
bdc213364d58 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1526
diff changeset
  7234
    ^ self subclassResponsibility
bdc213364d58 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1526
diff changeset
  7235
bdc213364d58 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1526
diff changeset
  7236
    "Modified: 24.4.1996 / 19:42:39 / cg"
bdc213364d58 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1526
diff changeset
  7237
    "Created: 4.4.1997 / 14:45:26 / cg"
0
48194c26a46c Initial revision
claus
parents:
diff changeset
  7238
! !
48194c26a46c Initial revision
claus
parents:
diff changeset
  7239
3478
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  7240
!DeviceWorkstation::DeviceFontMetrics methodsFor:'accessing'!
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  7241
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  7242
ascent
3862
a3c07d0c730d comments
Claus Gittinger <cg@exept.de>
parents: 3858
diff changeset
  7243
    "return the ascent"
3478
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  7244
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  7245
    ^ ascent
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  7246
!
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  7247
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  7248
ascent:ascentArg descent:descentArg maxAscent:maxAscentArg maxDescent:maxDescentArg minWidth:minWidthArg maxWidth:maxWidthArg avgWidth:avgWidthArg
3862
a3c07d0c730d comments
Claus Gittinger <cg@exept.de>
parents: 3858
diff changeset
  7249
    "set corresponding instance variables"
a3c07d0c730d comments
Claus Gittinger <cg@exept.de>
parents: 3858
diff changeset
  7250
3478
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  7251
    ascent := ascentArg.
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  7252
    descent := descentArg.
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  7253
    maxAscent := maxAscentArg.
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  7254
    maxDescent := maxDescentArg.
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  7255
    minWidth := minWidthArg.
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  7256
    maxWidth := maxWidthArg.
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  7257
    averageWidth := avgWidthArg
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  7258
!
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  7259
4020
f4bf2bd8272e draw direction
Claus Gittinger <cg@exept.de>
parents: 3994
diff changeset
  7260
ascent:ascentArg descent:descentArg maxAscent:maxAscentArg maxDescent:maxDescentArg 
f4bf2bd8272e draw direction
Claus Gittinger <cg@exept.de>
parents: 3994
diff changeset
  7261
minWidth:minWidthArg maxWidth:maxWidthArg avgWidth:avgWidthArg minCode:minCodeArg maxCode:maxCodeArg
f4bf2bd8272e draw direction
Claus Gittinger <cg@exept.de>
parents: 3994
diff changeset
  7262
    "set corresponding instance variables"
f4bf2bd8272e draw direction
Claus Gittinger <cg@exept.de>
parents: 3994
diff changeset
  7263
f4bf2bd8272e draw direction
Claus Gittinger <cg@exept.de>
parents: 3994
diff changeset
  7264
    ascent := ascentArg.
f4bf2bd8272e draw direction
Claus Gittinger <cg@exept.de>
parents: 3994
diff changeset
  7265
    descent := descentArg.
f4bf2bd8272e draw direction
Claus Gittinger <cg@exept.de>
parents: 3994
diff changeset
  7266
    maxAscent := maxAscentArg.
f4bf2bd8272e draw direction
Claus Gittinger <cg@exept.de>
parents: 3994
diff changeset
  7267
    maxDescent := maxDescentArg.
f4bf2bd8272e draw direction
Claus Gittinger <cg@exept.de>
parents: 3994
diff changeset
  7268
    minWidth := minWidthArg.
f4bf2bd8272e draw direction
Claus Gittinger <cg@exept.de>
parents: 3994
diff changeset
  7269
    maxWidth := maxWidthArg.
f4bf2bd8272e draw direction
Claus Gittinger <cg@exept.de>
parents: 3994
diff changeset
  7270
    averageWidth := avgWidthArg.
f4bf2bd8272e draw direction
Claus Gittinger <cg@exept.de>
parents: 3994
diff changeset
  7271
    minCode := minCodeArg.
f4bf2bd8272e draw direction
Claus Gittinger <cg@exept.de>
parents: 3994
diff changeset
  7272
    maxCode := maxCodeArg.
f4bf2bd8272e draw direction
Claus Gittinger <cg@exept.de>
parents: 3994
diff changeset
  7273
!
f4bf2bd8272e draw direction
Claus Gittinger <cg@exept.de>
parents: 3994
diff changeset
  7274
f4bf2bd8272e draw direction
Claus Gittinger <cg@exept.de>
parents: 3994
diff changeset
  7275
ascent:ascentArg descent:descentArg maxAscent:maxAscentArg maxDescent:maxDescentArg 
f4bf2bd8272e draw direction
Claus Gittinger <cg@exept.de>
parents: 3994
diff changeset
  7276
minWidth:minWidthArg maxWidth:maxWidthArg avgWidth:avgWidthArg minCode:minCodeArg maxCode:maxCodeArg
f4bf2bd8272e draw direction
Claus Gittinger <cg@exept.de>
parents: 3994
diff changeset
  7277
direction:directionArg
f4bf2bd8272e draw direction
Claus Gittinger <cg@exept.de>
parents: 3994
diff changeset
  7278
    "set corresponding instance variables"
f4bf2bd8272e draw direction
Claus Gittinger <cg@exept.de>
parents: 3994
diff changeset
  7279
f4bf2bd8272e draw direction
Claus Gittinger <cg@exept.de>
parents: 3994
diff changeset
  7280
    ascent := ascentArg.
f4bf2bd8272e draw direction
Claus Gittinger <cg@exept.de>
parents: 3994
diff changeset
  7281
    descent := descentArg.
f4bf2bd8272e draw direction
Claus Gittinger <cg@exept.de>
parents: 3994
diff changeset
  7282
    maxAscent := maxAscentArg.
f4bf2bd8272e draw direction
Claus Gittinger <cg@exept.de>
parents: 3994
diff changeset
  7283
    maxDescent := maxDescentArg.
f4bf2bd8272e draw direction
Claus Gittinger <cg@exept.de>
parents: 3994
diff changeset
  7284
    minWidth := minWidthArg.
f4bf2bd8272e draw direction
Claus Gittinger <cg@exept.de>
parents: 3994
diff changeset
  7285
    maxWidth := maxWidthArg.
f4bf2bd8272e draw direction
Claus Gittinger <cg@exept.de>
parents: 3994
diff changeset
  7286
    averageWidth := avgWidthArg.
f4bf2bd8272e draw direction
Claus Gittinger <cg@exept.de>
parents: 3994
diff changeset
  7287
    minCode := minCodeArg.
f4bf2bd8272e draw direction
Claus Gittinger <cg@exept.de>
parents: 3994
diff changeset
  7288
    maxCode := maxCodeArg.
f4bf2bd8272e draw direction
Claus Gittinger <cg@exept.de>
parents: 3994
diff changeset
  7289
    direction := directionArg.
f4bf2bd8272e draw direction
Claus Gittinger <cg@exept.de>
parents: 3994
diff changeset
  7290
!
f4bf2bd8272e draw direction
Claus Gittinger <cg@exept.de>
parents: 3994
diff changeset
  7291
3478
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  7292
averageWidth
3862
a3c07d0c730d comments
Claus Gittinger <cg@exept.de>
parents: 3858
diff changeset
  7293
    "return the averageWidth"
3478
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  7294
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  7295
    ^ averageWidth
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  7296
!
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  7297
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  7298
descent
3862
a3c07d0c730d comments
Claus Gittinger <cg@exept.de>
parents: 3858
diff changeset
  7299
    "return the descent"
3478
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  7300
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  7301
    ^ descent
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  7302
!
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  7303
4020
f4bf2bd8272e draw direction
Claus Gittinger <cg@exept.de>
parents: 3994
diff changeset
  7304
direction
f4bf2bd8272e draw direction
Claus Gittinger <cg@exept.de>
parents: 3994
diff changeset
  7305
    "return the drawing direction (think of hebrew and arabic !!)"
f4bf2bd8272e draw direction
Claus Gittinger <cg@exept.de>
parents: 3994
diff changeset
  7306
4021
6a8abcb8fbd4 draw direction
Claus Gittinger <cg@exept.de>
parents: 4020
diff changeset
  7307
    ^ direction ? #LeftToRight
4020
f4bf2bd8272e draw direction
Claus Gittinger <cg@exept.de>
parents: 3994
diff changeset
  7308
!
f4bf2bd8272e draw direction
Claus Gittinger <cg@exept.de>
parents: 3994
diff changeset
  7309
3478
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  7310
encoding
3862
a3c07d0c730d comments
Claus Gittinger <cg@exept.de>
parents: 3858
diff changeset
  7311
    "return the encoding"
3478
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  7312
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  7313
    ^ encoding
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  7314
!
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  7315
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  7316
maxAscent
3862
a3c07d0c730d comments
Claus Gittinger <cg@exept.de>
parents: 3858
diff changeset
  7317
    "return the maxAscent"
3478
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  7318
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  7319
    ^ maxAscent
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  7320
!
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  7321
4022
b843fb470796 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4021
diff changeset
  7322
maxCode
b843fb470796 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4021
diff changeset
  7323
    ^ maxCode ? 16rFFFF
b843fb470796 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4021
diff changeset
  7324
!
b843fb470796 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4021
diff changeset
  7325
3478
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  7326
maxDescent
3862
a3c07d0c730d comments
Claus Gittinger <cg@exept.de>
parents: 3858
diff changeset
  7327
    "return the maxDescent"
3478
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  7328
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  7329
    ^ maxDescent
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  7330
!
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  7331
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  7332
maxWidth
3862
a3c07d0c730d comments
Claus Gittinger <cg@exept.de>
parents: 3858
diff changeset
  7333
    "return the maxWidth"
3478
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  7334
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  7335
    ^ maxWidth
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  7336
!
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  7337
4022
b843fb470796 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4021
diff changeset
  7338
minCode
b843fb470796 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4021
diff changeset
  7339
    ^ minCode ? 0
b843fb470796 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4021
diff changeset
  7340
!
b843fb470796 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4021
diff changeset
  7341
3478
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  7342
minWidth
3862
a3c07d0c730d comments
Claus Gittinger <cg@exept.de>
parents: 3858
diff changeset
  7343
    "return the minWidth"
3478
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  7344
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  7345
    ^ minWidth
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  7346
! !
b9d198097d10 fontMetric stuff changed
Claus Gittinger <cg@exept.de>
parents: 3464
diff changeset
  7347
1075
62f0cfb3c956 dont return nil entries in #knownViews
Claus Gittinger <cg@exept.de>
parents: 1074
diff changeset
  7348
!DeviceWorkstation class methodsFor:'documentation'!
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  7349
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  7350
version
4022
b843fb470796 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4021
diff changeset
  7351
    ^ '$Header: /cvs/stx/stx/libview/DeviceWorkstation.st,v 1.454 2004-02-19 00:01:07 cg Exp $'
0
48194c26a46c Initial revision
claus
parents:
diff changeset
  7352
! !
3740
14cfe4f8255e Change sends to obsolete methods
Stefan Vogel <sv@exept.de>
parents: 3710
diff changeset
  7353
293
814282cf66c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 276
diff changeset
  7354
DeviceWorkstation initialize!