_id
stringlengths
2
7
title
stringlengths
1
88
partition
stringclasses
3 values
text
stringlengths
75
19.8k
language
stringclasses
1 value
meta_information
dict
q231900
MainWindowEventHandlers.OnCopy
train
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
{ "resource": "" }
q231901
MainWindowEventHandlers.OnCopyResult
train
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
{ "resource": "" }
q231902
MainWindowEventHandlers.OnPaste
train
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
{ "resource": "" }
q231903
MainWindowEventHandlers.OnPasteAs
train
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
{ "resource": "" }
q231904
MainWindowEventHandlers.OnSelectAll
train
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
{ "resource": "" }
q231905
MainWindowEventHandlers.OnFontDialog
train
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
{ "resource": "" }
q231906
MainWindowEventHandlers.OnTextColorDialog
train
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
{ "resource": "" }
q231907
MainWindowEventHandlers.OnMacroListLoad
train
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
{ "resource": "" }
q231908
MainWindowEventHandlers.OnMacroListSave
train
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
{ "resource": "" }
q231909
MainWindowEventHandlers.OnDependencies
train
def OnDependencies(self, event): """Display dependency dialog""" dlg = DependencyDialog(self.main_window) dlg.ShowModal() dlg.Destroy()
python
{ "resource": "" }
q231910
_filledMenu._add_submenu
train
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
{ "resource": "" }
q231911
_filledMenu.OnMenu
train
def OnMenu(self, event): """Menu event handler""" msgtype = self.ids_msgs[event.GetId()] post_command_event(self.parent, msgtype)
python
{ "resource": "" }
q231912
_filledMenu.OnUpdate
train
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
{ "resource": "" }
q231913
TextEditor.OnFont
train
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
{ "resource": "" }
q231914
TickParamsEditor.OnDirectionChoice
train
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
{ "resource": "" }
q231915
TickParamsEditor.OnSecondaryCheckbox
train
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
{ "resource": "" }
q231916
TickParamsEditor.OnPadIntCtrl
train
def OnPadIntCtrl(self, event): """Pad IntCtrl event handler""" self.attrs["pad"] = event.GetValue() post_command_event(self, self.DrawChartMsg)
python
{ "resource": "" }
q231917
TickParamsEditor.OnLabelSizeIntCtrl
train
def OnLabelSizeIntCtrl(self, event): """Label size IntCtrl event handler""" self.attrs["labelsize"] = event.GetValue() post_command_event(self, self.DrawChartMsg)
python
{ "resource": "" }
q231918
StyleEditorMixin.get_code
train
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
{ "resource": "" }
q231919
SeriesAttributesPanelBase.update
train
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
{ "resource": "" }
q231920
SeriesPanel.get_plot_panel
train
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
{ "resource": "" }
q231921
SeriesPanel.set_plot_type
train
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
{ "resource": "" }
q231922
AllSeriesPanel.update
train
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
{ "resource": "" }
q231923
AllSeriesPanel.OnSeriesChanged
train
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
{ "resource": "" }
q231924
FigurePanel.update
train
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
{ "resource": "" }
q231925
ChartDialog.get_figure
train
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
{ "resource": "" }
q231926
ChartDialog.set_code
train
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
{ "resource": "" }
q231927
ChartDialog.get_code
train
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
{ "resource": "" }
q231928
ChartDialog.OnUpdateFigurePanel
train
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
{ "resource": "" }
q231929
Selection.parameters
train
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
{ "resource": "" }
q231930
Selection.get_access_string
train
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
{ "resource": "" }
q231931
Selection.shifted
train
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
{ "resource": "" }
q231932
Selection.grid_select
train
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
{ "resource": "" }
q231933
object2code
train
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
{ "resource": "" }
q231934
fig2bmp
train
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
{ "resource": "" }
q231935
fig2x
train
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
{ "resource": "" }
q231936
ChartFigure._xdate_setter
train
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
{ "resource": "" }
q231937
ChartFigure._setup_axes
train
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
{ "resource": "" }
q231938
ChartFigure.draw_chart
train
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
{ "resource": "" }
q231939
GridTable.GetSource
train
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
{ "resource": "" }
q231940
GridTable.GetValue
train
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
{ "resource": "" }
q231941
GridTable.SetValue
train
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
{ "resource": "" }
q231942
GridTable.UpdateValues
train
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
{ "resource": "" }
q231943
post_command_event
train
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
{ "resource": "" }
q231944
Clipboard._convert_clipboard
train
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
{ "resource": "" }
q231945
Clipboard.get_clipboard
train
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
{ "resource": "" }
q231946
Clipboard.set_clipboard
train
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
{ "resource": "" }
q231947
draw_rect
train
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
{ "resource": "" }
q231948
FileActions._is_aborted
train
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
{ "resource": "" }
q231949
FileActions.validate_signature
train
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
{ "resource": "" }
q231950
FileActions.leave_safe_mode
train
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
{ "resource": "" }
q231951
FileActions.approve
train
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
{ "resource": "" }
q231952
FileActions.clear_globals_reload_modules
train
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
{ "resource": "" }
q231953
FileActions._get_file_version
train
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
{ "resource": "" }
q231954
FileActions.clear
train
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
{ "resource": "" }
q231955
FileActions.open
train
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
{ "resource": "" }
q231956
FileActions.sign_file
train
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
{ "resource": "" }
q231957
FileActions._set_save_states
train
def _set_save_states(self): """Sets application save states""" wx.BeginBusyCursor() self.saving = True self.grid.Disable()
python
{ "resource": "" }
q231958
FileActions._release_save_states
train
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
{ "resource": "" }
q231959
FileActions._move_tmp_file
train
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
{ "resource": "" }
q231960
FileActions._save_xls
train
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
{ "resource": "" }
q231961
FileActions._save_pys
train
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
{ "resource": "" }
q231962
FileActions._save_sign
train
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
{ "resource": "" }
q231963
FileActions.save
train
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
{ "resource": "" }
q231964
TableRowActionsMixin.set_row_height
train
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
{ "resource": "" }
q231965
TableRowActionsMixin.insert_rows
train
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
{ "resource": "" }
q231966
TableRowActionsMixin.delete_rows
train
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
{ "resource": "" }
q231967
TableColumnActionsMixin.set_col_width
train
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
{ "resource": "" }
q231968
TableColumnActionsMixin.insert_cols
train
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
{ "resource": "" }
q231969
TableColumnActionsMixin.delete_cols
train
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
{ "resource": "" }
q231970
TableTabActionsMixin.insert_tabs
train
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
{ "resource": "" }
q231971
TableTabActionsMixin.delete_tabs
train
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
{ "resource": "" }
q231972
TableActions.on_key
train
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
{ "resource": "" }
q231973
TableActions._get_full_key
train
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
{ "resource": "" }
q231974
TableActions._show_final_overflow_message
train
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
{ "resource": "" }
q231975
TableActions._show_final_paste_message
train
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
{ "resource": "" }
q231976
TableActions.paste_to_current_cell
train
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
{ "resource": "" }
q231977
TableActions.selection_paste_data_gen
train
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
{ "resource": "" }
q231978
TableActions.paste_to_selection
train
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
{ "resource": "" }
q231979
TableActions.paste
train
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
{ "resource": "" }
q231980
TableActions.change_grid_shape
train
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
{ "resource": "" }
q231981
TableActions.replace_cells
train
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
{ "resource": "" }
q231982
GridActions.new
train
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
{ "resource": "" }
q231983
GridActions._zoom_rows
train
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
{ "resource": "" }
q231984
GridActions._zoom_cols
train
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
{ "resource": "" }
q231985
GridActions._zoom_labels
train
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
{ "resource": "" }
q231986
GridActions.zoom
train
def zoom(self, zoom=None): """Zooms to zoom factor""" status = True if zoom is None: zoom = self.grid.grid_renderer.zoom status = False # Zoom factor for grid content self.grid.grid_renderer.zoom = zoom # Zoom grid labels self._zoom_lab...
python
{ "resource": "" }
q231987
GridActions.zoom_in
train
def zoom_in(self): """Zooms in by zoom factor""" zoom = self.grid.grid_renderer.zoom target_zoom = zoom * (1 + config["zoom_factor"]) if target_zoom < config["maximum_zoom"]: self.zoom(target_zoom)
python
{ "resource": "" }
q231988
GridActions.zoom_out
train
def zoom_out(self): """Zooms out by zoom factor""" zoom = self.grid.grid_renderer.zoom target_zoom = zoom * (1 - config["zoom_factor"]) if target_zoom > config["minimum_zoom"]: self.zoom(target_zoom)
python
{ "resource": "" }
q231989
GridActions._get_rows_height
train
def _get_rows_height(self): """Returns the total height of all grid rows""" tab = self.grid.current_table no_rows = self.grid.code_array.shape[0] default_row_height = self.grid.code_array.cell_attributes.\ default_cell_attributes["row-height"] non_standard_row_heigh...
python
{ "resource": "" }
q231990
GridActions._get_cols_width
train
def _get_cols_width(self): """Returns the total width of all grid cols""" tab = self.grid.current_table no_cols = self.grid.code_array.shape[1] default_col_width = self.grid.code_array.cell_attributes.\ default_cell_attributes["column-width"] non_standard_col_widths...
python
{ "resource": "" }
q231991
GridActions.zoom_fit
train
def zoom_fit(self): """Zooms the rid to fit the window. Only has an effect if the resulting zoom level is between minimum and maximum zoom level. """ zoom = self.grid.grid_renderer.zoom grid_width, grid_height = self.grid.GetSize() rows_height = self._get_row...
python
{ "resource": "" }
q231992
GridActions.on_mouse_over
train
def on_mouse_over(self, key): """Displays cell code of cell key in status bar""" def split_lines(string, line_length=80): """Returns string that is split into lines of length line_length""" result = u"" line = 0 while len(string) > line_length * line: ...
python
{ "resource": "" }
q231993
GridActions.get_visible_area
train
def get_visible_area(self): """Returns visible area Format is a tuple of the top left tuple and the lower right tuple """ grid = self.grid top = grid.YToRow(grid.GetViewStart()[1] * grid.ScrollLineX) left = grid.XToCol(grid.GetViewStart()[0] * grid.ScrollLineY) ...
python
{ "resource": "" }
q231994
GridActions.switch_to_table
train
def switch_to_table(self, event): """Switches grid to table Parameters ---------- event.newtable: Integer \tTable that the grid is switched to """ newtable = event.newtable no_tabs = self.grid.code_array.shape[2] - 1 if 0 <= newtable <= no_ta...
python
{ "resource": "" }
q231995
GridActions.set_cursor
train
def set_cursor(self, value): """Changes the grid cursor cell. Parameters ---------- value: 2-tuple or 3-tuple of String \trow, col, tab or row, col for target cursor position """ shape = self.grid.code_array.shape if len(value) == 3: self....
python
{ "resource": "" }
q231996
SelectionActions.get_selection
train
def get_selection(self): """Returns selected cells in grid as Selection object""" # GetSelectedCells: individual cells selected by ctrl-clicking # GetSelectedRows: rows selected by clicking on the labels # GetSelectedCols: cols selected by clicking on the labels # GetSelectionBl...
python
{ "resource": "" }
q231997
SelectionActions.select_cell
train
def select_cell(self, row, col, add_to_selected=False): """Selects a single cell""" self.grid.SelectBlock(row, col, row, col, addToSelected=add_to_selected)
python
{ "resource": "" }
q231998
SelectionActions.select_slice
train
def select_slice(self, row_slc, col_slc, add_to_selected=False): """Selects a slice of cells Parameters ---------- * row_slc: Integer or Slice \tRows to be selected * col_slc: Integer or Slice \tColumns to be selected * add_to_selected: Bool, defaults ...
python
{ "resource": "" }
q231999
SelectionActions.delete_selection
train
def delete_selection(self, selection=None): """Deletes selection, marks content as changed If selection is None then the current grid selection is used. Parameters ---------- selection: Selection, defaults to None \tSelection that shall be deleted """ ...
python
{ "resource": "" }