Changeset 5149 for trunk/GSASIIctrlGUI.py
- Timestamp:
- Jan 19, 2022 9:52:51 PM (7 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIctrlGUI.py
r5051 r5149 13 13 14 14 A library of GUI controls for reuse throughout GSAS-II, as indexed below 15 16 .. tabularcolumns:: |l|p{4in}| 15 17 16 18 ================================ ================================================================= … … 61 63 :class:`ScrolledMultiEditor` wx.Dialog for editing many dict- or list-contained items. 62 64 with validation. Results are placed in dict or list. 63 :class:`SGMagSpinBox` 65 :class:`SGMagSpinBox` Special version of MessageBox that displays magnetic spin text 64 66 :class:`SGMessageBox` Special version of MessageBox that displays space group & 65 67 super space group text in two blocks … … 104 106 ================================ ================================================================= 105 107 106 Other miscellaneous routines that may be of use: 108 Other miscellaneous non-GUI routines that may be of use for GUI-related actions: 109 110 .. tabularcolumns:: |l|p{4in}| 107 111 108 112 ================================ ================================================================= … … 6777 6781 #['ExampleDir', 'ExamplePage.html', 'Example Tutorial Title', '''Example descriptive text'''], 6778 6782 ) 6779 '''A catalog of GSAS-II tutorials with headings. This is the master list of GSAS-II tutorials and must be updated when tutorials are 6780 added. Each item has either one or three items. 6781 Titles are single item in a list or tuple. Tutorials have four items: (a) the name of the directory, 6782 (b) the name of the web page, (c) a title for the tutorial and (d) a short text description (optional). 6783 Tutorials that depend on a previous tutorial being completed should have the title for 6784 the tutorial indented by five spaces. 6785 6786 Note that :data:`tutorialCatalog` is generated from this tuple. 6787 Also see :mod:`makeTutorial` which is used to read this and create a web page. 6788 ''' 6789 6790 #A catalog of GSAS-II tutorials generated from the table in :data:`tutorialIndex` 6783 6784 # A catalog of GSAS-II tutorials with headings. This is the master list of GSAS-II tutorials and 6785 # must be updated when tutorials are added. Each item has either one or three items. 6786 # Titles are single item in a list or tuple. Tutorials have four items: 6787 # (a) the name of the directory, 6788 # (b) the name of the web page, 6789 # (c) a title for the tutorial and 6790 # (d) a short text description (optional). 6791 # Tutorials that depend on a previous tutorial being completed should have the title for 6792 # the tutorial indented by five spaces. 6793 # 6794 # Note that :data:`tutorialCatalog` is generated from this tuple. Also see 6795 # :mod:`makeTutorial` which is used to read this and create a web page. 6796 6791 6797 tutorialCatalog = [l for l in tutorialIndex if len(l) >= 3] 6798 # A catalog of GSAS-II tutorials generated from the table in :data:`tutorialIndex` 6792 6799 6793 6800 class OpenTutorial(wx.Dialog):
Note: See TracChangeset
for help on using the changeset viewer.