Differences between revisions 1 and 3 (spanning 2 versions)
Revision 1 as of 2009-08-27 18:33:15
Size: 932
Editor: RossColeman
Comment:
Revision 3 as of 2009-08-27 18:43:11
Size: 976
Editor: RossColeman
Comment:
Deletions are marked like this. Additions are marked like this.
Line 2: Line 2:
Line 3: Line 4:
{{{#!python
Line 8: Line 10:
}}}
Line 9: Line 12:
class EMBoxerInspectorModule(EMQtWidgetModule): {{{class EMBoxerInspectorModule(EMQtWidgetModule):
Line 12: Line 15:
""" """}}}
Line 15: Line 18:
EMBoxerModule.__init_main_2d_window() {{{EMBoxerModule.__init_main_2d_window()
Line 19: Line 22:
""" """}}}
Line 21: Line 24:
EMBoxerModule.__init_thumbs_window() {{{EMBoxerModule.__init_thumbs_window()
Line 25: Line 28:
""" """}}}
Line 27: Line 30:
EMBoxerModule.__init_inspector() {{{EMBoxerModule.__init_inspector()
Line 31: Line 34:
""" """}}}

EMBoxerInspector

   1 class EMBoxerInspector(QtGui.QWidget):
   2 """
   3 This is the widget that provides options for how particles are
   4 selected, what windows are displayed, and what output is generated.
   5 """

EMBoxerInspectorModule

{{{class EMBoxerInspectorModule(EMQtWidgetModule): """ This is a EMQTWidgetModule that has an EMBoxerInspector object. """}}}

EMBoxerModule

__init_main_2d_window()

{{{EMBoxerModule.init_main_2d_window() """ This creates the window that shows an EM image which the user clicks on to select particles. """}}}

__init_thumbs_window()

{{{EMBoxerModule.init_thumbs_window() """ This creates the window that allows a user to switch between different EM images. """}}}

__init_inspector()

{{{EMBoxerModule.init_inspector() """ This creates the EMBoxerInspector instance which provides most most of the user options for viewing, selecting, and outputting. """}}}

Eman2PythonDoc/emboxerbase (last edited 2009-08-27 19:24:50 by RossColeman)