Differences between revisions 3 and 4
Revision 3 as of 2009-08-27 18:43:11
Size: 976
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 12: Line 12:
{{{class EMBoxerInspectorModule(EMQtWidgetModule): {{{#!python
class EMBoxerInspectorModule(EMQtWidgetModule):
Line 15: Line 16:
"""}}} """
}}}
Line 18: Line 20:
{{{EMBoxerModule.__init_main_2d_window() {{{#!python
EMBoxerModule.__init_main_2d_window()
Line 22: Line 25:
"""}}} """
}}}
Line 24: Line 28:
{{{EMBoxerModule.__init_thumbs_window() {{{#!python
EMBoxerModule.__init_thumbs_window()
Line 28: Line 33:
"""}}} """
}}}
Line 30: Line 36:
{{{EMBoxerModule.__init_inspector() {{{#!python
EMBoxerModule.__init_inspector()
Line 34: Line 41:
"""}}} """
}}}

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)