Differences between revisions 1 and 4 (spanning 3 versions)
Revision 1 as of 2009-08-27 18:33:15
Size: 932
Editor: RossColeman
Comment:
Revision 4 as of 2009-08-27 18:44:08
Size: 1024
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:
{{{#!python
Line 13: Line 17:
}}}
Line 15: Line 20:
{{{#!python
Line 20: Line 26:
}}}
Line 21: Line 28:
{{{#!python
Line 26: Line 34:
}}}
Line 27: Line 36:
{{{#!python
Line 32: Line 42:
}}}

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

   1 class EMBoxerInspectorModule(EMQtWidgetModule):
   2 """
   3 This is a EMQTWidgetModule that has an EMBoxerInspector object.
   4 """

EMBoxerModule

__init_main_2d_window()

   1 EMBoxerModule.__init_main_2d_window()
   2 """
   3 This creates the window that shows an EM image which the user clicks
   4 on to select particles.
   5 """

__init_thumbs_window()

   1 EMBoxerModule.__init_thumbs_window()
   2 """
   3 This creates the window that allows a user to switch between
   4 different EM images.
   5 """

__init_inspector()

   1 EMBoxerModule.__init_inspector()
   2 """
   3 This creates the EMBoxerInspector instance which provides most most
   4 of the user options for viewing, selecting, and outputting.
   5 """

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