src/reportlab/graphics/renderbase.py
author rgbecker
Wed, 03 Sep 2008 16:10:51 +0000
changeset 2964 32352db0d71e
parent 2827 reportlab/graphics/renderbase.py@ec03c767079c
child 3032 22224b1b4d24
permissions -rw-r--r--
reportlab-2.2: second stage of major re-org
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
Superclass for renderers to factor out common functionality and default implementations.
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
     6
"""
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
     7
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
     8
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
     9
__version__=''' $Id $ '''
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
    10
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
    11
from reportlab.graphics.shapes import *
2547
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
    12
from reportlab.lib.validators import DerivedValue
2360
0fbaee224de1 rl_config add _unset_, graphics.renderxxx refactoring
rgbecker
parents: 2332
diff changeset
    13
from reportlab import rl_config
568
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
    14
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
    15
def inverse(A):
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    16
    "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
    17
    # I checked this RGB
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    18
    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
    19
    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
    20
    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
    21
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
    22
def mmult(A, B):
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    23
    "A postmultiplied by B"
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    24
    # I checked this RGB
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    25
    # [a0 a2 a4]    [b0 b2 b4]
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    26
    # [a1 a3 a5] *  [b1 b3 b5]
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    27
    # [      1 ]    [      1 ]
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    28
    #
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    29
    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
    30
            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
    31
            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
    32
            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
    33
            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
    34
            A[1]*B[4] + A[3]*B[5] + A[5])
568
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
    35
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
    36
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
    37
def getStateDelta(shape):
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    38
    """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
    39
    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
    40
    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
    41
    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
    42
    delta = {}
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    43
    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
    44
        if STATE_DEFAULTS.has_key(prop):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    45
            delta[prop] = value
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    46
    return delta
568
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
    47
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
    48
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
    49
class StateTracker:
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    50
    """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
    51
    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
    52
    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
    53
    special meanings.  The getCTM()
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    54
    method returns the current transformation
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    55
    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
    56
    invert matrixes when you pop."""
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    57
    def __init__(self, defaults=None):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    58
        # one stack to keep track of what changes...
2547
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
    59
        self._deltas = []
568
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
    60
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    61
        # 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
    62
        # 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
    63
        # loops below.
2547
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
    64
        self._combined = []
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    65
        if defaults is None:
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    66
            defaults = STATE_DEFAULTS.copy()
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    67
        #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
    68
        if defaults.has_key('transform'):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    69
            defaults['ctm'] = defaults['transform']
2547
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
    70
        self._combined.append(defaults)
568
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
    71
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    72
    def push(self,delta):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    73
        """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
    74
        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
    75
        through getState()"""
1665
c2ce87221cf7 Changes to allow flaky _drawTimeResize
rgbecker
parents: 1609
diff changeset
    76
2547
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
    77
        newstate = self._combined[-1].copy()
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    78
        for (key, value) in delta.items():
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    79
            if key == 'transform':  #do cumulative matrix
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    80
                newstate['transform'] = delta['transform']
2547
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
    81
                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
    82
                #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
    83
                #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
    84
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    85
            else:  #just overwrite it
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    86
                newstate[key] = value
568
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
    87
2547
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
    88
        self._combined.append(newstate)
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
    89
        self._deltas.append(delta)
568
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
    90
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    91
    def pop(self):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
    92
        """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
    93
        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
    94
        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
    95
        since you can get the complete state afterwards with getState()"""
2547
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
    96
        del self._combined[-1]
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
    97
        newState = self._combined[-1]
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
    98
        lastDelta = self._deltas[-1]
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
    99
        del  self._deltas[-1]
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   100
        #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
   101
        reverseDelta = {}
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   102
        #print 'pop()...'
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   103
        for key, curValue in lastDelta.items():
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   104
            #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
   105
            prevValue = newState[key]
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   106
            if prevValue <> curValue:
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   107
                #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
   108
                if key == 'transform':
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   109
                    reverseDelta[key] = inverse(lastDelta['transform'])
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   110
                else:  #just return to previous state
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   111
                    reverseDelta[key] = prevValue
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   112
        return reverseDelta
