src/reportlab/graphics/renderbase.py
author damian
Fri, 12 Dec 2008 17:55:22 +0000
changeset 3032 22224b1b4d24
parent 2964 32352db0d71e
child 3233 9408fec15198
permissions -rw-r--r--
New docstrings mainly for module titles
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2332
2a7ab4405e18 Remove $Header:, fix CopyRight & history
rgbecker
parents: 1683
diff changeset
     1
#Copyright ReportLab Europe Ltd. 2000-2004
817
8c3a399effda License text changes
rgbecker
parents: 604
diff changeset
     2
#see license.txt for license details
2332
2a7ab4405e18 Remove $Header:, fix CopyRight & history
rgbecker
parents: 1683
diff changeset
     3
#history http://www.reportlab.co.uk/cgi-bin/viewcvs.cgi/public/reportlab/trunk/reportlab/graphics/renderbase.py
568
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
     4
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
     5
__version__=''' $Id $ '''
3032
22224b1b4d24 New docstrings mainly for module titles
damian
parents: 2964
diff changeset
     6
__doc__='''Superclass for renderers to factor out common functionality and default implementations.'''
568
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
     7
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
     8
from reportlab.graphics.shapes import *
2547
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
     9
from reportlab.lib.validators import DerivedValue
2360
0fbaee224de1 rl_config add _unset_, graphics.renderxxx refactoring
rgbecker
parents: 2332
diff changeset
    10
from reportlab import rl_config
568
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
    11
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
    12
def inverse(A):
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    13
    "For A affine 2D represented as 6vec return 6vec version of A**(-1)"
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    14
    # I checked this RGB
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    15
    det = float(A[0]*A[3] - A[2]*A[1])
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    16
    R = [A[3]/det, -A[1]/det, -A[2]/det, A[0]/det]
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    17
    return tuple(R+[-R[0]*A[4]-R[2]*A[5],-R[1]*A[4]-R[3]*A[5]])
568
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
    18
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
    19
def mmult(A, B):
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    20
    "A postmultiplied by B"
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    21
    # I checked this RGB
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    22
    # [a0 a2 a4]    [b0 b2 b4]
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    23
    # [a1 a3 a5] *  [b1 b3 b5]
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    24
    # [      1 ]    [      1 ]
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    25
    #
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    26
    return (A[0]*B[0] + A[2]*B[1],
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    27
            A[1]*B[0] + A[3]*B[1],
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    28
            A[0]*B[2] + A[2]*B[3],
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    29
            A[1]*B[2] + A[3]*B[3],
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    30
            A[0]*B[4] + A[2]*B[5] + A[4],
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    31
            A[1]*B[4] + A[3]*B[5] + A[5])
568
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
    32
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
    33
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
    34
def getStateDelta(shape):
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    35
    """Used to compute when we need to change the graphics state.
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    36
    For example, if we have two adjacent red shapes we don't need
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    37
    to set the pen color to red in between. Returns the effect
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    38
    the given shape would have on the graphics state"""
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    39
    delta = {}
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    40
    for (prop, value) in shape.getProperties().items():
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    41
        if STATE_DEFAULTS.has_key(prop):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    42
            delta[prop] = value
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    43
    return delta
568
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
    44
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
    45
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
    46
class StateTracker:
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    47
    """Keeps a stack of transforms and state
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    48
    properties.  It can contain any properties you
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    49
    want, but the keys 'transform' and 'ctm' have
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    50
    special meanings.  The getCTM()
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    51
    method returns the current transformation
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    52
    matrix at any point, without needing to
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    53
    invert matrixes when you pop."""
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    54
    def __init__(self, defaults=None):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    55
        # one stack to keep track of what changes...
2547
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
    56
        self._deltas = []
568
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
    57
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    58
        # and another to keep track of cumulative effects.  Last one in
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    59
        # list is the current graphics state.  We put one in to simplify
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    60
        # loops below.
