Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/thirdparty/cairoplot-trunk/trunk/cairoplot/handlers/fixedsize.py
blob: 3c25fdf96506ded13a1880b11ef887ae25a08c8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30

import cairo
import cairoplot
from .handler import Handler as _Handler

class FixedSizeHandler(_Handler):
    """Base class for handlers with a fixed size."""

    def __init__(self, width, height):
        """Create with fixed width and height."""
        self.dimensions = {}
        self.dimensions[cairoplot.HORZ] = width
        self.dimensions[cairoplot.VERT] = height

        # sub-classes must create a surface
        self.surface = None

    def prepare(self, plot):
        """Prepare plot to render by setting its dimensions."""
        _Handler.prepare(self, plot)
        plot.dimensions = self.dimensions
        plot.context = cairo.Context(self.surface)

    def commit(self, plot):
        """Commit the plot (to a file)."""
        _Handler.commit(self, plot)

        # since pngs are different from other fixed size handlers,
        # sub-classes are in charge of actual file writing