568
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
   113
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   114
    def getState(self):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   115
        "returns the complete graphics state at this point"
2547
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
   116
        return self._combined[-1]
568
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
   117
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   118
    def getCTM(self):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   119
        "returns the current transformation matrix at this point"""
2547
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
   120
        return self._combined[-1]['ctm']
568
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
   121
2401
cd68d7a84d05 CanvasAdapter related changes
rgbecker
parents: 2360
diff changeset
   122
    def __getitem__(self,key):
cd68d7a84d05 CanvasAdapter related changes
rgbecker
parents: 2360
diff changeset
   123
        "returns the complete graphics state value of key at this point"
2547
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
   124
        return self._combined[-1][key]
2401
cd68d7a84d05 CanvasAdapter related changes
rgbecker
parents: 2360
diff changeset
   125
cd68d7a84d05 CanvasAdapter related changes
rgbecker
parents: 2360
diff changeset
   126
    def __setitem__(self,key,value):
cd68d7a84d05 CanvasAdapter related changes
rgbecker
parents: 2360
diff changeset
   127
        "sets the complete graphics state value of key to value"
2547
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
   128
        self._combined[-1][key] = value
568
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
   129
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
   130
def testStateTracker():
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   131
    print 'Testing state tracker'
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   132
    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
   133
    deltas = [
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   134
        {'fillColor':'red'},
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   135
        {'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
   136
        {'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
   137
        {'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
   138
        {'strokeColor':'red'}
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   139
        ]
1665
c2ce87221cf7 Changes to allow flaky _drawTimeResize
rgbecker
parents: 1609
diff changeset
   140
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   141
    st = StateTracker(defaults)
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   142
    print 'initial:', st.getState()
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   143
    print
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   144
    for delta in deltas:
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   145
        print 'pushing:', delta
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   146
        st.push(delta)
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   147
        print 'state:  ',st.getState(),'\n'
568
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
   148
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   149
    for delta in deltas:
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   150
        print 'popping:',st.pop()
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   151
        print 'state:  ',st.getState(),'\n'
1665
c2ce87221cf7 Changes to allow flaky _drawTimeResize
rgbecker
parents: 1609
diff changeset
   152
568
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
   153
1665
c2ce87221cf7 Changes to allow flaky _drawTimeResize
rgbecker
parents: 1609
diff changeset
   154
def _expandUserNode(node,canvas):
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   155
    if isinstance(node, UserNode):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   156
        try:
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   157
            if hasattr(node,'_canvas'):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   158
                ocanvas = 1
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   159
            else:
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   160
                node._canvas = canvas
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   161
                ocanvas = None
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   162
            onode = node
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   163
            node = node.provideNode()
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   164
        finally:
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   165
            if not ocanvas: del onode._canvas
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   166
    return node
568
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
   167
2544
a6b9aa99b3c3 graphics: added Drawing.renderScale hack for renderer terminal drawing scales
rgbecker
parents: 2401
diff changeset
   168
def renderScaledDrawing(d):
a6b9aa99b3c3 graphics: added Drawing.renderScale hack for renderer terminal drawing scales
rgbecker
parents: 2401
diff changeset
   169
    renderScale = d.renderScale
a6b9aa99b3c3 graphics: added Drawing.renderScale hack for renderer terminal drawing scales
rgbecker
parents: 2401
diff changeset
   170
    if renderScale!=1.0:
2827
ec03c767079c renderbase.py: attempt to fix problems with copy in renderScaledDrawing
rgbecker
parents: 2570
diff changeset
   171
        o = d
ec03c767079c renderbase.py: attempt to fix problems with copy in renderScaledDrawing
rgbecker
parents: 2570
diff changeset
   172
        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
   173
        d.__dict__ = o.__dict__.copy()
2544
a6b9aa99b3c3 graphics: added Drawing.renderScale hack for renderer terminal drawing scales
rgbecker
parents: 2401
diff changeset
   174
        d.scale(renderScale,renderScale)
a6b9aa99b3c3 graphics: added Drawing.renderScale hack for renderer terminal drawing scales
rgbecker
parents: 2401
diff changeset
   175
        d.renderScale = 1.0
a6b9aa99b3c3 graphics: added Drawing.renderScale hack for renderer terminal drawing scales
rgbecker
parents: 2401
diff changeset
   176
    return d
a6b9aa99b3c3 graphics: added Drawing.renderScale hack for renderer terminal drawing scales
rgbecker
parents: 2401
diff changeset
   177
568
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
   178
class Renderer:
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   179
    """Virtual superclass for graphics renderers."""
1665
c2ce87221cf7 Changes to allow flaky _drawTimeResize
rgbecker
parents: 1609
diff changeset
   180
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   181
    def __init__(self):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   182
        self._tracker = StateTracker()
2547
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
   183
        self._nodeStack = []   #track nodes visited
1665
c2ce87221cf7 Changes to allow flaky _drawTimeResize
rgbecker
parents: 1609
diff changeset
   184
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   185
    def undefined(self, operation):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   186
        raise ValueError, "%s operation not defined at superclass class=%s" %(operation, self.__class__)
568
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
   187
2360
0fbaee224de1 rl_config add _unset_, graphics.renderxxx refactoring
rgbecker
parents: 2332
diff changeset
   188
    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
   189
        """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
   190
        location. The recursive part is handled by drawNode."""
0fbaee224de1 rl_config add _unset_, graphics.renderxxx refactoring
rgbecker
parents: 2332
diff changeset
   191
        #stash references for ease of  communication
0fbaee224de1 rl_config add _unset_, graphics.renderxxx refactoring
rgbecker
parents: 2332
diff changeset
   192
        if showBoundary is rl_config._unset_: showBoundary=rl_config.showBoundary
0fbaee224de1 rl_config add _unset_, graphics.renderxxx refactoring
rgbecker
parents: 2332
diff changeset
   193
        self._canvas = canvas
0fbaee224de1 rl_config add _unset_, graphics.renderxxx refactoring
rgbecker
parents: 2332
diff changeset
   194
        canvas.__dict__['_drawing'] = self._drawing = drawing
0fbaee224de1 rl_config add _unset_, graphics.renderxxx refactoring
rgbecker
parents: 2332
diff changeset
   195
        drawing._parent = None
0fbaee224de1 rl_config add _unset_, graphics.renderxxx refactoring
rgbecker
parents: 2332
diff changeset
   196
        try:
0fbaee224de1 rl_config add _unset_, graphics.renderxxx refactoring
rgbecker
parents: 2332
diff changeset
   197
            #bounding box
0fbaee224de1 rl_config add _unset_, graphics.renderxxx refactoring
rgbecker
parents: 2332
diff changeset
   198
            if showBoundary: canvas.rect(x, y, drawing.width, drawing.height)
0fbaee224de1 rl_config add _unset_, graphics.renderxxx refactoring
rgbecker
parents: 2332
diff changeset
   199
            canvas.saveState()
2547
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
   200
            self.initState(x,y)  #this is the push()
2360
0fbaee224de1 rl_config add _unset_, graphics.renderxxx refactoring
rgbecker
parents: 2332
diff changeset
   201
            self.drawNode(drawing)
0fbaee224de1 rl_config add _unset_, graphics.renderxxx refactoring
rgbecker
parents: 2332
diff changeset
   202
            self.pop()
0fbaee224de1 rl_config add _unset_, graphics.renderxxx refactoring
rgbecker
parents: 2332
diff changeset
   203
            canvas.restoreState()
0fbaee224de1 rl_config add _unset_, graphics.renderxxx refactoring
rgbecker
parents: 2332
diff changeset
   204
        finally:
0fbaee224de1 rl_config add _unset_, graphics.renderxxx refactoring
rgbecker
parents: 2332
diff changeset
   205
            #remove any circular references
0fbaee224de1 rl_config add _unset_, graphics.renderxxx refactoring
rgbecker
parents: 2332
diff changeset
   206
            del self._canvas, self._drawing, canvas._drawing, drawing._parent
0fbaee224de1 rl_config add _unset_, graphics.renderxxx refactoring
rgbecker
parents: 2332
diff changeset
   207
0fbaee224de1 rl_config add _unset_, graphics.renderxxx refactoring
rgbecker
parents: 2332
diff changeset
   208
    def initState(self,x,y):
0fbaee224de1 rl_config add _unset_, graphics.renderxxx refactoring
rgbecker
parents: 2332
diff changeset
   209
        deltas = STATE_DEFAULTS.copy()
0fbaee224de1 rl_config add _unset_, graphics.renderxxx refactoring
rgbecker
parents: 2332
diff changeset
   210
        deltas['transform'] = [1,0,0,1,x,y]
0fbaee224de1 rl_config add _unset_, graphics.renderxxx refactoring
rgbecker
parents: 2332
diff changeset
   211
        self._tracker.push(deltas)
0fbaee224de1 rl_config add _unset_, graphics.renderxxx refactoring
rgbecker
parents: 2332
diff changeset
   212
        self.applyStateChanges(deltas, {})
0fbaee224de1 rl_config add _unset_, graphics.renderxxx refactoring
rgbecker
parents: 2332
diff changeset
   213
0fbaee224de1 rl_config add _unset_, graphics.renderxxx refactoring
rgbecker
parents: 2332
diff changeset
   214
    def pop(self):
0fbaee224de1 rl_config add _unset_, graphics.renderxxx refactoring
rgbecker
parents: 2332
diff changeset
   215
        self._tracker.pop()
568
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
   216
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   217
    def drawNode(self, node):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   218
        """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
   219
        in the tree"""
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   220
        # 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
   221
        self.undefined("drawNode")
1665
c2ce87221cf7 Changes to allow flaky _drawTimeResize
rgbecker
parents: 1609
diff changeset
   222
2547
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
   223
    def getStateValue(self, key):
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
   224
        """Return current state parameter for given key"""
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
   225
        currentState = self._tracker._combined[-1]
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
   226
        return currentState[key]
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
   227
    
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
   228
    def fillDerivedValues(self, node):
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
   229
        """Examine a node for any values which are Derived,
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
   230
        and replace them with their calculated values.
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
   231
        Generally things may look at the drawing or their
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
   232
        parent.
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
   233
        
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
   234
        """
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
   235
        for (key, value) in node.__dict__.items():
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
   236
            if isinstance(value, DerivedValue):
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
   237
                #just replace with default for key?
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
   238
                #print '    fillDerivedValues(%s)' % key
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
   239
                newValue = value.getValue(self, key)
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
   240
                #print '   got value of %s' % newValue
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
   241
                node.__dict__[key] = newValue
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
   242
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   243
    def drawNodeDispatcher(self, node):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   244
        """dispatch on the node's (super) class: shared code"""
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
        canvas = getattr(self,'_canvas',None)
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   247
        # replace UserNode with its contents
2570
7b93b3b42e51 reportlab/graphics cosmetics and adding drawImage to renderPS
rgbecker
parents: 2547
diff changeset
   248
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   249
        try:
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   250
            node = _expandUserNode(node,canvas)
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   251
            if hasattr(node,'_canvas'):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   252
                ocanvas = 1
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   253
            else:
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   254
                node._canvas = canvas
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   255
                ocanvas = None
568
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
   256
2547
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
   257
            self.fillDerivedValues(node)
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   258
            #draw the object, or recurse
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   259
            if isinstance(node, Line):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   260
                self.drawLine(node)
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   261
            elif isinstance(node, Image):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   262
                self.drawImage(node)
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   263
            elif isinstance(node, Rect):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   264
                self.drawRect(node)
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   265
            elif isinstance(node, Circle):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   266
                self.drawCircle(node)
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   267
            elif isinstance(node, Ellipse):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   268
                self.drawEllipse(node)
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   269
            elif isinstance(node, PolyLine):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   270
                self.drawPolyLine(node)
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   271
            elif isinstance(node, Polygon):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   272
                self.drawPolygon(node)
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   273
            elif isinstance(node, Path):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   274
                self.drawPath(node)
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   275
            elif isinstance(node, String):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   276
                self.drawString(node)
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   277
            elif isinstance(node, Group):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   278
                self.drawGroup(node)
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   279
            elif isinstance(node, Wedge):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   280
                self.drawWedge(node)
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   281
            else:
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   282
                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
   283
        finally:
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   284
            if not ocanvas: del node._canvas
1665
c2ce87221cf7 Changes to allow flaky _drawTimeResize
rgbecker
parents: 1609
diff changeset
   285
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   286
    _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
   287
                '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
   288
                'font_size':'_fontSize'}
585
e0144950b3e2 Fixes to CTM to support bitmap renderer; extra string rotation
andy_robinson
parents: 580
diff changeset
   289
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   290
    def drawGroup(self, group):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   291
        # 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
   292
        # if they need a flipped transform
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   293
        canvas = getattr(self,'_canvas',None)
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   294
        for node in group.getContents():
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   295
            node = _expandUserNode(node,canvas)
2547
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
   296
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
   297
            #here is where we do derived values - this seems to get everything. Touch wood.            
9d13685212f2 datacharts synchronised
andy
parents: 2544
diff changeset
   298
            self.fillDerivedValues(node)
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   299
            try:
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   300
                if hasattr(node,'_canvas'):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   301
                    ocanvas = 1
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   302
                else:
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   303
                    node._canvas = canvas
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   304
                    ocanvas = None
2360
0fbaee224de1 rl_config add _unset_, graphics.renderxxx refactoring
rgbecker
parents: 2332
diff changeset
   305
                node._parent = group
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   306
                self.drawNode(node)
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   307
            finally:
2360
0fbaee224de1 rl_config add _unset_, graphics.renderxxx refactoring
rgbecker
parents: 2332
diff changeset
   308
                del node._parent
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   309
                if not ocanvas: del node._canvas
585
e0144950b3e2 Fixes to CTM to support bitmap renderer; extra string rotation
andy_robinson
parents: 580
diff changeset
   310
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   311
    def drawWedge(self, wedge):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   312
        # 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
   313
        #print "drawWedge"
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   314
        polygon = wedge.asPolygon()
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   315
        self.drawPolygon(polygon)
1665
c2ce87221cf7 Changes to allow flaky _drawTimeResize
rgbecker
parents: 1609
diff changeset
   316
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   317
    def drawPath(self, path):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   318
        polygons = path.asPolygons()
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   319
        for polygon in polygons:
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   320
                self.drawPolygon(polygon)
568
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
   321
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   322
    def drawRect(self, rect):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   323
        # 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
   324
        self.undefined("drawRect")
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 drawLine(self, line):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   327
        self.undefined("drawLine")
568
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
   328
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   329
    def drawCircle(self, circle):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   330
        self.undefined("drawCircle")
1665
c2ce87221cf7 Changes to allow flaky _drawTimeResize
rgbecker
parents: 1609
diff changeset
   331
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   332
    def drawPolyLine(self, p):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   333
        self.undefined("drawPolyLine")
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 drawEllipse(self, ellipse):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   336
        self.undefined("drawEllipse")
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 drawPolygon(self, p):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   339
        self.undefined("drawPolygon")
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 drawString(self, stringObj):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   342
        self.undefined("drawString")
568
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
   343
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   344
    def applyStateChanges(self, delta, newState):
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   345
        """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
   346
        needed to set those properties"""
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   347
        self.undefined("applyStateChanges")
568
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
   348
9cadc5ef53db Added graphics module
andy_robinson
parents:
diff changeset
   349
if __name__=='__main__':
1677
1450177dd19e Exterminated all tab characters and added a test to make sure
andy_robinson
parents: 1665
diff changeset
   350
    print "this file has no script interpretation"
2360
0fbaee224de1 rl_config add _unset_, graphics.renderxxx refactoring
rgbecker
parents: 2332
diff changeset
   351
    print __doc__