2547
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
    61
        self._combined = []
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    62
        if defaults is None:
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    63
            defaults = STATE_DEFAULTS.copy()
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    64
        #ensure  that if we have a transform, we have a CTM
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    65
        if defaults.has_key('transform'):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    66
            defaults['ctm'] = defaults['transform']
2547
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
    67
        self._combined.append(defaults)
568
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
    68
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    69
    def push(self,delta):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    70
        """Take a new state dictionary of changes and push it onto
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    71
        the stack.  After doing this, the combined state is accessible
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    72
        through getState()"""
1665
c2ce87221cf7 Changes to allow flaky _drawTimeResize
rgbecker
parents: 1609
diff changeset
    73
2547
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
    74
        newstate = self._combined[-1].copy()
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    75
        for (key, value) in delta.items():
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    76
            if key == 'transform':  #do cumulative matrix
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    77
                newstate['transform'] = delta['transform']
2547
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
    78
                newstate['ctm'] = mmult(self._combined[-1]['ctm'], delta['transform'])
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    79
                #print 'statetracker transform = (%0.2f, %0.2f, %0.2f, %0.2f, %0.2f, %0.2f)' % tuple(newstate['transform'])
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    80
                #print 'statetracker ctm = (%0.2f, %0.2f, %0.2f, %0.2f, %0.2f, %0.2f)' % tuple(newstate['ctm'])
568
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
    81
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    82
            else:  #just overwrite it
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    83
                newstate[key] = value
568
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
    84
2547
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
    85
        self._combined.append(newstate)
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
    86
        self._deltas.append(delta)
568
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
    87
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    88
    def pop(self):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    89
        """steps back one, and returns a state dictionary with the
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    90
        deltas to reverse out of wherever you are.  Depending
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    91
        on your back end, you may not need the return value,
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    92
        since you can get the complete state afterwards with getState()"""
2547
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
    93
        del self._combined[-1]
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
    94
        newState = self._combined[-1]
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
    95
        lastDelta = self._deltas[-1]
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
    96
        del  self._deltas[-1]
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    97
        #need to diff this against the last one in the state
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    98
        reverseDelta = {}
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    99
        #print 'pop()...'
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   100
        for key, curValue in lastDelta.items():
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   101
            #print '   key=%s, value=%s' % (key, curValue)
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   102
            prevValue = newState[key]
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   103
            if prevValue <> curValue:
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   104
                #print '    state popping "%s"="%s"' % (key, curValue)
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   105
                if key == 'transform':
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   106
                    reverseDelta[key] = inverse(lastDelta['transform'])
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   107
                else:  #just return to previous state
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   108
                    reverseDelta[key] = prevValue
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   109
        return reverseDelta
568
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
   110
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   111
    def getState(self):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   112
        "returns the complete graphics state at this point"
2547
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
   113
        return self._combined[-1]
568
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
   114
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   115
    def getCTM(self):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   116
        "returns the current transformation matrix at this point"""
2547
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
   117
        return self._combined[-1]['ctm']
568
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
   118
2401
cd68d7a84d05 CanvasAdapter related changes
rgbecker
parents: 2360
diff changeset
   119
    def __getitem__(self,key):
cd68d7a84d05 CanvasAdapter related changes
rgbecker
parents: 2360
diff changeset
   120
        "returns the complete graphics state value of key at this point"
2547
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
   121
        return self._combined[-1][key]
2401
cd68d7a84d05 CanvasAdapter related changes
rgbecker
parents: 2360
diff changeset
   122
cd68d7a84d05 CanvasAdapter related changes
rgbecker
parents: 2360
diff changeset
   123
    def __setitem__(self,key,value):
cd68d7a84d05 CanvasAdapter related changes
rgbecker
parents: 2360
diff changeset
   124
        "sets the complete graphics state value of key to value"
2547
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
   125
        self._combined[-1][key] = value
568
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
   126
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
   127
