PyInvoice/pyinvoice/components.py

47 lines
1.4 KiB
Python
Raw Normal View History

2015-05-30 13:15:47 +00:00
from reportlab.graphics.charts.textlabels import Label
from reportlab.graphics.shapes import Drawing
from reportlab.lib.units import inch
from reportlab.platypus import Paragraph, Table, TableStyle
2015-05-27 09:35:13 +00:00
from reportlab.lib.styles import ParagraphStyle, getSampleStyleSheet
from reportlab.lib import colors
class CodeSnippet(Paragraph):
style = ParagraphStyle(
name='CodeSnippet',
parent=getSampleStyleSheet()['Code'],
backColor=colors.lightgrey, leftIndent=0,
borderPadding=(5, 5, 5, 5)
)
def __init__(self, code):
2015-05-27 17:09:44 +00:00
Paragraph.__init__(self, code, self.style)
2015-05-28 10:17:55 +00:00
class SimpleTable(Table):
style = TableStyle([
('INNERGRID', (0, 0), (-1, -1), .25, colors.black),
('BOX', (0, 0), (-1, -1), .25, colors.black),
])
2015-05-27 17:09:44 +00:00
def __init__(self, data, horizontal_align=None):
Table.__init__(self, data, hAlign=horizontal_align)
2015-05-28 10:17:55 +00:00
class PaidStamp(object):
def __init__(self, x, y):
self.x = x
self.y = y
def __call__(self, canvas, doc):
2015-05-30 13:15:47 +00:00
# "PAID"
2015-05-28 10:17:55 +00:00
canvas.saveState()
2015-05-30 13:15:47 +00:00
canvas.setFontSize(50)
canvas.setFillColor(colors.red)
canvas.setStrokeColor(colors.red)
canvas.rotate(45)
2015-05-28 10:17:55 +00:00
canvas.drawString(self.x, self.y, 'PAID')
2015-05-30 13:15:47 +00:00
canvas.setLineWidth(4)
canvas.setLineJoin(1) # Round join
canvas.rect(self.x - .25 * inch, self.y - .25 * inch, width=2*inch, height=inch)
2015-05-28 10:17:55 +00:00
canvas.restoreState()