Sophie

Sophie

distrib > Mageia > 6 > i586 > media > core-release > by-pkgid > a6a42ac5a4314572516fde7d839137dd > files > 71

python-reportlab-docs-3.3.0-1.mga6.i586.rpm

from reportlab.lib import styles
from reportlab.lib import colors
from reportlab.lib.units import cm
from reportlab.lib.enums import TA_LEFT, TA_CENTER, TA_RIGHT, TA_JUSTIFY
from reportlab.platypus import Preformatted, Paragraph, Frame, \
     Image, Table, TableStyle, Spacer
from reportlab.pdfbase import pdfmetrics
from reportlab.pdfbase.ttfonts import TTFont


def getParagraphStyles():
    """Returns a dictionary of styles to get you started.

    We will provide a way to specify a module of these.  Note that
    this just includes TableStyles as well as ParagraphStyles for any
    tables you wish to use.
    """

    pdfmetrics.registerFont(TTFont('Verdana','verdana.ttf'))
    pdfmetrics.registerFont(TTFont('Verdana-Bold','verdanab.ttf'))
    pdfmetrics.registerFont(TTFont('Verdana-Italic','verdanai.ttf'))
    pdfmetrics.registerFont(TTFont('Verdana-BoldItalic','verdanaz.ttf'))
    pdfmetrics.registerFont(TTFont('Arial Narrow','arialn.ttf'))
    pdfmetrics.registerFont(TTFont('Arial Narrow-Bold','arialnb.ttf'))
    pdfmetrics.registerFont(TTFont('Arial Narrow-Italic','arialni.ttf'))
    pdfmetrics.registerFont(TTFont('Arial Narrow-BoldItalic','arialnbi.ttf'))

    stylesheet = {}
    ParagraphStyle = styles.ParagraphStyle

    para = ParagraphStyle('Normal', None)   #the ancestor of all
    para.fontName = 'Verdana'
    para.fontSize = 28
    para.leading = 32
    para.spaceAfter = 6
    stylesheet['Normal'] = para

    #This one is spaced out a bit...
    para = ParagraphStyle('BodyText', stylesheet['Normal'])
    para.spaceBefore = 12
    stylesheet['BodyText'] = para

    #Indented, for lists
    para = ParagraphStyle('Indent', stylesheet['Normal'])
    para.leftIndent = 60
    para.firstLineIndent = 0
    stylesheet['Indent'] = para

    para = ParagraphStyle('Centered', stylesheet['Normal'])
    para.alignment = TA_CENTER
    stylesheet['Centered'] = para

    para = ParagraphStyle('BigCentered', stylesheet['Normal'])
    para.fontSize = 32
    para.alignment = TA_CENTER
    para.spaceBefore = 12
    para.spaceAfter = 12
    stylesheet['BigCentered'] = para

    para = ParagraphStyle('Italic', stylesheet['BodyText'])
    para.fontName = 'Verdana-Italic'
    stylesheet['Italic'] = para

    para = ParagraphStyle('Title', stylesheet['Normal'])
    para.fontName = 'Arial Narrow-Bold'
    para.fontSize = 48
    para.leading = 58
    para.alignment = TA_CENTER
    stylesheet['Title'] = para

    para = ParagraphStyle('Heading1', stylesheet['Normal'])
    para.fontName = 'Arial Narrow-Bold'
    para.fontSize = 40
    para.leading = 44
    para.alignment = TA_CENTER
    stylesheet['Heading1'] = para

    para = ParagraphStyle('Heading2', stylesheet['Normal'])
    para.fontName = 'Verdana'
    para.fontSize = 32
    para.leading = 36
    para.spaceBefore = 32
    para.spaceAfter = 12
    stylesheet['Heading2'] = para

    para = ParagraphStyle('Heading3', stylesheet['Normal'])
    para.fontName = 'Verdana'
    para.spaceBefore = 20
    para.spaceAfter = 6
    stylesheet['Heading3'] = para

    para = ParagraphStyle('Heading4', stylesheet['Normal'])
    para.fontName = 'Verdana-BoldItalic'
    para.spaceBefore = 6
    stylesheet['Heading4'] = para

    para = ParagraphStyle('Bullet', stylesheet['Normal'])
    para.firstLineIndent = 0
    para.leftIndent = 56
    para.spaceBefore = 6
    para.bulletFontName = 'Symbol'
    para.bulletFontSize = 24
    para.bulletIndent = 20
    stylesheet['Bullet'] = para

    para = ParagraphStyle('Bullet2', stylesheet['Normal'])
    para.firstLineIndent = 0
    para.leftIndent = 80
    para.spaceBefore = 6
    para.fontSize = 24
    para.bulletFontName = 'Symbol'
    para.bulletFontSize = 20
    para.bulletIndent = 60
    stylesheet['Bullet2'] = para

    para = ParagraphStyle('Definition', stylesheet['Normal'])
    #use this for definition lists
    para.firstLineIndent = 0
    para.leftIndent = 60
    para.bulletIndent = 0
    para.bulletFontName = 'Verdana-BoldItalic'
    para.bulletFontSize = 24
    stylesheet['Definition'] = para

    para = ParagraphStyle('Code', stylesheet['Normal'])
    para.fontName = 'Courier'
    para.fontSize = 16
    para.leading = 18
    para.leftIndent = 36
    stylesheet['Code'] = para

    para = ParagraphStyle('PythonCode', stylesheet['Normal'])
    para.fontName = 'Courier'
    para.fontSize = 16
    para.leading = 18
    para.leftIndent = 36
    stylesheet['Code'] = para

    para = ParagraphStyle('Small', stylesheet['Normal'])
    para.fontSize = 12
    para.leading = 14
    stylesheet['Small'] = para

    #now for a table
    ts = TableStyle([
         ('FONT', (0,0), (-1,-1), 'Arial Narrow', 22),
         ('LINEABOVE', (0,1), (-1,1), 2, colors.green),
         ('LINEABOVE', (0,2), (-1,-1), 0.25, colors.black),
         ('LINEBELOW', (0,-1), (-1,-1), 2, colors.green),
         ('LINEBEFORE', (0,1), (-1,-1), 2, colors.black),
         ('LINEAFTER', (0,1), (-1,-1), 2, colors.black),
         ('ALIGN', (4,1), (-1,-1), 'RIGHT'),   #all numeric cells right aligned
         ('TEXTCOLOR', (0,2), (0,-1), colors.black),
         ('BACKGROUND', (0,1), (-1,1), colors.Color(0,0.7,0.7))
         ])
    stylesheet['table1'] = ts

    return stylesheet