1 | ## $Id$ |
---|
2 | ## |
---|
3 | ## Copyright (C) 2012 Uli Fouquet & Henrik Bettermann |
---|
4 | ## This program is free software; you can redistribute it and/or modify |
---|
5 | ## it under the terms of the GNU General Public License as published by |
---|
6 | ## the Free Software Foundation; either version 2 of the License, or |
---|
7 | ## (at your option) any later version. |
---|
8 | ## |
---|
9 | ## This program is distributed in the hope that it will be useful, |
---|
10 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
11 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
12 | ## GNU General Public License for more details. |
---|
13 | ## |
---|
14 | ## You should have received a copy of the GNU General Public License |
---|
15 | ## along with this program; if not, write to the Free Software |
---|
16 | ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
---|
17 | ## |
---|
18 | """Components representing and aggregating school grades. |
---|
19 | """ |
---|
20 | import grok |
---|
21 | from zope.formlib.interfaces import IInputWidget, IDisplayWidget |
---|
22 | from zope.publisher.interfaces.browser import IBrowserRequest |
---|
23 | from zope.schema.fieldproperty import FieldProperty |
---|
24 | from zope.schema.interfaces import IObject |
---|
25 | from zope.schema import Object |
---|
26 | from waeup.sirp.interfaces import IResultEntry |
---|
27 | from waeup.sirp.widgets.objectwidget import ( |
---|
28 | SIRPObjectWidget, SIRPObjectDisplayWidget |
---|
29 | ) |
---|
30 | |
---|
31 | class ResultEntry(grok.Model): |
---|
32 | """A result entry contains a subject and a grade. |
---|
33 | """ |
---|
34 | grok.implements(IResultEntry) |
---|
35 | subject = FieldProperty(IResultEntry['subject']) |
---|
36 | grade = FieldProperty(IResultEntry['grade']) |
---|
37 | |
---|
38 | class IResultEntryField(IObject): |
---|
39 | """A zope.schema-like field for usage in interfaces. |
---|
40 | |
---|
41 | Marker interface to distuingish result entries from ordinary |
---|
42 | object fields. Needed for registration of widgets. |
---|
43 | """ |
---|
44 | |
---|
45 | class ResultEntryField(Object): |
---|
46 | """A zope.schema-like field for usage in interfaces. |
---|
47 | |
---|
48 | If you want to define an interface containing result entries, you |
---|
49 | can do so like this:: |
---|
50 | |
---|
51 | class IMyInterface(Interface): |
---|
52 | my_result_entry = ResultEntryField() |
---|
53 | |
---|
54 | Default widgets are registered to render result entry fields. |
---|
55 | """ |
---|
56 | grok.implements(IResultEntryField) |
---|
57 | |
---|
58 | def __init__(self, **kw): |
---|
59 | super(ResultEntryField, self).__init__(IResultEntry, **kw) |
---|
60 | return |
---|
61 | |
---|
62 | # register SIRPObjectWidgets as default widgets for IResultEntryFields |
---|
63 | @grok.adapter(IResultEntryField, IBrowserRequest) |
---|
64 | @grok.implementer(IInputWidget) |
---|
65 | def result_entry_input_widget(obj, req): |
---|
66 | return SIRPObjectWidget(obj, req, ResultEntry) |
---|
67 | |
---|
68 | # register a display widget for IResultEntryFields |
---|
69 | @grok.adapter(IResultEntryField, IBrowserRequest) |
---|
70 | @grok.implementer(IDisplayWidget) |
---|
71 | def result_entry_display_widget(obj, req): |
---|
72 | return SIRPObjectDisplayWidget(obj, req, ResultEntry) |
---|