File: Camelot.camelot.view.controls.editors-pysrc.html

package info (click to toggle)
camelot 10.07.02-c2-4
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 35,864 kB
  • ctags: 28,700
  • sloc: python: 14,067; makefile: 125; sh: 32
file content (208 lines) | stat: -rw-r--r-- 37,821 bytes parent folder | download
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
<?xml version="1.0" encoding="ascii"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
          "DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
  <title>Camelot.camelot.view.controls.editors</title>
  <link rel="stylesheet" href="epydoc.css" type="text/css" />
  <script type="text/javascript" src="epydoc.js"></script>
</head>

<body bgcolor="white" text="black" link="blue" vlink="#204080"
      alink="#204080">
<!-- ==================== NAVIGATION BAR ==================== -->
<table class="navbar" border="0" width="100%" cellpadding="0"
       bgcolor="#a0c0ff" cellspacing="0">
  <tr valign="middle">
  <!-- Home link -->
      <th>&nbsp;&nbsp;&nbsp;<a
        href="Camelot.camelot-module.html">Home</a>&nbsp;&nbsp;&nbsp;</th>

  <!-- Tree link -->
      <th>&nbsp;&nbsp;&nbsp;<a
        href="module-tree.html">Trees</a>&nbsp;&nbsp;&nbsp;</th>

  <!-- Index link -->
      <th>&nbsp;&nbsp;&nbsp;<a
        href="identifier-index.html">Indices</a>&nbsp;&nbsp;&nbsp;</th>

  <!-- Help link -->
      <th>&nbsp;&nbsp;&nbsp;<a
        href="help.html">Help</a>&nbsp;&nbsp;&nbsp;</th>

  <!-- Project homepage -->
      <th class="navbar" align="right" width="100%">
        <table border="0" cellpadding="0" cellspacing="0">
          <tr><th class="navbar" align="center"
            ><a class="navbar" target="_top" href="http://www.python-camelot.com">Camelot</a></th>
          </tr></table></th>
  </tr>
</table>
<table width="100%" cellpadding="0" cellspacing="0">
  <tr valign="top">
    <td width="100%">
      <span class="breadcrumbs">
        Package&nbsp;Camelot ::
        <a href="Camelot.camelot-module.html">Package&nbsp;camelot</a> ::
        <a href="Camelot.camelot.view-module.html">Package&nbsp;view</a> ::
        <a href="Camelot.camelot.view.controls-module.html">Package&nbsp;controls</a> ::
        Package&nbsp;editors
      </span>
    </td>
    <td>
      <table cellpadding="0" cellspacing="0">
        <!-- hide/show private -->
        <tr><td align="right"><span class="options"
            >[<a href="frames.html" target="_top">frames</a
            >]&nbsp;|&nbsp;<a href="Camelot.camelot.view.controls.editors-pysrc.html"
            target="_top">no&nbsp;frames</a>]</span></td></tr>
      </table>
    </td>
  </tr>
</table>
<h1 class="epydoc">Source Code for <a href="Camelot.camelot.view.controls.editors-module.html">Package Camelot.camelot.view.controls.editors</a></h1>
<pre class="py-src">
<a name="L1"></a><tt class="py-lineno"> 1</tt>  <tt class="py-line">
 </tt>
<a name="L2"></a><tt class="py-lineno"> 2</tt>  <tt class="py-line"><tt class="py-docstring">"""Camelot includes editors for various types of fields.  Each editor at least supports
</tt> </tt>
<a name="L3"></a><tt class="py-lineno"> 3</tt>  <tt class="py-line"><tt class="py-docstring">these features :
</tt> </tt>
<a name="L4"></a><tt class="py-lineno"> 4</tt>  <tt class="py-line"><tt class="py-docstring">
</tt> </tt>
<a name="L5"></a><tt class="py-lineno"> 5</tt>  <tt class="py-line"><tt class="py-docstring">
</tt> </tt>
<a name="L6"></a><tt class="py-lineno"> 6</tt>  <tt class="py-line"><tt class="py-docstring">* a set_value method to set a python type as the editor's value
</tt> </tt>
<a name="L7"></a><tt class="py-lineno"> 7</tt>  <tt class="py-line"><tt class="py-docstring">* a get_value method to retrieve a python type from the editor
</tt> </tt>
<a name="L8"></a><tt class="py-lineno"> 8</tt>  <tt class="py-line"><tt class="py-docstring">* the ValueLoading state : an editor has as its value ValueLoading upon construction and
</tt> </tt>
<a name="L9"></a><tt class="py-lineno"> 9</tt>  <tt class="py-line"><tt class="py-docstring">the editor's value can be set to ValueLoading if the value that should be displayed is
</tt> </tt>
<a name="L10"></a><tt class="py-lineno">10</tt>  <tt class="py-line"><tt class="py-docstring">not yet available in the GUI thread, but is still on it's way from the model to the GUI. 
</tt> </tt>
<a name="L11"></a><tt class="py-lineno">11</tt>  <tt class="py-line"><tt class="py-docstring">"""</tt> </tt>
<a name="L12"></a><tt class="py-lineno">12</tt>  <tt class="py-line">
 </tt>
<a name="L13"></a><tt class="py-lineno">13</tt>  <tt class="py-line"><tt class="py-keyword">from</tt> <tt id="link-0" class="py-name" targets="Module Camelot.camelot.view.controls.editors.customeditor=Camelot.camelot.view.controls.editors.customeditor-module.html"><a title="Camelot.camelot.view.controls.editors.customeditor" class="py-name" href="#" onclick="return doclink('link-0', 'customeditor', 'link-0');">customeditor</a></tt> <tt class="py-keyword">import</tt> <tt id="link-1" class="py-name" targets="Method Camelot.camelot.view.controls.editors.booleditor.BoolEditor.editingFinished()=Camelot.camelot.view.controls.editors.booleditor.BoolEditor-class.html#editingFinished,Method Camelot.camelot.view.controls.editors.codeeditor.CodeEditor.editingFinished()=Camelot.camelot.view.controls.editors.codeeditor.CodeEditor-class.html#editingFinished,Method Camelot.camelot.view.controls.editors.coloredfloateditor.ColoredFloatEditor.editingFinished()=Camelot.camelot.view.controls.editors.coloredfloateditor.ColoredFloatEditor-class.html#editingFinished,Variable Camelot.camelot.view.controls.editors.customeditor.editingFinished=Camelot.camelot.view.controls.editors.customeditor-module.html#editingFinished,Method Camelot.camelot.view.controls.editors.dateeditor.DateEditor.editingFinished()=Camelot.camelot.view.controls.editors.dateeditor.DateEditor-class.html#editingFinished,Method Camelot.camelot.view.controls.editors.floateditor.FloatEditor.editingFinished()=Camelot.camelot.view.controls.editors.floateditor.FloatEditor-class.html#editingFinished,Method Camelot.camelot.view.controls.editors.integereditor.IntegerEditor.editingFinished()=Camelot.camelot.view.controls.editors.integereditor.IntegerEditor-class.html#editingFinished,Method Camelot.camelot.view.controls.editors.many2oneeditor.Many2OneEditor.editingFinished()=Camelot.camelot.view.controls.editors.many2oneeditor.Many2OneEditor-class.html#editingFinished,Method Camelot.camelot.view.controls.editors.manytomanyeditor.ManyToManyEditor.editingFinished()=Camelot.camelot.view.controls.editors.manytomanyeditor.ManyToManyEditor-class.html#editingFinished,Method Camelot.camelot.view.controls.editors.richtexteditor.RichTextEditor.editingFinished()=Camelot.camelot.view.controls.editors.richtexteditor.RichTextEditor-class.html#editingFinished,Method Camelot.camelot.view.controls.editors.virtualaddresseditor.VirtualAddressEditor.editingFinished()=Camelot.camelot.view.controls.editors.virtualaddresseditor.VirtualAddressEditor-class.html#editingFinished"><a title="Camelot.camelot.view.controls.editors.booleditor.BoolEditor.editingFinished
Camelot.camelot.view.controls.editors.codeeditor.CodeEditor.editingFinished
Camelot.camelot.view.controls.editors.coloredfloateditor.ColoredFloatEditor.editingFinished
Camelot.camelot.view.controls.editors.customeditor.editingFinished
Camelot.camelot.view.controls.editors.dateeditor.DateEditor.editingFinished
Camelot.camelot.view.controls.editors.floateditor.FloatEditor.editingFinished
Camelot.camelot.view.controls.editors.integereditor.IntegerEditor.editingFinished
Camelot.camelot.view.controls.editors.many2oneeditor.Many2OneEditor.editingFinished
Camelot.camelot.view.controls.editors.manytomanyeditor.ManyToManyEditor.editingFinished
Camelot.camelot.view.controls.editors.richtexteditor.RichTextEditor.editingFinished
Camelot.camelot.view.controls.editors.virtualaddresseditor.VirtualAddressEditor.editingFinished" class="py-name" href="#" onclick="return doclink('link-1', 'editingFinished', 'link-1');">editingFinished</a></tt> </tt>
<a name="L14"></a><tt class="py-lineno">14</tt>  <tt class="py-line">
 </tt>
