WidgetRenderer.st
author matilk
Wed, 13 Sep 2017 09:40:34 +0200
changeset 8174 2704c965b97b
parent 5539 08359211b804
permissions -rw-r--r--
#BUGFIX by Maren class: DeviceGraphicsContext changed: #displayDeviceOpaqueForm:x:y: nil check
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5469
decaa9452313 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"
decaa9452313 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
 COPYRIGHT (c) 2009 by eXept Software AG
decaa9452313 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
              All Rights Reserved
decaa9452313 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
decaa9452313 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
 This software is furnished under a license and may be used
decaa9452313 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
decaa9452313 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
decaa9452313 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
decaa9452313 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
decaa9452313 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
 hereby transferred.
decaa9452313 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
"
decaa9452313 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
"{ Package: 'stx:libview' }"
decaa9452313 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
decaa9452313 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
Object subclass:#WidgetRenderer
decaa9452313 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
	instanceVariableNames:''
decaa9452313 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
	classVariableNames:''
decaa9452313 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
	poolDictionaries:''
decaa9452313 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
	category:'Graphics-Rendering'
decaa9452313 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
!
decaa9452313 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
decaa9452313 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
!WidgetRenderer class methodsFor:'documentation'!
decaa9452313 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
decaa9452313 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
copyright
decaa9452313 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
"
decaa9452313 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    25
 COPYRIGHT (c) 2009 by eXept Software AG
decaa9452313 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    26
              All Rights Reserved
decaa9452313 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    27
decaa9452313 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    28
 This software is furnished under a license and may be used
decaa9452313 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    29
 only in accordance with the terms of that license and with the
decaa9452313 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    30
 inclusion of the above copyright notice.   This software may not
decaa9452313 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    31
 be provided or otherwise made available to, or used by, any
decaa9452313 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
 other person.  No title to or ownership of the software is
decaa9452313 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    33
 hereby transferred.
decaa9452313 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
"
decaa9452313 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    35
!
decaa9452313 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    36
decaa9452313 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
documentation
decaa9452313 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
"
decaa9452313 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
    work in progress - unfinished; do not use
decaa9452313 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
"
decaa9452313 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
! !
decaa9452313 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
5539
08359211b804 added: #render:on:at:
Claus Gittinger <cg@exept.de>
parents: 5469
diff changeset
    43
!WidgetRenderer methodsFor:'rendering'!
08359211b804 added: #render:on:at:
Claus Gittinger <cg@exept.de>
parents: 5469
diff changeset
    44
08359211b804 added: #render:on:at:
Claus Gittinger <cg@exept.de>
parents: 5469
diff changeset
    45
render:aWidget on:aGC at:offset
08359211b804 added: #render:on:at:
Claus Gittinger <cg@exept.de>
parents: 5469
diff changeset
    46
    self subclassResponsibility
08359211b804 added: #render:on:at:
Claus Gittinger <cg@exept.de>
parents: 5469
diff changeset
    47
! !
08359211b804 added: #render:on:at:
Claus Gittinger <cg@exept.de>
parents: 5469
diff changeset
    48
5469
decaa9452313 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    49
!WidgetRenderer class methodsFor:'documentation'!
decaa9452313 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    50
decaa9452313 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    51
version_CVS
5539
08359211b804 added: #render:on:at:
Claus Gittinger <cg@exept.de>
parents: 5469
diff changeset
    52
    ^ '$Header: /cvs/stx/stx/libview/WidgetRenderer.st,v 1.2 2009-12-07 14:55:37 cg Exp $'
5469
decaa9452313 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    53
! !