repo
stringlengths
7
55
path
stringlengths
4
127
func_name
stringlengths
1
88
original_string
stringlengths
75
19.8k
language
stringclasses
1 value
code
stringlengths
75
19.8k
code_tokens
list
docstring
stringlengths
3
17.3k
docstring_tokens
list
sha
stringlengths
40
40
url
stringlengths
87
242
partition
stringclasses
1 value
manns/pyspread
pyspread/src/gui/_main_window.py
MainWindowEventHandlers.OnNew
def OnNew(self, event): """New grid event handler""" # If changes have taken place save of old grid if undo.stack().haschanged(): save_choice = self.interfaces.get_save_request_from_user() if save_choice is None: # Cancelled close operation ...
python
def OnNew(self, event): """New grid event handler""" # If changes have taken place save of old grid if undo.stack().haschanged(): save_choice = self.interfaces.get_save_request_from_user() if save_choice is None: # Cancelled close operation ...
[ "def", "OnNew", "(", "self", ",", "event", ")", ":", "if", "undo", ".", "stack", "(", ")", ".", "haschanged", "(", ")", ":", "save_choice", "=", "self", ".", "interfaces", ".", "get_save_request_from_user", "(", ")", "if", "save_choice", "is", "None", ...
New grid event handler
[ "New", "grid", "event", "handler" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/gui/_main_window.py#L757-L830
train
manns/pyspread
pyspread/src/gui/_main_window.py
MainWindowEventHandlers.OnOpen
def OnOpen(self, event): """File open event handler""" # If changes have taken place save of old grid if undo.stack().haschanged(): save_choice = self.interfaces.get_save_request_from_user() if save_choice is None: # Cancelled close operation ...
python
def OnOpen(self, event): """File open event handler""" # If changes have taken place save of old grid if undo.stack().haschanged(): save_choice = self.interfaces.get_save_request_from_user() if save_choice is None: # Cancelled close operation ...
[ "def", "OnOpen", "(", "self", ",", "event", ")", ":", "if", "undo", ".", "stack", "(", ")", ".", "haschanged", "(", ")", ":", "save_choice", "=", "self", ".", "interfaces", ".", "get_save_request_from_user", "(", ")", "if", "save_choice", "is", "None", ...
File open event handler
[ "File", "open", "event", "handler" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/gui/_main_window.py#L832-L905
train
manns/pyspread
pyspread/src/gui/_main_window.py
MainWindowEventHandlers.OnSave
def OnSave(self, event): """File save event handler""" try: filetype = event.attr["filetype"] except (KeyError, AttributeError): filetype = None filepath = self.main_window.filepath if filepath is None: filetype = config["default_save_filety...
python
def OnSave(self, event): """File save event handler""" try: filetype = event.attr["filetype"] except (KeyError, AttributeError): filetype = None filepath = self.main_window.filepath if filepath is None: filetype = config["default_save_filety...
[ "def", "OnSave", "(", "self", ",", "event", ")", ":", "try", ":", "filetype", "=", "event", ".", "attr", "[", "\"filetype\"", "]", "except", "(", "KeyError", ",", "AttributeError", ")", ":", "filetype", "=", "None", "filepath", "=", "self", ".", "main_...
File save event handler
[ "File", "save", "event", "handler" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/gui/_main_window.py#L908-L954
train
manns/pyspread
pyspread/src/gui/_main_window.py
MainWindowEventHandlers.OnSaveAs
def OnSaveAs(self, event): """File save as event handler""" # Get filepath from user f2w = get_filetypes2wildcards(["pys", "pysu", "xls", "all"]) filetypes = f2w.keys() wildcards = f2w.values() wildcard = "|".join(wildcards) message = _("Choose filename for sa...
python
def OnSaveAs(self, event): """File save as event handler""" # Get filepath from user f2w = get_filetypes2wildcards(["pys", "pysu", "xls", "all"]) filetypes = f2w.keys() wildcards = f2w.values() wildcard = "|".join(wildcards) message = _("Choose filename for sa...
[ "def", "OnSaveAs", "(", "self", ",", "event", ")", ":", "f2w", "=", "get_filetypes2wildcards", "(", "[", "\"pys\"", ",", "\"pysu\"", ",", "\"xls\"", ",", "\"all\"", "]", ")", "filetypes", "=", "f2w", ".", "keys", "(", ")", "wildcards", "=", "f2w", ".",...
File save as event handler
[ "File", "save", "as", "event", "handler" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/gui/_main_window.py#L956-L1025
train
manns/pyspread
pyspread/src/gui/_main_window.py
MainWindowEventHandlers.OnImport
def OnImport(self, event): """File import event handler""" # Get filepath from user wildcards = get_filetypes2wildcards(["csv", "txt"]).values() wildcard = "|".join(wildcards) message = _("Choose file to import.") style = wx.OPEN filepath, filterindex = \ ...
python
def OnImport(self, event): """File import event handler""" # Get filepath from user wildcards = get_filetypes2wildcards(["csv", "txt"]).values() wildcard = "|".join(wildcards) message = _("Choose file to import.") style = wx.OPEN filepath, filterindex = \ ...
[ "def", "OnImport", "(", "self", ",", "event", ")", ":", "wildcards", "=", "get_filetypes2wildcards", "(", "[", "\"csv\"", ",", "\"txt\"", "]", ")", ".", "values", "(", ")", "wildcard", "=", "\"|\"", ".", "join", "(", "wildcards", ")", "message", "=", "...
File import event handler
[ "File", "import", "event", "handler" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/gui/_main_window.py#L1027-L1057
train
manns/pyspread
pyspread/src/gui/_main_window.py
MainWindowEventHandlers.OnExport
def OnExport(self, event): """File export event handler Currently, only CSV export is supported """ code_array = self.main_window.grid.code_array tab = self.main_window.grid.current_table selection = self.main_window.grid.selection # Check if no selection is ...
python
def OnExport(self, event): """File export event handler Currently, only CSV export is supported """ code_array = self.main_window.grid.code_array tab = self.main_window.grid.current_table selection = self.main_window.grid.selection # Check if no selection is ...
[ "def", "OnExport", "(", "self", ",", "event", ")", ":", "code_array", "=", "self", ".", "main_window", ".", "grid", ".", "code_array", "tab", "=", "self", ".", "main_window", ".", "grid", ".", "current_table", "selection", "=", "self", ".", "main_window", ...
File export event handler Currently, only CSV export is supported
[ "File", "export", "event", "handler" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/gui/_main_window.py#L1059-L1143
train
manns/pyspread
pyspread/src/gui/_main_window.py
MainWindowEventHandlers.OnExportPDF
def OnExportPDF(self, event): """Export PDF event handler""" wildcards = get_filetypes2wildcards(["pdf"]).values() if not wildcards: return wildcard = "|".join(wildcards) # Get filepath from user message = _("Choose file path for PDF export.") sty...
python
def OnExportPDF(self, event): """Export PDF event handler""" wildcards = get_filetypes2wildcards(["pdf"]).values() if not wildcards: return wildcard = "|".join(wildcards) # Get filepath from user message = _("Choose file path for PDF export.") sty...
[ "def", "OnExportPDF", "(", "self", ",", "event", ")", ":", "wildcards", "=", "get_filetypes2wildcards", "(", "[", "\"pdf\"", "]", ")", ".", "values", "(", ")", "if", "not", "wildcards", ":", "return", "wildcard", "=", "\"|\"", ".", "join", "(", "wildcard...
Export PDF event handler
[ "Export", "PDF", "event", "handler" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/gui/_main_window.py#L1145-L1168
train
manns/pyspread
pyspread/src/gui/_main_window.py
MainWindowEventHandlers.OnApprove
def OnApprove(self, event): """File approve event handler""" if not self.main_window.safe_mode: return msg = _(u"You are going to approve and trust a file that\n" u"you have not created yourself.\n" u"After proceeding, the file is executed.\n \n" ...
python
def OnApprove(self, event): """File approve event handler""" if not self.main_window.safe_mode: return msg = _(u"You are going to approve and trust a file that\n" u"you have not created yourself.\n" u"After proceeding, the file is executed.\n \n" ...
[ "def", "OnApprove", "(", "self", ",", "event", ")", ":", "if", "not", "self", ".", "main_window", ".", "safe_mode", ":", "return", "msg", "=", "_", "(", "u\"You are going to approve and trust a file that\\n\"", "u\"you have not created yourself.\\n\"", "u\"After proceed...
File approve event handler
[ "File", "approve", "event", "handler" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/gui/_main_window.py#L1170-L1193
train
manns/pyspread
pyspread/src/gui/_main_window.py
MainWindowEventHandlers.OnClearGlobals
def OnClearGlobals(self, event): """Clear globals event handler""" msg = _("Deleting globals and reloading modules cannot be undone." " Proceed?") short_msg = _("Really delete globals and modules?") choice = self.main_window.interfaces.get_warning_choice(msg, short_msg)...
python
def OnClearGlobals(self, event): """Clear globals event handler""" msg = _("Deleting globals and reloading modules cannot be undone." " Proceed?") short_msg = _("Really delete globals and modules?") choice = self.main_window.interfaces.get_warning_choice(msg, short_msg)...
[ "def", "OnClearGlobals", "(", "self", ",", "event", ")", ":", "msg", "=", "_", "(", "\"Deleting globals and reloading modules cannot be undone.\"", "\" Proceed?\"", ")", "short_msg", "=", "_", "(", "\"Really delete globals and modules?\"", ")", "choice", "=", "self", ...
Clear globals event handler
[ "Clear", "globals", "event", "handler" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/gui/_main_window.py#L1195-L1209
train
manns/pyspread
pyspread/src/gui/_main_window.py
MainWindowEventHandlers.OnPageSetup
def OnPageSetup(self, event): """Page setup handler for printing framework""" print_data = self.main_window.print_data new_print_data = \ self.main_window.interfaces.get_print_setup(print_data) self.main_window.print_data = new_print_data
python
def OnPageSetup(self, event): """Page setup handler for printing framework""" print_data = self.main_window.print_data new_print_data = \ self.main_window.interfaces.get_print_setup(print_data) self.main_window.print_data = new_print_data
[ "def", "OnPageSetup", "(", "self", ",", "event", ")", ":", "print_data", "=", "self", ".", "main_window", ".", "print_data", "new_print_data", "=", "self", ".", "main_window", ".", "interfaces", ".", "get_print_setup", "(", "print_data", ")", "self", ".", "m...
Page setup handler for printing framework
[ "Page", "setup", "handler", "for", "printing", "framework" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/gui/_main_window.py#L1213-L1219
train
manns/pyspread
pyspread/src/gui/_main_window.py
MainWindowEventHandlers._get_print_area
def _get_print_area(self): """Returns selection bounding box or visible area""" # Get print area from current selection selection = self.main_window.grid.selection print_area = selection.get_bbox() # If there is no selection use the visible area on the screen if print_a...
python
def _get_print_area(self): """Returns selection bounding box or visible area""" # Get print area from current selection selection = self.main_window.grid.selection print_area = selection.get_bbox() # If there is no selection use the visible area on the screen if print_a...
[ "def", "_get_print_area", "(", "self", ")", ":", "selection", "=", "self", ".", "main_window", ".", "grid", ".", "selection", "print_area", "=", "selection", ".", "get_bbox", "(", ")", "if", "print_area", "is", "None", ":", "print_area", "=", "self", ".", ...
Returns selection bounding box or visible area
[ "Returns", "selection", "bounding", "box", "or", "visible", "area" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/gui/_main_window.py#L1221-L1232
train
manns/pyspread
pyspread/src/gui/_main_window.py
MainWindowEventHandlers.OnPrintPreview
def OnPrintPreview(self, event): """Print preview handler""" print_area = self._get_print_area() print_data = self.main_window.print_data self.main_window.actions.print_preview(print_area, print_data)
python
def OnPrintPreview(self, event): """Print preview handler""" print_area = self._get_print_area() print_data = self.main_window.print_data self.main_window.actions.print_preview(print_area, print_data)
[ "def", "OnPrintPreview", "(", "self", ",", "event", ")", ":", "print_area", "=", "self", ".", "_get_print_area", "(", ")", "print_data", "=", "self", ".", "main_window", ".", "print_data", "self", ".", "main_window", ".", "actions", ".", "print_preview", "("...
Print preview handler
[ "Print", "preview", "handler" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/gui/_main_window.py#L1234-L1240
train
manns/pyspread
pyspread/src/gui/_main_window.py
MainWindowEventHandlers.OnPrint
def OnPrint(self, event): """Print event handler""" print_area = self._get_print_area() print_data = self.main_window.print_data self.main_window.actions.printout(print_area, print_data)
python
def OnPrint(self, event): """Print event handler""" print_area = self._get_print_area() print_data = self.main_window.print_data self.main_window.actions.printout(print_area, print_data)
[ "def", "OnPrint", "(", "self", ",", "event", ")", ":", "print_area", "=", "self", ".", "_get_print_area", "(", ")", "print_data", "=", "self", ".", "main_window", ".", "print_data", "self", ".", "main_window", ".", "actions", ".", "printout", "(", "print_a...
Print event handler
[ "Print", "event", "handler" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/gui/_main_window.py#L1242-L1248
train
manns/pyspread
pyspread/src/gui/_main_window.py
MainWindowEventHandlers.OnCut
def OnCut(self, event): """Clipboard cut event handler""" entry_line = \ self.main_window.entry_line_panel.entry_line_panel.entry_line if wx.Window.FindFocus() != entry_line: selection = self.main_window.grid.selection with undo.group(_("Cut")): ...
python
def OnCut(self, event): """Clipboard cut event handler""" entry_line = \ self.main_window.entry_line_panel.entry_line_panel.entry_line if wx.Window.FindFocus() != entry_line: selection = self.main_window.grid.selection with undo.group(_("Cut")): ...
[ "def", "OnCut", "(", "self", ",", "event", ")", ":", "entry_line", "=", "self", ".", "main_window", ".", "entry_line_panel", ".", "entry_line_panel", ".", "entry_line", "if", "wx", ".", "Window", ".", "FindFocus", "(", ")", "!=", "entry_line", ":", "select...
Clipboard cut event handler
[ "Clipboard", "cut", "event", "handler" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/gui/_main_window.py#L1252-L1271
train
manns/pyspread
pyspread/src/gui/_main_window.py
MainWindowEventHandlers.OnCopy
def OnCopy(self, event): """Clipboard copy event handler""" focus = self.main_window.FindFocus() if isinstance(focus, wx.TextCtrl): # Copy selection from TextCtrl if in focus focus.Copy() else: selection = self.main_window.grid.selection ...
python
def OnCopy(self, event): """Clipboard copy event handler""" focus = self.main_window.FindFocus() if isinstance(focus, wx.TextCtrl): # Copy selection from TextCtrl if in focus focus.Copy() else: selection = self.main_window.grid.selection ...
[ "def", "OnCopy", "(", "self", ",", "event", ")", ":", "focus", "=", "self", ".", "main_window", ".", "FindFocus", "(", ")", "if", "isinstance", "(", "focus", ",", "wx", ".", "TextCtrl", ")", ":", "focus", ".", "Copy", "(", ")", "else", ":", "select...
Clipboard copy event handler
[ "Clipboard", "copy", "event", "handler" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/gui/_main_window.py#L1273-L1287
train
manns/pyspread
pyspread/src/gui/_main_window.py
MainWindowEventHandlers.OnCopyResult
def OnCopyResult(self, event): """Clipboard copy results event handler""" selection = self.main_window.grid.selection data = self.main_window.actions.copy_result(selection) # Check if result is a bitmap if type(data) is wx._gdi.Bitmap: # Copy bitmap to clipboard ...
python
def OnCopyResult(self, event): """Clipboard copy results event handler""" selection = self.main_window.grid.selection data = self.main_window.actions.copy_result(selection) # Check if result is a bitmap if type(data) is wx._gdi.Bitmap: # Copy bitmap to clipboard ...
[ "def", "OnCopyResult", "(", "self", ",", "event", ")", ":", "selection", "=", "self", ".", "main_window", ".", "grid", ".", "selection", "data", "=", "self", ".", "main_window", ".", "actions", ".", "copy_result", "(", "selection", ")", "if", "type", "("...
Clipboard copy results event handler
[ "Clipboard", "copy", "results", "event", "handler" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/gui/_main_window.py#L1289-L1305
train
manns/pyspread
pyspread/src/gui/_main_window.py
MainWindowEventHandlers.OnPaste
def OnPaste(self, event): """Clipboard paste event handler""" data = self.main_window.clipboard.get_clipboard() focus = self.main_window.FindFocus() if isinstance(focus, wx.TextCtrl): # Paste into TextCtrl if in focus focus.WriteText(data) else: ...
python
def OnPaste(self, event): """Clipboard paste event handler""" data = self.main_window.clipboard.get_clipboard() focus = self.main_window.FindFocus() if isinstance(focus, wx.TextCtrl): # Paste into TextCtrl if in focus focus.WriteText(data) else: ...
[ "def", "OnPaste", "(", "self", ",", "event", ")", ":", "data", "=", "self", ".", "main_window", ".", "clipboard", ".", "get_clipboard", "(", ")", "focus", "=", "self", ".", "main_window", ".", "FindFocus", "(", ")", "if", "isinstance", "(", "focus", ",...
Clipboard paste event handler
[ "Clipboard", "paste", "event", "handler" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/gui/_main_window.py#L1307-L1327
train
manns/pyspread
pyspread/src/gui/_main_window.py
MainWindowEventHandlers.OnPasteAs
def OnPasteAs(self, event): """Clipboard paste as event handler""" data = self.main_window.clipboard.get_clipboard() key = self.main_window.grid.actions.cursor with undo.group(_("Paste As...")): self.main_window.actions.paste_as(key, data) self.main_window.grid.For...
python
def OnPasteAs(self, event): """Clipboard paste as event handler""" data = self.main_window.clipboard.get_clipboard() key = self.main_window.grid.actions.cursor with undo.group(_("Paste As...")): self.main_window.actions.paste_as(key, data) self.main_window.grid.For...
[ "def", "OnPasteAs", "(", "self", ",", "event", ")", ":", "data", "=", "self", ".", "main_window", ".", "clipboard", ".", "get_clipboard", "(", ")", "key", "=", "self", ".", "main_window", ".", "grid", ".", "actions", ".", "cursor", "with", "undo", ".",...
Clipboard paste as event handler
[ "Clipboard", "paste", "as", "event", "handler" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/gui/_main_window.py#L1329-L1340
train
manns/pyspread
pyspread/src/gui/_main_window.py
MainWindowEventHandlers.OnSelectAll
def OnSelectAll(self, event): """Select all cells event handler""" entry_line = \ self.main_window.entry_line_panel.entry_line_panel.entry_line if wx.Window.FindFocus() != entry_line: self.main_window.grid.SelectAll() else: entry_line.SelectAll()
python
def OnSelectAll(self, event): """Select all cells event handler""" entry_line = \ self.main_window.entry_line_panel.entry_line_panel.entry_line if wx.Window.FindFocus() != entry_line: self.main_window.grid.SelectAll() else: entry_line.SelectAll()
[ "def", "OnSelectAll", "(", "self", ",", "event", ")", ":", "entry_line", "=", "self", ".", "main_window", ".", "entry_line_panel", ".", "entry_line_panel", ".", "entry_line", "if", "wx", ".", "Window", ".", "FindFocus", "(", ")", "!=", "entry_line", ":", "...
Select all cells event handler
[ "Select", "all", "cells", "event", "handler" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/gui/_main_window.py#L1343-L1353
train
manns/pyspread
pyspread/src/gui/_main_window.py
MainWindowEventHandlers.OnFontDialog
def OnFontDialog(self, event): """Event handler for launching font dialog""" # Get current font data from current cell cursor = self.main_window.grid.actions.cursor attr = self.main_window.grid.code_array.cell_attributes[cursor] size, style, weight, font = \ [attr[n...
python
def OnFontDialog(self, event): """Event handler for launching font dialog""" # Get current font data from current cell cursor = self.main_window.grid.actions.cursor attr = self.main_window.grid.code_array.cell_attributes[cursor] size, style, weight, font = \ [attr[n...
[ "def", "OnFontDialog", "(", "self", ",", "event", ")", ":", "cursor", "=", "self", ".", "main_window", ".", "grid", ".", "actions", ".", "cursor", "attr", "=", "self", ".", "main_window", ".", "grid", ".", "code_array", ".", "cell_attributes", "[", "curs...
Event handler for launching font dialog
[ "Event", "handler", "for", "launching", "font", "dialog" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/gui/_main_window.py#L1364-L1405
train
manns/pyspread
pyspread/src/gui/_main_window.py
MainWindowEventHandlers.OnTextColorDialog
def OnTextColorDialog(self, event): """Event handler for launching text color dialog""" dlg = wx.ColourDialog(self.main_window) # Ensure the full colour dialog is displayed, # not the abbreviated version. dlg.GetColourData().SetChooseFull(True) if dlg.ShowModal() == wx...
python
def OnTextColorDialog(self, event): """Event handler for launching text color dialog""" dlg = wx.ColourDialog(self.main_window) # Ensure the full colour dialog is displayed, # not the abbreviated version. dlg.GetColourData().SetChooseFull(True) if dlg.ShowModal() == wx...
[ "def", "OnTextColorDialog", "(", "self", ",", "event", ")", ":", "dlg", "=", "wx", ".", "ColourDialog", "(", "self", ".", "main_window", ")", "dlg", ".", "GetColourData", "(", ")", ".", "SetChooseFull", "(", "True", ")", "if", "dlg", ".", "ShowModal", ...
Event handler for launching text color dialog
[ "Event", "handler", "for", "launching", "text", "color", "dialog" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/gui/_main_window.py#L1407-L1425
train
manns/pyspread
pyspread/src/gui/_main_window.py
MainWindowEventHandlers.OnMacroListLoad
def OnMacroListLoad(self, event): """Macro list load event handler""" # Get filepath from user wildcards = get_filetypes2wildcards(["py", "all"]).values() wildcard = "|".join(wildcards) message = _("Choose macro file.") style = wx.OPEN filepath, filterindex =...
python
def OnMacroListLoad(self, event): """Macro list load event handler""" # Get filepath from user wildcards = get_filetypes2wildcards(["py", "all"]).values() wildcard = "|".join(wildcards) message = _("Choose macro file.") style = wx.OPEN filepath, filterindex =...
[ "def", "OnMacroListLoad", "(", "self", ",", "event", ")", ":", "wildcards", "=", "get_filetypes2wildcards", "(", "[", "\"py\"", ",", "\"all\"", "]", ")", ".", "values", "(", ")", "wildcard", "=", "\"|\"", ".", "join", "(", "wildcards", ")", "message", "=...
Macro list load event handler
[ "Macro", "list", "load", "event", "handler" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/gui/_main_window.py#L1460-L1487
train
manns/pyspread
pyspread/src/gui/_main_window.py
MainWindowEventHandlers.OnMacroListSave
def OnMacroListSave(self, event): """Macro list save event handler""" # Get filepath from user wildcards = get_filetypes2wildcards(["py", "all"]).values() wildcard = "|".join(wildcards) message = _("Choose macro file.") style = wx.SAVE filepath, filterindex =...
python
def OnMacroListSave(self, event): """Macro list save event handler""" # Get filepath from user wildcards = get_filetypes2wildcards(["py", "all"]).values() wildcard = "|".join(wildcards) message = _("Choose macro file.") style = wx.SAVE filepath, filterindex =...
[ "def", "OnMacroListSave", "(", "self", ",", "event", ")", ":", "wildcards", "=", "get_filetypes2wildcards", "(", "[", "\"py\"", ",", "\"all\"", "]", ")", ".", "values", "(", ")", "wildcard", "=", "\"|\"", ".", "join", "(", "wildcards", ")", "message", "=...
Macro list save event handler
[ "Macro", "list", "save", "event", "handler" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/gui/_main_window.py#L1489-L1513
train
manns/pyspread
pyspread/src/gui/_main_window.py
MainWindowEventHandlers.OnDependencies
def OnDependencies(self, event): """Display dependency dialog""" dlg = DependencyDialog(self.main_window) dlg.ShowModal() dlg.Destroy()
python
def OnDependencies(self, event): """Display dependency dialog""" dlg = DependencyDialog(self.main_window) dlg.ShowModal() dlg.Destroy()
[ "def", "OnDependencies", "(", "self", ",", "event", ")", ":", "dlg", "=", "DependencyDialog", "(", "self", ".", "main_window", ")", "dlg", ".", "ShowModal", "(", ")", "dlg", ".", "Destroy", "(", ")" ]
Display dependency dialog
[ "Display", "dependency", "dialog" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/gui/_main_window.py#L1540-L1545
train
manns/pyspread
pyspread/src/gui/_menubars.py
_filledMenu._add_submenu
def _add_submenu(self, parent, data): """Adds items in data as a submenu to parent""" for item in data: obj = item[0] if obj == wx.Menu: try: __, menuname, submenu, menu_id = item except ValueError: __, menu...
python
def _add_submenu(self, parent, data): """Adds items in data as a submenu to parent""" for item in data: obj = item[0] if obj == wx.Menu: try: __, menuname, submenu, menu_id = item except ValueError: __, menu...
[ "def", "_add_submenu", "(", "self", ",", "parent", ",", "data", ")", ":", "for", "item", "in", "data", ":", "obj", "=", "item", "[", "0", "]", "if", "obj", "==", "wx", ".", "Menu", ":", "try", ":", "__", ",", "menuname", ",", "submenu", ",", "m...
Adds items in data as a submenu to parent
[ "Adds", "items", "in", "data", "as", "a", "submenu", "to", "parent" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/gui/_menubars.py#L96-L142
train
manns/pyspread
pyspread/src/gui/_menubars.py
_filledMenu.OnMenu
def OnMenu(self, event): """Menu event handler""" msgtype = self.ids_msgs[event.GetId()] post_command_event(self.parent, msgtype)
python
def OnMenu(self, event): """Menu event handler""" msgtype = self.ids_msgs[event.GetId()] post_command_event(self.parent, msgtype)
[ "def", "OnMenu", "(", "self", ",", "event", ")", ":", "msgtype", "=", "self", ".", "ids_msgs", "[", "event", ".", "GetId", "(", ")", "]", "post_command_event", "(", "self", ".", "parent", ",", "msgtype", ")" ]
Menu event handler
[ "Menu", "event", "handler" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/gui/_menubars.py#L144-L148
train
manns/pyspread
pyspread/src/gui/_menubars.py
_filledMenu.OnUpdate
def OnUpdate(self, event): """Menu state update""" if wx.ID_UNDO in self.id2menuitem: undo_item = self.id2menuitem[wx.ID_UNDO] undo_item.Enable(undo.stack().canundo()) if wx.ID_REDO in self.id2menuitem: redo_item = self.id2menuitem[wx.ID_REDO] re...
python
def OnUpdate(self, event): """Menu state update""" if wx.ID_UNDO in self.id2menuitem: undo_item = self.id2menuitem[wx.ID_UNDO] undo_item.Enable(undo.stack().canundo()) if wx.ID_REDO in self.id2menuitem: redo_item = self.id2menuitem[wx.ID_REDO] re...
[ "def", "OnUpdate", "(", "self", ",", "event", ")", ":", "if", "wx", ".", "ID_UNDO", "in", "self", ".", "id2menuitem", ":", "undo_item", "=", "self", ".", "id2menuitem", "[", "wx", ".", "ID_UNDO", "]", "undo_item", ".", "Enable", "(", "undo", ".", "st...
Menu state update
[ "Menu", "state", "update" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/gui/_menubars.py#L150-L161
train
manns/pyspread
pyspread/src/gui/_chart_dialog.py
TextEditor.OnFont
def OnFont(self, event): """Check event handler""" font_data = wx.FontData() # Disable color chooser on Windows font_data.EnableEffects(False) if self.chosen_font: font_data.SetInitialFont(self.chosen_font) dlg = wx.FontDialog(self, font_data) if ...
python
def OnFont(self, event): """Check event handler""" font_data = wx.FontData() # Disable color chooser on Windows font_data.EnableEffects(False) if self.chosen_font: font_data.SetInitialFont(self.chosen_font) dlg = wx.FontDialog(self, font_data) if ...
[ "def", "OnFont", "(", "self", ",", "event", ")", ":", "font_data", "=", "wx", ".", "FontData", "(", ")", "font_data", ".", "EnableEffects", "(", "False", ")", "if", "self", ".", "chosen_font", ":", "font_data", ".", "SetInitialFont", "(", "self", ".", ...
Check event handler
[ "Check", "event", "handler" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/gui/_chart_dialog.py#L445-L470
train
manns/pyspread
pyspread/src/gui/_chart_dialog.py
TickParamsEditor.OnDirectionChoice
def OnDirectionChoice(self, event): """Direction choice event handler""" label = self.direction_choicectrl.GetItems()[event.GetSelection()] param = self.choice_label2param[label] self.attrs["direction"] = param post_command_event(self, self.DrawChartMsg)
python
def OnDirectionChoice(self, event): """Direction choice event handler""" label = self.direction_choicectrl.GetItems()[event.GetSelection()] param = self.choice_label2param[label] self.attrs["direction"] = param post_command_event(self, self.DrawChartMsg)
[ "def", "OnDirectionChoice", "(", "self", ",", "event", ")", ":", "label", "=", "self", ".", "direction_choicectrl", ".", "GetItems", "(", ")", "[", "event", ".", "GetSelection", "(", ")", "]", "param", "=", "self", ".", "choice_label2param", "[", "label", ...
Direction choice event handler
[ "Direction", "choice", "event", "handler" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/gui/_chart_dialog.py#L630-L637
train
manns/pyspread
pyspread/src/gui/_chart_dialog.py
TickParamsEditor.OnSecondaryCheckbox
def OnSecondaryCheckbox(self, event): """Top Checkbox event handler""" self.attrs["top"] = event.IsChecked() self.attrs["right"] = event.IsChecked() post_command_event(self, self.DrawChartMsg)
python
def OnSecondaryCheckbox(self, event): """Top Checkbox event handler""" self.attrs["top"] = event.IsChecked() self.attrs["right"] = event.IsChecked() post_command_event(self, self.DrawChartMsg)
[ "def", "OnSecondaryCheckbox", "(", "self", ",", "event", ")", ":", "self", ".", "attrs", "[", "\"top\"", "]", "=", "event", ".", "IsChecked", "(", ")", "self", ".", "attrs", "[", "\"right\"", "]", "=", "event", ".", "IsChecked", "(", ")", "post_command...
Top Checkbox event handler
[ "Top", "Checkbox", "event", "handler" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/gui/_chart_dialog.py#L639-L645
train
manns/pyspread
pyspread/src/gui/_chart_dialog.py
TickParamsEditor.OnPadIntCtrl
def OnPadIntCtrl(self, event): """Pad IntCtrl event handler""" self.attrs["pad"] = event.GetValue() post_command_event(self, self.DrawChartMsg)
python
def OnPadIntCtrl(self, event): """Pad IntCtrl event handler""" self.attrs["pad"] = event.GetValue() post_command_event(self, self.DrawChartMsg)
[ "def", "OnPadIntCtrl", "(", "self", ",", "event", ")", ":", "self", ".", "attrs", "[", "\"pad\"", "]", "=", "event", ".", "GetValue", "(", ")", "post_command_event", "(", "self", ",", "self", ".", "DrawChartMsg", ")" ]
Pad IntCtrl event handler
[ "Pad", "IntCtrl", "event", "handler" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/gui/_chart_dialog.py#L647-L652
train
manns/pyspread
pyspread/src/gui/_chart_dialog.py
TickParamsEditor.OnLabelSizeIntCtrl
def OnLabelSizeIntCtrl(self, event): """Label size IntCtrl event handler""" self.attrs["labelsize"] = event.GetValue() post_command_event(self, self.DrawChartMsg)
python
def OnLabelSizeIntCtrl(self, event): """Label size IntCtrl event handler""" self.attrs["labelsize"] = event.GetValue() post_command_event(self, self.DrawChartMsg)
[ "def", "OnLabelSizeIntCtrl", "(", "self", ",", "event", ")", ":", "self", ".", "attrs", "[", "\"labelsize\"", "]", "=", "event", ".", "GetValue", "(", ")", "post_command_event", "(", "self", ",", "self", ".", "DrawChartMsg", ")" ]
Label size IntCtrl event handler
[ "Label", "size", "IntCtrl", "event", "handler" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/gui/_chart_dialog.py#L654-L659
train
manns/pyspread
pyspread/src/gui/_chart_dialog.py
StyleEditorMixin.get_code
def get_code(self): """Returns code representation of value of widget""" selection = self.GetSelection() if selection == wx.NOT_FOUND: selection = 0 # Return code string return self.styles[selection][1]
python
def get_code(self): """Returns code representation of value of widget""" selection = self.GetSelection() if selection == wx.NOT_FOUND: selection = 0 # Return code string return self.styles[selection][1]
[ "def", "get_code", "(", "self", ")", ":", "selection", "=", "self", ".", "GetSelection", "(", ")", "if", "selection", "==", "wx", ".", "NOT_FOUND", ":", "selection", "=", "0", "return", "self", ".", "styles", "[", "selection", "]", "[", "1", "]" ]
Returns code representation of value of widget
[ "Returns", "code", "representation", "of", "value", "of", "widget" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/gui/_chart_dialog.py#L712-L721
train
manns/pyspread
pyspread/src/gui/_chart_dialog.py
SeriesAttributesPanelBase.update
def update(self, series_data): """Updates self.data from series data Parameters ---------- * series_data: dict \tKey value pairs for self.data, which correspond to chart attributes """ for key in series_data: try: data_list = list(s...
python
def update(self, series_data): """Updates self.data from series data Parameters ---------- * series_data: dict \tKey value pairs for self.data, which correspond to chart attributes """ for key in series_data: try: data_list = list(s...
[ "def", "update", "(", "self", ",", "series_data", ")", ":", "for", "key", "in", "series_data", ":", "try", ":", "data_list", "=", "list", "(", "self", ".", "data", "[", "key", "]", ")", "data_list", "[", "2", "]", "=", "str", "(", "series_data", "[...
Updates self.data from series data Parameters ---------- * series_data: dict \tKey value pairs for self.data, which correspond to chart attributes
[ "Updates", "self", ".", "data", "from", "series", "data" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/gui/_chart_dialog.py#L894-L910
train
manns/pyspread
pyspread/src/gui/_chart_dialog.py
SeriesPanel.get_plot_panel
def get_plot_panel(self): """Returns current plot_panel""" plot_type_no = self.chart_type_book.GetSelection() return self.chart_type_book.GetPage(plot_type_no)
python
def get_plot_panel(self): """Returns current plot_panel""" plot_type_no = self.chart_type_book.GetSelection() return self.chart_type_book.GetPage(plot_type_no)
[ "def", "get_plot_panel", "(", "self", ")", ":", "plot_type_no", "=", "self", ".", "chart_type_book", ".", "GetSelection", "(", ")", "return", "self", ".", "chart_type_book", ".", "GetPage", "(", "plot_type_no", ")" ]
Returns current plot_panel
[ "Returns", "current", "plot_panel" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/gui/_chart_dialog.py#L1423-L1427
train
manns/pyspread
pyspread/src/gui/_chart_dialog.py
SeriesPanel.set_plot_type
def set_plot_type(self, plot_type): """Sets plot type""" ptypes = [pt["type"] for pt in self.plot_types] self.plot_panel = ptypes.index(plot_type)
python
def set_plot_type(self, plot_type): """Sets plot type""" ptypes = [pt["type"] for pt in self.plot_types] self.plot_panel = ptypes.index(plot_type)
[ "def", "set_plot_type", "(", "self", ",", "plot_type", ")", ":", "ptypes", "=", "[", "pt", "[", "\"type\"", "]", "for", "pt", "in", "self", ".", "plot_types", "]", "self", ".", "plot_panel", "=", "ptypes", ".", "index", "(", "plot_type", ")" ]
Sets plot type
[ "Sets", "plot", "type" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/gui/_chart_dialog.py#L1441-L1445
train
manns/pyspread
pyspread/src/gui/_chart_dialog.py
AllSeriesPanel.update
def update(self, series_list): """Updates widget content from series_list Parameters ---------- series_list: List of dict \tList of dicts with data from all series """ if not series_list: self.series_notebook.AddPage(wx.Panel(self, -1), _("+")) ...
python
def update(self, series_list): """Updates widget content from series_list Parameters ---------- series_list: List of dict \tList of dicts with data from all series """ if not series_list: self.series_notebook.AddPage(wx.Panel(self, -1), _("+")) ...
[ "def", "update", "(", "self", ",", "series_list", ")", ":", "if", "not", "series_list", ":", "self", ".", "series_notebook", ".", "AddPage", "(", "wx", ".", "Panel", "(", "self", ",", "-", "1", ")", ",", "_", "(", "\"+\"", ")", ")", "return", "self...
Updates widget content from series_list Parameters ---------- series_list: List of dict \tList of dicts with data from all series
[ "Updates", "widget", "content", "from", "series_list" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/gui/_chart_dialog.py#L1494-L1523
train
manns/pyspread
pyspread/src/gui/_chart_dialog.py
AllSeriesPanel.OnSeriesChanged
def OnSeriesChanged(self, event): """FlatNotebook change event handler""" selection = event.GetSelection() if not self.updating and \ selection == self.series_notebook.GetPageCount() - 1: # Add new series new_panel = SeriesPanel(self, {"type": "plot"}) ...
python
def OnSeriesChanged(self, event): """FlatNotebook change event handler""" selection = event.GetSelection() if not self.updating and \ selection == self.series_notebook.GetPageCount() - 1: # Add new series new_panel = SeriesPanel(self, {"type": "plot"}) ...
[ "def", "OnSeriesChanged", "(", "self", ",", "event", ")", ":", "selection", "=", "event", ".", "GetSelection", "(", ")", "if", "not", "self", ".", "updating", "and", "selection", "==", "self", ".", "series_notebook", ".", "GetPageCount", "(", ")", "-", "...
FlatNotebook change event handler
[ "FlatNotebook", "change", "event", "handler" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/gui/_chart_dialog.py#L1528-L1539
train
manns/pyspread
pyspread/src/gui/_chart_dialog.py
FigurePanel.update
def update(self, figure): """Updates figure on data change Parameters ---------- * figure: matplotlib.figure.Figure \tMatplotlib figure object that is displayed in self """ if hasattr(self, "figure_canvas"): self.figure_canvas.Destroy() sel...
python
def update(self, figure): """Updates figure on data change Parameters ---------- * figure: matplotlib.figure.Figure \tMatplotlib figure object that is displayed in self """ if hasattr(self, "figure_canvas"): self.figure_canvas.Destroy() sel...
[ "def", "update", "(", "self", ",", "figure", ")", ":", "if", "hasattr", "(", "self", ",", "\"figure_canvas\"", ")", ":", "self", ".", "figure_canvas", ".", "Destroy", "(", ")", "self", ".", "figure_canvas", "=", "self", ".", "_get_figure_canvas", "(", "f...
Updates figure on data change Parameters ---------- * figure: matplotlib.figure.Figure \tMatplotlib figure object that is displayed in self
[ "Updates", "figure", "on", "data", "change" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/gui/_chart_dialog.py#L1573-L1595
train
manns/pyspread
pyspread/src/gui/_chart_dialog.py
ChartDialog.get_figure
def get_figure(self, code): """Returns figure from executing code in grid Returns an empty matplotlib figure if code does not eval to a matplotlib figure instance. Parameters ---------- code: Unicode \tUnicode string which contains Python code that should yield ...
python
def get_figure(self, code): """Returns figure from executing code in grid Returns an empty matplotlib figure if code does not eval to a matplotlib figure instance. Parameters ---------- code: Unicode \tUnicode string which contains Python code that should yield ...
[ "def", "get_figure", "(", "self", ",", "code", ")", ":", "if", "code", "==", "self", ".", "figure_code_old", "and", "self", ".", "figure_cache", ":", "return", "self", ".", "figure_cache", "self", ".", "figure_code_old", "=", "code", "key", "=", "self", ...
Returns figure from executing code in grid Returns an empty matplotlib figure if code does not eval to a matplotlib figure instance. Parameters ---------- code: Unicode \tUnicode string which contains Python code that should yield a figure
[ "Returns", "figure", "from", "executing", "code", "in", "grid" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/gui/_chart_dialog.py#L1668-L1701
train
manns/pyspread
pyspread/src/gui/_chart_dialog.py
ChartDialog.set_code
def set_code(self, code): """Update widgets from code""" # Get attributes from code attributes = [] strip = lambda s: s.strip('u').strip("'").strip('"') for attr_dict in parse_dict_strings(unicode(code).strip()[19:-1]): attrs = list(strip(s) for s in parse_dict_stri...
python
def set_code(self, code): """Update widgets from code""" # Get attributes from code attributes = [] strip = lambda s: s.strip('u').strip("'").strip('"') for attr_dict in parse_dict_strings(unicode(code).strip()[19:-1]): attrs = list(strip(s) for s in parse_dict_stri...
[ "def", "set_code", "(", "self", ",", "code", ")", ":", "attributes", "=", "[", "]", "strip", "=", "lambda", "s", ":", "s", ".", "strip", "(", "'u'", ")", ".", "strip", "(", "\"'\"", ")", ".", "strip", "(", "'\"'", ")", "for", "attr_dict", "in", ...
Update widgets from code
[ "Update", "widgets", "from", "code" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/gui/_chart_dialog.py#L1718-L1751
train
manns/pyspread
pyspread/src/gui/_chart_dialog.py
ChartDialog.get_code
def get_code(self): """Returns code that generates figure from widgets""" def dict2str(attr_dict): """Returns string with dict content with values as code Code means that string identifiers are removed """ result = u"{" for key in attr_dic...
python
def get_code(self): """Returns code that generates figure from widgets""" def dict2str(attr_dict): """Returns string with dict content with values as code Code means that string identifiers are removed """ result = u"{" for key in attr_dic...
[ "def", "get_code", "(", "self", ")", ":", "def", "dict2str", "(", "attr_dict", ")", ":", "result", "=", "u\"{\"", "for", "key", "in", "attr_dict", ":", "code", "=", "attr_dict", "[", "key", "]", "if", "key", "in", "self", ".", "string_keys", ":", "co...
Returns code that generates figure from widgets
[ "Returns", "code", "that", "generates", "figure", "from", "widgets" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/gui/_chart_dialog.py#L1753-L1844
train
manns/pyspread
pyspread/src/gui/_chart_dialog.py
ChartDialog.OnUpdateFigurePanel
def OnUpdateFigurePanel(self, event): """Redraw event handler for the figure panel""" if self.updating: return self.updating = True self.figure_panel.update(self.get_figure(self.code)) self.updating = False
python
def OnUpdateFigurePanel(self, event): """Redraw event handler for the figure panel""" if self.updating: return self.updating = True self.figure_panel.update(self.get_figure(self.code)) self.updating = False
[ "def", "OnUpdateFigurePanel", "(", "self", ",", "event", ")", ":", "if", "self", ".", "updating", ":", "return", "self", ".", "updating", "=", "True", "self", ".", "figure_panel", ".", "update", "(", "self", ".", "get_figure", "(", "self", ".", "code", ...
Redraw event handler for the figure panel
[ "Redraw", "event", "handler", "for", "the", "figure", "panel" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/gui/_chart_dialog.py#L1854-L1862
train
manns/pyspread
pyspread/src/lib/selection.py
Selection.parameters
def parameters(self): """Returns tuple of selection parameters of self (self.block_tl, self.block_br, self.rows, self.cols, self.cells) """ return self.block_tl, self.block_br, self.rows, self.cols, self.cells
python
def parameters(self): """Returns tuple of selection parameters of self (self.block_tl, self.block_br, self.rows, self.cols, self.cells) """ return self.block_tl, self.block_br, self.rows, self.cols, self.cells
[ "def", "parameters", "(", "self", ")", ":", "return", "self", ".", "block_tl", ",", "self", ".", "block_br", ",", "self", ".", "rows", ",", "self", ".", "cols", ",", "self", ".", "cells" ]
Returns tuple of selection parameters of self (self.block_tl, self.block_br, self.rows, self.cols, self.cells)
[ "Returns", "tuple", "of", "selection", "parameters", "of", "self" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/selection.py#L245-L252
train
manns/pyspread
pyspread/src/lib/selection.py
Selection.get_access_string
def get_access_string(self, shape, table): """Returns a string, with which the selection can be accessed Parameters ---------- shape: 3-tuple of Integer \tShape of grid, for which the generated keys are valid table: Integer \tThird component of all returned keys....
python
def get_access_string(self, shape, table): """Returns a string, with which the selection can be accessed Parameters ---------- shape: 3-tuple of Integer \tShape of grid, for which the generated keys are valid table: Integer \tThird component of all returned keys....
[ "def", "get_access_string", "(", "self", ",", "shape", ",", "table", ")", ":", "rows", ",", "columns", ",", "tables", "=", "shape", "assert", "all", "(", "dim", ">", "0", "for", "dim", "in", "shape", ")", "assert", "0", "<=", "table", "<", "tables", ...
Returns a string, with which the selection can be accessed Parameters ---------- shape: 3-tuple of Integer \tShape of grid, for which the generated keys are valid table: Integer \tThird component of all returned keys. Must be in dimensions
[ "Returns", "a", "string", "with", "which", "the", "selection", "can", "be", "accessed" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/selection.py#L381-L433
train
manns/pyspread
pyspread/src/lib/selection.py
Selection.shifted
def shifted(self, rows, cols): """Returns a new selection that is shifted by rows and cols. Negative values for rows and cols may result in a selection that addresses negative cells. Parameters ---------- rows: Integer \tNumber of rows that the new selection is ...
python
def shifted(self, rows, cols): """Returns a new selection that is shifted by rows and cols. Negative values for rows and cols may result in a selection that addresses negative cells. Parameters ---------- rows: Integer \tNumber of rows that the new selection is ...
[ "def", "shifted", "(", "self", ",", "rows", ",", "cols", ")", ":", "shifted_block_tl", "=", "[", "(", "row", "+", "rows", ",", "col", "+", "cols", ")", "for", "row", ",", "col", "in", "self", ".", "block_tl", "]", "shifted_block_br", "=", "[", "(",...
Returns a new selection that is shifted by rows and cols. Negative values for rows and cols may result in a selection that addresses negative cells. Parameters ---------- rows: Integer \tNumber of rows that the new selection is shifted down cols: Integer ...
[ "Returns", "a", "new", "selection", "that", "is", "shifted", "by", "rows", "and", "cols", "." ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/selection.py#L435-L459
train
manns/pyspread
pyspread/src/lib/selection.py
Selection.grid_select
def grid_select(self, grid, clear_selection=True): """Selects cells of grid with selection content""" if clear_selection: grid.ClearSelection() for (tl, br) in zip(self.block_tl, self.block_br): grid.SelectBlock(tl[0], tl[1], br[0], br[1], addToSelected=True) f...
python
def grid_select(self, grid, clear_selection=True): """Selects cells of grid with selection content""" if clear_selection: grid.ClearSelection() for (tl, br) in zip(self.block_tl, self.block_br): grid.SelectBlock(tl[0], tl[1], br[0], br[1], addToSelected=True) f...
[ "def", "grid_select", "(", "self", ",", "grid", ",", "clear_selection", "=", "True", ")", ":", "if", "clear_selection", ":", "grid", ".", "ClearSelection", "(", ")", "for", "(", "tl", ",", "br", ")", "in", "zip", "(", "self", ".", "block_tl", ",", "s...
Selects cells of grid with selection content
[ "Selects", "cells", "of", "grid", "with", "selection", "content" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/selection.py#L461-L478
train
manns/pyspread
pyspread/src/lib/charts.py
object2code
def object2code(key, code): """Returns code for widget from dict object""" if key in ["xscale", "yscale"]: if code == "log": code = True else: code = False else: code = unicode(code) return code
python
def object2code(key, code): """Returns code for widget from dict object""" if key in ["xscale", "yscale"]: if code == "log": code = True else: code = False else: code = unicode(code) return code
[ "def", "object2code", "(", "key", ",", "code", ")", ":", "if", "key", "in", "[", "\"xscale\"", ",", "\"yscale\"", "]", ":", "if", "code", "==", "\"log\"", ":", "code", "=", "True", "else", ":", "code", "=", "False", "else", ":", "code", "=", "unico...
Returns code for widget from dict object
[ "Returns", "code", "for", "widget", "from", "dict", "object" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/charts.py#L56-L68
train
manns/pyspread
pyspread/src/lib/charts.py
fig2bmp
def fig2bmp(figure, width, height, dpi, zoom): """Returns wx.Bitmap from matplotlib chart Parameters ---------- fig: Object \tMatplotlib figure width: Integer \tImage width in pixels height: Integer \tImage height in pixels dpi = Float \tDC resolution """ dpi *= fl...
python
def fig2bmp(figure, width, height, dpi, zoom): """Returns wx.Bitmap from matplotlib chart Parameters ---------- fig: Object \tMatplotlib figure width: Integer \tImage width in pixels height: Integer \tImage height in pixels dpi = Float \tDC resolution """ dpi *= fl...
[ "def", "fig2bmp", "(", "figure", ",", "width", ",", "height", ",", "dpi", ",", "zoom", ")", ":", "dpi", "*=", "float", "(", "zoom", ")", "figure", ".", "set_figwidth", "(", "width", "/", "dpi", ")", "figure", ".", "set_figheight", "(", "height", "/",...
Returns wx.Bitmap from matplotlib chart Parameters ---------- fig: Object \tMatplotlib figure width: Integer \tImage width in pixels height: Integer \tImage height in pixels dpi = Float \tDC resolution
[ "Returns", "wx", ".", "Bitmap", "from", "matplotlib", "chart" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/charts.py#L71-L110
train
manns/pyspread
pyspread/src/lib/charts.py
fig2x
def fig2x(figure, format): """Returns svg from matplotlib chart""" # Save svg to file like object svg_io io = StringIO() figure.savefig(io, format=format) # Rewind the file like object io.seek(0) data = io.getvalue() io.close() return data
python
def fig2x(figure, format): """Returns svg from matplotlib chart""" # Save svg to file like object svg_io io = StringIO() figure.savefig(io, format=format) # Rewind the file like object io.seek(0) data = io.getvalue() io.close() return data
[ "def", "fig2x", "(", "figure", ",", "format", ")", ":", "io", "=", "StringIO", "(", ")", "figure", ".", "savefig", "(", "io", ",", "format", "=", "format", ")", "io", ".", "seek", "(", "0", ")", "data", "=", "io", ".", "getvalue", "(", ")", "io...
Returns svg from matplotlib chart
[ "Returns", "svg", "from", "matplotlib", "chart" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/charts.py#L113-L126
train
manns/pyspread
pyspread/src/lib/charts.py
ChartFigure._xdate_setter
def _xdate_setter(self, xdate_format='%Y-%m-%d'): """Makes x axis a date axis with auto format Parameters ---------- xdate_format: String \tSets date formatting """ if xdate_format: # We have to validate xdate_format. If wrong then bail out. ...
python
def _xdate_setter(self, xdate_format='%Y-%m-%d'): """Makes x axis a date axis with auto format Parameters ---------- xdate_format: String \tSets date formatting """ if xdate_format: # We have to validate xdate_format. If wrong then bail out. ...
[ "def", "_xdate_setter", "(", "self", ",", "xdate_format", "=", "'%Y-%m-%d'", ")", ":", "if", "xdate_format", ":", "try", ":", "self", ".", "autofmt_xdate", "(", ")", "datetime", ".", "date", "(", "2000", ",", "1", ",", "1", ")", ".", "strftime", "(", ...
Makes x axis a date axis with auto format Parameters ---------- xdate_format: String \tSets date formatting
[ "Makes", "x", "axis", "a", "date", "axis", "with", "auto", "format" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/charts.py#L180-L203
train
manns/pyspread
pyspread/src/lib/charts.py
ChartFigure._setup_axes
def _setup_axes(self, axes_data): """Sets up axes for drawing chart""" self.__axes.clear() key_setter = [ ("title", self.__axes.set_title), ("xlabel", self.__axes.set_xlabel), ("ylabel", self.__axes.set_ylabel), ("xscale", self.__axes.set_xscale)...
python
def _setup_axes(self, axes_data): """Sets up axes for drawing chart""" self.__axes.clear() key_setter = [ ("title", self.__axes.set_title), ("xlabel", self.__axes.set_xlabel), ("ylabel", self.__axes.set_ylabel), ("xscale", self.__axes.set_xscale)...
[ "def", "_setup_axes", "(", "self", ",", "axes_data", ")", ":", "self", ".", "__axes", ".", "clear", "(", ")", "key_setter", "=", "[", "(", "\"title\"", ",", "self", ".", "__axes", ".", "set_title", ")", ",", "(", "\"xlabel\"", ",", "self", ".", "__ax...
Sets up axes for drawing chart
[ "Sets", "up", "axes", "for", "drawing", "chart" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/charts.py#L208-L247
train
manns/pyspread
pyspread/src/lib/charts.py
ChartFigure.draw_chart
def draw_chart(self): """Plots chart from self.attributes""" if not hasattr(self, "attributes"): return # The first element is always axes data self._setup_axes(self.attributes[0]) for attribute in self.attributes[1:]: series = copy(attribute) ...
python
def draw_chart(self): """Plots chart from self.attributes""" if not hasattr(self, "attributes"): return # The first element is always axes data self._setup_axes(self.attributes[0]) for attribute in self.attributes[1:]: series = copy(attribute) ...
[ "def", "draw_chart", "(", "self", ")", ":", "if", "not", "hasattr", "(", "self", ",", "\"attributes\"", ")", ":", "return", "self", ".", "_setup_axes", "(", "self", ".", "attributes", "[", "0", "]", ")", "for", "attribute", "in", "self", ".", "attribut...
Plots chart from self.attributes
[ "Plots", "chart", "from", "self", ".", "attributes" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/charts.py#L255-L347
train
manns/pyspread
pyspread/src/gui/_grid_table.py
GridTable.GetSource
def GetSource(self, row, col, table=None): """Return the source string of a cell""" if table is None: table = self.grid.current_table value = self.code_array((row, col, table)) if value is None: return u"" else: return value
python
def GetSource(self, row, col, table=None): """Return the source string of a cell""" if table is None: table = self.grid.current_table value = self.code_array((row, col, table)) if value is None: return u"" else: return value
[ "def", "GetSource", "(", "self", ",", "row", ",", "col", ",", "table", "=", "None", ")", ":", "if", "table", "is", "None", ":", "table", "=", "self", ".", "grid", ".", "current_table", "value", "=", "self", ".", "code_array", "(", "(", "row", ",", ...
Return the source string of a cell
[ "Return", "the", "source", "string", "of", "a", "cell" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/gui/_grid_table.py#L69-L80
train
manns/pyspread
pyspread/src/gui/_grid_table.py
GridTable.GetValue
def GetValue(self, row, col, table=None): """Return the result value of a cell, line split if too much data""" if table is None: table = self.grid.current_table try: cell_code = self.code_array((row, col, table)) except IndexError: cell_code = None ...
python
def GetValue(self, row, col, table=None): """Return the result value of a cell, line split if too much data""" if table is None: table = self.grid.current_table try: cell_code = self.code_array((row, col, table)) except IndexError: cell_code = None ...
[ "def", "GetValue", "(", "self", ",", "row", ",", "col", ",", "table", "=", "None", ")", ":", "if", "table", "is", "None", ":", "table", "=", "self", ".", "grid", ".", "current_table", "try", ":", "cell_code", "=", "self", ".", "code_array", "(", "(...
Return the result value of a cell, line split if too much data
[ "Return", "the", "result", "value", "of", "a", "cell", "line", "split", "if", "too", "much", "data" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/gui/_grid_table.py#L82-L101
train
manns/pyspread
pyspread/src/gui/_grid_table.py
GridTable.SetValue
def SetValue(self, row, col, value, refresh=True): """Set the value of a cell, merge line breaks""" # Join code that has been split because of long line issue value = "".join(value.split("\n")) key = row, col, self.grid.current_table old_code = self.grid.code_array(key) ...
python
def SetValue(self, row, col, value, refresh=True): """Set the value of a cell, merge line breaks""" # Join code that has been split because of long line issue value = "".join(value.split("\n")) key = row, col, self.grid.current_table old_code = self.grid.code_array(key) ...
[ "def", "SetValue", "(", "self", ",", "row", ",", "col", ",", "value", ",", "refresh", "=", "True", ")", ":", "value", "=", "\"\"", ".", "join", "(", "value", ".", "split", "(", "\"\\n\"", ")", ")", "key", "=", "row", ",", "col", ",", "self", "....
Set the value of a cell, merge line breaks
[ "Set", "the", "value", "of", "a", "cell", "merge", "line", "breaks" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/gui/_grid_table.py#L103-L116
train
manns/pyspread
pyspread/src/gui/_grid_table.py
GridTable.UpdateValues
def UpdateValues(self): """Update all displayed values""" # This sends an event to the grid table # to update all of the values msg = wx.grid.GridTableMessage(self, wx.grid.GRIDTABLE_REQUEST_VIEW_GET_VALUES) self.grid.ProcessTableMessage(msg)
python
def UpdateValues(self): """Update all displayed values""" # This sends an event to the grid table # to update all of the values msg = wx.grid.GridTableMessage(self, wx.grid.GRIDTABLE_REQUEST_VIEW_GET_VALUES) self.grid.ProcessTableMessage(msg)
[ "def", "UpdateValues", "(", "self", ")", ":", "msg", "=", "wx", ".", "grid", ".", "GridTableMessage", "(", "self", ",", "wx", ".", "grid", ".", "GRIDTABLE_REQUEST_VIEW_GET_VALUES", ")", "self", ".", "grid", ".", "ProcessTableMessage", "(", "msg", ")" ]
Update all displayed values
[ "Update", "all", "displayed", "values" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/gui/_grid_table.py#L118-L126
train
manns/pyspread
pyspread/src/gui/_events.py
post_command_event
def post_command_event(target, msg_cls, **kwargs): """Posts command event to main window Command events propagate. Parameters ---------- * msg_cls: class \tMessage class from new_command_event() * kwargs: dict \tMessage arguments """ msg = msg_cls(id=-1, **kwargs) wx.Po...
python
def post_command_event(target, msg_cls, **kwargs): """Posts command event to main window Command events propagate. Parameters ---------- * msg_cls: class \tMessage class from new_command_event() * kwargs: dict \tMessage arguments """ msg = msg_cls(id=-1, **kwargs) wx.Po...
[ "def", "post_command_event", "(", "target", ",", "msg_cls", ",", "**", "kwargs", ")", ":", "msg", "=", "msg_cls", "(", "id", "=", "-", "1", ",", "**", "kwargs", ")", "wx", ".", "PostEvent", "(", "target", ",", "msg", ")" ]
Posts command event to main window Command events propagate. Parameters ---------- * msg_cls: class \tMessage class from new_command_event() * kwargs: dict \tMessage arguments
[ "Posts", "command", "event", "to", "main", "window" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/gui/_events.py#L40-L55
train
manns/pyspread
pyspread/src/lib/clipboard.py
Clipboard._convert_clipboard
def _convert_clipboard(self, datastring=None, sep='\t'): """Converts data string to iterable. Parameters: ----------- datastring: string, defaults to None \tThe data string to be converted. \tself.get_clipboard() is called if set to None sep: string \tSep...
python
def _convert_clipboard(self, datastring=None, sep='\t'): """Converts data string to iterable. Parameters: ----------- datastring: string, defaults to None \tThe data string to be converted. \tself.get_clipboard() is called if set to None sep: string \tSep...
[ "def", "_convert_clipboard", "(", "self", ",", "datastring", "=", "None", ",", "sep", "=", "'\\t'", ")", ":", "if", "datastring", "is", "None", ":", "datastring", "=", "self", ".", "get_clipboard", "(", ")", "data_it", "=", "(", "(", "ele", "for", "ele...
Converts data string to iterable. Parameters: ----------- datastring: string, defaults to None \tThe data string to be converted. \tself.get_clipboard() is called if set to None sep: string \tSeparator for columns in datastring
[ "Converts", "data", "string", "to", "iterable", "." ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/clipboard.py#L54-L72
train
manns/pyspread
pyspread/src/lib/clipboard.py
Clipboard.get_clipboard
def get_clipboard(self): """Returns the clipboard content If a bitmap is contained then it is returned. Otherwise, the clipboard text is returned. """ bmpdata = wx.BitmapDataObject() textdata = wx.TextDataObject() if self.clipboard.Open(): is_bmp_p...
python
def get_clipboard(self): """Returns the clipboard content If a bitmap is contained then it is returned. Otherwise, the clipboard text is returned. """ bmpdata = wx.BitmapDataObject() textdata = wx.TextDataObject() if self.clipboard.Open(): is_bmp_p...
[ "def", "get_clipboard", "(", "self", ")", ":", "bmpdata", "=", "wx", ".", "BitmapDataObject", "(", ")", "textdata", "=", "wx", ".", "TextDataObject", "(", ")", "if", "self", ".", "clipboard", ".", "Open", "(", ")", ":", "is_bmp_present", "=", "self", "...
Returns the clipboard content If a bitmap is contained then it is returned. Otherwise, the clipboard text is returned.
[ "Returns", "the", "clipboard", "content" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/clipboard.py#L74-L95
train
manns/pyspread
pyspread/src/lib/clipboard.py
Clipboard.set_clipboard
def set_clipboard(self, data, datatype="text"): """Writes data to the clipboard Parameters ---------- data: Object \tData object for clipboard datatype: String in ["text", "bitmap"] \tIdentifies datatype to be copied to the clipboard """ error_l...
python
def set_clipboard(self, data, datatype="text"): """Writes data to the clipboard Parameters ---------- data: Object \tData object for clipboard datatype: String in ["text", "bitmap"] \tIdentifies datatype to be copied to the clipboard """ error_l...
[ "def", "set_clipboard", "(", "self", ",", "data", ",", "datatype", "=", "\"text\"", ")", ":", "error_log", "=", "[", "]", "if", "datatype", "==", "\"text\"", ":", "clip_data", "=", "wx", ".", "TextDataObject", "(", "text", "=", "data", ")", "elif", "da...
Writes data to the clipboard Parameters ---------- data: Object \tData object for clipboard datatype: String in ["text", "bitmap"] \tIdentifies datatype to be copied to the clipboard
[ "Writes", "data", "to", "the", "clipboard" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/clipboard.py#L97-L127
train
manns/pyspread
pyspread/examples/macro_draw.py
draw_rect
def draw_rect(grid, attr, dc, rect): """Draws a rect""" dc.SetBrush(wx.Brush(wx.Colour(15, 255, 127), wx.SOLID)) dc.SetPen(wx.Pen(wx.BLUE, 1, wx.SOLID)) dc.DrawRectangleRect(rect)
python
def draw_rect(grid, attr, dc, rect): """Draws a rect""" dc.SetBrush(wx.Brush(wx.Colour(15, 255, 127), wx.SOLID)) dc.SetPen(wx.Pen(wx.BLUE, 1, wx.SOLID)) dc.DrawRectangleRect(rect)
[ "def", "draw_rect", "(", "grid", ",", "attr", ",", "dc", ",", "rect", ")", ":", "dc", ".", "SetBrush", "(", "wx", ".", "Brush", "(", "wx", ".", "Colour", "(", "15", ",", "255", ",", "127", ")", ",", "wx", ".", "SOLID", ")", ")", "dc", ".", ...
Draws a rect
[ "Draws", "a", "rect" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/examples/macro_draw.py#L2-L6
train
manns/pyspread
pyspread/src/actions/_grid_actions.py
FileActions._is_aborted
def _is_aborted(self, cycle, statustext, total_elements=None, freq=None): """Displays progress and returns True if abort Parameters ---------- cycle: Integer \tThe current operation cycle statustext: String \tLeft text in statusbar to be displayed total_...
python
def _is_aborted(self, cycle, statustext, total_elements=None, freq=None): """Displays progress and returns True if abort Parameters ---------- cycle: Integer \tThe current operation cycle statustext: String \tLeft text in statusbar to be displayed total_...
[ "def", "_is_aborted", "(", "self", ",", "cycle", ",", "statustext", ",", "total_elements", "=", "None", ",", "freq", "=", "None", ")", ":", "if", "total_elements", "is", "None", ":", "statustext", "+=", "_", "(", "\"{nele} elements processed. Press <Esc> to abor...
Displays progress and returns True if abort Parameters ---------- cycle: Integer \tThe current operation cycle statustext: String \tLeft text in statusbar to be displayed total_elements: Integer: \tThe number of elements that have to be processed ...
[ "Displays", "progress", "and", "returns", "True", "if", "abort" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/actions/_grid_actions.py#L127-L180
train
manns/pyspread
pyspread/src/actions/_grid_actions.py
FileActions.validate_signature
def validate_signature(self, filename): """Returns True if a valid signature is present for filename""" if not GPG_PRESENT: return False sigfilename = filename + '.sig' try: with open(sigfilename): pass except IOError: # Sig...
python
def validate_signature(self, filename): """Returns True if a valid signature is present for filename""" if not GPG_PRESENT: return False sigfilename = filename + '.sig' try: with open(sigfilename): pass except IOError: # Sig...
[ "def", "validate_signature", "(", "self", ",", "filename", ")", ":", "if", "not", "GPG_PRESENT", ":", "return", "False", "sigfilename", "=", "filename", "+", "'.sig'", "try", ":", "with", "open", "(", "sigfilename", ")", ":", "pass", "except", "IOError", "...
Returns True if a valid signature is present for filename
[ "Returns", "True", "if", "a", "valid", "signature", "is", "present", "for", "filename" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/actions/_grid_actions.py#L182-L200
train
manns/pyspread
pyspread/src/actions/_grid_actions.py
FileActions.leave_safe_mode
def leave_safe_mode(self): """Leaves safe mode""" self.code_array.safe_mode = False # Clear result cache self.code_array.result_cache.clear() # Execute macros self.main_window.actions.execute_macros() post_command_event(self.main_window, self.SafeModeExitMsg)
python
def leave_safe_mode(self): """Leaves safe mode""" self.code_array.safe_mode = False # Clear result cache self.code_array.result_cache.clear() # Execute macros self.main_window.actions.execute_macros() post_command_event(self.main_window, self.SafeModeExitMsg)
[ "def", "leave_safe_mode", "(", "self", ")", ":", "self", ".", "code_array", ".", "safe_mode", "=", "False", "self", ".", "code_array", ".", "result_cache", ".", "clear", "(", ")", "self", ".", "main_window", ".", "actions", ".", "execute_macros", "(", ")",...
Leaves safe mode
[ "Leaves", "safe", "mode" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/actions/_grid_actions.py#L207-L218
train
manns/pyspread
pyspread/src/actions/_grid_actions.py
FileActions.approve
def approve(self, filepath): """Sets safe mode if signature missing of invalid""" try: signature_valid = self.validate_signature(filepath) except ValueError: # GPG is not installed signature_valid = False if signature_valid: self.leave_s...
python
def approve(self, filepath): """Sets safe mode if signature missing of invalid""" try: signature_valid = self.validate_signature(filepath) except ValueError: # GPG is not installed signature_valid = False if signature_valid: self.leave_s...
[ "def", "approve", "(", "self", ",", "filepath", ")", ":", "try", ":", "signature_valid", "=", "self", ".", "validate_signature", "(", "filepath", ")", "except", "ValueError", ":", "signature_valid", "=", "False", "if", "signature_valid", ":", "self", ".", "l...
Sets safe mode if signature missing of invalid
[ "Sets", "safe", "mode", "if", "signature", "missing", "of", "invalid" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/actions/_grid_actions.py#L220-L246
train
manns/pyspread
pyspread/src/actions/_grid_actions.py
FileActions.clear_globals_reload_modules
def clear_globals_reload_modules(self): """Clears globals and reloads modules""" self.code_array.clear_globals() self.code_array.reload_modules() # Clear result cache self.code_array.result_cache.clear()
python
def clear_globals_reload_modules(self): """Clears globals and reloads modules""" self.code_array.clear_globals() self.code_array.reload_modules() # Clear result cache self.code_array.result_cache.clear()
[ "def", "clear_globals_reload_modules", "(", "self", ")", ":", "self", ".", "code_array", ".", "clear_globals", "(", ")", "self", ".", "code_array", ".", "reload_modules", "(", ")", "self", ".", "code_array", ".", "result_cache", ".", "clear", "(", ")" ]
Clears globals and reloads modules
[ "Clears", "globals", "and", "reloads", "modules" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/actions/_grid_actions.py#L248-L255
train
manns/pyspread
pyspread/src/actions/_grid_actions.py
FileActions._get_file_version
def _get_file_version(self, infile): """Returns infile version string.""" # Determine file version for line1 in infile: if line1.strip() != "[Pyspread save file version]": raise ValueError(_("File format unsupported.")) break for line2 in infile:...
python
def _get_file_version(self, infile): """Returns infile version string.""" # Determine file version for line1 in infile: if line1.strip() != "[Pyspread save file version]": raise ValueError(_("File format unsupported.")) break for line2 in infile:...
[ "def", "_get_file_version", "(", "self", ",", "infile", ")", ":", "for", "line1", "in", "infile", ":", "if", "line1", ".", "strip", "(", ")", "!=", "\"[Pyspread save file version]\"", ":", "raise", "ValueError", "(", "_", "(", "\"File format unsupported.\"", "...
Returns infile version string.
[ "Returns", "infile", "version", "string", "." ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/actions/_grid_actions.py#L257-L267
train
manns/pyspread
pyspread/src/actions/_grid_actions.py
FileActions.clear
def clear(self, shape=None): """Empties grid and sets shape to shape Clears all attributes, row heights, column withs and frozen states. Empties undo/redo list and caches. Empties globals. Properties ---------- shape: 3-tuple of Integer, defaults to None \tTarg...
python
def clear(self, shape=None): """Empties grid and sets shape to shape Clears all attributes, row heights, column withs and frozen states. Empties undo/redo list and caches. Empties globals. Properties ---------- shape: 3-tuple of Integer, defaults to None \tTarg...
[ "def", "clear", "(", "self", ",", "shape", "=", "None", ")", ":", "self", ".", "grid", ".", "actions", ".", "cursor", "=", "0", ",", "0", ",", "0", "self", ".", "grid", ".", "current_table", "=", "0", "post_command_event", "(", "self", ".", "main_w...
Empties grid and sets shape to shape Clears all attributes, row heights, column withs and frozen states. Empties undo/redo list and caches. Empties globals. Properties ---------- shape: 3-tuple of Integer, defaults to None \tTarget shape of grid after clearing all cont...
[ "Empties", "grid", "and", "sets", "shape", "to", "shape" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/actions/_grid_actions.py#L269-L313
train
manns/pyspread
pyspread/src/actions/_grid_actions.py
FileActions.open
def open(self, event): """Opens a file that is specified in event.attr Parameters ---------- event.attr: Dict \tkey filepath contains file path of file to be loaded \tkey filetype contains file type of file to be loaded \tFiletypes can be pys, pysu, xls ...
python
def open(self, event): """Opens a file that is specified in event.attr Parameters ---------- event.attr: Dict \tkey filepath contains file path of file to be loaded \tkey filetype contains file type of file to be loaded \tFiletypes can be pys, pysu, xls ...
[ "def", "open", "(", "self", ",", "event", ")", ":", "filepath", "=", "event", ".", "attr", "[", "\"filepath\"", "]", "try", ":", "filetype", "=", "event", ".", "attr", "[", "\"filetype\"", "]", "except", "KeyError", ":", "try", ":", "file_ext", "=", ...
Opens a file that is specified in event.attr Parameters ---------- event.attr: Dict \tkey filepath contains file path of file to be loaded \tkey filetype contains file type of file to be loaded \tFiletypes can be pys, pysu, xls
[ "Opens", "a", "file", "that", "is", "specified", "in", "event", ".", "attr" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/actions/_grid_actions.py#L315-L421
train
manns/pyspread
pyspread/src/actions/_grid_actions.py
FileActions.sign_file
def sign_file(self, filepath): """Signs file if possible""" if not GPG_PRESENT: return signed_data = sign(filepath) signature = signed_data.data if signature is None or not signature: statustext = _('Error signing file. ') + signed_data.stderr ...
python
def sign_file(self, filepath): """Signs file if possible""" if not GPG_PRESENT: return signed_data = sign(filepath) signature = signed_data.data if signature is None or not signature: statustext = _('Error signing file. ') + signed_data.stderr ...
[ "def", "sign_file", "(", "self", ",", "filepath", ")", ":", "if", "not", "GPG_PRESENT", ":", "return", "signed_data", "=", "sign", "(", "filepath", ")", "signature", "=", "signed_data", ".", "data", "if", "signature", "is", "None", "or", "not", "signature"...
Signs file if possible
[ "Signs", "file", "if", "possible" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/actions/_grid_actions.py#L423-L458
train
manns/pyspread
pyspread/src/actions/_grid_actions.py
FileActions._set_save_states
def _set_save_states(self): """Sets application save states""" wx.BeginBusyCursor() self.saving = True self.grid.Disable()
python
def _set_save_states(self): """Sets application save states""" wx.BeginBusyCursor() self.saving = True self.grid.Disable()
[ "def", "_set_save_states", "(", "self", ")", ":", "wx", ".", "BeginBusyCursor", "(", ")", "self", ".", "saving", "=", "True", "self", ".", "grid", ".", "Disable", "(", ")" ]
Sets application save states
[ "Sets", "application", "save", "states" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/actions/_grid_actions.py#L460-L465
train
manns/pyspread
pyspread/src/actions/_grid_actions.py
FileActions._release_save_states
def _release_save_states(self): """Releases application save states""" self.saving = False self.grid.Enable() wx.EndBusyCursor() # Mark content as unchanged try: post_command_event(self.main_window, self.ContentChangedMsg) except TypeError: ...
python
def _release_save_states(self): """Releases application save states""" self.saving = False self.grid.Enable() wx.EndBusyCursor() # Mark content as unchanged try: post_command_event(self.main_window, self.ContentChangedMsg) except TypeError: ...
[ "def", "_release_save_states", "(", "self", ")", ":", "self", ".", "saving", "=", "False", "self", ".", "grid", ".", "Enable", "(", ")", "wx", ".", "EndBusyCursor", "(", ")", "try", ":", "post_command_event", "(", "self", ".", "main_window", ",", "self",...
Releases application save states
[ "Releases", "application", "save", "states" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/actions/_grid_actions.py#L467-L479
train
manns/pyspread
pyspread/src/actions/_grid_actions.py
FileActions._move_tmp_file
def _move_tmp_file(self, tmpfilepath, filepath): """Moves tmpfile over file after saving is finished Parameters ---------- filepath: String \tTarget file path for xls file tmpfilepath: String \tTemporary file file path for xls file """ try: ...
python
def _move_tmp_file(self, tmpfilepath, filepath): """Moves tmpfile over file after saving is finished Parameters ---------- filepath: String \tTarget file path for xls file tmpfilepath: String \tTemporary file file path for xls file """ try: ...
[ "def", "_move_tmp_file", "(", "self", ",", "tmpfilepath", ",", "filepath", ")", ":", "try", ":", "shutil", ".", "move", "(", "tmpfilepath", ",", "filepath", ")", "except", "OSError", ",", "err", ":", "post_command_event", "(", "self", ".", "main_window", "...
Moves tmpfile over file after saving is finished Parameters ---------- filepath: String \tTarget file path for xls file tmpfilepath: String \tTemporary file file path for xls file
[ "Moves", "tmpfile", "over", "file", "after", "saving", "is", "finished" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/actions/_grid_actions.py#L481-L499
train
manns/pyspread
pyspread/src/actions/_grid_actions.py
FileActions._save_xls
def _save_xls(self, filepath): """Saves file as xls workbook Parameters ---------- filepath: String \tTarget file path for xls file """ Interface = self.type2interface["xls"] workbook = xlwt.Workbook() interface = Interface(self.grid.code_arra...
python
def _save_xls(self, filepath): """Saves file as xls workbook Parameters ---------- filepath: String \tTarget file path for xls file """ Interface = self.type2interface["xls"] workbook = xlwt.Workbook() interface = Interface(self.grid.code_arra...
[ "def", "_save_xls", "(", "self", ",", "filepath", ")", ":", "Interface", "=", "self", ".", "type2interface", "[", "\"xls\"", "]", "workbook", "=", "xlwt", ".", "Workbook", "(", ")", "interface", "=", "Interface", "(", "self", ".", "grid", ".", "code_arra...
Saves file as xls workbook Parameters ---------- filepath: String \tTarget file path for xls file
[ "Saves", "file", "as", "xls", "workbook" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/actions/_grid_actions.py#L501-L527
train
manns/pyspread
pyspread/src/actions/_grid_actions.py
FileActions._save_pys
def _save_pys(self, filepath): """Saves file as pys file and returns True if save success Parameters ---------- filepath: String \tTarget file path for xls file """ try: with Bz2AOpen(filepath, "wb", main_window=self.main_...
python
def _save_pys(self, filepath): """Saves file as pys file and returns True if save success Parameters ---------- filepath: String \tTarget file path for xls file """ try: with Bz2AOpen(filepath, "wb", main_window=self.main_...
[ "def", "_save_pys", "(", "self", ",", "filepath", ")", ":", "try", ":", "with", "Bz2AOpen", "(", "filepath", ",", "\"wb\"", ",", "main_window", "=", "self", ".", "main_window", ")", "as", "outfile", ":", "interface", "=", "Pys", "(", "self", ".", "grid...
Saves file as pys file and returns True if save success Parameters ---------- filepath: String \tTarget file path for xls file
[ "Saves", "file", "as", "pys", "file", "and", "returns", "True", "if", "save", "success" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/actions/_grid_actions.py#L529-L555
train
manns/pyspread
pyspread/src/actions/_grid_actions.py
FileActions._save_sign
def _save_sign(self, filepath): """Sign so that the new file may be retrieved without safe mode""" if self.code_array.safe_mode: msg = _("File saved but not signed because it is unapproved.") try: post_command_event(self.main_window, self.StatusBarMsg, ...
python
def _save_sign(self, filepath): """Sign so that the new file may be retrieved without safe mode""" if self.code_array.safe_mode: msg = _("File saved but not signed because it is unapproved.") try: post_command_event(self.main_window, self.StatusBarMsg, ...
[ "def", "_save_sign", "(", "self", ",", "filepath", ")", ":", "if", "self", ".", "code_array", ".", "safe_mode", ":", "msg", "=", "_", "(", "\"File saved but not signed because it is unapproved.\"", ")", "try", ":", "post_command_event", "(", "self", ".", "main_w...
Sign so that the new file may be retrieved without safe mode
[ "Sign", "so", "that", "the", "new", "file", "may", "be", "retrieved", "without", "safe", "mode" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/actions/_grid_actions.py#L585-L604
train
manns/pyspread
pyspread/src/actions/_grid_actions.py
FileActions.save
def save(self, event): """Saves a file that is specified in event.attr Parameters ---------- event.attr: Dict \tkey filepath contains file path of file to be saved """ filepath = event.attr["filepath"] try: filetype = event.attr["filetype"]...
python
def save(self, event): """Saves a file that is specified in event.attr Parameters ---------- event.attr: Dict \tkey filepath contains file path of file to be saved """ filepath = event.attr["filepath"] try: filetype = event.attr["filetype"]...
[ "def", "save", "(", "self", ",", "event", ")", ":", "filepath", "=", "event", ".", "attr", "[", "\"filepath\"", "]", "try", ":", "filetype", "=", "event", ".", "attr", "[", "\"filetype\"", "]", "except", "KeyError", ":", "filetype", "=", "\"pys\"", "if...
Saves a file that is specified in event.attr Parameters ---------- event.attr: Dict \tkey filepath contains file path of file to be saved
[ "Saves", "a", "file", "that", "is", "specified", "in", "event", ".", "attr" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/actions/_grid_actions.py#L606-L662
train
manns/pyspread
pyspread/src/actions/_grid_actions.py
TableRowActionsMixin.set_row_height
def set_row_height(self, row, height): """Sets row height and marks grid as changed""" # Mark content as changed post_command_event(self.main_window, self.ContentChangedMsg) tab = self.grid.current_table self.code_array.set_row_height(row, tab, height) self.grid.SetRow...
python
def set_row_height(self, row, height): """Sets row height and marks grid as changed""" # Mark content as changed post_command_event(self.main_window, self.ContentChangedMsg) tab = self.grid.current_table self.code_array.set_row_height(row, tab, height) self.grid.SetRow...
[ "def", "set_row_height", "(", "self", ",", "row", ",", "height", ")", ":", "post_command_event", "(", "self", ".", "main_window", ",", "self", ".", "ContentChangedMsg", ")", "tab", "=", "self", ".", "grid", ".", "current_table", "self", ".", "code_array", ...
Sets row height and marks grid as changed
[ "Sets", "row", "height", "and", "marks", "grid", "as", "changed" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/actions/_grid_actions.py#L668-L677
train
manns/pyspread
pyspread/src/actions/_grid_actions.py
TableRowActionsMixin.insert_rows
def insert_rows(self, row, no_rows=1): """Adds no_rows rows before row, appends if row > maxrows and marks grid as changed """ # Mark content as changed post_command_event(self.main_window, self.ContentChangedMsg) tab = self.grid.current_table self.code_array...
python
def insert_rows(self, row, no_rows=1): """Adds no_rows rows before row, appends if row > maxrows and marks grid as changed """ # Mark content as changed post_command_event(self.main_window, self.ContentChangedMsg) tab = self.grid.current_table self.code_array...
[ "def", "insert_rows", "(", "self", ",", "row", ",", "no_rows", "=", "1", ")", ":", "post_command_event", "(", "self", ".", "main_window", ",", "self", ".", "ContentChangedMsg", ")", "tab", "=", "self", ".", "grid", ".", "current_table", "self", ".", "cod...
Adds no_rows rows before row, appends if row > maxrows and marks grid as changed
[ "Adds", "no_rows", "rows", "before", "row", "appends", "if", "row", ">", "maxrows" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/actions/_grid_actions.py#L679-L691
train
manns/pyspread
pyspread/src/actions/_grid_actions.py
TableRowActionsMixin.delete_rows
def delete_rows(self, row, no_rows=1): """Deletes no_rows rows and marks grid as changed""" # Mark content as changed post_command_event(self.main_window, self.ContentChangedMsg) tab = self.grid.current_table try: self.code_array.delete(row, no_rows, axis=0, tab=ta...
python
def delete_rows(self, row, no_rows=1): """Deletes no_rows rows and marks grid as changed""" # Mark content as changed post_command_event(self.main_window, self.ContentChangedMsg) tab = self.grid.current_table try: self.code_array.delete(row, no_rows, axis=0, tab=ta...
[ "def", "delete_rows", "(", "self", ",", "row", ",", "no_rows", "=", "1", ")", ":", "post_command_event", "(", "self", ".", "main_window", ",", "self", ".", "ContentChangedMsg", ")", "tab", "=", "self", ".", "grid", ".", "current_table", "try", ":", "self...
Deletes no_rows rows and marks grid as changed
[ "Deletes", "no_rows", "rows", "and", "marks", "grid", "as", "changed" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/actions/_grid_actions.py#L693-L706
train
manns/pyspread
pyspread/src/actions/_grid_actions.py
TableColumnActionsMixin.set_col_width
def set_col_width(self, col, width): """Sets column width and marks grid as changed""" # Mark content as changed post_command_event(self.main_window, self.ContentChangedMsg) tab = self.grid.current_table self.code_array.set_col_width(col, tab, width) self.grid.SetColSi...
python
def set_col_width(self, col, width): """Sets column width and marks grid as changed""" # Mark content as changed post_command_event(self.main_window, self.ContentChangedMsg) tab = self.grid.current_table self.code_array.set_col_width(col, tab, width) self.grid.SetColSi...
[ "def", "set_col_width", "(", "self", ",", "col", ",", "width", ")", ":", "post_command_event", "(", "self", ".", "main_window", ",", "self", ".", "ContentChangedMsg", ")", "tab", "=", "self", ".", "grid", ".", "current_table", "self", ".", "code_array", "....
Sets column width and marks grid as changed
[ "Sets", "column", "width", "and", "marks", "grid", "as", "changed" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/actions/_grid_actions.py#L712-L721
train
manns/pyspread
pyspread/src/actions/_grid_actions.py
TableColumnActionsMixin.insert_cols
def insert_cols(self, col, no_cols=1): """Adds no_cols columns before col, appends if col > maxcols and marks grid as changed """ # Mark content as changed post_command_event(self.main_window, self.ContentChangedMsg) tab = self.grid.current_table self.code_ar...
python
def insert_cols(self, col, no_cols=1): """Adds no_cols columns before col, appends if col > maxcols and marks grid as changed """ # Mark content as changed post_command_event(self.main_window, self.ContentChangedMsg) tab = self.grid.current_table self.code_ar...
[ "def", "insert_cols", "(", "self", ",", "col", ",", "no_cols", "=", "1", ")", ":", "post_command_event", "(", "self", ".", "main_window", ",", "self", ".", "ContentChangedMsg", ")", "tab", "=", "self", ".", "grid", ".", "current_table", "self", ".", "cod...
Adds no_cols columns before col, appends if col > maxcols and marks grid as changed
[ "Adds", "no_cols", "columns", "before", "col", "appends", "if", "col", ">", "maxcols" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/actions/_grid_actions.py#L723-L735
train
manns/pyspread
pyspread/src/actions/_grid_actions.py
TableColumnActionsMixin.delete_cols
def delete_cols(self, col, no_cols=1): """Deletes no_cols column and marks grid as changed""" # Mark content as changed post_command_event(self.main_window, self.ContentChangedMsg) tab = self.grid.current_table try: self.code_array.delete(col, no_cols, axis=1, tab=...
python
def delete_cols(self, col, no_cols=1): """Deletes no_cols column and marks grid as changed""" # Mark content as changed post_command_event(self.main_window, self.ContentChangedMsg) tab = self.grid.current_table try: self.code_array.delete(col, no_cols, axis=1, tab=...
[ "def", "delete_cols", "(", "self", ",", "col", ",", "no_cols", "=", "1", ")", ":", "post_command_event", "(", "self", ".", "main_window", ",", "self", ".", "ContentChangedMsg", ")", "tab", "=", "self", ".", "grid", ".", "current_table", "try", ":", "self...
Deletes no_cols column and marks grid as changed
[ "Deletes", "no_cols", "column", "and", "marks", "grid", "as", "changed" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/actions/_grid_actions.py#L737-L750
train
manns/pyspread
pyspread/src/actions/_grid_actions.py
TableTabActionsMixin.insert_tabs
def insert_tabs(self, tab, no_tabs=1): """Adds no_tabs tabs before table, appends if tab > maxtabs and marks grid as changed """ # Mark content as changed post_command_event(self.main_window, self.ContentChangedMsg) self.code_array.insert(tab, no_tabs, axis=2) ...
python
def insert_tabs(self, tab, no_tabs=1): """Adds no_tabs tabs before table, appends if tab > maxtabs and marks grid as changed """ # Mark content as changed post_command_event(self.main_window, self.ContentChangedMsg) self.code_array.insert(tab, no_tabs, axis=2) ...
[ "def", "insert_tabs", "(", "self", ",", "tab", ",", "no_tabs", "=", "1", ")", ":", "post_command_event", "(", "self", ".", "main_window", ",", "self", ".", "ContentChangedMsg", ")", "self", ".", "code_array", ".", "insert", "(", "tab", ",", "no_tabs", ",...
Adds no_tabs tabs before table, appends if tab > maxtabs and marks grid as changed
[ "Adds", "no_tabs", "tabs", "before", "table", "appends", "if", "tab", ">", "maxtabs" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/actions/_grid_actions.py#L756-L770
train
manns/pyspread
pyspread/src/actions/_grid_actions.py
TableTabActionsMixin.delete_tabs
def delete_tabs(self, tab, no_tabs=1): """Deletes no_tabs tabs and marks grid as changed""" # Mark content as changed post_command_event(self.main_window, self.ContentChangedMsg) try: self.code_array.delete(tab, no_tabs, axis=2) # Update TableChoiceIntCtrl ...
python
def delete_tabs(self, tab, no_tabs=1): """Deletes no_tabs tabs and marks grid as changed""" # Mark content as changed post_command_event(self.main_window, self.ContentChangedMsg) try: self.code_array.delete(tab, no_tabs, axis=2) # Update TableChoiceIntCtrl ...
[ "def", "delete_tabs", "(", "self", ",", "tab", ",", "no_tabs", "=", "1", ")", ":", "post_command_event", "(", "self", ".", "main_window", ",", "self", ".", "ContentChangedMsg", ")", "try", ":", "self", ".", "code_array", ".", "delete", "(", "tab", ",", ...
Deletes no_tabs tabs and marks grid as changed
[ "Deletes", "no_tabs", "tabs", "and", "marks", "grid", "as", "changed" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/actions/_grid_actions.py#L772-L788
train
manns/pyspread
pyspread/src/actions/_grid_actions.py
TableActions.on_key
def on_key(self, event): """Sets abort if pasting and if escape is pressed""" # If paste is running and Esc is pressed then we need to abort if event.GetKeyCode() == wx.WXK_ESCAPE and \ self.pasting or self.grid.actions.saving: self.need_abort = True event.Skip(...
python
def on_key(self, event): """Sets abort if pasting and if escape is pressed""" # If paste is running and Esc is pressed then we need to abort if event.GetKeyCode() == wx.WXK_ESCAPE and \ self.pasting or self.grid.actions.saving: self.need_abort = True event.Skip(...
[ "def", "on_key", "(", "self", ",", "event", ")", ":", "if", "event", ".", "GetKeyCode", "(", ")", "==", "wx", ".", "WXK_ESCAPE", "and", "self", ".", "pasting", "or", "self", ".", "grid", ".", "actions", ".", "saving", ":", "self", ".", "need_abort", ...
Sets abort if pasting and if escape is pressed
[ "Sets", "abort", "if", "pasting", "and", "if", "escape", "is", "pressed" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/actions/_grid_actions.py#L808-L817
train
manns/pyspread
pyspread/src/actions/_grid_actions.py
TableActions._get_full_key
def _get_full_key(self, key): """Returns full key even if table is omitted""" length = len(key) if length == 3: return key elif length == 2: row, col = key tab = self.grid.current_table return row, col, tab else: msg...
python
def _get_full_key(self, key): """Returns full key even if table is omitted""" length = len(key) if length == 3: return key elif length == 2: row, col = key tab = self.grid.current_table return row, col, tab else: msg...
[ "def", "_get_full_key", "(", "self", ",", "key", ")", ":", "length", "=", "len", "(", "key", ")", "if", "length", "==", "3", ":", "return", "key", "elif", "length", "==", "2", ":", "row", ",", "col", "=", "key", "tab", "=", "self", ".", "grid", ...
Returns full key even if table is omitted
[ "Returns", "full", "key", "even", "if", "table", "is", "omitted" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/actions/_grid_actions.py#L819-L834
train
manns/pyspread
pyspread/src/actions/_grid_actions.py
TableActions._show_final_overflow_message
def _show_final_overflow_message(self, row_overflow, col_overflow): """Displays overflow message after import in statusbar""" if row_overflow and col_overflow: overflow_cause = _("rows and columns") elif row_overflow: overflow_cause = _("rows") elif col_overflow:...
python
def _show_final_overflow_message(self, row_overflow, col_overflow): """Displays overflow message after import in statusbar""" if row_overflow and col_overflow: overflow_cause = _("rows and columns") elif row_overflow: overflow_cause = _("rows") elif col_overflow:...
[ "def", "_show_final_overflow_message", "(", "self", ",", "row_overflow", ",", "col_overflow", ")", ":", "if", "row_overflow", "and", "col_overflow", ":", "overflow_cause", "=", "_", "(", "\"rows and columns\"", ")", "elif", "row_overflow", ":", "overflow_cause", "="...
Displays overflow message after import in statusbar
[ "Displays", "overflow", "message", "after", "import", "in", "statusbar" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/actions/_grid_actions.py#L846-L863
train
manns/pyspread
pyspread/src/actions/_grid_actions.py
TableActions._show_final_paste_message
def _show_final_paste_message(self, tl_key, no_pasted_cells): """Show actually pasted number of cells""" plural = "" if no_pasted_cells == 1 else _("s") statustext = _("{ncells} cell{plural} pasted at cell {topleft}").\ format(ncells=no_pasted_cells, plural=plural, topleft=tl_key) ...
python
def _show_final_paste_message(self, tl_key, no_pasted_cells): """Show actually pasted number of cells""" plural = "" if no_pasted_cells == 1 else _("s") statustext = _("{ncells} cell{plural} pasted at cell {topleft}").\ format(ncells=no_pasted_cells, plural=plural, topleft=tl_key) ...
[ "def", "_show_final_paste_message", "(", "self", ",", "tl_key", ",", "no_pasted_cells", ")", ":", "plural", "=", "\"\"", "if", "no_pasted_cells", "==", "1", "else", "_", "(", "\"s\"", ")", "statustext", "=", "_", "(", "\"{ncells} cell{plural} pasted at cell {tople...
Show actually pasted number of cells
[ "Show", "actually", "pasted", "number", "of", "cells" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/actions/_grid_actions.py#L865-L874
train
manns/pyspread
pyspread/src/actions/_grid_actions.py
TableActions.paste_to_current_cell
def paste_to_current_cell(self, tl_key, data, freq=None): """Pastes data into grid from top left cell tl_key Parameters ---------- ul_key: Tuple \key of top left cell of paste area data: iterable of iterables where inner iterable returns string \tThe outer itera...
python
def paste_to_current_cell(self, tl_key, data, freq=None): """Pastes data into grid from top left cell tl_key Parameters ---------- ul_key: Tuple \key of top left cell of paste area data: iterable of iterables where inner iterable returns string \tThe outer itera...
[ "def", "paste_to_current_cell", "(", "self", ",", "tl_key", ",", "data", ",", "freq", "=", "None", ")", ":", "self", ".", "pasting", "=", "True", "grid_rows", ",", "grid_cols", ",", "__", "=", "self", ".", "grid", ".", "code_array", ".", "shape", "self...
Pastes data into grid from top left cell tl_key Parameters ---------- ul_key: Tuple \key of top left cell of paste area data: iterable of iterables where inner iterable returns string \tThe outer iterable represents rows freq: Integer, defaults to None \...
[ "Pastes", "data", "into", "grid", "from", "top", "left", "cell", "tl_key" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/actions/_grid_actions.py#L876-L940
train
manns/pyspread
pyspread/src/actions/_grid_actions.py
TableActions.selection_paste_data_gen
def selection_paste_data_gen(self, selection, data, freq=None): """Generator that yields data for selection paste""" (bb_top, bb_left), (bb_bottom, bb_right) = \ selection.get_grid_bbox(self.grid.code_array.shape) bbox_height = bb_bottom - bb_top + 1 bbox_width = bb_right - ...
python
def selection_paste_data_gen(self, selection, data, freq=None): """Generator that yields data for selection paste""" (bb_top, bb_left), (bb_bottom, bb_right) = \ selection.get_grid_bbox(self.grid.code_array.shape) bbox_height = bb_bottom - bb_top + 1 bbox_width = bb_right - ...
[ "def", "selection_paste_data_gen", "(", "self", ",", "selection", ",", "data", ",", "freq", "=", "None", ")", ":", "(", "bb_top", ",", "bb_left", ")", ",", "(", "bb_bottom", ",", "bb_right", ")", "=", "selection", ".", "get_grid_bbox", "(", "self", ".", ...
Generator that yields data for selection paste
[ "Generator", "that", "yields", "data", "for", "selection", "paste" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/actions/_grid_actions.py#L942-L964
train
manns/pyspread
pyspread/src/actions/_grid_actions.py
TableActions.paste_to_selection
def paste_to_selection(self, selection, data, freq=None): """Pastes data into grid selection""" (bb_top, bb_left), (bb_bottom, bb_right) = \ selection.get_grid_bbox(self.grid.code_array.shape) adjusted_data = self.selection_paste_data_gen(selection, data) self.paste_to_curre...
python
def paste_to_selection(self, selection, data, freq=None): """Pastes data into grid selection""" (bb_top, bb_left), (bb_bottom, bb_right) = \ selection.get_grid_bbox(self.grid.code_array.shape) adjusted_data = self.selection_paste_data_gen(selection, data) self.paste_to_curre...
[ "def", "paste_to_selection", "(", "self", ",", "selection", ",", "data", ",", "freq", "=", "None", ")", ":", "(", "bb_top", ",", "bb_left", ")", ",", "(", "bb_bottom", ",", "bb_right", ")", "=", "selection", ".", "get_grid_bbox", "(", "self", ".", "gri...
Pastes data into grid selection
[ "Pastes", "data", "into", "grid", "selection" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/actions/_grid_actions.py#L966-L972
train
manns/pyspread
pyspread/src/actions/_grid_actions.py
TableActions.paste
def paste(self, tl_key, data, freq=None): """Pastes data into grid, marks grid changed If no selection is present, data is pasted starting with current cell If a selection is present, data is pasted fully if the selection is smaller. If the selection is larger then data is duplicated. ...
python
def paste(self, tl_key, data, freq=None): """Pastes data into grid, marks grid changed If no selection is present, data is pasted starting with current cell If a selection is present, data is pasted fully if the selection is smaller. If the selection is larger then data is duplicated. ...
[ "def", "paste", "(", "self", ",", "tl_key", ",", "data", ",", "freq", "=", "None", ")", ":", "selection", "=", "self", ".", "get_selection", "(", ")", "post_command_event", "(", "self", ".", "main_window", ",", "self", ".", "ContentChangedMsg", ")", "if"...
Pastes data into grid, marks grid changed If no selection is present, data is pasted starting with current cell If a selection is present, data is pasted fully if the selection is smaller. If the selection is larger then data is duplicated. Parameters ---------- ul_key...
[ "Pastes", "data", "into", "grid", "marks", "grid", "changed" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/actions/_grid_actions.py#L974-L1005
train
manns/pyspread
pyspread/src/actions/_grid_actions.py
TableActions.change_grid_shape
def change_grid_shape(self, shape): """Grid shape change event handler, marks content as changed""" # Mark content as changed post_command_event(self.main_window, self.ContentChangedMsg) self.code_array.shape = shape # Update TableChoiceIntCtrl post_command_event(self....
python
def change_grid_shape(self, shape): """Grid shape change event handler, marks content as changed""" # Mark content as changed post_command_event(self.main_window, self.ContentChangedMsg) self.code_array.shape = shape # Update TableChoiceIntCtrl post_command_event(self....
[ "def", "change_grid_shape", "(", "self", ",", "shape", ")", ":", "post_command_event", "(", "self", ".", "main_window", ",", "self", ".", "ContentChangedMsg", ")", "self", ".", "code_array", ".", "shape", "=", "shape", "post_command_event", "(", "self", ".", ...
Grid shape change event handler, marks content as changed
[ "Grid", "shape", "change", "event", "handler", "marks", "content", "as", "changed" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/actions/_grid_actions.py#L1007-L1022
train
manns/pyspread
pyspread/src/actions/_grid_actions.py
TableActions.replace_cells
def replace_cells(self, key, sorted_row_idxs): """Replaces cells in current selection so that they are sorted""" row, col, tab = key new_keys = {} del_keys = [] selection = self.grid.actions.get_selection() for __row, __col, __tab in self.grid.code_array: ...
python
def replace_cells(self, key, sorted_row_idxs): """Replaces cells in current selection so that they are sorted""" row, col, tab = key new_keys = {} del_keys = [] selection = self.grid.actions.get_selection() for __row, __col, __tab in self.grid.code_array: ...
[ "def", "replace_cells", "(", "self", ",", "key", ",", "sorted_row_idxs", ")", ":", "row", ",", "col", ",", "tab", "=", "key", "new_keys", "=", "{", "}", "del_keys", "=", "[", "]", "selection", "=", "self", ".", "grid", ".", "actions", ".", "get_selec...
Replaces cells in current selection so that they are sorted
[ "Replaces", "cells", "in", "current", "selection", "so", "that", "they", "are", "sorted" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/actions/_grid_actions.py#L1024-L1047
train
manns/pyspread
pyspread/src/actions/_grid_actions.py
GridActions.new
def new(self, event): """Creates a new spreadsheet. Expects code_array in event.""" # Grid table handles interaction to code_array self.grid.actions.clear(event.shape) _grid_table = GridTable(self.grid, self.grid.code_array) self.grid.SetTable(_grid_table, True) # Upd...
python
def new(self, event): """Creates a new spreadsheet. Expects code_array in event.""" # Grid table handles interaction to code_array self.grid.actions.clear(event.shape) _grid_table = GridTable(self.grid, self.grid.code_array) self.grid.SetTable(_grid_table, True) # Upd...
[ "def", "new", "(", "self", ",", "event", ")", ":", "self", ".", "grid", ".", "actions", ".", "clear", "(", "event", ".", "shape", ")", "_grid_table", "=", "GridTable", "(", "self", ".", "grid", ",", "self", ".", "grid", ".", "code_array", ")", "sel...
Creates a new spreadsheet. Expects code_array in event.
[ "Creates", "a", "new", "spreadsheet", ".", "Expects", "code_array", "in", "event", "." ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/actions/_grid_actions.py#L1098-L1110
train
manns/pyspread
pyspread/src/actions/_grid_actions.py
GridActions._zoom_rows
def _zoom_rows(self, zoom): """Zooms grid rows""" self.grid.SetDefaultRowSize(self.grid.std_row_size * zoom, resizeExistingRows=True) self.grid.SetRowLabelSize(self.grid.row_label_size * zoom) for row, tab in self.code_array.row_heights: ...
python
def _zoom_rows(self, zoom): """Zooms grid rows""" self.grid.SetDefaultRowSize(self.grid.std_row_size * zoom, resizeExistingRows=True) self.grid.SetRowLabelSize(self.grid.row_label_size * zoom) for row, tab in self.code_array.row_heights: ...
[ "def", "_zoom_rows", "(", "self", ",", "zoom", ")", ":", "self", ".", "grid", ".", "SetDefaultRowSize", "(", "self", ".", "grid", ".", "std_row_size", "*", "zoom", ",", "resizeExistingRows", "=", "True", ")", "self", ".", "grid", ".", "SetRowLabelSize", ...
Zooms grid rows
[ "Zooms", "grid", "rows" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/actions/_grid_actions.py#L1114-L1128
train
manns/pyspread
pyspread/src/actions/_grid_actions.py
GridActions._zoom_cols
def _zoom_cols(self, zoom): """Zooms grid columns""" self.grid.SetDefaultColSize(self.grid.std_col_size * zoom, resizeExistingCols=True) self.grid.SetColLabelSize(self.grid.col_label_size * zoom) for col, tab in self.code_array.col_widths: ...
python
def _zoom_cols(self, zoom): """Zooms grid columns""" self.grid.SetDefaultColSize(self.grid.std_col_size * zoom, resizeExistingCols=True) self.grid.SetColLabelSize(self.grid.col_label_size * zoom) for col, tab in self.code_array.col_widths: ...
[ "def", "_zoom_cols", "(", "self", ",", "zoom", ")", ":", "self", ".", "grid", ".", "SetDefaultColSize", "(", "self", ".", "grid", ".", "std_col_size", "*", "zoom", ",", "resizeExistingCols", "=", "True", ")", "self", ".", "grid", ".", "SetColLabelSize", ...
Zooms grid columns
[ "Zooms", "grid", "columns" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/actions/_grid_actions.py#L1130-L1144
train
manns/pyspread
pyspread/src/actions/_grid_actions.py
GridActions._zoom_labels
def _zoom_labels(self, zoom): """Adjust grid label font to zoom factor""" labelfont = self.grid.GetLabelFont() default_fontsize = get_default_font().GetPointSize() labelfont.SetPointSize(max(1, int(round(default_fontsize * zoom)))) self.grid.SetLabelFont(labelfont)
python
def _zoom_labels(self, zoom): """Adjust grid label font to zoom factor""" labelfont = self.grid.GetLabelFont() default_fontsize = get_default_font().GetPointSize() labelfont.SetPointSize(max(1, int(round(default_fontsize * zoom)))) self.grid.SetLabelFont(labelfont)
[ "def", "_zoom_labels", "(", "self", ",", "zoom", ")", ":", "labelfont", "=", "self", ".", "grid", ".", "GetLabelFont", "(", ")", "default_fontsize", "=", "get_default_font", "(", ")", ".", "GetPointSize", "(", ")", "labelfont", ".", "SetPointSize", "(", "m...
Adjust grid label font to zoom factor
[ "Adjust", "grid", "label", "font", "to", "zoom", "factor" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/actions/_grid_actions.py#L1146-L1152
train