def testStateTracker():
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   128
    print 'Testing state tracker'
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   129
    defaults = {'fillColor':None, 'strokeColor':None,'fontName':None, 'transform':[1,0,0,1,0,0]}
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   130
    deltas = [
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   131
        {'fillColor':'red'},
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   132
        {'fillColor':'green', 'strokeColor':'blue','fontName':'Times-Roman'},
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   133
        {'transform':[0.5,0,0,0.5,0,0]},
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   134
        {'transform':[0.5,0,0,0.5,2,3]},
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   135
        {'strokeColor':'red'}
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   136
        ]
1665
c2ce87221cf7 Changes to allow flaky _drawTimeResize
rgbecker
parents: 1609
diff changeset
   137
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   138
    st = StateTracker(defaults)
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   139
    print 'initial:', st.getState()
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   140
    print
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   141
    for delta in deltas:
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   142
        print 'pushing:', delta
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   143
        st.push(delta)
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   144
        print 'state:  ',st.getState(),'\n'
568
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
   145
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   146
    for delta in deltas:
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   147
        print 'popping:',st.pop()
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   148
        print 'state:  ',st.getState(),'\n'
1665
c2ce87221cf7 Changes to allow flaky _drawTimeResize
rgbecker
parents: 1609
diff changeset
   149
568
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
   150
1665
c2ce87221cf7 Changes to allow flaky _drawTimeResize
rgbecker
parents: 1609
diff changeset
   151
def _expandUserNode(node,canvas):
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   152
    if isinstance(node, UserNode):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   153
        try:
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   154
            if hasattr(node,'_canvas'):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   155
                ocanvas = 1
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   156
            else:
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   157
                node._canvas = canvas
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   158
                ocanvas = None
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   159
            onode = node
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   160
            node = node.provideNode()
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   161
        finally:
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   162
            if not ocanvas: del onode._canvas
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   163
    return node
568
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
   164
2544
a6b9aa99b3c3 graphics: added Drawing.renderScale hack for renderer terminal drawing scales
rgbecker
parents: 2401
diff changeset
   165
def renderScaledDrawing(d):
a6b9aa99b3c3 graphics: added Drawing.renderScale hack for renderer terminal drawing scales
rgbecker
parents: 2401
diff changeset
   166
    renderScale = d.renderScale
a6b9aa99b3c3 graphics: added Drawing.renderScale hack for renderer terminal drawing scales
rgbecker
parents: 2401
diff changeset
   167
    if renderScale!=1.0:
2827
ec03c767079c renderbase.py: attempt to fix problems with copy in renderScaledDrawing
rgbecker
parents: 2570
diff changeset
   168
        o = d
ec03c767079c renderbase.py: attempt to fix problems with copy in renderScaledDrawing
rgbecker
parents: 2570
diff changeset
   169
        d = d.__class__(o.width*renderScale,o.height*renderScale)
ec03c767079c renderbase.py: attempt to fix problems with copy in renderScaledDrawing
rgbecker
parents: 2570
diff changeset
   170
        d.__dict__ = o.__dict__.copy()
2544
a6b9aa99b3c3 graphics: added Drawing.renderScale hack for renderer terminal drawing scales
rgbecker
parents: 2401
diff changeset
   171
        d.scale(renderScale,renderScale)
a6b9aa99b3c3 graphics: added Drawing.renderScale hack for renderer terminal drawing scales
rgbecker
parents: 2401
diff changeset
   172
        d.renderScale = 1.0
a6b9aa99b3c3 graphics: added Drawing.renderScale hack for renderer terminal drawing scales
rgbecker
parents: 2401
diff changeset
   173
    return d
a6b9aa99b3c3 graphics: added Drawing.renderScale hack for renderer terminal drawing scales
rgbecker
parents: 2401
diff changeset
   174
568
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
   175
class Renderer:
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   176
    """Virtual superclass for graphics renderers."""
1665
c2ce87221cf7 Changes to allow flaky _drawTimeResize
rgbecker
parents: 1609
diff changeset
   177
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   178
    def __init__(self):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   179
        self._tracker = StateTracker()
2547
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
   180
        self._nodeStack = []   #track nodes visited
1665
c2ce87221cf7 Changes to allow flaky _drawTimeResize
rgbecker
parents: 1609
diff changeset
   181
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   182
    def undefined(self, operation):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   183
        raise ValueError, "%s operation not defined at superclass class=%s" %(operation, self.__class__)
568
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
   184
2360
0fbaee224de1 rl_config add _unset_, graphics.renderxxx refactoring
rgbecker
parents: 2332
diff changeset
   185
    def draw(self, drawing, canvas, x=0, y=0, showBoundary=rl_config._unset_):
0fbaee224de1 rl_config add _unset_, graphics.renderxxx refactoring
rgbecker
parents: 2332
diff changeset
   186
        """This is the top level function, which draws the drawing at the given
0fbaee224de1 rl_config add _unset_, graphics.renderxxx refactoring
rgbecker
parents: 2332
diff changeset
   187
        location. The recursive part is handled by drawNode."""
0fbaee224de1 rl_config add _unset_, graphics.renderxxx refactoring
rgbecker
parents: 2332
diff changeset
   188
        #stash references for ease of  communication
0fbaee224de1 rl_config add _unset_, graphics.renderxxx refactoring
rgbecker
parents: 2332
diff changeset
   189
        if showBoundary is rl_config._unset_: showBoundary=rl_config.showBoundary
0fbaee224de1 rl_config add _unset_, graphics.renderxxx refactoring
rgbecker
parents: 2332
diff changeset
   190
        self._canvas = canvas
0fbaee224de1 rl_config add _unset_, graphics.renderxxx refactoring
rgbecker
parents: 2332
diff changeset
   191
        canvas.__dict__['_drawing'] = self._drawing = drawing
0fbaee224de1 rl_config add _unset_, graphics.renderxxx refactoring
rgbecker
parents: 2332
diff changeset
   192
        drawing._parent = None
0fbaee224de1 rl_config add _unset_, graphics.renderxxx refactoring
rgbecker
parents: 2332
diff changeset
   193
        try:
0fbaee224de1 rl_config add _unset_, graphics.renderxxx refactoring
rgbecker
parents: 2332
diff changeset
   194
            #bounding box
0fbaee224de1 rl_config add _unset_, graphics.renderxxx refactoring
rgbecker
parents: 2332
diff changeset
   195
            if showBoundary: canvas.rect(x, y, drawing.width, drawing.height)
0fbaee224de1 rl_config add _unset_, graphics.renderxxx refactoring
rgbecker
parents: 2332
diff changeset
   196
            canvas.saveState()
2547
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
   197
            self.initState(x,y)  #this is the push()
2360
0fbaee224de1 rl_config add _unset_, graphics.renderxxx refactoring
rgbecker
parents: 2332
diff changeset
   198
            self.drawNode(drawing)
0fbaee224de1 rl_config add _unset_, graphics.renderxxx refactoring
rgbecker
parents: 2332
diff changeset
   199
            self.pop()
0fbaee224de1 rl_config add _unset_, graphics.renderxxx refactoring
rgbecker
parents: 2332
diff changeset
   200
            canvas.restoreState()
0fbaee224de1 rl_config add _unset_, graphics.renderxxx refactoring
rgbecker
parents: 2332
diff changeset
   201
        finally:
0fbaee224de1 rl_config add _unset_, graphics.renderxxx refactoring
rgbecker
parents: 2332
diff changeset
   202
            #remove any circular references
0fbaee224de1 rl_config add _unset_, graphics.renderxxx refactoring
rgbecker
parents: 2332
diff changeset
   203
            del self._canvas, self._drawing, canvas._drawing, drawing._parent
0fbaee224de1 rl_config add _unset_, graphics.renderxxx refactoring
rgbecker
parents: 2332
diff changeset
   204
0fbaee224de1 rl_config add _unset_, graphics.renderxxx refactoring
rgbecker
parents: 2332
diff changeset
   205
    def initState(self,x,y):
0fbaee224de1 rl_config add _unset_, graphics.renderxxx refactoring
rgbecker
parents: 2332
diff changeset
   206
        deltas = STATE_DEFAULTS.copy()
