- Timestamp:
- Jul 12, 2015 7:53:51 PM (9 years ago)
- Branches:
- master, ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
- Children:
- 9df6a03
- Parents:
- a7aa5c7
- Location:
- src/sas/guiframe
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/guiframe/data_processor.py
ra7aa5c7 ra12c0a6 9 9 10 10 The organization of the classes goes as: 11 # ------------------------------------------------------------ 12 # | -------------------------------------------------------- | 13 # | | ---------------------------------------------------- | | 14 # | | | ------------------------------------------------ | | | 15 # | | | | -------------------------------------------- | | | | 16 # | | | | | | | | 17 # | | | | | | | | 18 # | | | | GridPage Class = the actual grid | | | | 19 # | | | | GridCellEditor: overides class of same | | | | 20 # | | | | name in the wx.CSheet module | | | | 21 # | | | | BatchCell: class defines a cell within | | | | 22 # | | | | within the grid | | | | 23 # | | | | | | | | 24 # | | | | | | | | 25 # | | | ------------------------------------------------- | | | 26 # | | | Notebook class: contains all the GridPages | | | 27 # | | ----- ---------------------------------| | | 28 # | | | Page 1 | | | 29 # | | --------------- | | 30 # | | | | 31 # | | ---------------------------------------------- | | 32 # | | | | 33 # | | Plotting area = a standard gridsizer | | 34 # | | layout managed by the GridPanel class directly | | 35 # | | | | 36 # | | ---------------------------------------------- | | 37 # | | | | 38 # | | GridPanel Class(SPanel(ScrolledPanel) | | 39 # | | contains the GridPage and the 'plotting area' | | 40 # | | below it | | 41 # | --------------------------------------------------------- | 42 # | | 43 # | GridFrame class(wx.Frame) | 44 # ------------------------------------------------------------- 11 .. image:: media/BatchGridClassLayout.png 12 :align: center 45 13 46 14 """ … … 87 55 Return a dictionary of column label and index or row selected 88 56 89 @param sentence: String to parse90 @param list: list of columns label57 :param sentence: String to parse 58 :param list: list of columns label 91 59 92 60 """ … … 182 150 as is from sheet.CCellEditor.PaintBackground 183 151 184 @param dc: the wxDC object for the paint152 :param dc: the wxDC object for the paint 185 153 ------- 186 154 Draws the part of the cell not occupied by the edit control. The … … 200 168 Commit editing the current cell. Returns True if the value has changed. 201 169 202 @param previous: previous value in the cell170 :param previous: previous value in the cell 203 171 204 172 """ … … 696 664 Add data to the grid 697 665 698 @param data_inputs: data to use from the context menu of the grid699 @param data_ouputs: default columns deplayed666 :param data_inputs: data to use from the context menu of the grid 667 :param data_ouputs: default columns deplayed 700 668 701 669 """ … … 1029 997 cells that can be used as data for one axis of a plot. 1030 998 1031 @param cell_list: list of tuple999 :param cell_list: list of tuple 1032 1000 1033 1001 """ … … 1487 1455 running "file:///...." 1488 1456 1489 @param evt: Triggers on clicking the help button1457 :param evt: Triggers on clicking the help button 1490 1458 1491 1459 """ … … 1632 1600 cells. 1633 1601 1634 @param cell_list: list of tuple1602 :param cell_list: list of tuple 1635 1603 1636 1604 """ … … 1983 1951 Initialize dialog 1984 1952 1985 @param parent: Window instantiating this dialog1986 @param result: result to display in a grid or export to an external1953 :param parent: Window instantiating this dialog 1954 :param result: result to display in a grid or export to an external 1987 1955 application. 1988 1956 -
src/sas/guiframe/documentation_window.py
r7a508b6 ra12c0a6 44 44 45 45 :param path: path to html file beginning AFTER /doc/ and ending in the 46 file.html 47 :param url_instructions: anchor string or other query e.g. '#MyAnchor 48 :param title - text to place in the title bar of the help panel 46 file.html. 47 48 :param url_instructions: anchor string or other query e.g. '#MyAnchor' 49 :param title: text to place in the title bar of the help panel 49 50 """ 50 51 def __init__(self, parent, dummy_id, path, url_instruction, title, size=(850, 540)):
Note: See TracChangeset
for help on using the changeset viewer.