1 # -*- coding: utf-8 -*-
2 #######################################################################################
3 # Copyright © 2009 Benoît Pin <pin@cri.ensmp.fr> #
4 # Plinn - http://plinn.org #
7 # This program is free software; you can redistribute it and/or #
8 # modify it under the terms of the GNU General Public License #
9 # as published by the Free Software Foundation; either version 2 #
10 # of the License, or (at your option) any later version. #
12 # This program is distributed in the hope that it will be useful, #
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
15 # GNU General Public License for more details. #
17 # You should have received a copy of the GNU General Public License #
18 # along with this program; if not, write to the Free Software #
19 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. #
20 #######################################################################################
22 Printable objects interfaces
28 from zope
.interface
import Interface
, Attribute
30 class IPrintingSupport(Interface
) :
32 Used to describe physical printing support
35 title
= Attribute("Support title")
36 description
= Attribute("support description - HTML format")
37 manufacturer
= Attribute("Manufacturer name")
38 surfaceWeight
= Attribute("Surface weight. SI unit (kg/m**2)")
39 category
= Attribute("Category of support (glossy, mate...)")
40 availableSize
= Attribute("Paper sheet or roll paper available for this support")
43 class IPrintableSheet(Interface
) :
45 Printable sheet description
48 width
= Attribute("Physical support width")
49 height
= Attribute("Physical support height")
50 formatName
= Attribute("Format name if exists")
51 deviceMargins
= Attribute("Mapping of margins indexed by device model.")
53 sizeUnits
= Attribute("Measurement units for all sizing attributes")
55 price
= Attribute("Public price of the printed sheet")
56 manufacturerReference
= Attribute("Manufacturer reference")
59 class IPrintableRoll(Interface
):
61 Printable roll description
63 width
= Attribute("Roll width")
64 maxLength
= Attribute("Roll length")
65 formatName
= Attribute("Format name if exists")
66 deviceMargins
= Attribute("Mapping of margins (top and bottom) indexed by device model.")
68 sizeUnits
= Attribute("Measurement units for all sizing attributes")
70 pricePerLength
= Attribute("Public price of the printed support per length unit (ie. €/m)")
71 manufacturerReference
= Attribute("Manufacturer reference")
73 class IPrintOrderTemplate(Interface
):
75 predefined print order, suggested by the seller.
78 title
= Attribute("order name")
79 description
= Attribute("order description")
81 price
= Attribute("Public price of the order")
83 class IPrintOrder(Interface
) :
85 the general purpose print order