0fbaee224de1 rl_config add _unset_, graphics.renderxxx refactoring
rgbecker
parents: 2332
diff changeset
   207
        deltas['transform'] = [1,0,0,1,x,y]
0fbaee224de1 rl_config add _unset_, graphics.renderxxx refactoring
rgbecker
parents: 2332
diff changeset
   208
        self._tracker.push(deltas)
0fbaee224de1 rl_config add _unset_, graphics.renderxxx refactoring
rgbecker
parents: 2332
diff changeset
   209
        self.applyStateChanges(deltas, {})
0fbaee224de1 rl_config add _unset_, graphics.renderxxx refactoring
rgbecker
parents: 2332
diff changeset
   210
0fbaee224de1 rl_config add _unset_, graphics.renderxxx refactoring
rgbecker
parents: 2332
diff changeset
   211
    def pop(self):
0fbaee224de1 rl_config add _unset_, graphics.renderxxx refactoring
rgbecker
parents: 2332
diff changeset
   212
        self._tracker.pop()
568
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
   213
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   214
    def drawNode(self, node):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   215
        """This is the recursive method called for each node
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   216
        in the tree"""
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   217
        # Undefined here, but with closer analysis probably can be handled in superclass
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   218
        self.undefined("drawNode")
1665
c2ce87221cf7 Changes to allow flaky _drawTimeResize
rgbecker
parents: 1609
diff changeset
   219
2547
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
   220
    def getStateValue(self, key):
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
   221
        """Return current state parameter for given key"""
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
   222
        currentState = self._tracker._combined[-1]
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
   223
        return currentState[key]
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
   224
    
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
   225
    def fillDerivedValues(self, node):
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
   226
        """Examine a node for any values which are Derived,
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
   227
        and replace them with their calculated values.
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
   228
        Generally things may look at the drawing or their
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
   229
        parent.
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
   230
        
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
   231
        """
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
   232
        for (key, value) in node.__dict__.items():
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
   233
            if isinstance(value, DerivedValue):
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
   234
                #just replace with default for key?
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
   235
                #print '    fillDerivedValues(%s)' % key
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
   236
                newValue = value.getValue(self, key)
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
   237
                #print '   got value of %s' % newValue
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
   238
                node.__dict__[key] = newValue
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
   239
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   240
    def drawNodeDispatcher(self, node):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   241
        """dispatch on the node's (super) class: shared code"""
2570
7b93b3b42e51 reportlab/graphics cosmetics and adding drawImage to renderPS
rgbecker
parents: 2547
diff changeset
   242
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   243
        canvas = getattr(self,'_canvas',None)
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   244
        # replace UserNode with its contents
2570
7b93b3b42e51 reportlab/graphics cosmetics and adding drawImage to renderPS
rgbecker
parents: 2547
diff changeset
   245
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   246
        try:
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   247
            node = _expandUserNode(node,canvas)
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   248
            if hasattr(node,'_canvas'):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   249
                ocanvas = 1
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   250
            else:
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   251
                node._canvas = canvas
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   252
                ocanvas = None
568
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
   253
2547
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
   254
            self.fillDerivedValues(node)
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   255
            #draw the object, or recurse
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   256
            if isinstance(node, Line):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   257
                self.drawLine(node)
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   258
            elif isinstance(node, Image):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   259
                self.drawImage(node)
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   260
            elif isinstance(node, Rect):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   261
                self.drawRect(node)
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   262
            elif isinstance(node, Circle):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   263
                self.drawCircle(node)
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   264
            elif isinstance(node, Ellipse):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   265
                self.drawEllipse(node)
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   266
            elif isinstance(node, PolyLine):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   267
                self.drawPolyLine(node)
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   268
            elif isinstance(node, Polygon):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   269
                self.drawPolygon(node)
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   270
            elif isinstance(node, Path):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   271
                self.drawPath(node)
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   272
            elif isinstance(node, String):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   273
                self.drawString(node)
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   274
            elif isinstance(node, Group):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   275
                self.drawGroup(node)
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   276
            elif isinstance(node, Wedge):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   277
                self.drawWedge(node)
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   278
            else:
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   279
                print 'DrawingError','Unexpected element %s in drawing!' % str(node)
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   280
        finally:
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   281
            if not ocanvas: del node._canvas
