|
| def | __init__ (self, parent, value, num_cols) |
| |
| def | get_value (self) |
| |
| def | OnCopy (self, event) |
| |
| def | OnCut (self, event) |
| |
| def | OnDelete (self, event) |
| |
| def | OnDeleteCells (self, event) |
| |
| def | OnEditorShown (self, event) |
| |
| def | OnInsertCells (self, event) |
| |
| def | OnPaste (self, event) |
| |
| def | OnSelectAll (self, event) |
| |
| def | OnUndo (self, event) |
| |
| def | resize_columns (self, width) |
| |
| def | set_number_of_columns (self, columns) |
| |
| def | __init__ (self, parent, num_rows, num_cols, popup_creator=None) |
| |
| def | copy (self) |
| |
| def | cut (self) |
| |
| def | delete (self) |
| |
| def | get_cell_edit_control (self) |
| |
| def | get_selected_content (self) |
| |
| def | get_single_selection_content (self) |
| |
| def | has_focus (self) |
| |
| def | OnCellRightClick (self, event) |
| |
| def | OnRangeSelect (self, event) |
| |
| def | OnSelectCell (self, event) |
| |
| def | paste (self) |
| |
| def | register_context_menu_hook (self, callable) |
| |
| def | select (self, row, column) |
| |
| def | undo (self) |
| |
| def | unregister_context_menu_hook (self, callable) |
| |
| def | write_cell (self, row, col, value, update_history=True) |
| |
Definition at line 243 of file fieldeditors.py.
◆ __init__()
| def robotide.editor.fieldeditors._EditorGrid.__init__ |
( |
|
self, |
|
|
|
parent, |
|
|
|
value, |
|
|
|
num_cols |
|
) |
| |
◆ _bind_actions()
| def robotide.editor.fieldeditors._EditorGrid._bind_actions |
( |
|
self | ) |
|
|
private |
◆ _colorize()
| def robotide.editor.fieldeditors._EditorGrid._colorize |
( |
|
self | ) |
|
|
private |
for row in range(self.NumberRows):
for col in range(self.NumberCols):
self.SetCellBackgroundColour(row, col, Colour(200, 222, 40))
self.SetCellTextColour(row, col, Colour(7, 0, 70))
self.Refresh(True)
Definition at line 299 of file fieldeditors.py.
◆ _delete_cells_from_multiple_rows()
| def robotide.editor.fieldeditors._EditorGrid._delete_cells_from_multiple_rows |
( |
|
self, |
|
|
|
event |
|
) |
| |
|
private |
◆ _get_bind_keys()
| def robotide.editor.fieldeditors._EditorGrid._get_bind_keys |
( |
|
self | ) |
|
|
private |
◆ _insert_cells_to_multiple_rows()
| def robotide.editor.fieldeditors._EditorGrid._insert_cells_to_multiple_rows |
( |
|
self, |
|
|
|
event |
|
) |
| |
|
private |
◆ _insert_or_delete_cells_on_single_row()
| def robotide.editor.fieldeditors._EditorGrid._insert_or_delete_cells_on_single_row |
( |
|
self, |
|
|
|
action, |
|
|
|
event |
|
) |
| |
|
private |
◆ _set_cols()
| def robotide.editor.fieldeditors._EditorGrid._set_cols |
( |
|
self, |
|
|
|
new_cols |
|
) |
| |
|
private |
◆ _set_default_sizes()
| def robotide.editor.fieldeditors._EditorGrid._set_default_sizes |
( |
|
self | ) |
|
|
private |
◆ _write_content()
| def robotide.editor.fieldeditors._EditorGrid._write_content |
( |
|
self, |
|
|
|
value |
|
) |
| |
|
private |
◆ get_value()
| def robotide.editor.fieldeditors._EditorGrid.get_value |
( |
|
self | ) |
|
◆ OnCopy()
| def robotide.editor.fieldeditors._EditorGrid.OnCopy |
( |
|
self, |
|
|
|
event |
|
) |
| |
◆ OnCut()
| def robotide.editor.fieldeditors._EditorGrid.OnCut |
( |
|
self, |
|
|
|
event |
|
) |
| |
◆ OnDelete()
| def robotide.editor.fieldeditors._EditorGrid.OnDelete |
( |
|
self, |
|
|
|
event |
|
) |
| |
◆ OnDeleteCells()
| def robotide.editor.fieldeditors._EditorGrid.OnDeleteCells |
( |
|
self, |
|
|
|
event |
|
) |
| |
◆ OnEditorShown()
| def robotide.editor.fieldeditors._EditorGrid.OnEditorShown |
( |
|
self, |
|
|
|
event |
|
) |
| |
◆ OnInsertCells()
| def robotide.editor.fieldeditors._EditorGrid.OnInsertCells |
( |
|
self, |
|
|
|
event |
|
) |
| |
◆ OnPaste()
| def robotide.editor.fieldeditors._EditorGrid.OnPaste |
( |
|
self, |
|
|
|
event |
|
) |
| |
◆ OnSelectAll()
| def robotide.editor.fieldeditors._EditorGrid.OnSelectAll |
( |
|
self, |
|
|
|
event |
|
) |
| |
◆ OnUndo()
| def robotide.editor.fieldeditors._EditorGrid.OnUndo |
( |
|
self, |
|
|
|
event |
|
) |
| |
◆ resize_columns()
| def robotide.editor.fieldeditors._EditorGrid.resize_columns |
( |
|
self, |
|
|
|
width |
|
) |
| |
◆ set_number_of_columns()
| def robotide.editor.fieldeditors._EditorGrid.set_number_of_columns |
( |
|
self, |
|
|
|
columns |
|
) |
| |
The documentation for this class was generated from the following file: