<font face="Default Sans Serif,Verdana,Arial,Helvetica,sans-serif" size="2"><div><span style="font-family: monospace, 'Courier New', Courier, monospace; font-size: 12.8px;">Using PyQt4 + QT4.8.4, I'd like to drop (external) textual content to a widget defined as a PyQt4 plugin in QtDesigner</span></div><div><font face="monospace, Courier New, Courier, monospace"><br></font></div><div><font face="monospace, Courier New, Courier, monospace">I use two python classes :</font></div><div><font face="monospace, Courier New, Courier, monospace">- widgetlabelplugin.py inherited from QPyDesignerCustomWidgetPlugin</font></div><div><font face="monospace, Courier New, Courier, monospace">- widgetlabel.py inherited from QLabel</font></div><div><font face="monospace, Courier New, Courier, monospace"><br></font></div><div><font face="monospace, Courier New, Courier, monospace">Overriding the dropEvent in (widgetlabel.py), I'm able to retrieve "external textual content" and to set _model property.</font></div><div><font face="monospace, Courier New, Courier, monospace"><br></font></div><div><font face="monospace, Courier New, Courier, monospace">I do the following steps :</font></div><div><font face="monospace, Courier New, Courier, monospace">1 - Launch designer bu previously setting PYQTDESIGNERPATH to the .py path</font></div><div><font face="monospace, Courier New, Courier, monospace">2 - Create a dialog without button</font></div><div><font face="monospace, Courier New, Courier, monospace">3 - Drop a PyGMT/ WiddgetLabel on the dialog</font></div><div><font face="monospace, Courier New, Courier, monospace">4 - Drop a "textual content" (from notepad) to the widgetlabel label</font></div><div><font face="monospace, Courier New, Courier, monospace">  -> at this step, the label is updated on the dialog but not on the properties browser on the right</font></div><div><font face="monospace, Courier New, Courier, monospace">5 - Save Dialog from Qt designer tool bar </font></div><div><font face="monospace, Courier New, Courier, monospace">  -> ui file doesn't contain any "textual content" neither for QLabel/text, nor WidgetLabel/model</font></div><div><font face="monospace, Courier New, Courier, monospace">6 - In Qt designer, If I select dialog background and reselect WidgetLabel, properties are updated in the browser, they are still not saved if I save the ui !</font></div><div><font face="monospace, Courier New, Courier, monospace"><br></font></div><div><font face="monospace, Courier New, Courier, monospace">Thanks for your help !</font></div><div><font face="monospace, Courier New, Courier, monospace"><br></font></div><div><font face="monospace, Courier New, Courier, monospace">----------------------------------------------------------------------------------</font></div><div><font face="monospace, Courier New, Courier, monospace">python class : widgetlabelplugin.py</font></div><div><font face="monospace, Courier New, Courier, monospace">----------------------------------------------------------------------------------</font></div><div><font face="monospace, Courier New, Courier, monospace"># A demonstration custom widget plugin for PROJECT Qt Designer.</font></div><div><font face="monospace, Courier New, Courier, monospace">from PyQt4 import QtGui, QtDesigner</font></div><div><font face="monospace, Courier New, Courier, monospace"><br></font></div><div><font face="monospace, Courier New, Courier, monospace">from widgetlabel import WidgetLabel</font></div><div><font face="monospace, Courier New, Courier, monospace"><br></font></div><div><font face="monospace, Courier New, Courier, monospace"># This class implements the interface expected by Qt Designer to access the</font></div><div><font face="monospace, Courier New, Courier, monospace"># custom widget.  See the description of the QDesignerCustomWidgetInterface</font></div><div><font face="monospace, Courier New, Courier, monospace"># class for full details.</font></div><div><font face="monospace, Courier New, Courier, monospace">class WidgetLabelPlugin(QtDesigner.QPyDesignerCustomWidgetPlugin):</font></div><div><font face="monospace, Courier New, Courier, monospace"><br></font></div><div><font face="monospace, Courier New, Courier, monospace">    # Initialise the instance.</font></div><div><font face="monospace, Courier New, Courier, monospace">    def __init__(self, parent=None):</font></div><div><font face="monospace, Courier New, Courier, monospace">        super(WidgetLabelPlugin, self).__init__(parent)</font></div><div><font face="monospace, Courier New, Courier, monospace"><br></font></div><div><font face="monospace, Courier New, Courier, monospace">        self._initialized = False</font></div><div><font face="monospace, Courier New, Courier, monospace"><br></font></div><div><font face="monospace, Courier New, Courier, monospace">    # Initialise the custom widget for use with the specified formEditor</font></div><div><font face="monospace, Courier New, Courier, monospace">    # interface.</font></div><div><font face="monospace, Courier New, Courier, monospace">    def initialize(self, formEditor):</font></div><div><font face="monospace, Courier New, Courier, monospace">        if self._initialized:</font></div><div><font face="monospace, Courier New, Courier, monospace">            return</font></div><div><font face="monospace, Courier New, Courier, monospace"><br></font></div><div><font face="monospace, Courier New, Courier, monospace">        self._initialized = True</font></div><div><font face="monospace, Courier New, Courier, monospace"><br></font></div><div><font face="monospace, Courier New, Courier, monospace">    # Return True if the custom widget has been intialised.</font></div><div><font face="monospace, Courier New, Courier, monospace">    def isInitialized(self):</font></div><div><font face="monospace, Courier New, Courier, monospace">        return self._initialized</font></div><div><font face="monospace, Courier New, Courier, monospace"><br></font></div><div><font face="monospace, Courier New, Courier, monospace">    # Return a new instance of the custom widget with the given parent.</font></div><div><font face="monospace, Courier New, Courier, monospace">    def createWidget(self, parent):</font></div><div><font face="monospace, Courier New, Courier, monospace">        return WidgetLabel(parent)</font></div><div><font face="monospace, Courier New, Courier, monospace"><br></font></div><div><font face="monospace, Courier New, Courier, monospace">    # Return the name of the class that implements the custom widget.</font></div><div><font face="monospace, Courier New, Courier, monospace">    def name(self):</font></div><div><font face="monospace, Courier New, Courier, monospace">        return "WidgetLabel"</font></div><div><font face="monospace, Courier New, Courier, monospace"><br></font></div><div><font face="monospace, Courier New, Courier, monospace">    # Return the name of the group to which the custom widget belongs.  A new</font></div><div><font face="monospace, Courier New, Courier, monospace">    # group will be created if it doesn't already exist.</font></div><div><font face="monospace, Courier New, Courier, monospace">    <span id="e-$new-1-bodyrich-editor-misspell-256" class="s-rtetext-misspelled tr-spellcheck-wordid-9 tr-spellcheck-correctionid-256" spellindex="256" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-9 tr-spellcheck-correctionid-256"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>def</span> <span id="e-$new-1-bodyrich-editor-misspell-257" class="s-rtetext-misspelled tr-spellcheck-wordid-30 tr-spellcheck-correctionid-257" spellindex="257" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-30 tr-spellcheck-correctionid-257"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>group</span>(<span id="e-$new-1-bodyrich-editor-misspell-258" class="s-rtetext-misspelled tr-spellcheck-wordid-7 tr-spellcheck-correctionid-258" spellindex="258" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-7 tr-spellcheck-correctionid-258"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>self</span>):</font></div><div><font face="monospace, Courier New, Courier, monospace">        <span id="e-$new-1-bodyrich-editor-misspell-259" class="s-rtetext-misspelled tr-spellcheck-wordid-6 tr-spellcheck-correctionid-259" spellindex="259" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-6 tr-spellcheck-correctionid-259"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>return</span> "<span id="e-$new-1-bodyrich-editor-misspell-260" class="s-rtetext-misspelled tr-spellcheck-wordid-29 tr-spellcheck-correctionid-260" spellindex="260" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-29 tr-spellcheck-correctionid-260"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>PyGMT</span>"</font></div><div><font face="monospace, Courier New, Courier, monospace"><br></font></div><div><font face="monospace, Courier New, Courier, monospace">    # <span id="e-$new-1-bodyrich-editor-misspell-261" class="s-rtetext-misspelled tr-spellcheck-wordid-18 tr-spellcheck-correctionid-261" spellindex="261" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-18 tr-spellcheck-correctionid-261"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>Return</span> <span id="e-$new-1-bodyrich-editor-misspell-262" class="s-rtetext-misspelled tr-spellcheck-wordid-10 tr-spellcheck-correctionid-262" spellindex="262" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-10 tr-spellcheck-correctionid-262"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>the</span> <span id="e-$new-1-bodyrich-editor-misspell-263" class="s-rtetext-misspelled tr-spellcheck-wordid-25 tr-spellcheck-correctionid-263" spellindex="263" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-25 tr-spellcheck-correctionid-263"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>icon</span> <span id="e-$new-1-bodyrich-editor-misspell-264" class="s-rtetext-misspelled tr-spellcheck-wordid-15 tr-spellcheck-correctionid-264" spellindex="264" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-15 tr-spellcheck-correctionid-264"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>used</span> <span id="e-$new-1-bodyrich-editor-misspell-265" class="s-rtetext-misspelled tr-spellcheck-wordid-28 tr-spellcheck-correctionid-265" spellindex="265" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-28 tr-spellcheck-correctionid-265"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>to</span> <span id="e-$new-1-bodyrich-editor-misspell-266" class="s-rtetext-misspelled tr-spellcheck-wordid-27 tr-spellcheck-correctionid-266" spellindex="266" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-27 tr-spellcheck-correctionid-266"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>represent</span> <span id="e-$new-1-bodyrich-editor-misspell-267" class="s-rtetext-misspelled tr-spellcheck-wordid-10 tr-spellcheck-correctionid-267" spellindex="267" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-10 tr-spellcheck-correctionid-267"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>the</span> <span id="e-$new-1-bodyrich-editor-misspell-268" class="s-rtetext-misspelled tr-spellcheck-wordid-2 tr-spellcheck-correctionid-268" spellindex="268" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-2 tr-spellcheck-correctionid-268"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>custom</span> <span id="e-$new-1-bodyrich-editor-misspell-269" class="s-rtetext-misspelled tr-spellcheck-wordid-1 tr-spellcheck-correctionid-269" spellindex="269" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-1 tr-spellcheck-correctionid-269"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>widget</span> in <span id="e-$new-1-bodyrich-editor-misspell-270" class="s-rtetext-misspelled tr-spellcheck-wordid-26 tr-spellcheck-correctionid-270" spellindex="270" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-26 tr-spellcheck-correctionid-270"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>Designer's</span> <span id="e-$new-1-bodyrich-editor-misspell-271" class="s-rtetext-misspelled tr-spellcheck-wordid-1 tr-spellcheck-correctionid-271" spellindex="271" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-1 tr-spellcheck-correctionid-271"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>widget</span></font></div><div><font face="monospace, Courier New, Courier, monospace">    # box.</font></div><div><font face="monospace, Courier New, Courier, monospace">    <span id="e-$new-1-bodyrich-editor-misspell-272" class="s-rtetext-misspelled tr-spellcheck-wordid-9 tr-spellcheck-correctionid-272" spellindex="272" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-9 tr-spellcheck-correctionid-272"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>def</span> <span id="e-$new-1-bodyrich-editor-misspell-273" class="s-rtetext-misspelled tr-spellcheck-wordid-25 tr-spellcheck-correctionid-273" spellindex="273" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-25 tr-spellcheck-correctionid-273"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>icon</span>(<span id="e-$new-1-bodyrich-editor-misspell-274" class="s-rtetext-misspelled tr-spellcheck-wordid-7 tr-spellcheck-correctionid-274" spellindex="274" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-7 tr-spellcheck-correctionid-274"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>self</span>):</font></div><div><font face="monospace, Courier New, Courier, monospace">        <span id="e-$new-1-bodyrich-editor-misspell-275" class="s-rtetext-misspelled tr-spellcheck-wordid-6 tr-spellcheck-correctionid-275" spellindex="275" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-6 tr-spellcheck-correctionid-275"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>return</span> <span id="e-$new-1-bodyrich-editor-misspell-276" class="s-rtetext-misspelled tr-spellcheck-wordid-24 tr-spellcheck-correctionid-276" spellindex="276" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-24 tr-spellcheck-correctionid-276"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>QtGui.QIcon</span>(":/designer/<span id="e-$new-1-bodyrich-editor-misspell-277" class="s-rtetext-misspelled tr-spellcheck-wordid-23 tr-spellcheck-correctionid-277" spellindex="277" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-23 tr-spellcheck-correctionid-277"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>frame.png</span>")</font></div><div><font face="monospace, Courier New, Courier, monospace"><br></font></div><div><font face="monospace, Courier New, Courier, monospace">    # <span id="e-$new-1-bodyrich-editor-misspell-278" class="s-rtetext-misspelled tr-spellcheck-wordid-18 tr-spellcheck-correctionid-278" spellindex="278" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-18 tr-spellcheck-correctionid-278"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>Return</span> a short description <span id="e-$new-1-bodyrich-editor-misspell-279" class="s-rtetext-misspelled tr-spellcheck-wordid-16 tr-spellcheck-correctionid-279" spellindex="279" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-16 tr-spellcheck-correctionid-279"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>of</span> <span id="e-$new-1-bodyrich-editor-misspell-280" class="s-rtetext-misspelled tr-spellcheck-wordid-10 tr-spellcheck-correctionid-280" spellindex="280" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-10 tr-spellcheck-correctionid-280"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>the</span> <span id="e-$new-1-bodyrich-editor-misspell-281" class="s-rtetext-misspelled tr-spellcheck-wordid-2 tr-spellcheck-correctionid-281" spellindex="281" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-2 tr-spellcheck-correctionid-281"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>custom</span> <span id="e-$new-1-bodyrich-editor-misspell-282" class="s-rtetext-misspelled tr-spellcheck-wordid-1 tr-spellcheck-correctionid-282" spellindex="282" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-1 tr-spellcheck-correctionid-282"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>widget</span> <span id="e-$new-1-bodyrich-editor-misspell-283" class="s-rtetext-misspelled tr-spellcheck-wordid-15 tr-spellcheck-correctionid-283" spellindex="283" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-15 tr-spellcheck-correctionid-283"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>used</span> <span id="e-$new-1-bodyrich-editor-misspell-284" class="s-rtetext-misspelled tr-spellcheck-wordid-14 tr-spellcheck-correctionid-284" spellindex="284" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-14 tr-spellcheck-correctionid-284"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>by</span> Designer in a</font></div><div><font face="monospace, Courier New, Courier, monospace">    # <span id="e-$new-1-bodyrich-editor-misspell-285" class="s-rtetext-misspelled tr-spellcheck-wordid-22 tr-spellcheck-correctionid-285" spellindex="285" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-22 tr-spellcheck-correctionid-285"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>tool</span> <span id="e-$new-1-bodyrich-editor-misspell-286" class="s-rtetext-misspelled tr-spellcheck-wordid-21 tr-spellcheck-correctionid-286" spellindex="286" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-21 tr-spellcheck-correctionid-286"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>tip</span>.</font></div><div><font face="monospace, Courier New, Courier, monospace">    <span id="e-$new-1-bodyrich-editor-misspell-287" class="s-rtetext-misspelled tr-spellcheck-wordid-9 tr-spellcheck-correctionid-287" spellindex="287" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-9 tr-spellcheck-correctionid-287"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>def</span> <span id="e-$new-1-bodyrich-editor-misspell-288" class="s-rtetext-misspelled tr-spellcheck-wordid-20 tr-spellcheck-correctionid-288" spellindex="288" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-20 tr-spellcheck-correctionid-288"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>toolTip</span>(<span id="e-$new-1-bodyrich-editor-misspell-289" class="s-rtetext-misspelled tr-spellcheck-wordid-7 tr-spellcheck-correctionid-289" spellindex="289" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-7 tr-spellcheck-correctionid-289"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>self</span>):</font></div><div><font face="monospace, Courier New, Courier, monospace">        <span id="e-$new-1-bodyrich-editor-misspell-290" class="s-rtetext-misspelled tr-spellcheck-wordid-6 tr-spellcheck-correctionid-290" spellindex="290" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-6 tr-spellcheck-correctionid-290"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>return</span> "<span id="e-$new-1-bodyrich-editor-misspell-291" class="s-rtetext-misspelled tr-spellcheck-wordid-19 tr-spellcheck-correctionid-291" spellindex="291" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-19 tr-spellcheck-correctionid-291"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>Satis</span> <span id="e-$new-1-bodyrich-editor-misspell-292" class="s-rtetext-misspelled tr-spellcheck-wordid-3 tr-spellcheck-correctionid-292" spellindex="292" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-3 tr-spellcheck-correctionid-292"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>demonstration</span> <span id="e-$new-1-bodyrich-editor-misspell-293" class="s-rtetext-misspelled tr-spellcheck-wordid-1 tr-spellcheck-correctionid-293" spellindex="293" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-1 tr-spellcheck-correctionid-293"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>widget</span>"</font></div><div><font face="monospace, Courier New, Courier, monospace"><br></font></div><div><font face="monospace, Courier New, Courier, monospace">    # <span id="e-$new-1-bodyrich-editor-misspell-294" class="s-rtetext-misspelled tr-spellcheck-wordid-18 tr-spellcheck-correctionid-294" spellindex="294" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-18 tr-spellcheck-correctionid-294"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>Return</span> a <span id="e-$new-1-bodyrich-editor-misspell-295" class="s-rtetext-misspelled tr-spellcheck-wordid-17 tr-spellcheck-correctionid-295" spellindex="295" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-17 tr-spellcheck-correctionid-295"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>full</span> description <span id="e-$new-1-bodyrich-editor-misspell-296" class="s-rtetext-misspelled tr-spellcheck-wordid-16 tr-spellcheck-correctionid-296" spellindex="296" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-16 tr-spellcheck-correctionid-296"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>of</span> <span id="e-$new-1-bodyrich-editor-misspell-297" class="s-rtetext-misspelled tr-spellcheck-wordid-10 tr-spellcheck-correctionid-297" spellindex="297" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-10 tr-spellcheck-correctionid-297"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>the</span> <span id="e-$new-1-bodyrich-editor-misspell-298" class="s-rtetext-misspelled tr-spellcheck-wordid-2 tr-spellcheck-correctionid-298" spellindex="298" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-2 tr-spellcheck-correctionid-298"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>custom</span> <span id="e-$new-1-bodyrich-editor-misspell-299" class="s-rtetext-misspelled tr-spellcheck-wordid-1 tr-spellcheck-correctionid-299" spellindex="299" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-1 tr-spellcheck-correctionid-299"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>widget</span> <span id="e-$new-1-bodyrich-editor-misspell-300" class="s-rtetext-misspelled tr-spellcheck-wordid-15 tr-spellcheck-correctionid-300" spellindex="300" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-15 tr-spellcheck-correctionid-300"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>used</span> <span id="e-$new-1-bodyrich-editor-misspell-301" class="s-rtetext-misspelled tr-spellcheck-wordid-14 tr-spellcheck-correctionid-301" spellindex="301" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-14 tr-spellcheck-correctionid-301"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>by</span> Designer in</font></div><div><font face="monospace, Courier New, Courier, monospace">    # "<span id="e-$new-1-bodyrich-editor-misspell-302" class="s-rtetext-misspelled tr-spellcheck-wordid-13 tr-spellcheck-correctionid-302" spellindex="302" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-13 tr-spellcheck-correctionid-302"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>What's</span> <span id="e-$new-1-bodyrich-editor-misspell-303" class="s-rtetext-misspelled tr-spellcheck-wordid-12 tr-spellcheck-correctionid-303" spellindex="303" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-12 tr-spellcheck-correctionid-303"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>This</span>?" <span id="e-$new-1-bodyrich-editor-misspell-304" class="s-rtetext-misspelled tr-spellcheck-wordid-11 tr-spellcheck-correctionid-304" spellindex="304" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-11 tr-spellcheck-correctionid-304"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>help</span> for <span id="e-$new-1-bodyrich-editor-misspell-305" class="s-rtetext-misspelled tr-spellcheck-wordid-10 tr-spellcheck-correctionid-305" spellindex="305" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-10 tr-spellcheck-correctionid-305"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>the</span> <span id="e-$new-1-bodyrich-editor-misspell-306" class="s-rtetext-misspelled tr-spellcheck-wordid-1 tr-spellcheck-correctionid-306" spellindex="306" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-1 tr-spellcheck-correctionid-306"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>widget</span>.</font></div><div><font face="monospace, Courier New, Courier, monospace">    <span id="e-$new-1-bodyrich-editor-misspell-307" class="s-rtetext-misspelled tr-spellcheck-wordid-9 tr-spellcheck-correctionid-307" spellindex="307" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-9 tr-spellcheck-correctionid-307"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>def</span> <span id="e-$new-1-bodyrich-editor-misspell-308" class="s-rtetext-misspelled tr-spellcheck-wordid-8 tr-spellcheck-correctionid-308" spellindex="308" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-8 tr-spellcheck-correctionid-308"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>whatsThis</span>(<span id="e-$new-1-bodyrich-editor-misspell-309" class="s-rtetext-misspelled tr-spellcheck-wordid-7 tr-spellcheck-correctionid-309" spellindex="309" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-7 tr-spellcheck-correctionid-309"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>self</span>):</font></div><div><font face="monospace, Courier New, Courier, monospace">        <span id="e-$new-1-bodyrich-editor-misspell-310" class="s-rtetext-misspelled tr-spellcheck-wordid-6 tr-spellcheck-correctionid-310" spellindex="310" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-6 tr-spellcheck-correctionid-310"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>return</span> "<span id="e-$new-1-bodyrich-editor-misspell-311" class="s-rtetext-misspelled tr-spellcheck-wordid-5 tr-spellcheck-correctionid-311" spellindex="311" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-5 tr-spellcheck-correctionid-311"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>WidgetLabel</span> <span id="e-$new-1-bodyrich-editor-misspell-312" class="s-rtetext-misspelled tr-spellcheck-wordid-4 tr-spellcheck-correctionid-312" spellindex="312" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-4 tr-spellcheck-correctionid-312"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>is</span> a <span id="e-$new-1-bodyrich-editor-misspell-313" class="s-rtetext-misspelled tr-spellcheck-wordid-3 tr-spellcheck-correctionid-313" spellindex="313" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-3 tr-spellcheck-correctionid-313"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>demonstration</span> <span id="e-$new-1-bodyrich-editor-misspell-314" class="s-rtetext-misspelled tr-spellcheck-wordid-2 tr-spellcheck-correctionid-314" spellindex="314" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-2 tr-spellcheck-correctionid-314"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>custom</span> <span id="e-$new-1-bodyrich-editor-misspell-315" class="s-rtetext-misspelled tr-spellcheck-wordid-1 tr-spellcheck-correctionid-315" spellindex="315" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-1 tr-spellcheck-correctionid-315"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>widget</span> <span id="e-$new-1-bodyrich-editor-misspell-316" class="s-rtetext-misspelled tr-spellcheck-wordid-39 tr-spellcheck-correctionid-316" spellindex="316" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-39 tr-spellcheck-correctionid-316"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>written</span> in Python " \</font></div><div><font face="monospace, Courier New, Courier, monospace">               "<span id="e-$new-1-bodyrich-editor-misspell-317" class="s-rtetext-misspelled tr-spellcheck-wordid-38 tr-spellcheck-correctionid-317" spellindex="317" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-38 tr-spellcheck-correctionid-317"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>using</span> <span id="e-$new-1-bodyrich-editor-misspell-318" class="s-rtetext-misspelled tr-spellcheck-wordid-37 tr-spellcheck-correctionid-318" spellindex="318" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-37 tr-spellcheck-correctionid-318"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>PyQt</span>."</font></div><div><font face="monospace, Courier New, Courier, monospace"><br></font></div><div><font face="monospace, Courier New, Courier, monospace">    # <span id="e-$new-1-bodyrich-editor-misspell-319" class="s-rtetext-misspelled tr-spellcheck-wordid-30 tr-spellcheck-correctionid-319" spellindex="319" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-30 tr-spellcheck-correctionid-319"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>Return</span> <span id="e-$new-1-bodyrich-editor-misspell-320" class="s-rtetext-misspelled tr-spellcheck-wordid-36 tr-spellcheck-correctionid-320" spellindex="320" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-36 tr-spellcheck-correctionid-320"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>True</span> if <span id="e-$new-1-bodyrich-editor-misspell-321" class="s-rtetext-misspelled tr-spellcheck-wordid-1 tr-spellcheck-correctionid-321" spellindex="321" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-1 tr-spellcheck-correctionid-321"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>the</span> <span id="e-$new-1-bodyrich-editor-misspell-322" class="s-rtetext-misspelled tr-spellcheck-wordid-27 tr-spellcheck-correctionid-322" spellindex="322" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-27 tr-spellcheck-correctionid-322"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>custom</span> <span id="e-$new-1-bodyrich-editor-misspell-323" class="s-rtetext-misspelled tr-spellcheck-wordid-26 tr-spellcheck-correctionid-323" spellindex="323" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-26 tr-spellcheck-correctionid-323"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>widget</span> <span id="e-$new-1-bodyrich-editor-misspell-324" class="s-rtetext-misspelled tr-spellcheck-wordid-35 tr-spellcheck-correctionid-324" spellindex="324" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-35 tr-spellcheck-correctionid-324"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>acts</span> as a container for <span id="e-$new-1-bodyrich-editor-misspell-325" class="s-rtetext-misspelled tr-spellcheck-wordid-34 tr-spellcheck-correctionid-325" spellindex="325" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-34 tr-spellcheck-correctionid-325"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>other</span> <span id="e-$new-1-bodyrich-editor-misspell-326" class="s-rtetext-misspelled tr-spellcheck-wordid-33 tr-spellcheck-correctionid-326" spellindex="326" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-33 tr-spellcheck-correctionid-326"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>widgets</span>.</font></div><div><font face="monospace, Courier New, Courier, monospace">    <span id="e-$new-1-bodyrich-editor-misspell-327" class="s-rtetext-misspelled tr-spellcheck-wordid-21 tr-spellcheck-correctionid-327" spellindex="327" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-21 tr-spellcheck-correctionid-327"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>def</span> <span id="e-$new-1-bodyrich-editor-misspell-328" class="s-rtetext-misspelled tr-spellcheck-wordid-32 tr-spellcheck-correctionid-328" spellindex="328" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-32 tr-spellcheck-correctionid-328"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>isContainer</span>(<span id="e-$new-1-bodyrich-editor-misspell-329" class="s-rtetext-misspelled tr-spellcheck-wordid-19 tr-spellcheck-correctionid-329" spellindex="329" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-19 tr-spellcheck-correctionid-329"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>self</span>):</font></div><div><font face="monospace, Courier New, Courier, monospace">        <span id="e-$new-1-bodyrich-editor-misspell-330" class="s-rtetext-misspelled tr-spellcheck-wordid-18 tr-spellcheck-correctionid-330" spellindex="330" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-18 tr-spellcheck-correctionid-330"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>return</span> <span id="e-$new-1-bodyrich-editor-misspell-331" class="s-rtetext-misspelled tr-spellcheck-wordid-31 tr-spellcheck-correctionid-331" spellindex="331" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-31 tr-spellcheck-correctionid-331"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>False</span></font></div><div><font face="monospace, Courier New, Courier, monospace"><br></font></div><div><font face="monospace, Courier New, Courier, monospace">    # <span id="e-$new-1-bodyrich-editor-misspell-332" class="s-rtetext-misspelled tr-spellcheck-wordid-30 tr-spellcheck-correctionid-332" spellindex="332" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-30 tr-spellcheck-correctionid-332"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>Return</span> <span id="e-$new-1-bodyrich-editor-misspell-333" class="s-rtetext-misspelled tr-spellcheck-wordid-1 tr-spellcheck-correctionid-333" spellindex="333" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-1 tr-spellcheck-correctionid-333"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>the</span> <span id="e-$new-1-bodyrich-editor-misspell-334" class="s-rtetext-misspelled tr-spellcheck-wordid-29 tr-spellcheck-correctionid-334" spellindex="334" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-29 tr-spellcheck-correctionid-334"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>name</span> <span id="e-$new-1-bodyrich-editor-misspell-335" class="s-rtetext-misspelled tr-spellcheck-wordid-14 tr-spellcheck-correctionid-335" spellindex="335" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-14 tr-spellcheck-correctionid-335"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>of</span> <span id="e-$new-1-bodyrich-editor-misspell-336" class="s-rtetext-misspelled tr-spellcheck-wordid-1 tr-spellcheck-correctionid-336" spellindex="336" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-1 tr-spellcheck-correctionid-336"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>the</span> module <span id="e-$new-1-bodyrich-editor-misspell-337" class="s-rtetext-misspelled tr-spellcheck-wordid-28 tr-spellcheck-correctionid-337" spellindex="337" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-28 tr-spellcheck-correctionid-337"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>containing</span> <span id="e-$new-1-bodyrich-editor-misspell-338" class="s-rtetext-misspelled tr-spellcheck-wordid-1 tr-spellcheck-correctionid-338" spellindex="338" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-1 tr-spellcheck-correctionid-338"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>the</span> <span id="e-$new-1-bodyrich-editor-misspell-339" class="s-rtetext-misspelled tr-spellcheck-wordid-4 tr-spellcheck-correctionid-339" spellindex="339" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-4 tr-spellcheck-correctionid-339"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>class</span> <span id="e-$new-1-bodyrich-editor-misspell-340" class="s-rtetext-misspelled tr-spellcheck-wordid-3 tr-spellcheck-correctionid-340" spellindex="340" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-3 tr-spellcheck-correctionid-340"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>that</span> <span id="e-$new-1-bodyrich-editor-misspell-341" class="s-rtetext-misspelled tr-spellcheck-wordid-2 tr-spellcheck-correctionid-341" spellindex="341" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-2 tr-spellcheck-correctionid-341"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>implements</span> <span id="e-$new-1-bodyrich-editor-misspell-342" class="s-rtetext-misspelled tr-spellcheck-wordid-1 tr-spellcheck-correctionid-342" spellindex="342" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-1 tr-spellcheck-correctionid-342"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>the</span></font></div><div><font face="monospace, Courier New, Courier, monospace">    # <span id="e-$new-1-bodyrich-editor-misspell-343" class="s-rtetext-misspelled tr-spellcheck-wordid-27 tr-spellcheck-correctionid-343" spellindex="343" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-27 tr-spellcheck-correctionid-343"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>custom</span> <span id="e-$new-1-bodyrich-editor-misspell-344" class="s-rtetext-misspelled tr-spellcheck-wordid-26 tr-spellcheck-correctionid-344" spellindex="344" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-26 tr-spellcheck-correctionid-344"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>widget</span>.  <span id="e-$new-1-bodyrich-editor-misspell-345" class="s-rtetext-misspelled tr-spellcheck-wordid-25 tr-spellcheck-correctionid-345" spellindex="345" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-25 tr-spellcheck-correctionid-345"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>It</span> <span id="e-$new-1-bodyrich-editor-misspell-346" class="s-rtetext-misspelled tr-spellcheck-wordid-24 tr-spellcheck-correctionid-346" spellindex="346" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-24 tr-spellcheck-correctionid-346"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>may</span> <span id="e-$new-1-bodyrich-editor-misspell-347" class="s-rtetext-misspelled tr-spellcheck-wordid-23 tr-spellcheck-correctionid-347" spellindex="347" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-23 tr-spellcheck-correctionid-347"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>include</span> a module <span id="e-$new-1-bodyrich-editor-misspell-348" class="s-rtetext-misspelled tr-spellcheck-wordid-22 tr-spellcheck-correctionid-348" spellindex="348" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-22 tr-spellcheck-correctionid-348"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>path</span>.</font></div><div><font face="monospace, Courier New, Courier, monospace">    <span id="e-$new-1-bodyrich-editor-misspell-349" class="s-rtetext-misspelled tr-spellcheck-wordid-21 tr-spellcheck-correctionid-349" spellindex="349" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-21 tr-spellcheck-correctionid-349"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>def</span> <span id="e-$new-1-bodyrich-editor-misspell-350" class="s-rtetext-misspelled tr-spellcheck-wordid-20 tr-spellcheck-correctionid-350" spellindex="350" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-20 tr-spellcheck-correctionid-350"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>includeFile</span>(<span id="e-$new-1-bodyrich-editor-misspell-351" class="s-rtetext-misspelled tr-spellcheck-wordid-19 tr-spellcheck-correctionid-351" spellindex="351" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-19 tr-spellcheck-correctionid-351"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>self</span>):</font></div><div><font face="monospace, Courier New, Courier, monospace">        <span id="e-$new-1-bodyrich-editor-misspell-352" class="s-rtetext-misspelled tr-spellcheck-wordid-18 tr-spellcheck-correctionid-352" spellindex="352" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-18 tr-spellcheck-correctionid-352"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>return</span> "<span id="e-$new-1-bodyrich-editor-misspell-353" class="s-rtetext-misspelled tr-spellcheck-wordid-17 tr-spellcheck-correctionid-353" spellindex="353" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-17 tr-spellcheck-correctionid-353"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>WidgetLabel</span>"</font></div><div><font face="monospace, Courier New, Courier, monospace"><br></font></div><div><font face="monospace, Courier New, Courier, monospace">----------------------------------------------------------------------------------</font></div><div><font face="monospace, Courier New, Courier, monospace">python <span id="e-$new-1-bodyrich-editor-misspell-354" class="s-rtetext-misspelled tr-spellcheck-wordid-4 tr-spellcheck-correctionid-354" spellindex="354" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-4 tr-spellcheck-correctionid-354"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>class</span> : <span id="e-$new-1-bodyrich-editor-misspell-355" class="s-rtetext-misspelled tr-spellcheck-wordid-16 tr-spellcheck-correctionid-355" spellindex="355" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-16 tr-spellcheck-correctionid-355"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>widgetlabel.py</span></font></div><div><font face="monospace, Courier New, Courier, monospace">----------------------------------------------------------------------------------</font></div><div><font face="monospace, Courier New, Courier, monospace">#############################################################################</font></div><div><font face="monospace, Courier New, Courier, monospace">##</font></div><div><font face="monospace, Courier New, Courier, monospace">## <span id="e-$new-1-bodyrich-editor-misspell-356" class="s-rtetext-misspelled tr-spellcheck-wordid-6 tr-spellcheck-correctionid-356" spellindex="356" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-6 tr-spellcheck-correctionid-356"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>This</span> file <span id="e-$new-1-bodyrich-editor-misspell-357" class="s-rtetext-misspelled tr-spellcheck-wordid-5 tr-spellcheck-correctionid-357" spellindex="357" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-5 tr-spellcheck-correctionid-357"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>is</span> part <span id="e-$new-1-bodyrich-editor-misspell-358" class="s-rtetext-misspelled tr-spellcheck-wordid-14 tr-spellcheck-correctionid-358" spellindex="358" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-14 tr-spellcheck-correctionid-358"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>of</span> <span id="e-$new-1-bodyrich-editor-misspell-359" class="s-rtetext-misspelled tr-spellcheck-wordid-1 tr-spellcheck-correctionid-359" spellindex="359" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-1 tr-spellcheck-correctionid-359"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>the</span> <span id="e-$new-1-bodyrich-editor-misspell-360" class="s-rtetext-misspelled tr-spellcheck-wordid-15 tr-spellcheck-correctionid-360" spellindex="360" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-15 tr-spellcheck-correctionid-360"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>examples</span> <span id="e-$new-1-bodyrich-editor-misspell-361" class="s-rtetext-misspelled tr-spellcheck-wordid-14 tr-spellcheck-correctionid-361" spellindex="361" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-14 tr-spellcheck-correctionid-361"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>of</span> <span id="e-$new-1-bodyrich-editor-misspell-362" class="s-rtetext-misspelled tr-spellcheck-wordid-13 tr-spellcheck-correctionid-362" spellindex="362" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-13 tr-spellcheck-correctionid-362"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>PROJECT</span> <span id="e-$new-1-bodyrich-editor-misspell-363" class="s-rtetext-misspelled tr-spellcheck-wordid-12 tr-spellcheck-correctionid-363" spellindex="363" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-12 tr-spellcheck-correctionid-363"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>Qt</span> Designer.</font></div><div><font face="monospace, Courier New, Courier, monospace">##</font></div><div><font face="monospace, Courier New, Courier, monospace">#############################################################################</font></div><div><font face="monospace, Courier New, Courier, monospace"><br></font></div><div><font face="monospace, Courier New, Courier, monospace"><span id="e-$new-1-bodyrich-editor-misspell-364" class="s-rtetext-misspelled tr-spellcheck-wordid-11 tr-spellcheck-correctionid-364" spellindex="364" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-11 tr-spellcheck-correctionid-364"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>from</span> <span id="e-$new-1-bodyrich-editor-misspell-365" class="s-rtetext-misspelled tr-spellcheck-wordid-10 tr-spellcheck-correctionid-365" spellindex="365" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-10 tr-spellcheck-correctionid-365"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>PyQt4</span> <span id="e-$new-1-bodyrich-editor-misspell-366" class="s-rtetext-misspelled tr-spellcheck-wordid-9 tr-spellcheck-correctionid-366" spellindex="366" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-9 tr-spellcheck-correctionid-366"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>import</span> <span id="e-$new-1-bodyrich-editor-misspell-367" class="s-rtetext-misspelled tr-spellcheck-wordid-8 tr-spellcheck-correctionid-367" spellindex="367" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-8 tr-spellcheck-correctionid-367"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>QtCore</span>, <span id="e-$new-1-bodyrich-editor-misspell-368" class="s-rtetext-misspelled tr-spellcheck-wordid-7 tr-spellcheck-correctionid-368" spellindex="368" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-7 tr-spellcheck-correctionid-368"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>QtGui</span></font></div><div><font face="monospace, Courier New, Courier, monospace"><br></font></div><div><font face="monospace, Courier New, Courier, monospace"># <span id="e-$new-1-bodyrich-editor-misspell-369" class="s-rtetext-misspelled tr-spellcheck-wordid-6 tr-spellcheck-correctionid-369" spellindex="369" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-6 tr-spellcheck-correctionid-369"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>This</span> <span id="e-$new-1-bodyrich-editor-misspell-370" class="s-rtetext-misspelled tr-spellcheck-wordid-5 tr-spellcheck-correctionid-370" spellindex="370" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-5 tr-spellcheck-correctionid-370"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>is</span> <span id="e-$new-1-bodyrich-editor-misspell-371" class="s-rtetext-misspelled tr-spellcheck-wordid-1 tr-spellcheck-correctionid-371" spellindex="371" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-1 tr-spellcheck-correctionid-371"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>the</span> <span id="e-$new-1-bodyrich-editor-misspell-372" class="s-rtetext-misspelled tr-spellcheck-wordid-4 tr-spellcheck-correctionid-372" spellindex="372" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-4 tr-spellcheck-correctionid-372"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>class</span> <span id="e-$new-1-bodyrich-editor-misspell-373" class="s-rtetext-misspelled tr-spellcheck-wordid-3 tr-spellcheck-correctionid-373" spellindex="373" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-3 tr-spellcheck-correctionid-373"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>that</span> <span id="e-$new-1-bodyrich-editor-misspell-374" class="s-rtetext-misspelled tr-spellcheck-wordid-2 tr-spellcheck-correctionid-374" spellindex="374" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-2 tr-spellcheck-correctionid-374"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>implements</span> <span id="e-$new-1-bodyrich-editor-misspell-375" class="s-rtetext-misspelled tr-spellcheck-wordid-1 tr-spellcheck-correctionid-375" spellindex="375" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-1 tr-spellcheck-correctionid-375"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>the</span> <span id="e-$new-1-bodyrich-editor-misspell-376" class="s-rtetext-misspelled tr-spellcheck-wordid-42 tr-spellcheck-correctionid-376" spellindex="376" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-42 tr-spellcheck-correctionid-376"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>custom</span> <span id="e-$new-1-bodyrich-editor-misspell-377" class="s-rtetext-misspelled tr-spellcheck-wordid-41 tr-spellcheck-correctionid-377" spellindex="377" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-41 tr-spellcheck-correctionid-377"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>widget</span> for <span id="e-$new-1-bodyrich-editor-misspell-378" class="s-rtetext-misspelled tr-spellcheck-wordid-40 tr-spellcheck-correctionid-378" spellindex="378" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-40 tr-spellcheck-correctionid-378"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>PROJECT</span>.</font></div><div><font face="monospace, Courier New, Courier, monospace"><span id="e-$new-1-bodyrich-editor-misspell-379" class="s-rtetext-misspelled tr-spellcheck-wordid-39 tr-spellcheck-correctionid-379" spellindex="379" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-39 tr-spellcheck-correctionid-379"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>class</span> <span id="e-$new-1-bodyrich-editor-misspell-380" class="s-rtetext-misspelled tr-spellcheck-wordid-32 tr-spellcheck-correctionid-380" spellindex="380" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-32 tr-spellcheck-correctionid-380"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>WidgetLabel</span>(<span id="e-$new-1-bodyrich-editor-misspell-381" class="s-rtetext-misspelled tr-spellcheck-wordid-38 tr-spellcheck-correctionid-381" spellindex="381" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-38 tr-spellcheck-correctionid-381"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>QtGui.QLabel</span>):</font></div><div><font face="monospace, Courier New, Courier, monospace"><br></font></div><div><font face="monospace, Courier New, Courier, monospace">    #model <span id="e-$new-1-bodyrich-editor-misspell-382" class="s-rtetext-misspelled tr-spellcheck-wordid-37 tr-spellcheck-correctionid-382" spellindex="382" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-37 tr-spellcheck-correctionid-382"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>changed</span> signal</font></div><div><font face="monospace, Courier New, Courier, monospace">    <span id="e-$new-1-bodyrich-editor-misspell-383" class="s-rtetext-misspelled tr-spellcheck-wordid-36 tr-spellcheck-correctionid-383" spellindex="383" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-36 tr-spellcheck-correctionid-383"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>modelChanged</span> = <span id="e-$new-1-bodyrich-editor-misspell-384" class="s-rtetext-misspelled tr-spellcheck-wordid-35 tr-spellcheck-correctionid-384" spellindex="384" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-35 tr-spellcheck-correctionid-384"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>QtCore.pyqtSignal</span>(<span id="e-$new-1-bodyrich-editor-misspell-385" class="s-rtetext-misspelled tr-spellcheck-wordid-34 tr-spellcheck-correctionid-385" spellindex="385" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-34 tr-spellcheck-correctionid-385"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>QtCore.QString</span>)</font></div><div><font face="monospace, Courier New, Courier, monospace"><br></font></div><div><font face="monospace, Courier New, Courier, monospace">    # Initialise <span id="e-$new-1-bodyrich-editor-misspell-386" class="s-rtetext-misspelled tr-spellcheck-wordid-27 tr-spellcheck-correctionid-386" spellindex="386" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-27 tr-spellcheck-correctionid-386"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>the</span> instance.</font></div><div><font face="monospace, Courier New, Courier, monospace">    <span id="e-$new-1-bodyrich-editor-misspell-387" class="s-rtetext-misspelled tr-spellcheck-wordid-9 tr-spellcheck-correctionid-387" spellindex="387" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-9 tr-spellcheck-correctionid-387"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>def</span> <span id="e-$new-1-bodyrich-editor-misspell-388" class="s-rtetext-misspelled tr-spellcheck-wordid-33 tr-spellcheck-correctionid-388" spellindex="388" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-33 tr-spellcheck-correctionid-388"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>__init</span>__(<span id="e-$new-1-bodyrich-editor-misspell-389" class="s-rtetext-misspelled tr-spellcheck-wordid-7 tr-spellcheck-correctionid-389" spellindex="389" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-7 tr-spellcheck-correctionid-389"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>self</span>, parent=<span id="e-$new-1-bodyrich-editor-misspell-390" class="s-rtetext-misspelled tr-spellcheck-wordid-24 tr-spellcheck-correctionid-390" spellindex="390" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-24 tr-spellcheck-correctionid-390"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>None</span>):</font></div><div><font face="monospace, Courier New, Courier, monospace">        super(<span id="e-$new-1-bodyrich-editor-misspell-391" class="s-rtetext-misspelled tr-spellcheck-wordid-32 tr-spellcheck-correctionid-391" spellindex="391" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-32 tr-spellcheck-correctionid-391"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>WidgetLabel</span>, <span id="e-$new-1-bodyrich-editor-misspell-392" class="s-rtetext-misspelled tr-spellcheck-wordid-7 tr-spellcheck-correctionid-392" spellindex="392" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-7 tr-spellcheck-correctionid-392"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>self</span>).__<span id="e-$new-1-bodyrich-editor-misspell-393" class="s-rtetext-misspelled tr-spellcheck-wordid-31 tr-spellcheck-correctionid-393" spellindex="393" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-31 tr-spellcheck-correctionid-393"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>init</span>__(parent)</font></div><div><font face="monospace, Courier New, Courier, monospace">        <span id="e-$new-1-bodyrich-editor-misspell-394" class="s-rtetext-misspelled tr-spellcheck-wordid-30 tr-spellcheck-correctionid-394" spellindex="394" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-30 tr-spellcheck-correctionid-394"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>self.setAcceptDrops</span>(<span id="e-$new-1-bodyrich-editor-misspell-395" class="s-rtetext-misspelled tr-spellcheck-wordid-29 tr-spellcheck-correctionid-395" spellindex="395" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-29 tr-spellcheck-correctionid-395"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>True</span>)</font></div><div><font face="monospace, Courier New, Courier, monospace">        <span id="e-$new-1-bodyrich-editor-misspell-396" class="s-rtetext-misspelled tr-spellcheck-wordid-28 tr-spellcheck-correctionid-396" spellindex="396" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-28 tr-spellcheck-correctionid-396"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>self.setText</span>("Label")</font></div><div><font face="monospace, Courier New, Courier, monospace"><br></font></div><div><font face="monospace, Courier New, Courier, monospace">        # Initialise <span id="e-$new-1-bodyrich-editor-misspell-397" class="s-rtetext-misspelled tr-spellcheck-wordid-27 tr-spellcheck-correctionid-397" spellindex="397" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-27 tr-spellcheck-correctionid-397"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>the</span> model <span id="e-$new-1-bodyrich-editor-misspell-398" class="s-rtetext-misspelled tr-spellcheck-wordid-26 tr-spellcheck-correctionid-398" spellindex="398" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-26 tr-spellcheck-correctionid-398"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>property</span>. </font></div><div><font face="monospace, Courier New, Courier, monospace">        <span id="e-$new-1-bodyrich-editor-misspell-399" class="s-rtetext-misspelled tr-spellcheck-wordid-7 tr-spellcheck-correctionid-399" spellindex="399" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-7 tr-spellcheck-correctionid-399"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>self</span>.<span id="e-$new-1-bodyrich-editor-misspell-400" class="s-rtetext-misspelled tr-spellcheck-wordid-25 tr-spellcheck-correctionid-400" spellindex="400" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-25 tr-spellcheck-correctionid-400"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>_model</span> = <span id="e-$new-1-bodyrich-editor-misspell-401" class="s-rtetext-misspelled tr-spellcheck-wordid-24 tr-spellcheck-correctionid-401" spellindex="401" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-24 tr-spellcheck-correctionid-401"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>None</span></font></div><div><font face="monospace, Courier New, Courier, monospace">    </font></div><div><font face="monospace, Courier New, Courier, monospace">###########################################################################</font></div><div><font face="monospace, Courier New, Courier, monospace">                              # DRAG & <span id="e-$new-1-bodyrich-editor-misspell-402" class="s-rtetext-misspelled tr-spellcheck-wordid-23 tr-spellcheck-correctionid-402" spellindex="402" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-23 tr-spellcheck-correctionid-402"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>DROP</span> PART #</font></div><div><font face="monospace, Courier New, Courier, monospace">    </font></div><div><font face="monospace, Courier New, Courier, monospace">###########################################################################</font></div><div><font face="monospace, Courier New, Courier, monospace">    <span id="e-$new-1-bodyrich-editor-misspell-403" class="s-rtetext-misspelled tr-spellcheck-wordid-9 tr-spellcheck-correctionid-403" spellindex="403" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-9 tr-spellcheck-correctionid-403"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>def</span> <span id="e-$new-1-bodyrich-editor-misspell-404" class="s-rtetext-misspelled tr-spellcheck-wordid-22 tr-spellcheck-correctionid-404" spellindex="404" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-22 tr-spellcheck-correctionid-404"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>dragEnterEvent</span>(<span id="e-$new-1-bodyrich-editor-misspell-405" class="s-rtetext-misspelled tr-spellcheck-wordid-7 tr-spellcheck-correctionid-405" spellindex="405" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-7 tr-spellcheck-correctionid-405"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>self</span>, <span id="e-$new-1-bodyrich-editor-misspell-406" class="s-rtetext-misspelled tr-spellcheck-wordid-6 tr-spellcheck-correctionid-406" spellindex="406" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-6 tr-spellcheck-correctionid-406"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>e</span>):</font></div><div><font face="monospace, Courier New, Courier, monospace">         if <span id="e-$new-1-bodyrich-editor-misspell-407" class="s-rtetext-misspelled tr-spellcheck-wordid-3 tr-spellcheck-correctionid-407" spellindex="407" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-3 tr-spellcheck-correctionid-407"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>e.mimeData</span>().<span id="e-$new-1-bodyrich-editor-misspell-408" class="s-rtetext-misspelled tr-spellcheck-wordid-15 tr-spellcheck-correctionid-408" spellindex="408" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-15 tr-spellcheck-correctionid-408"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>hasFormat</span>("<span id="e-$new-1-bodyrich-editor-misspell-409" class="s-rtetext-misspelled tr-spellcheck-wordid-1 tr-spellcheck-correctionid-409" spellindex="409" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-1 tr-spellcheck-correctionid-409"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>text</span>/plain"):</font></div><div><font face="monospace, Courier New, Courier, monospace">             <span id="e-$new-1-bodyrich-editor-misspell-410" class="s-rtetext-misspelled tr-spellcheck-wordid-21 tr-spellcheck-correctionid-410" spellindex="410" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-21 tr-spellcheck-correctionid-410"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>e.setDropAction</span>(<span id="e-$new-1-bodyrich-editor-misspell-411" class="s-rtetext-misspelled tr-spellcheck-wordid-13 tr-spellcheck-correctionid-411" spellindex="411" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-13 tr-spellcheck-correctionid-411"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>QtCore.Qt.CopyAction</span>)</font></div><div><font face="monospace, Courier New, Courier, monospace">             <span id="e-$new-1-bodyrich-editor-misspell-412" class="s-rtetext-misspelled tr-spellcheck-wordid-20 tr-spellcheck-correctionid-412" spellindex="412" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-20 tr-spellcheck-correctionid-412"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>e.accept</span>()</font></div><div><font face="monospace, Courier New, Courier, monospace">         <span id="e-$new-1-bodyrich-editor-misspell-413" class="s-rtetext-misspelled tr-spellcheck-wordid-11 tr-spellcheck-correctionid-413" spellindex="413" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-11 tr-spellcheck-correctionid-413"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>else</span>:</font></div><div><font face="monospace, Courier New, Courier, monospace">             <span id="e-$new-1-bodyrich-editor-misspell-414" class="s-rtetext-misspelled tr-spellcheck-wordid-19 tr-spellcheck-correctionid-414" spellindex="414" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-19 tr-spellcheck-correctionid-414"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>e.ignore</span>()</font></div><div><font face="monospace, Courier New, Courier, monospace"><br></font></div><div><font face="monospace, Courier New, Courier, monospace">    <span id="e-$new-1-bodyrich-editor-misspell-415" class="s-rtetext-misspelled tr-spellcheck-wordid-9 tr-spellcheck-correctionid-415" spellindex="415" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-9 tr-spellcheck-correctionid-415"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>def</span> <span id="e-$new-1-bodyrich-editor-misspell-416" class="s-rtetext-misspelled tr-spellcheck-wordid-18 tr-spellcheck-correctionid-416" spellindex="416" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-18 tr-spellcheck-correctionid-416"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>dragMoveEvent</span>(<span id="e-$new-1-bodyrich-editor-misspell-417" class="s-rtetext-misspelled tr-spellcheck-wordid-7 tr-spellcheck-correctionid-417" spellindex="417" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-7 tr-spellcheck-correctionid-417"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>self</span>, <span id="e-$new-1-bodyrich-editor-misspell-418" class="s-rtetext-misspelled tr-spellcheck-wordid-17 tr-spellcheck-correctionid-418" spellindex="418" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-17 tr-spellcheck-correctionid-418"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>event</span>):</font></div><div><font face="monospace, Courier New, Courier, monospace">         if <span id="e-$new-1-bodyrich-editor-misspell-419" class="s-rtetext-misspelled tr-spellcheck-wordid-16 tr-spellcheck-correctionid-419" spellindex="419" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-16 tr-spellcheck-correctionid-419"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>event.mimeData</span>().<span id="e-$new-1-bodyrich-editor-misspell-420" class="s-rtetext-misspelled tr-spellcheck-wordid-15 tr-spellcheck-correctionid-420" spellindex="420" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-15 tr-spellcheck-correctionid-420"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>hasFormat</span>("<span id="e-$new-1-bodyrich-editor-misspell-421" class="s-rtetext-misspelled tr-spellcheck-wordid-1 tr-spellcheck-correctionid-421" spellindex="421" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-1 tr-spellcheck-correctionid-421"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>text</span>/plain"):</font></div><div><font face="monospace, Courier New, Courier, monospace">             <span id="e-$new-1-bodyrich-editor-misspell-422" class="s-rtetext-misspelled tr-spellcheck-wordid-14 tr-spellcheck-correctionid-422" spellindex="422" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-14 tr-spellcheck-correctionid-422"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>event.setDropAction</span>(<span id="e-$new-1-bodyrich-editor-misspell-423" class="s-rtetext-misspelled tr-spellcheck-wordid-13 tr-spellcheck-correctionid-423" spellindex="423" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-13 tr-spellcheck-correctionid-423"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>QtCore.Qt.CopyAction</span>)</font></div><div><font face="monospace, Courier New, Courier, monospace">             <span id="e-$new-1-bodyrich-editor-misspell-424" class="s-rtetext-misspelled tr-spellcheck-wordid-12 tr-spellcheck-correctionid-424" spellindex="424" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-12 tr-spellcheck-correctionid-424"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>event.accept</span>()</font></div><div><font face="monospace, Courier New, Courier, monospace">         <span id="e-$new-1-bodyrich-editor-misspell-425" class="s-rtetext-misspelled tr-spellcheck-wordid-11 tr-spellcheck-correctionid-425" spellindex="425" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-11 tr-spellcheck-correctionid-425"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>else</span>:</font></div><div><font face="monospace, Courier New, Courier, monospace">             <span id="e-$new-1-bodyrich-editor-misspell-426" class="s-rtetext-misspelled tr-spellcheck-wordid-10 tr-spellcheck-correctionid-426" spellindex="426" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-10 tr-spellcheck-correctionid-426"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>event.ignore</span></font></div><div><font face="monospace, Courier New, Courier, monospace"><br></font></div><div><font face="monospace, Courier New, Courier, monospace">    <span id="e-$new-1-bodyrich-editor-misspell-427" class="s-rtetext-misspelled tr-spellcheck-wordid-9 tr-spellcheck-correctionid-427" spellindex="427" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-9 tr-spellcheck-correctionid-427"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>def</span> <span id="e-$new-1-bodyrich-editor-misspell-428" class="s-rtetext-misspelled tr-spellcheck-wordid-8 tr-spellcheck-correctionid-428" spellindex="428" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-8 tr-spellcheck-correctionid-428"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>dropEvent</span>(<span id="e-$new-1-bodyrich-editor-misspell-429" class="s-rtetext-misspelled tr-spellcheck-wordid-7 tr-spellcheck-correctionid-429" spellindex="429" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-7 tr-spellcheck-correctionid-429"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>self</span>, <span id="e-$new-1-bodyrich-editor-misspell-430" class="s-rtetext-misspelled tr-spellcheck-wordid-6 tr-spellcheck-correctionid-430" spellindex="430" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-6 tr-spellcheck-correctionid-430"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>e</span>):</font></div><div><font face="monospace, Courier New, Courier, monospace">         <span id="e-$new-1-bodyrich-editor-misspell-431" class="s-rtetext-misspelled tr-spellcheck-wordid-5 tr-spellcheck-correctionid-431" spellindex="431" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-5 tr-spellcheck-correctionid-431"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>e.acceptProposedAction</span>()</font></div><div><font face="monospace, Courier New, Courier, monospace">         <span id="e-$new-1-bodyrich-editor-misspell-432" class="s-rtetext-misspelled tr-spellcheck-wordid-4 tr-spellcheck-correctionid-432" spellindex="432" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-4 tr-spellcheck-correctionid-432"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>bStream</span> = <span id="e-$new-1-bodyrich-editor-misspell-433" class="s-rtetext-misspelled tr-spellcheck-wordid-3 tr-spellcheck-correctionid-433" spellindex="433" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-3 tr-spellcheck-correctionid-433"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>e.mimeData</span>().<span id="e-$new-1-bodyrich-editor-misspell-434" class="s-rtetext-misspelled tr-spellcheck-wordid-2 tr-spellcheck-correctionid-434" spellindex="434" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-2 tr-spellcheck-correctionid-434"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>retrieveData</span>("<span id="e-$new-1-bodyrich-editor-misspell-435" class="s-rtetext-misspelled tr-spellcheck-wordid-1 tr-spellcheck-correctionid-435" spellindex="435" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-1 tr-spellcheck-correctionid-435"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>text</span>/plain",</font></div><div><font face="monospace, Courier New, Courier, monospace">                                             <span id="e-$new-1-bodyrich-editor-misspell-436" class="s-rtetext-misspelled tr-spellcheck-wordid-41 tr-spellcheck-correctionid-436" spellindex="436" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-41 tr-spellcheck-correctionid-436"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>QtCore.QVariant.ByteArray</span>)</font></div><div><font face="monospace, Courier New, Courier, monospace"><br></font></div><div><font face="monospace, Courier New, Courier, monospace">         <span id="e-$new-1-bodyrich-editor-misspell-437" class="s-rtetext-misspelled tr-spellcheck-wordid-40 tr-spellcheck-correctionid-437" spellindex="437" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-40 tr-spellcheck-correctionid-437"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>self.setModel</span>(<span id="e-$new-1-bodyrich-editor-misspell-438" class="s-rtetext-misspelled tr-spellcheck-wordid-21 tr-spellcheck-correctionid-438" spellindex="438" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-21 tr-spellcheck-correctionid-438"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>QtCore.QString</span>(<span id="e-$new-1-bodyrich-editor-misspell-439" class="s-rtetext-misspelled tr-spellcheck-wordid-39 tr-spellcheck-correctionid-439" spellindex="439" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-39 tr-spellcheck-correctionid-439"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>str</span>(<span id="e-$new-1-bodyrich-editor-misspell-440" class="s-rtetext-misspelled tr-spellcheck-wordid-38 tr-spellcheck-correctionid-440" spellindex="440" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-38 tr-spellcheck-correctionid-440"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>bStream.toByteArray</span>())))</font></div><div><font face="monospace, Courier New, Courier, monospace">    </font></div><div><font face="monospace, Courier New, Courier, monospace">    # <span id="e-$new-1-bodyrich-editor-misspell-441" class="s-rtetext-misspelled tr-spellcheck-wordid-35 tr-spellcheck-correctionid-441" spellindex="441" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-35 tr-spellcheck-correctionid-441"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>The</span> <span id="e-$new-1-bodyrich-editor-misspell-442" class="s-rtetext-misspelled tr-spellcheck-wordid-37 tr-spellcheck-correctionid-442" spellindex="442" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-37 tr-spellcheck-correctionid-442"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>getter</span> for <span id="e-$new-1-bodyrich-editor-misspell-443" class="s-rtetext-misspelled tr-spellcheck-wordid-3 tr-spellcheck-correctionid-443" spellindex="443" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-3 tr-spellcheck-correctionid-443"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>the</span> zoom <span id="e-$new-1-bodyrich-editor-misspell-444" class="s-rtetext-misspelled tr-spellcheck-wordid-34 tr-spellcheck-correctionid-444" spellindex="444" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-34 tr-spellcheck-correctionid-444"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>property</span>.</font></div><div><font face="monospace, Courier New, Courier, monospace">    <span id="e-$new-1-bodyrich-editor-misspell-445" class="s-rtetext-misspelled tr-spellcheck-wordid-20 tr-spellcheck-correctionid-445" spellindex="445" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-20 tr-spellcheck-correctionid-445"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>def</span> <span id="e-$new-1-bodyrich-editor-misspell-446" class="s-rtetext-misspelled tr-spellcheck-wordid-36 tr-spellcheck-correctionid-446" spellindex="446" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-36 tr-spellcheck-correctionid-446"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>getModel</span>(<span id="e-$new-1-bodyrich-editor-misspell-447" class="s-rtetext-misspelled tr-spellcheck-wordid-5 tr-spellcheck-correctionid-447" spellindex="447" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-5 tr-spellcheck-correctionid-447"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>self</span>):</font></div><div><font face="monospace, Courier New, Courier, monospace">        <span id="e-$new-1-bodyrich-editor-misspell-448" class="s-rtetext-misspelled tr-spellcheck-wordid-9 tr-spellcheck-correctionid-448" spellindex="448" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-9 tr-spellcheck-correctionid-448"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>return</span> <span id="e-$new-1-bodyrich-editor-misspell-449" class="s-rtetext-misspelled tr-spellcheck-wordid-5 tr-spellcheck-correctionid-449" spellindex="449" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-5 tr-spellcheck-correctionid-449"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>self</span>.<span id="e-$new-1-bodyrich-editor-misspell-450" class="s-rtetext-misspelled tr-spellcheck-wordid-4 tr-spellcheck-correctionid-450" spellindex="450" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-4 tr-spellcheck-correctionid-450"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>_model</span></font></div><div><font face="monospace, Courier New, Courier, monospace"><br></font></div><div><font face="monospace, Courier New, Courier, monospace">    # <span id="e-$new-1-bodyrich-editor-misspell-451" class="s-rtetext-misspelled tr-spellcheck-wordid-35 tr-spellcheck-correctionid-451" spellindex="451" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-35 tr-spellcheck-correctionid-451"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>The</span> setter for <span id="e-$new-1-bodyrich-editor-misspell-452" class="s-rtetext-misspelled tr-spellcheck-wordid-3 tr-spellcheck-correctionid-452" spellindex="452" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-3 tr-spellcheck-correctionid-452"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>the</span> model <span id="e-$new-1-bodyrich-editor-misspell-453" class="s-rtetext-misspelled tr-spellcheck-wordid-34 tr-spellcheck-correctionid-453" spellindex="453" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-34 tr-spellcheck-correctionid-453"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>property</span>.  <span id="e-$new-1-bodyrich-editor-misspell-454" class="s-rtetext-misspelled tr-spellcheck-wordid-33 tr-spellcheck-correctionid-454" spellindex="454" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-33 tr-spellcheck-correctionid-454"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>We</span> <span id="e-$new-1-bodyrich-editor-misspell-455" class="s-rtetext-misspelled tr-spellcheck-wordid-32 tr-spellcheck-correctionid-455" spellindex="455" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-32 tr-spellcheck-correctionid-455"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>also</span> <span id="e-$new-1-bodyrich-editor-misspell-456" class="s-rtetext-misspelled tr-spellcheck-wordid-31 tr-spellcheck-correctionid-456" spellindex="456" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-31 tr-spellcheck-correctionid-456"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>make</span> <span id="e-$new-1-bodyrich-editor-misspell-457" class="s-rtetext-misspelled tr-spellcheck-wordid-30 tr-spellcheck-correctionid-457" spellindex="457" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-30 tr-spellcheck-correctionid-457"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>define</span> <span id="e-$new-1-bodyrich-editor-misspell-458" class="s-rtetext-misspelled tr-spellcheck-wordid-29 tr-spellcheck-correctionid-458" spellindex="458" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-29 tr-spellcheck-correctionid-458"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>this</span> as a <span id="e-$new-1-bodyrich-editor-misspell-459" class="s-rtetext-misspelled tr-spellcheck-wordid-2 tr-spellcheck-correctionid-459" spellindex="459" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-2 tr-spellcheck-correctionid-459"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>Qt</span> <span id="e-$new-1-bodyrich-editor-misspell-460" class="s-rtetext-misspelled tr-spellcheck-wordid-28 tr-spellcheck-correctionid-460" spellindex="460" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-28 tr-spellcheck-correctionid-460"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>slot</span></font></div><div><font face="monospace, Courier New, Courier, monospace">    # <span id="e-$new-1-bodyrich-editor-misspell-461" class="s-rtetext-misspelled tr-spellcheck-wordid-27 tr-spellcheck-correctionid-461" spellindex="461" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-27 tr-spellcheck-correctionid-461"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>which</span> <span id="e-$new-1-bodyrich-editor-misspell-462" class="s-rtetext-misspelled tr-spellcheck-wordid-26 tr-spellcheck-correctionid-462" spellindex="462" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-26 tr-spellcheck-correctionid-462"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>can</span> <span id="e-$new-1-bodyrich-editor-misspell-463" class="s-rtetext-misspelled tr-spellcheck-wordid-25 tr-spellcheck-correctionid-463" spellindex="463" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-25 tr-spellcheck-correctionid-463"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>be</span> <span id="e-$new-1-bodyrich-editor-misspell-464" class="s-rtetext-misspelled tr-spellcheck-wordid-24 tr-spellcheck-correctionid-464" spellindex="464" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-24 tr-spellcheck-correctionid-464"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>connected</span> <span id="e-$new-1-bodyrich-editor-misspell-465" class="s-rtetext-misspelled tr-spellcheck-wordid-1 tr-spellcheck-correctionid-465" spellindex="465" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-1 tr-spellcheck-correctionid-465"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>to</span> <span id="e-$new-1-bodyrich-editor-misspell-466" class="s-rtetext-misspelled tr-spellcheck-wordid-2 tr-spellcheck-correctionid-466" spellindex="466" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-2 tr-spellcheck-correctionid-466"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>Qt</span> <span id="e-$new-1-bodyrich-editor-misspell-467" class="s-rtetext-misspelled tr-spellcheck-wordid-23 tr-spellcheck-correctionid-467" spellindex="467" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-23 tr-spellcheck-correctionid-467"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>signals</span> in <span id="e-$new-1-bodyrich-editor-misspell-468" class="s-rtetext-misspelled tr-spellcheck-wordid-2 tr-spellcheck-correctionid-468" spellindex="468" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-2 tr-spellcheck-correctionid-468"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>Qt</span> Designer.</font></div><div><font face="monospace, Courier New, Courier, monospace">    @<span id="e-$new-1-bodyrich-editor-misspell-469" class="s-rtetext-misspelled tr-spellcheck-wordid-22 tr-spellcheck-correctionid-469" spellindex="469" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-22 tr-spellcheck-correctionid-469"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>QtCore.pyqtSlot</span>(<span id="e-$new-1-bodyrich-editor-misspell-470" class="s-rtetext-misspelled tr-spellcheck-wordid-21 tr-spellcheck-correctionid-470" spellindex="470" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-21 tr-spellcheck-correctionid-470"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>QtCore.QString</span>)</font></div><div><font face="monospace, Courier New, Courier, monospace">    <span id="e-$new-1-bodyrich-editor-misspell-471" class="s-rtetext-misspelled tr-spellcheck-wordid-20 tr-spellcheck-correctionid-471" spellindex="471" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-20 tr-spellcheck-correctionid-471"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>def</span> <span id="e-$new-1-bodyrich-editor-misspell-472" class="s-rtetext-misspelled tr-spellcheck-wordid-19 tr-spellcheck-correctionid-472" spellindex="472" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-19 tr-spellcheck-correctionid-472"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>setModel</span>(<span id="e-$new-1-bodyrich-editor-misspell-473" class="s-rtetext-misspelled tr-spellcheck-wordid-5 tr-spellcheck-correctionid-473" spellindex="473" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-5 tr-spellcheck-correctionid-473"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>self</span>, model):</font></div><div><font face="monospace, Courier New, Courier, monospace">#        <span id="e-$new-1-bodyrich-editor-misspell-474" class="s-rtetext-misspelled tr-spellcheck-wordid-18 tr-spellcheck-correctionid-474" spellindex="474" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-18 tr-spellcheck-correctionid-474"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>print</span> "<span id="e-$new-1-bodyrich-editor-misspell-475" class="s-rtetext-misspelled tr-spellcheck-wordid-7 tr-spellcheck-correctionid-475" spellindex="475" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-7 tr-spellcheck-correctionid-475"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>new</span> model", model</font></div><div><font face="monospace, Courier New, Courier, monospace"><span class="Apple-tab-span" style="white-space:pre">          </span># Set <span id="e-$new-1-bodyrich-editor-misspell-476" class="s-rtetext-misspelled tr-spellcheck-wordid-17 tr-spellcheck-correctionid-476" spellindex="476" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-17 tr-spellcheck-correctionid-476"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>QLabel</span> <span id="e-$new-1-bodyrich-editor-misspell-477" class="s-rtetext-misspelled tr-spellcheck-wordid-16 tr-spellcheck-correctionid-477" spellindex="477" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-16 tr-spellcheck-correctionid-477"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>text</span></font></div><div><font face="monospace, Courier New, Courier, monospace">        <span id="e-$new-1-bodyrich-editor-misspell-478" class="s-rtetext-misspelled tr-spellcheck-wordid-15 tr-spellcheck-correctionid-478" spellindex="478" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-15 tr-spellcheck-correctionid-478"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>self.setText</span>(model)</font></div><div><span class="Apple-tab-span" style="white-space:pre"><font face="monospace, Courier New, Courier, monospace">         </font></span></div><div><font face="monospace, Courier New, Courier, monospace">        # <span id="e-$new-1-bodyrich-editor-misspell-479" class="s-rtetext-misspelled tr-spellcheck-wordid-14 tr-spellcheck-correctionid-479" spellindex="479" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-14 tr-spellcheck-correctionid-479"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>Don't</span> do <span id="e-$new-1-bodyrich-editor-misspell-480" class="s-rtetext-misspelled tr-spellcheck-wordid-13 tr-spellcheck-correctionid-480" spellindex="480" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-13 tr-spellcheck-correctionid-480"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>anything</span> if <span id="e-$new-1-bodyrich-editor-misspell-481" class="s-rtetext-misspelled tr-spellcheck-wordid-12 tr-spellcheck-correctionid-481" spellindex="481" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-12 tr-spellcheck-correctionid-481"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>nothing</span> <span id="e-$new-1-bodyrich-editor-misspell-482" class="s-rtetext-misspelled tr-spellcheck-wordid-11 tr-spellcheck-correctionid-482" spellindex="482" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-11 tr-spellcheck-correctionid-482"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>has</span> <span id="e-$new-1-bodyrich-editor-misspell-483" class="s-rtetext-misspelled tr-spellcheck-wordid-10 tr-spellcheck-correctionid-483" spellindex="483" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-10 tr-spellcheck-correctionid-483"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>changed</span>.</font></div><div><font face="monospace, Courier New, Courier, monospace">        if <span id="e-$new-1-bodyrich-editor-misspell-484" class="s-rtetext-misspelled tr-spellcheck-wordid-5 tr-spellcheck-correctionid-484" spellindex="484" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-5 tr-spellcheck-correctionid-484"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>self</span>.<span id="e-$new-1-bodyrich-editor-misspell-485" class="s-rtetext-misspelled tr-spellcheck-wordid-4 tr-spellcheck-correctionid-485" spellindex="485" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-4 tr-spellcheck-correctionid-485"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>_model</span> == model:</font></div><div><font face="monospace, Courier New, Courier, monospace">            <span id="e-$new-1-bodyrich-editor-misspell-486" class="s-rtetext-misspelled tr-spellcheck-wordid-9 tr-spellcheck-correctionid-486" spellindex="486" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-9 tr-spellcheck-correctionid-486"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>return</span></font></div><div><font face="monospace, Courier New, Courier, monospace"><br></font></div><div><font face="monospace, Courier New, Courier, monospace">        # <span id="e-$new-1-bodyrich-editor-misspell-487" class="s-rtetext-misspelled tr-spellcheck-wordid-8 tr-spellcheck-correctionid-487" spellindex="487" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-8 tr-spellcheck-correctionid-487"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>Remember</span> <span id="e-$new-1-bodyrich-editor-misspell-488" class="s-rtetext-misspelled tr-spellcheck-wordid-3 tr-spellcheck-correctionid-488" spellindex="488" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-3 tr-spellcheck-correctionid-488"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>the</span> <span id="e-$new-1-bodyrich-editor-misspell-489" class="s-rtetext-misspelled tr-spellcheck-wordid-7 tr-spellcheck-correctionid-489" spellindex="489" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-7 tr-spellcheck-correctionid-489"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>new</span> model <span id="e-$new-1-bodyrich-editor-misspell-490" class="s-rtetext-misspelled tr-spellcheck-wordid-6 tr-spellcheck-correctionid-490" spellindex="490" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-6 tr-spellcheck-correctionid-490"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>level</span>.</font></div><div><font face="monospace, Courier New, Courier, monospace">        <span id="e-$new-1-bodyrich-editor-misspell-491" class="s-rtetext-misspelled tr-spellcheck-wordid-5 tr-spellcheck-correctionid-491" spellindex="491" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-5 tr-spellcheck-correctionid-491"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>self</span>.<span id="e-$new-1-bodyrich-editor-misspell-492" class="s-rtetext-misspelled tr-spellcheck-wordid-4 tr-spellcheck-correctionid-492" spellindex="492" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-4 tr-spellcheck-correctionid-492"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>_model</span> = model</font></div><div><font face="monospace, Courier New, Courier, monospace"><br></font></div><div><font face="monospace, Courier New, Courier, monospace">        # Emit <span id="e-$new-1-bodyrich-editor-misspell-493" class="s-rtetext-misspelled tr-spellcheck-wordid-3 tr-spellcheck-correctionid-493" spellindex="493" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-3 tr-spellcheck-correctionid-493"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>the</span> <span id="e-$new-1-bodyrich-editor-misspell-494" class="s-rtetext-misspelled tr-spellcheck-wordid-2 tr-spellcheck-correctionid-494" spellindex="494" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-2 tr-spellcheck-correctionid-494"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>Qt</span> signal <span id="e-$new-1-bodyrich-editor-misspell-495" class="s-rtetext-misspelled tr-spellcheck-wordid-1 tr-spellcheck-correctionid-495" spellindex="495" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-1 tr-spellcheck-correctionid-495"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>to</span> <span id="e-$new-1-bodyrich-editor-misspell-496" class="s-rtetext-misspelled tr-spellcheck-wordid-50 tr-spellcheck-correctionid-496" spellindex="496" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-50 tr-spellcheck-correctionid-496"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>say</span> <span id="e-$new-1-bodyrich-editor-misspell-497" class="s-rtetext-misspelled tr-spellcheck-wordid-49 tr-spellcheck-correctionid-497" spellindex="497" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-49 tr-spellcheck-correctionid-497"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>that</span> <span id="e-$new-1-bodyrich-editor-misspell-498" class="s-rtetext-misspelled tr-spellcheck-wordid-15 tr-spellcheck-correctionid-498" spellindex="498" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-15 tr-spellcheck-correctionid-498"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>the</span> model <span id="e-$new-1-bodyrich-editor-misspell-499" class="s-rtetext-misspelled tr-spellcheck-wordid-48 tr-spellcheck-correctionid-499" spellindex="499" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-48 tr-spellcheck-correctionid-499"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>level</span> <span id="e-$new-1-bodyrich-editor-misspell-500" class="s-rtetext-misspelled tr-spellcheck-wordid-47 tr-spellcheck-correctionid-500" spellindex="500" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-47 tr-spellcheck-correctionid-500"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>has</span> <span id="e-$new-1-bodyrich-editor-misspell-501" class="s-rtetext-misspelled tr-spellcheck-wordid-46 tr-spellcheck-correctionid-501" spellindex="501" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-46 tr-spellcheck-correctionid-501"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>changed</span>.</font></div><div><font face="monospace, Courier New, Courier, monospace">        <span id="e-$new-1-bodyrich-editor-misspell-502" class="s-rtetext-misspelled tr-spellcheck-wordid-45 tr-spellcheck-correctionid-502" spellindex="502" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-45 tr-spellcheck-correctionid-502"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>self.modelChanged.emit</span>(model)</font></div><div><font face="monospace, Courier New, Courier, monospace"><br></font></div><div><font face="monospace, Courier New, Courier, monospace">    # <span id="e-$new-1-bodyrich-editor-misspell-503" class="s-rtetext-misspelled tr-spellcheck-wordid-44 tr-spellcheck-correctionid-503" spellindex="503" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-44 tr-spellcheck-correctionid-503"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>The</span> <span id="e-$new-1-bodyrich-editor-misspell-504" class="s-rtetext-misspelled tr-spellcheck-wordid-43 tr-spellcheck-correctionid-504" spellindex="504" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-43 tr-spellcheck-correctionid-504"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>resetter</span> for <span id="e-$new-1-bodyrich-editor-misspell-505" class="s-rtetext-misspelled tr-spellcheck-wordid-15 tr-spellcheck-correctionid-505" spellindex="505" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-15 tr-spellcheck-correctionid-505"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>the</span> model <span id="e-$new-1-bodyrich-editor-misspell-506" class="s-rtetext-misspelled tr-spellcheck-wordid-32 tr-spellcheck-correctionid-506" spellindex="506" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-32 tr-spellcheck-correctionid-506"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>property</span>.</font></div><div><font face="monospace, Courier New, Courier, monospace">    <span id="e-$new-1-bodyrich-editor-misspell-507" class="s-rtetext-misspelled tr-spellcheck-wordid-42 tr-spellcheck-correctionid-507" spellindex="507" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-42 tr-spellcheck-correctionid-507"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>def</span> <span id="e-$new-1-bodyrich-editor-misspell-508" class="s-rtetext-misspelled tr-spellcheck-wordid-24 tr-spellcheck-correctionid-508" spellindex="508" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-24 tr-spellcheck-correctionid-508"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>resetModel</span>(<span id="e-$new-1-bodyrich-editor-misspell-509" class="s-rtetext-misspelled tr-spellcheck-wordid-41 tr-spellcheck-correctionid-509" spellindex="509" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-41 tr-spellcheck-correctionid-509"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>self</span>):</font></div><div><font face="monospace, Courier New, Courier, monospace">        <span id="e-$new-1-bodyrich-editor-misspell-510" class="s-rtetext-misspelled tr-spellcheck-wordid-40 tr-spellcheck-correctionid-510" spellindex="510" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-40 tr-spellcheck-correctionid-510"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>self.setModel</span>(<span id="e-$new-1-bodyrich-editor-misspell-511" class="s-rtetext-misspelled tr-spellcheck-wordid-39 tr-spellcheck-correctionid-511" spellindex="511" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-39 tr-spellcheck-correctionid-511"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>None</span>)</font></div><div><font face="monospace, Courier New, Courier, monospace"><br></font></div><div><font face="monospace, Courier New, Courier, monospace">    # <span id="e-$new-1-bodyrich-editor-misspell-512" class="s-rtetext-misspelled tr-spellcheck-wordid-38 tr-spellcheck-correctionid-512" spellindex="512" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-38 tr-spellcheck-correctionid-512"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>Define</span> <span id="e-$new-1-bodyrich-editor-misspell-513" class="s-rtetext-misspelled tr-spellcheck-wordid-15 tr-spellcheck-correctionid-513" spellindex="513" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-15 tr-spellcheck-correctionid-513"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>the</span> model <span id="e-$new-1-bodyrich-editor-misspell-514" class="s-rtetext-misspelled tr-spellcheck-wordid-32 tr-spellcheck-correctionid-514" spellindex="514" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-32 tr-spellcheck-correctionid-514"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>property</span>.  <span id="e-$new-1-bodyrich-editor-misspell-515" class="s-rtetext-misspelled tr-spellcheck-wordid-37 tr-spellcheck-correctionid-515" spellindex="515" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-37 tr-spellcheck-correctionid-515"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>Changing</span> <span id="e-$new-1-bodyrich-editor-misspell-516" class="s-rtetext-misspelled tr-spellcheck-wordid-15 tr-spellcheck-correctionid-516" spellindex="516" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-15 tr-spellcheck-correctionid-516"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>the</span> value <span id="e-$new-1-bodyrich-editor-misspell-517" class="s-rtetext-misspelled tr-spellcheck-wordid-36 tr-spellcheck-correctionid-517" spellindex="517" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-36 tr-spellcheck-correctionid-517"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>of</span> <span id="e-$new-1-bodyrich-editor-misspell-518" class="s-rtetext-misspelled tr-spellcheck-wordid-35 tr-spellcheck-correctionid-518" spellindex="518" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-35 tr-spellcheck-correctionid-518"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>this</span> in <span id="e-$new-1-bodyrich-editor-misspell-519" class="s-rtetext-misspelled tr-spellcheck-wordid-34 tr-spellcheck-correctionid-519" spellindex="519" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-34 tr-spellcheck-correctionid-519"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>Qt</span> <span id="e-$new-1-bodyrich-editor-misspell-520" class="s-rtetext-misspelled tr-spellcheck-wordid-33 tr-spellcheck-correctionid-520" spellindex="520" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-33 tr-spellcheck-correctionid-520"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>Designer's</span></font></div><div><font face="monospace, Courier New, Courier, monospace">    # <span id="e-$new-1-bodyrich-editor-misspell-521" class="s-rtetext-misspelled tr-spellcheck-wordid-32 tr-spellcheck-correctionid-521" spellindex="521" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-32 tr-spellcheck-correctionid-521"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>property</span> <span id="e-$new-1-bodyrich-editor-misspell-522" class="s-rtetext-misspelled tr-spellcheck-wordid-31 tr-spellcheck-correctionid-522" spellindex="522" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-31 tr-spellcheck-correctionid-522"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>editor</span> causes <span id="e-$new-1-bodyrich-editor-misspell-523" class="s-rtetext-misspelled tr-spellcheck-wordid-15 tr-spellcheck-correctionid-523" spellindex="523" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-15 tr-spellcheck-correctionid-523"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>the</span> model <span id="e-$new-1-bodyrich-editor-misspell-524" class="s-rtetext-misspelled tr-spellcheck-wordid-30 tr-spellcheck-correctionid-524" spellindex="524" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-30 tr-spellcheck-correctionid-524"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>to</span> change <span id="e-$new-1-bodyrich-editor-misspell-525" class="s-rtetext-misspelled tr-spellcheck-wordid-29 tr-spellcheck-correctionid-525" spellindex="525" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-29 tr-spellcheck-correctionid-525"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>dynamically</span>.</font></div><div><font face="monospace, Courier New, Courier, monospace">    model = <span id="e-$new-1-bodyrich-editor-misspell-526" class="s-rtetext-misspelled tr-spellcheck-wordid-28 tr-spellcheck-correctionid-526" spellindex="526" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-28 tr-spellcheck-correctionid-526"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>QtCore.pyqtProperty</span>(<span id="e-$new-1-bodyrich-editor-misspell-527" class="s-rtetext-misspelled tr-spellcheck-wordid-27 tr-spellcheck-correctionid-527" spellindex="527" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-27 tr-spellcheck-correctionid-527"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>QtCore.QString</span>, <span id="e-$new-1-bodyrich-editor-misspell-528" class="s-rtetext-misspelled tr-spellcheck-wordid-26 tr-spellcheck-correctionid-528" spellindex="528" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-26 tr-spellcheck-correctionid-528"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>getModel</span>, <span id="e-$new-1-bodyrich-editor-misspell-529" class="s-rtetext-misspelled tr-spellcheck-wordid-25 tr-spellcheck-correctionid-529" spellindex="529" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-25 tr-spellcheck-correctionid-529"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>setModel</span>, <span id="e-$new-1-bodyrich-editor-misspell-530" class="s-rtetext-misspelled tr-spellcheck-wordid-24 tr-spellcheck-correctionid-530" spellindex="530" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-24 tr-spellcheck-correctionid-530"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>resetModel</span>)</font></div><div><font face="monospace, Courier New, Courier, monospace"><br></font></div><div><font face="monospace, Courier New, Courier, monospace"># <span id="e-$new-1-bodyrich-editor-misspell-531" class="s-rtetext-misspelled tr-spellcheck-wordid-23 tr-spellcheck-correctionid-531" spellindex="531" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-23 tr-spellcheck-correctionid-531"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>Display</span> <span id="e-$new-1-bodyrich-editor-misspell-532" class="s-rtetext-misspelled tr-spellcheck-wordid-15 tr-spellcheck-correctionid-532" spellindex="532" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-15 tr-spellcheck-correctionid-532"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>the</span> <span id="e-$new-1-bodyrich-editor-misspell-533" class="s-rtetext-misspelled tr-spellcheck-wordid-22 tr-spellcheck-correctionid-533" spellindex="533" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-22 tr-spellcheck-correctionid-533"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>custom</span> <span id="e-$new-1-bodyrich-editor-misspell-534" class="s-rtetext-misspelled tr-spellcheck-wordid-21 tr-spellcheck-correctionid-534" spellindex="534" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-21 tr-spellcheck-correctionid-534"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>widget</span> if <span id="e-$new-1-bodyrich-editor-misspell-535" class="s-rtetext-misspelled tr-spellcheck-wordid-15 tr-spellcheck-correctionid-535" spellindex="535" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-15 tr-spellcheck-correctionid-535"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>the</span> script <span id="e-$new-1-bodyrich-editor-misspell-536" class="s-rtetext-misspelled tr-spellcheck-wordid-20 tr-spellcheck-correctionid-536" spellindex="536" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-20 tr-spellcheck-correctionid-536"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>is</span> <span id="e-$new-1-bodyrich-editor-misspell-537" class="s-rtetext-misspelled tr-spellcheck-wordid-19 tr-spellcheck-correctionid-537" spellindex="537" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-19 tr-spellcheck-correctionid-537"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>being</span> <span id="e-$new-1-bodyrich-editor-misspell-538" class="s-rtetext-misspelled tr-spellcheck-wordid-18 tr-spellcheck-correctionid-538" spellindex="538" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-18 tr-spellcheck-correctionid-538"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>run</span> <span id="e-$new-1-bodyrich-editor-misspell-539" class="s-rtetext-misspelled tr-spellcheck-wordid-17 tr-spellcheck-correctionid-539" spellindex="539" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-17 tr-spellcheck-correctionid-539"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>directly</span> <span id="e-$new-1-bodyrich-editor-misspell-540" class="s-rtetext-misspelled tr-spellcheck-wordid-16 tr-spellcheck-correctionid-540" spellindex="540" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-16 tr-spellcheck-correctionid-540"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>from</span> <span id="e-$new-1-bodyrich-editor-misspell-541" class="s-rtetext-misspelled tr-spellcheck-wordid-15 tr-spellcheck-correctionid-541" spellindex="541" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-15 tr-spellcheck-correctionid-541"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>the</span></font></div><div><font face="monospace, Courier New, Courier, monospace"># <span id="e-$new-1-bodyrich-editor-misspell-542" class="s-rtetext-misspelled tr-spellcheck-wordid-14 tr-spellcheck-correctionid-542" spellindex="542" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-14 tr-spellcheck-correctionid-542"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>command</span> <span id="e-$new-1-bodyrich-editor-misspell-543" class="s-rtetext-misspelled tr-spellcheck-wordid-13 tr-spellcheck-correctionid-543" spellindex="543" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-13 tr-spellcheck-correctionid-543"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>line</span>.</font></div><div><font face="monospace, Courier New, Courier, monospace">if <span id="e-$new-1-bodyrich-editor-misspell-544" class="s-rtetext-misspelled tr-spellcheck-wordid-12 tr-spellcheck-correctionid-544" spellindex="544" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-12 tr-spellcheck-correctionid-544"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>__name</span>__ == "<span id="e-$new-1-bodyrich-editor-misspell-545" class="s-rtetext-misspelled tr-spellcheck-wordid-11 tr-spellcheck-correctionid-545" spellindex="545" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-11 tr-spellcheck-correctionid-545"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>__main</span>__":</font></div><div><font face="monospace, Courier New, Courier, monospace"><br></font></div><div><font face="monospace, Courier New, Courier, monospace">    <span id="e-$new-1-bodyrich-editor-misspell-546" class="s-rtetext-misspelled tr-spellcheck-wordid-10 tr-spellcheck-correctionid-546" spellindex="546" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-10 tr-spellcheck-correctionid-546"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>import</span> <span id="e-$new-1-bodyrich-editor-misspell-547" class="s-rtetext-misspelled tr-spellcheck-wordid-9 tr-spellcheck-correctionid-547" spellindex="547" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-9 tr-spellcheck-correctionid-547"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>sys</span></font></div><div><font face="monospace, Courier New, Courier, monospace"><br></font></div><div><font face="monospace, Courier New, Courier, monospace">    <span id="e-$new-1-bodyrich-editor-misspell-548" class="s-rtetext-misspelled tr-spellcheck-wordid-8 tr-spellcheck-correctionid-548" spellindex="548" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-8 tr-spellcheck-correctionid-548"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>app</span> = <span id="e-$new-1-bodyrich-editor-misspell-549" class="s-rtetext-misspelled tr-spellcheck-wordid-7 tr-spellcheck-correctionid-549" spellindex="549" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-7 tr-spellcheck-correctionid-549"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>QtGui.QApplication</span>(<span id="e-$new-1-bodyrich-editor-misspell-550" class="s-rtetext-misspelled tr-spellcheck-wordid-6 tr-spellcheck-correctionid-550" spellindex="550" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-6 tr-spellcheck-correctionid-550"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>sys.argv</span>)</font></div><div><font face="monospace, Courier New, Courier, monospace"><br></font></div><div><font face="monospace, Courier New, Courier, monospace">    <span id="e-$new-1-bodyrich-editor-misspell-551" class="s-rtetext-misspelled tr-spellcheck-wordid-5 tr-spellcheck-correctionid-551" spellindex="551" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-5 tr-spellcheck-correctionid-551"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>demo</span> = <span id="e-$new-1-bodyrich-editor-misspell-552" class="s-rtetext-misspelled tr-spellcheck-wordid-4 tr-spellcheck-correctionid-552" spellindex="552" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-4 tr-spellcheck-correctionid-552"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>WidgetLabel</span>()</font></div><div><font face="monospace, Courier New, Courier, monospace">    <span id="e-$new-1-bodyrich-editor-misspell-553" class="s-rtetext-misspelled tr-spellcheck-wordid-3 tr-spellcheck-correctionid-553" spellindex="553" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-3 tr-spellcheck-correctionid-553"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>demo.show</span>()</font></div><div><font face="monospace, Courier New, Courier, monospace"><br></font></div><div><font face="monospace, Courier New, Courier, monospace">    <span id="e-$new-1-bodyrich-editor-misspell-554" class="s-rtetext-misspelled tr-spellcheck-wordid-2 tr-spellcheck-correctionid-554" spellindex="554" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-2 tr-spellcheck-correctionid-554"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>sys.exit</span>(<span id="e-$new-1-bodyrich-editor-misspell-555" class="s-rtetext-misspelled tr-spellcheck-wordid-1 tr-spellcheck-correctionid-555" spellindex="555" transient="element" style="background-image: url(https://imail.akka.eu/iNotes/Forms9.nsf/squiggle.gif?OpenFileResource&MX&TS=20140122T145817,12Z);"><span transient="contents" class="tr-spellcheck-wordid-1 tr-spellcheck-correctionid-555"><img class="s-nodisplay" style="width:0px;height:0px;" border="none"></span>app.exec</span>_())</font></div><div><font face="monospace, Courier New, Courier, monospace"><br></font></div><div><span class="Apple-tab-span" style="white-space: pre;"><font face="monospace, Courier New, Courier, monospace"> </font></span></div><div>_______________________________________<br><br><i><small><br>L'intégrité de ce message n'étant pas assurée sur internet, AKKA TECHNOLOGIES et ses filiales ne peuvent être tenues responsables de son contenu. Ce message et les éventuels fichiers attachés contiennent des informations confidentielles. Au cas où il ne vous serait pas destiné, nous vous remercions de bien vouloir le supprimer et en aviser l'expéditeur. Toute utilisation de ce message non conforme à sa destination, toute diffusion ou toute publication, totale ou partielle, est interdite, sauf autorisation expresse. <br><br><br><br>This message and the files that may be attached to it contain confidential information. AKKA TECHNOLOGIES or its subsidiaries may not be held responsible for their contents, whose accuracy and completeness cannot be guaranteed over the internet. If the message is not addressed to you, kindly delete it and notify the sender. Any use of this message not in accordance with its purpose, any dissemination or disclosure, either whole or partial, is prohibited except formal approval.<br><br></small></i><br>________________________________________<br></div></font>