1665
c2ce87221cf7 Changes to allow flaky _drawTimeResize
rgbecker
parents: 1609
diff changeset
   282
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   283
    _restores = {'stroke':'_stroke','stroke_width': '_lineWidth','stroke_linecap':'_lineCap',
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   284
                'stroke_linejoin':'_lineJoin','fill':'_fill','font_family':'_font',
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   285
                'font_size':'_fontSize'}
585
e0144950b3e2 Fixes to CTM to support bitmap renderer; extra string rotation
andy_robinson
parents: 580
diff changeset
   286
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   287
    def drawGroup(self, group):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   288
        # just do the contents.  Some renderers might need to override this
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   289
        # if they need a flipped transform
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   290
        canvas = getattr(self,'_canvas',None)
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   291
        for node in group.getContents():
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   292
            node = _expandUserNode(node,canvas)
2547
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
   293
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
   294
            #here is where we do derived values - this seems to get everything. Touch wood.            
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
   295
            self.fillDerivedValues(node)
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   296
            try:
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   297
                if hasattr(node,'_canvas'):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   298
                    ocanvas = 1
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   299
                else:
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   300
                    node._canvas = canvas
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   301
                    ocanvas = None
2360
0fbaee224de1 rl_config add _unset_, graphics.renderxxx refactoring
rgbecker
parents: 2332
diff changeset
   302
                node._parent = group
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   303
                self.drawNode(node)
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   304
            finally:
2360
0fbaee224de1 rl_config add _unset_, graphics.renderxxx refactoring
rgbecker
parents: 2332
diff changeset
   305
                del node._parent
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   306
                if not ocanvas: del node._canvas
585
e0144950b3e2 Fixes to CTM to support bitmap renderer; extra string rotation
andy_robinson
parents: 580
diff changeset
   307
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   308
    def drawWedge(self, wedge):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   309
        # by default ask the wedge to make a polygon of itself and draw that!
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   310
        #print "drawWedge"
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   311
        polygon = wedge.asPolygon()
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   312
        self.drawPolygon(polygon)
1665
c2ce87221cf7 Changes to allow flaky _drawTimeResize
rgbecker
parents: 1609
diff changeset
   313
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   314
    def drawPath(self, path):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   315
        polygons = path.asPolygons()
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   316
        for polygon in polygons:
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   317
                self.drawPolygon(polygon)
568
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
   318
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   319
    def drawRect(self, rect):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   320
        # could be implemented in terms of polygon
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   321
        self.undefined("drawRect")
568
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
   322
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   323
    def drawLine(self, line):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   324
        self.undefined("drawLine")
568
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
   325
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   326
    def drawCircle(self, circle):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   327
        self.undefined("drawCircle")
1665
c2ce87221cf7 Changes to allow flaky _drawTimeResize
rgbecker
parents: 1609
diff changeset
   328
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   329
    def drawPolyLine(self, p):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   330
        self.undefined("drawPolyLine")
568
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
   331
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   332
    def drawEllipse(self, ellipse):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   333
        self.undefined("drawEllipse")
568
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
   334
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   335
    def drawPolygon(self, p):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   336
        self.undefined("drawPolygon")
568
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
   337
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   338
    def drawString(self, stringObj):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   339
        self.undefined("drawString")
568
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
   340
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   341
    def applyStateChanges(self, delta, newState):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   342
        """This takes a set of states, and outputs the operators
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   343
        needed to set those properties"""
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   344
        self.undefined("applyStateChanges")
568
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
   345
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
   346
if __name__=='__main__':
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   347
    print "this file has no script interpretation"
2360
0fbaee224de1 rl_config add _unset_, graphics.renderxxx refactoring
rgbecker
parents: 2332
diff changeset
   348
    print __doc__