<a name="L15"></a><tt class="py-lineno">15</tt>  <tt class="py-line"><tt class="py-keyword">from</tt> <tt id="link-2" class="py-name" targets="Module Camelot.camelot.view.controls.editors.booleditor=Camelot.camelot.view.controls.editors.booleditor-module.html"><a title="Camelot.camelot.view.controls.editors.booleditor" class="py-name" href="#" onclick="return doclink('link-2', 'booleditor', 'link-2');">booleditor</a></tt> <tt class="py-keyword">import</tt> <tt id="link-3" class="py-name" targets="Class Camelot.camelot.view.controls.editors.booleditor.BoolEditor=Camelot.camelot.view.controls.editors.booleditor.BoolEditor-class.html,Class camelot.view.controls.editors.booleditor.BoolEditor=camelot.view.controls.editors.booleditor.BoolEditor-class.html"><a title="Camelot.camelot.view.controls.editors.booleditor.BoolEditor
camelot.view.controls.editors.booleditor.BoolEditor" class="py-name" href="#" onclick="return doclink('link-3', 'BoolEditor', 'link-3');">BoolEditor</a></tt><tt class="py-op">,</tt> <tt id="link-4" class="py-name" targets="Class Camelot.camelot.view.controls.editors.booleditor.TextBoolEditor=Camelot.camelot.view.controls.editors.booleditor.TextBoolEditor-class.html,Class camelot.view.controls.editors.booleditor.TextBoolEditor=camelot.view.controls.editors.booleditor.TextBoolEditor-class.html"><a title="Camelot.camelot.view.controls.editors.booleditor.TextBoolEditor
camelot.view.controls.editors.booleditor.TextBoolEditor" class="py-name" href="#" onclick="return doclink('link-4', 'TextBoolEditor', 'link-4');">TextBoolEditor</a></tt> </tt>
<a name="L16"></a><tt class="py-lineno">16</tt>  <tt class="py-line"><tt class="py-keyword">from</tt> <tt id="link-5" class="py-name" targets="Module Camelot.camelot.view.controls.editors.choiceseditor=Camelot.camelot.view.controls.editors.choiceseditor-module.html"><a title="Camelot.camelot.view.controls.editors.choiceseditor" class="py-name" href="#" onclick="return doclink('link-5', 'choiceseditor', 'link-5');">choiceseditor</a></tt> <tt class="py-keyword">import</tt> <tt id="link-6" class="py-name" targets="Class Camelot.camelot.view.controls.editors.choiceseditor.ChoicesEditor=Camelot.camelot.view.controls.editors.choiceseditor.ChoicesEditor-class.html,Class camelot.view.controls.editors.choiceseditor.ChoicesEditor=camelot.view.controls.editors.choiceseditor.ChoicesEditor-class.html"><a title="Camelot.camelot.view.controls.editors.choiceseditor.ChoicesEditor
camelot.view.controls.editors.choiceseditor.ChoicesEditor" class="py-name" href="#" onclick="return doclink('link-6', 'ChoicesEditor', 'link-6');">ChoicesEditor</a></tt> </tt>
<a name="L17"></a><tt class="py-lineno">17</tt>  <tt class="py-line"><tt class="py-keyword">from</tt> <tt id="link-7" class="py-name" targets="Module Camelot.camelot.view.controls.editors.codeeditor=Camelot.camelot.view.controls.editors.codeeditor-module.html"><a title="Camelot.camelot.view.controls.editors.codeeditor" class="py-name" href="#" onclick="return doclink('link-7', 'codeeditor', 'link-7');">codeeditor</a></tt> <tt class="py-keyword">import</tt> <tt id="link-8" class="py-name" targets="Class Camelot.camelot.view.controls.editors.codeeditor.CodeEditor=Camelot.camelot.view.controls.editors.codeeditor.CodeEditor-class.html,Class camelot.view.controls.editors.codeeditor.CodeEditor=camelot.view.controls.editors.codeeditor.CodeEditor-class.html"><a title="Camelot.camelot.view.controls.editors.codeeditor.CodeEditor
camelot.view.controls.editors.codeeditor.CodeEditor" class="py-name" href="#" onclick="return doclink('link-8', 'CodeEditor', 'link-8');">CodeEditor</a></tt> </tt>
<a name="L18"></a><tt class="py-lineno">18</tt>  <tt class="py-line"><tt class="py-keyword">from</tt> <tt id="link-9" class="py-name" targets="Module Camelot.camelot.view.controls.editors.coloredfloateditor=Camelot.camelot.view.controls.editors.coloredfloateditor-module.html"><a title="Camelot.camelot.view.controls.editors.coloredfloateditor" class="py-name" href="#" onclick="return doclink('link-9', 'coloredfloateditor', 'link-9');">coloredfloateditor</a></tt> <tt class="py-keyword">import</tt> <tt id="link-10" class="py-name" targets="Class Camelot.camelot.view.controls.editors.coloredfloateditor.ColoredFloatEditor=Camelot.camelot.view.controls.editors.coloredfloateditor.ColoredFloatEditor-class.html,Class camelot.view.controls.editors.coloredfloateditor.ColoredFloatEditor=camelot.view.controls.editors.coloredfloateditor.ColoredFloatEditor-class.html"><a title="Camelot.camelot.view.controls.editors.coloredfloateditor.ColoredFloatEditor
camelot.view.controls.editors.coloredfloateditor.ColoredFloatEditor" class="py-name" href="#" onclick="return doclink('link-10', 'ColoredFloatEditor', 'link-10');">ColoredFloatEditor</a></tt> </tt>
<a name="L19"></a><tt class="py-lineno">19</tt>  <tt class="py-line"><tt class="py-keyword">from</tt> <tt id="link-11" class="py-name" targets="Module Camelot.camelot.view.controls.editors.coloreditor=Camelot.camelot.view.controls.editors.coloreditor-module.html"><a title="Camelot.camelot.view.controls.editors.coloreditor" class="py-name" href="#" onclick="return doclink('link-11', 'coloreditor', 'link-11');">coloreditor</a></tt> <tt class="py-keyword">import</tt> <tt id="link-12" class="py-name" targets="Class Camelot.camelot.view.controls.editors.coloreditor.ColorEditor=Camelot.camelot.view.controls.editors.coloreditor.ColorEditor-class.html,Class camelot.view.controls.editors.coloreditor.ColorEditor=camelot.view.controls.editors.coloreditor.ColorEditor-class.html"><a title="Camelot.camelot.view.controls.editors.coloreditor.ColorEditor
camelot.view.controls.editors.coloreditor.ColorEditor" class="py-name" href="#" onclick="return doclink('link-12', 'ColorEditor', 'link-12');">ColorEditor</a></tt> </tt>
<a name="L20"></a><tt class="py-lineno">20</tt>  <tt class="py-line"><tt class="py-keyword">from</tt> <tt id="link-13" class="py-name"><a title="Camelot.camelot.view.controls.editors.customeditor" class="py-name" href="#" onclick="return doclink('link-13', 'customeditor', 'link-0');">customeditor</a></tt> <tt class="py-keyword">import</tt> <tt id="link-14" class="py-name" targets="Class Camelot.camelot.view.controls.editors.customeditor.CustomEditor=Camelot.camelot.view.controls.editors.customeditor.CustomEditor-class.html"><a title="Camelot.camelot.view.controls.editors.customeditor.CustomEditor" class="py-name" href="#" onclick="return doclink('link-14', 'CustomEditor', 'link-14');">CustomEditor</a></tt> </tt>
<a name="L21"></a><tt class="py-lineno">21</tt>  <tt class="py-line"><tt class="py-keyword">from</tt> <tt id="link-15" class="py-name" targets="Module Camelot.camelot.view.controls.editors.dateeditor=Camelot.camelot.view.controls.editors.dateeditor-module.html"><a title="Camelot.camelot.view.controls.editors.dateeditor" class="py-name" href="#" onclick="return doclink('link-15', 'dateeditor', 'link-15');">dateeditor</a></tt> <tt class="py-keyword">import</tt> <tt id="link-16" class="py-name" targets="Class Camelot.camelot.view.controls.editors.dateeditor.DateEditor=Camelot.camelot.view.controls.editors.dateeditor.DateEditor-class.html,Class camelot.view.controls.editors.dateeditor.DateEditor=camelot.view.controls.editors.dateeditor.DateEditor-class.html"><a title="Camelot.camelot.view.controls.editors.dateeditor.DateEditor
camelot.view.controls.editors.dateeditor.DateEditor" class="py-name" href="#" onclick="return doclink('link-16', 'DateEditor', 'link-16');">DateEditor</a></tt> </tt>
<a name="L22"></a><tt class="py-lineno">22</tt>  <tt class="py-line"><tt class="py-keyword">from</tt> <tt id="link-17" class="py-name" targets="Module Camelot.camelot.view.controls.editors.datetimeeditor=Camelot.camelot.view.controls.editors.datetimeeditor-module.html"><a title="Camelot.camelot.view.controls.editors.datetimeeditor" class="py-name" href="#" onclick="return doclink('link-17', 'datetimeeditor', 'link-17');">datetimeeditor</a></tt> <tt class="py-keyword">import</tt> <tt id="link-18" class="py-name" targets="Class Camelot.camelot.view.controls.editors.datetimeeditor.DateTimeEditor=Camelot.camelot.view.controls.editors.datetimeeditor.DateTimeEditor-class.html,Class camelot.view.controls.editors.datetimeeditor.DateTimeEditor=camelot.view.controls.editors.datetimeeditor.DateTimeEditor-class.html"><a title="Camelot.camelot.view.controls.editors.datetimeeditor.DateTimeEditor
camelot.view.controls.editors.datetimeeditor.DateTimeEditor" class="py-name" href="#" onclick="return doclink('link-18', 'DateTimeEditor', 'link-18');">DateTimeEditor</a></tt> </tt>
<a name="L23"></a><tt class="py-lineno">23</tt>  <tt class="py-line"><tt class="py-keyword">from</tt> <tt id="link-19" class="py-name" targets="Module Camelot.camelot.view.controls.editors.embeddedmany2oneeditor=Camelot.camelot.view.controls.editors.embeddedmany2oneeditor-module.html"><a title="Camelot.camelot.view.controls.editors.embeddedmany2oneeditor" class="py-name" href="#" onclick="return doclink('link-19', 'embeddedmany2oneeditor', 'link-19');">embeddedmany2oneeditor</a></tt> <tt class="py-keyword">import</tt> <tt id="link-20" class="py-name" targets="Class Camelot.camelot.view.controls.editors.embeddedmany2oneeditor.EmbeddedMany2OneEditor=Camelot.camelot.view.controls.editors.embeddedmany2oneeditor.EmbeddedMany2OneEditor-class.html"><a title="Camelot.camelot.view.controls.editors.embeddedmany2oneeditor.EmbeddedMany2OneEditor" class="py-name" href="#" onclick="return doclink('link-20', 'EmbeddedMany2OneEditor', 'link-20');">EmbeddedMany2OneEditor</a></tt> </tt>
<a name="L24"></a><tt class="py-lineno">24</tt>  <tt class="py-line"><tt class="py-keyword">from</tt> <tt id="link-21" class="py-name" targets="Module Camelot.camelot.view.controls.editors.fileeditor=Camelot.camelot.view.controls.editors.fileeditor-module.html"><a title="Camelot.camelot.view.controls.editors.fileeditor" class="py-name" href="#" onclick="return doclink('link-21', 'fileeditor', 'link-21');">fileeditor</a></tt> <tt class="py-keyword">import</tt> <tt id="link-22" class="py-name" targets="Class Camelot.camelot.view.controls.editors.fileeditor.FileEditor=Camelot.camelot.view.controls.editors.fileeditor.FileEditor-class.html,Class camelot.view.controls.editors.fileeditor.FileEditor=camelot.view.controls.editors.fileeditor.FileEditor-class.html"><a title="Camelot.camelot.view.controls.editors.fileeditor.FileEditor
camelot.view.controls.editors.fileeditor.FileEditor" class="py-name" href="#" onclick="return doclink('link-22', 'FileEditor', 'link-22');">FileEditor</a></tt> </tt>
<a name="L25"></a><tt class="py-lineno">25</tt>  <tt class="py-line"><tt class="py-keyword">from</tt> <tt id="link-23" class="py-name" targets="Module Camelot.camelot.view.controls.editors.floateditor=Camelot.camelot.view.controls.editors.floateditor-module.html"><a title="Camelot.camelot.view.controls.editors.floateditor" class="py-name" href="#" onclick="return doclink('link-23', 'floateditor', 'link-23');">floateditor</a></tt> <tt class="py-keyword">import</tt> <tt id="link-24" class="py-name" targets="Class Camelot.camelot.view.controls.editors.floateditor.FloatEditor=Camelot.camelot.view.controls.editors.floateditor.FloatEditor-class.html,Class camelot.view.controls.editors.floateditor.FloatEditor=camelot.view.controls.editors.floateditor.FloatEditor-class.html"><a title="Camelot.camelot.view.controls.editors.floateditor.FloatEditor
camelot.view.controls.editors.floateditor.FloatEditor" class="py-name" href="#" onclick="return doclink('link-24', 'FloatEditor', 'link-24');">FloatEditor</a></tt> </tt>
<a name="L26"></a><tt class="py-lineno">26</tt>  <tt class="py-line"><tt class="py-keyword">from</tt> <tt id="link-25" class="py-name" targets="Module Camelot.camelot.view.controls.editors.imageeditor=Camelot.camelot.view.controls.editors.imageeditor-module.html"><a title="Camelot.camelot.view.controls.editors.imageeditor" class="py-name" href="#" onclick="return doclink('link-25', 'imageeditor', 'link-25');">imageeditor</a></tt> <tt class="py-keyword">import</tt> <tt id="link-26" class="py-name" targets="Class Camelot.camelot.view.controls.editors.imageeditor.ImageEditor=Camelot.camelot.view.controls.editors.imageeditor.ImageEditor-class.html,Class camelot.view.controls.editors.imageeditor.ImageEditor=camelot.view.controls.editors.imageeditor.ImageEditor-class.html"><a title="Camelot.camelot.view.controls.editors.imageeditor.ImageEditor
camelot.view.controls.editors.imageeditor.ImageEditor" class="py-name" href="#" onclick="return doclink('link-26', 'ImageEditor', 'link-26');">ImageEditor</a></tt> </tt>
<a name="L27"></a><tt class="py-lineno">27</tt>  <tt class="py-line"><tt class="py-keyword">from</tt> <tt id="link-27" class="py-name" targets="Module Camelot.camelot.view.controls.editors.integereditor=Camelot.camelot.view.controls.editors.integereditor-module.html"><a title="Camelot.camelot.view.controls.editors.integereditor" class="py-name" href="#" onclick="return doclink('link-27', 'integereditor', 'link-27');">integereditor</a></tt> <tt class="py-keyword">import</tt> <tt id="link-28" class="py-name" targets="Class Camelot.camelot.view.controls.editors.integereditor.IntegerEditor=Camelot.camelot.view.controls.editors.integereditor.IntegerEditor-class.html,Class camelot.view.controls.editors.integereditor.IntegerEditor=camelot.view.controls.editors.integereditor.IntegerEditor-class.html"><a title="Camelot.camelot.view.controls.editors.integereditor.IntegerEditor
camelot.view.controls.editors.integereditor.IntegerEditor" class="py-name" href="#" onclick="return doclink('link-28', 'IntegerEditor', 'link-28');">IntegerEditor</a></tt> </tt>
<a name="L28"></a><tt class="py-lineno">28</tt>  <tt class="py-line"><tt class="py-keyword">from</tt> <tt id="link-29" class="py-name" targets="Module Camelot.camelot.view.controls.editors.many2oneeditor=Camelot.camelot.view.controls.editors.many2oneeditor-module.html"><a title="Camelot.camelot.view.controls.editors.many2oneeditor" class="py-name" href="#" onclick="return doclink('link-29', 'many2oneeditor', 'link-29');">many2oneeditor</a></tt> <tt class="py-keyword">import</tt> <tt id="link-30" class="py-name" targets="Class Camelot.camelot.view.controls.editors.many2oneeditor.Many2OneEditor=Camelot.camelot.view.controls.editors.many2oneeditor.Many2OneEditor-class.html,Class camelot.view.controls.editors.many2oneeditor.Many2OneEditor=camelot.view.controls.editors.many2oneeditor.Many2OneEditor-class.html"><a title="Camelot.camelot.view.controls.editors.many2oneeditor.Many2OneEditor
camelot.view.controls.editors.many2oneeditor.Many2OneEditor" class="py-name" href="#" onclick="return doclink('link-30', 'Many2OneEditor', 'link-30');">Many2OneEditor</a></tt> </tt>
<a name="L29"></a><tt class="py-lineno">29</tt>  <tt class="py-line"><tt class="py-keyword">from</tt> <tt id="link-31" class="py-name" targets="Module Camelot.camelot.view.controls.editors.manytomanyeditor=Camelot.camelot.view.controls.editors.manytomanyeditor-module.html"><a title="Camelot.camelot.view.controls.editors.manytomanyeditor" class="py-name" href="#" onclick="return doclink('link-31', 'manytomanyeditor', 'link-31');">manytomanyeditor</a></tt> <tt class="py-keyword">import</tt> <tt id="link-32" class="py-name" targets="Class Camelot.camelot.view.controls.editors.manytomanyeditor.ManyToManyEditor=Camelot.camelot.view.controls.editors.manytomanyeditor.ManyToManyEditor-class.html"><a title="Camelot.camelot.view.controls.editors.manytomanyeditor.ManyToManyEditor" class="py-name" href="#" onclick="return doclink('link-32', 'ManyToManyEditor', 'link-32');">ManyToManyEditor</a></tt> </tt>
<a name="L30"></a><tt class="py-lineno">30</tt>  <tt class="py-line"><tt class="py-keyword">from</tt> <tt id="link-33" class="py-name" targets="Module Camelot.camelot.view.controls.editors.one2manyeditor=Camelot.camelot.view.controls.editors.one2manyeditor-module.html"><a title="Camelot.camelot.view.controls.editors.one2manyeditor" class="py-name" href="#" onclick="return doclink('link-33', 'one2manyeditor', 'link-33');">one2manyeditor</a></tt> <tt class="py-keyword">import</tt> <tt id="link-34" class="py-name" targets="Class Camelot.camelot.view.controls.editors.one2manyeditor.One2ManyEditor=Camelot.camelot.view.controls.editors.one2manyeditor.One2ManyEditor-class.html"><a title="Camelot.camelot.view.controls.editors.one2manyeditor.One2ManyEditor" class="py-name" href="#" onclick="return doclink('link-34', 'One2ManyEditor', 'link-34');">One2ManyEditor</a></tt> </tt>
<a name="L31"></a><tt class="py-lineno">31</tt>  <tt class="py-line"><tt class="py-keyword">from</tt> <tt id="link-35" class="py-name" targets="Module Camelot.camelot.view.controls.editors.onetomanychoiceseditor=Camelot.camelot.view.controls.editors.onetomanychoiceseditor-module.html"><a title="Camelot.camelot.view.controls.editors.onetomanychoiceseditor" class="py-name" href="#" onclick="return doclink('link-35', 'onetomanychoiceseditor', 'link-35');">onetomanychoiceseditor</a></tt> <tt class="py-keyword">import</tt> <tt id="link-36" class="py-name" targets="Class Camelot.camelot.view.controls.editors.onetomanychoiceseditor.OneToManyChoicesEditor=Camelot.camelot.view.controls.editors.onetomanychoiceseditor.OneToManyChoicesEditor-class.html,Class camelot.view.controls.editors.onetomanychoiceseditor.OneToManyChoicesEditor=camelot.view.controls.editors.onetomanychoiceseditor.OneToManyChoicesEditor-class.html"><a title="Camelot.camelot.view.controls.editors.onetomanychoiceseditor.OneToManyChoicesEditor
camelot.view.controls.editors.onetomanychoiceseditor.OneToManyChoicesEditor" class="py-name" href="#" onclick="return doclink('link-36', 'OneToManyChoicesEditor', 'link-36');">OneToManyChoicesEditor</a></tt> </tt>
<a name="L32"></a><tt class="py-lineno">32</tt>  <tt class="py-line"><tt class="py-keyword">from</tt> <tt id="link-37" class="py-name" targets="Module Camelot.camelot.view.controls.editors.richtexteditor=Camelot.camelot.view.controls.editors.richtexteditor-module.html"><a title="Camelot.camelot.view.controls.editors.richtexteditor" class="py-name" href="#" onclick="return doclink('link-37', 'richtexteditor', 'link-37');">richtexteditor</a></tt> <tt class="py-keyword">import</tt> <tt id="link-38" class="py-name" targets="Class Camelot.camelot.view.controls.editors.richtexteditor.RichTextEditor=Camelot.camelot.view.controls.editors.richtexteditor.RichTextEditor-class.html,Class camelot.view.controls.editors.richtexteditor.RichTextEditor=camelot.view.controls.editors.richtexteditor.RichTextEditor-class.html"><a title="Camelot.camelot.view.controls.editors.richtexteditor.RichTextEditor
camelot.view.controls.editors.richtexteditor.RichTextEditor" class="py-name" href="#" onclick="return doclink('link-38', 'RichTextEditor', 'link-38');">RichTextEditor</a></tt> </tt>
<a name="L33"></a><tt class="py-lineno">33</tt>  <tt class="py-line"><tt class="py-keyword">from</tt> <tt id="link-39" class="py-name" targets="Module Camelot.camelot.view.controls.editors.stareditor=Camelot.camelot.view.controls.editors.stareditor-module.html"><a title="Camelot.camelot.view.controls.editors.stareditor" class="py-name" href="#" onclick="return doclink('link-39', 'stareditor', 'link-39');">stareditor</a></tt> <tt class="py-keyword">import</tt> <tt id="link-40" class="py-name" targets="Class Camelot.camelot.view.controls.editors.stareditor.StarEditor=Camelot.camelot.view.controls.editors.stareditor.StarEditor-class.html,Class camelot.view.controls.editors.stareditor.StarEditor=camelot.view.controls.editors.stareditor.StarEditor-class.html"><a title="Camelot.camelot.view.controls.editors.stareditor.StarEditor
camelot.view.controls.editors.stareditor.StarEditor" class="py-name" href="#" onclick="return doclink('link-40', 'StarEditor', 'link-40');">StarEditor</a></tt> </tt>
<a name="L34"></a><tt class="py-lineno">34</tt>  <tt class="py-line"><tt class="py-keyword">from</tt> <tt id="link-41" class="py-name" targets="Module Camelot.camelot.view.controls.editors.textlineeditor=Camelot.camelot.view.controls.editors.textlineeditor-module.html"><a title="Camelot.camelot.view.controls.editors.textlineeditor" class="py-name" href="#" onclick="return doclink('link-41', 'textlineeditor', 'link-41');">textlineeditor</a></tt> <tt class="py-keyword">import</tt> <tt id="link-42" class="py-name" targets="Class Camelot.camelot.view.controls.editors.textlineeditor.TextLineEditor=Camelot.camelot.view.controls.editors.textlineeditor.TextLineEditor-class.html,Class camelot.view.controls.editors.textlineeditor.TextLineEditor=camelot.view.controls.editors.textlineeditor.TextLineEditor-class.html"><a title="Camelot.camelot.view.controls.editors.textlineeditor.TextLineEditor
camelot.view.controls.editors.textlineeditor.TextLineEditor" class="py-name" href="#" onclick="return doclink('link-42', 'TextLineEditor', 'link-42');">TextLineEditor</a></tt> </tt>
<a name="L35"></a><tt class="py-lineno">35</tt>  <tt class="py-line"><tt class="py-keyword">from</tt> <tt id="link-43" class="py-name" targets="Module Camelot.camelot.view.controls.editors.timeeditor=Camelot.camelot.view.controls.editors.timeeditor-module.html"><a title="Camelot.camelot.view.controls.editors.timeeditor" class="py-name" href="#" onclick="return doclink('link-43', 'timeeditor', 'link-43');">timeeditor</a></tt> <tt class="py-keyword">import</tt> <tt id="link-44" class="py-name" targets="Class Camelot.camelot.view.controls.editors.timeeditor.TimeEditor=Camelot.camelot.view.controls.editors.timeeditor.TimeEditor-class.html,Class camelot.view.controls.editors.timeeditor.TimeEditor=camelot.view.controls.editors.timeeditor.TimeEditor-class.html"><a title="Camelot.camelot.view.controls.editors.timeeditor.TimeEditor
camelot.view.controls.editors.timeeditor.TimeEditor" class="py-name" href="#" onclick="return doclink('link-44', 'TimeEditor', 'link-44');">TimeEditor</a></tt> </tt>
<a name="L36"></a><tt class="py-lineno">36</tt>  <tt class="py-line"><tt class="py-keyword">from</tt> <tt id="link-45" class="py-name" targets="Module Camelot.camelot.view.controls.editors.virtualaddresseditor=Camelot.camelot.view.controls.editors.virtualaddresseditor-module.html"><a title="Camelot.camelot.view.controls.editors.virtualaddresseditor" class="py-name" href="#" onclick="return doclink('link-45', 'virtualaddresseditor', 'link-45');">virtualaddresseditor</a></tt> <tt class="py-keyword">import</tt> <tt id="link-46" class="py-name" targets="Class Camelot.camelot.view.controls.editors.virtualaddresseditor.VirtualAddressEditor=Camelot.camelot.view.controls.editors.virtualaddresseditor.VirtualAddressEditor-class.html,Class camelot.view.controls.editors.virtualaddresseditor.VirtualAddressEditor=camelot.view.controls.editors.virtualaddresseditor.VirtualAddressEditor-class.html"><a title="Camelot.camelot.view.controls.editors.virtualaddresseditor.VirtualAddressEditor
camelot.view.controls.editors.virtualaddresseditor.VirtualAddressEditor" class="py-name" href="#" onclick="return doclink('link-46', 'VirtualAddressEditor', 'link-46');">VirtualAddressEditor</a></tt> </tt>
<a name="L37"></a><tt class="py-lineno">37</tt>  <tt class="py-line"><tt class="py-keyword">from</tt> <tt id="link-47" class="py-name" targets="Module Camelot.camelot.view.controls.editors.smileyeditor=Camelot.camelot.view.controls.editors.smileyeditor-module.html"><a title="Camelot.camelot.view.controls.editors.smileyeditor" class="py-name" href="#" onclick="return doclink('link-47', 'smileyeditor', 'link-47');">smileyeditor</a></tt> <tt class="py-keyword">import</tt> <tt id="link-48" class="py-name" targets="Class Camelot.camelot.view.controls.editors.smileyeditor.SmileyEditor=Camelot.camelot.view.controls.editors.smileyeditor.SmileyEditor-class.html,Class camelot.view.controls.editors.smileyeditor.SmileyEditor=camelot.view.controls.editors.smileyeditor.SmileyEditor-class.html"><a title="Camelot.camelot.view.controls.editors.smileyeditor.SmileyEditor
camelot.view.controls.editors.smileyeditor.SmileyEditor" class="py-name" href="#" onclick="return doclink('link-48', 'SmileyEditor', 'link-48');">SmileyEditor</a></tt> </tt>
<a name="L38"></a><tt class="py-lineno">38</tt>  <tt class="py-line"><tt class="py-keyword">from</tt> <tt id="link-49" class="py-name" targets="Module Camelot.camelot.view.controls.editors.textediteditor=Camelot.camelot.view.controls.editors.textediteditor-module.html"><a title="Camelot.camelot.view.controls.editors.textediteditor" class="py-name" href="#" onclick="return doclink('link-49', 'textediteditor', 'link-49');">textediteditor</a></tt> <tt class="py-keyword">import</tt> <tt id="link-50" class="py-name" targets="Class Camelot.camelot.view.controls.editors.textediteditor.TextEditEditor=Camelot.camelot.view.controls.editors.textediteditor.TextEditEditor-class.html,Class camelot.view.controls.editors.textediteditor.TextEditEditor=camelot.view.controls.editors.textediteditor.TextEditEditor-class.html"><a title="Camelot.camelot.view.controls.editors.textediteditor.TextEditEditor
camelot.view.controls.editors.textediteditor.TextEditEditor" class="py-name" href="#" onclick="return doclink('link-50', 'TextEditEditor', 'link-50');">TextEditEditor</a></tt> </tt>
<a name="L39"></a><tt class="py-lineno">39</tt>  <tt class="py-line"><tt class="py-keyword">from</tt> <tt id="link-51" class="py-name" targets="Module Camelot.camelot.view.controls.editors.wideeditor=Camelot.camelot.view.controls.editors.wideeditor-module.html"><a title="Camelot.camelot.view.controls.editors.wideeditor" class="py-name" href="#" onclick="return doclink('link-51', 'wideeditor', 'link-51');">wideeditor</a></tt> <tt class="py-keyword">import</tt> <tt id="link-52" class="py-name" targets="Class Camelot.camelot.view.controls.editors.wideeditor.WideEditor=Camelot.camelot.view.controls.editors.wideeditor.WideEditor-class.html"><a title="Camelot.camelot.view.controls.editors.wideeditor.WideEditor" class="py-name" href="#" onclick="return doclink('link-52', 'WideEditor', 'link-52');">WideEditor</a></tt> </tt>
<a name="L40"></a><tt class="py-lineno">40</tt>  <tt class="py-line"><tt class="py-keyword">from</tt> <tt id="link-53" class="py-name" targets="Module Camelot.camelot.view.controls.editors.noteeditor=Camelot.camelot.view.controls.editors.noteeditor-module.html"><a title="Camelot.camelot.view.controls.editors.noteeditor" class="py-name" href="#" onclick="return doclink('link-53', 'noteeditor', 'link-53');">noteeditor</a></tt> <tt class="py-keyword">import</tt> <tt id="link-54" class="py-name" targets="Class Camelot.camelot.view.controls.editors.noteeditor.NoteEditor=Camelot.camelot.view.controls.editors.noteeditor.NoteEditor-class.html,Class camelot.view.controls.editors.noteeditor.NoteEditor=camelot.view.controls.editors.noteeditor.NoteEditor-class.html"><a title="Camelot.camelot.view.controls.editors.noteeditor.NoteEditor
camelot.view.controls.editors.noteeditor.NoteEditor" class="py-name" href="#" onclick="return doclink('link-54', 'NoteEditor', 'link-54');">NoteEditor</a></tt> </tt>
<a name="L41"></a><tt class="py-lineno">41</tt>  <tt class="py-line"><tt class="py-keyword">from</tt> <tt id="link-55" class="py-name" targets="Module Camelot.camelot.view.controls.editors.labeleditor=Camelot.camelot.view.controls.editors.labeleditor-module.html"><a title="Camelot.camelot.view.controls.editors.labeleditor" class="py-name" href="#" onclick="return doclink('link-55', 'labeleditor', 'link-55');">labeleditor</a></tt> <tt class="py-keyword">import</tt> <tt id="link-56" class="py-name" targets="Class Camelot.camelot.view.controls.editors.labeleditor.LabelEditor=Camelot.camelot.view.controls.editors.labeleditor.LabelEditor-class.html,Class camelot.view.controls.editors.labeleditor.LabelEditor=camelot.view.controls.editors.labeleditor.LabelEditor-class.html"><a title="Camelot.camelot.view.controls.editors.labeleditor.LabelEditor
camelot.view.controls.editors.labeleditor.LabelEditor" class="py-name" href="#" onclick="return doclink('link-56', 'LabelEditor', 'link-56');">LabelEditor</a></tt> </tt>
<a name="L42"></a><tt class="py-lineno">42</tt>  <tt class="py-line"> </tt><script type="text/javascript">
<!--
expandto(location.href);
// -->
</script>
</pre>
<br />
<!-- ==================== NAVIGATION BAR ==================== -->
<table class="navbar" border="0" width="100%" cellpadding="0"
       bgcolor="#a0c0ff" cellspacing="0">
  <tr valign="middle">
  <!-- Home link -->
      <th>&nbsp;&nbsp;&nbsp;<a
        href="Camelot.camelot-module.html">Home</a>&nbsp;&nbsp;&nbsp;</th>

  <!-- Tree link -->
      <th>&nbsp;&nbsp;&nbsp;<a
        href="module-tree.html">Trees</a>&nbsp;&nbsp;&nbsp;</th>

  <!-- Index link -->
      <th>&nbsp;&nbsp;&nbsp;<a
        href="identifier-index.html">Indices</a>&nbsp;&nbsp;&nbsp;</th>

  <!-- Help link -->
      <th>&nbsp;&nbsp;&nbsp;<a
        href="help.html">Help</a>&nbsp;&nbsp;&nbsp;</th>

  <!-- Project homepage -->
      <th class="navbar" align="right" width="100%">
        <table border="0" cellpadding="0" cellspacing="0">
          <tr><th class="navbar" align="center"
            ><a class="navbar" target="_top" href="http://www.python-camelot.com">Camelot</a></th>
          </tr></table></th>
  </tr>
</table>
<table border="0" cellpadding="0" cellspacing="0" width="100%%">
  <tr>
    <td align="left" class="footer">
    Generated by Epydoc 3.0.1 on Sat Jun 12 15:42:12 2010
    </td>
    <td align="right" class="footer">
      <a target="mainFrame" href="http://epydoc.sourceforge.net"
        >http://epydoc.sourceforge.net</a>
    </td>
  </tr>
</table>

<script type="text/javascript">
  <!--
  // Private objects are initially displayed (because if
  // javascript is turned off then we want them to be
  // visible); but by default, we want to hide them.  So hide
  // them unless we have a cookie that says to show them.
  checkCookie();
  // -->
</script>
</body>
</html>