mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-27 05:32:41 -06:00
128 lines
6.3 KiB
Python
Executable file
128 lines
6.3 KiB
Python
Executable file
# This file is generated by wxPython's SIP generator. Do not edit by hand.
|
|
#
|
|
# Copyright: (c) 2013 by Total Control Software
|
|
# License: wxWindows License
|
|
|
|
from ._grid import *
|
|
|
|
import wx
|
|
|
|
def _GridCellCoords___str__(self):
|
|
return str(self.Get())
|
|
GridCellCoords.__str__ = _GridCellCoords___str__
|
|
del _GridCellCoords___str__
|
|
def _GridCellCoords___repr__(self):
|
|
return "GridCellCoords"+str(self.Get())
|
|
GridCellCoords.__repr__ = _GridCellCoords___repr__
|
|
del _GridCellCoords___repr__
|
|
def _GridCellCoords___len__(self):
|
|
return len(self.Get())
|
|
GridCellCoords.__len__ = _GridCellCoords___len__
|
|
del _GridCellCoords___len__
|
|
def _GridCellCoords___nonzero__(self):
|
|
return self.Get() != (0,0)
|
|
GridCellCoords.__nonzero__ = _GridCellCoords___nonzero__
|
|
del _GridCellCoords___nonzero__
|
|
def _GridCellCoords___reduce__(self):
|
|
return (GridCellCoords, self.Get())
|
|
GridCellCoords.__reduce__ = _GridCellCoords___reduce__
|
|
del _GridCellCoords___reduce__
|
|
def _GridCellCoords___getitem__(self, idx):
|
|
return self.Get()[idx]
|
|
GridCellCoords.__getitem__ = _GridCellCoords___getitem__
|
|
del _GridCellCoords___getitem__
|
|
def _GridCellCoords___setitem__(self, idx, val):
|
|
if idx == 0: self.Row = val
|
|
elif idx == 1: self.Col = val
|
|
else: raise IndexError
|
|
GridCellCoords.__setitem__ = _GridCellCoords___setitem__
|
|
del _GridCellCoords___setitem__
|
|
GridCellCoords.__safe_for_unpickling__ = True
|
|
|
|
def _Grid_SetTable(self, table, takeOwnership=False, selmode=Grid.GridSelectCells):
|
|
"""
|
|
Set the Grid Table to be used by this grid.
|
|
"""
|
|
val = self._SetTable(table, takeOwnership, selmode)
|
|
if takeOwnership:
|
|
import wx.siplib
|
|
wx.siplib.transferto(table, self)
|
|
return val
|
|
Grid.SetTable = _Grid_SetTable
|
|
del _Grid_SetTable
|
|
Grid.Table = property(Grid.GetTable, Grid.SetTable)
|
|
def _GridUpdateLocker___enter__(self):
|
|
return self
|
|
GridUpdateLocker.__enter__ = _GridUpdateLocker___enter__
|
|
del _GridUpdateLocker___enter__
|
|
def _GridUpdateLocker___exit__(self, exc_type, exc_val, exc_tb):
|
|
return False
|
|
GridUpdateLocker.__exit__ = _GridUpdateLocker___exit__
|
|
del _GridUpdateLocker___exit__
|
|
EVT_GRID_CELL_LEFT_CLICK = wx.PyEventBinder( wxEVT_GRID_CELL_LEFT_CLICK )
|
|
EVT_GRID_CELL_RIGHT_CLICK = wx.PyEventBinder( wxEVT_GRID_CELL_RIGHT_CLICK )
|
|
EVT_GRID_CELL_LEFT_DCLICK = wx.PyEventBinder( wxEVT_GRID_CELL_LEFT_DCLICK )
|
|
EVT_GRID_CELL_RIGHT_DCLICK = wx.PyEventBinder( wxEVT_GRID_CELL_RIGHT_DCLICK )
|
|
EVT_GRID_LABEL_LEFT_CLICK = wx.PyEventBinder( wxEVT_GRID_LABEL_LEFT_CLICK )
|
|
EVT_GRID_LABEL_RIGHT_CLICK = wx.PyEventBinder( wxEVT_GRID_LABEL_RIGHT_CLICK )
|
|
EVT_GRID_LABEL_LEFT_DCLICK = wx.PyEventBinder( wxEVT_GRID_LABEL_LEFT_DCLICK )
|
|
EVT_GRID_LABEL_RIGHT_DCLICK = wx.PyEventBinder( wxEVT_GRID_LABEL_RIGHT_DCLICK )
|
|
EVT_GRID_ROW_SIZE = wx.PyEventBinder( wxEVT_GRID_ROW_SIZE )
|
|
EVT_GRID_COL_SIZE = wx.PyEventBinder( wxEVT_GRID_COL_SIZE )
|
|
EVT_GRID_RANGE_SELECT = wx.PyEventBinder( wxEVT_GRID_RANGE_SELECT )
|
|
EVT_GRID_CELL_CHANGING = wx.PyEventBinder( wxEVT_GRID_CELL_CHANGING )
|
|
EVT_GRID_CELL_CHANGED = wx.PyEventBinder( wxEVT_GRID_CELL_CHANGED )
|
|
EVT_GRID_SELECT_CELL = wx.PyEventBinder( wxEVT_GRID_SELECT_CELL )
|
|
EVT_GRID_EDITOR_SHOWN = wx.PyEventBinder( wxEVT_GRID_EDITOR_SHOWN )
|
|
EVT_GRID_EDITOR_HIDDEN = wx.PyEventBinder( wxEVT_GRID_EDITOR_HIDDEN )
|
|
EVT_GRID_EDITOR_CREATED = wx.PyEventBinder( wxEVT_GRID_EDITOR_CREATED )
|
|
EVT_GRID_CELL_BEGIN_DRAG = wx.PyEventBinder( wxEVT_GRID_CELL_BEGIN_DRAG )
|
|
EVT_GRID_COL_MOVE = wx.PyEventBinder( wxEVT_GRID_COL_MOVE )
|
|
EVT_GRID_COL_SORT = wx.PyEventBinder( wxEVT_GRID_COL_SORT )
|
|
EVT_GRID_TABBING = wx.PyEventBinder( wxEVT_GRID_TABBING )
|
|
|
|
# The same as above but with the ability to specify an identifier
|
|
EVT_GRID_CMD_CELL_LEFT_CLICK = wx.PyEventBinder( wxEVT_GRID_CELL_LEFT_CLICK, 1 )
|
|
EVT_GRID_CMD_CELL_RIGHT_CLICK = wx.PyEventBinder( wxEVT_GRID_CELL_RIGHT_CLICK, 1 )
|
|
EVT_GRID_CMD_CELL_LEFT_DCLICK = wx.PyEventBinder( wxEVT_GRID_CELL_LEFT_DCLICK, 1 )
|
|
EVT_GRID_CMD_CELL_RIGHT_DCLICK = wx.PyEventBinder( wxEVT_GRID_CELL_RIGHT_DCLICK, 1 )
|
|
EVT_GRID_CMD_LABEL_LEFT_CLICK = wx.PyEventBinder( wxEVT_GRID_LABEL_LEFT_CLICK, 1 )
|
|
EVT_GRID_CMD_LABEL_RIGHT_CLICK = wx.PyEventBinder( wxEVT_GRID_LABEL_RIGHT_CLICK, 1 )
|
|
EVT_GRID_CMD_LABEL_LEFT_DCLICK = wx.PyEventBinder( wxEVT_GRID_LABEL_LEFT_DCLICK, 1 )
|
|
EVT_GRID_CMD_LABEL_RIGHT_DCLICK = wx.PyEventBinder( wxEVT_GRID_LABEL_RIGHT_DCLICK, 1 )
|
|
EVT_GRID_CMD_ROW_SIZE = wx.PyEventBinder( wxEVT_GRID_ROW_SIZE, 1 )
|
|
EVT_GRID_CMD_COL_SIZE = wx.PyEventBinder( wxEVT_GRID_COL_SIZE, 1 )
|
|
EVT_GRID_CMD_RANGE_SELECT = wx.PyEventBinder( wxEVT_GRID_RANGE_SELECT, 1 )
|
|
EVT_GRID_CMD_CELL_CHANGING = wx.PyEventBinder( wxEVT_GRID_CELL_CHANGING, 1 )
|
|
EVT_GRID_CMD_CELL_CHANGED = wx.PyEventBinder( wxEVT_GRID_CELL_CHANGED, 1 )
|
|
EVT_GRID_CMD_SELECT_CELL = wx.PyEventBinder( wxEVT_GRID_SELECT_CELL, 1 )
|
|
EVT_GRID_CMD_EDITOR_SHOWN = wx.PyEventBinder( wxEVT_GRID_EDITOR_SHOWN, 1 )
|
|
EVT_GRID_CMD_EDITOR_HIDDEN = wx.PyEventBinder( wxEVT_GRID_EDITOR_HIDDEN, 1 )
|
|
EVT_GRID_CMD_EDITOR_CREATED = wx.PyEventBinder( wxEVT_GRID_EDITOR_CREATED, 1 )
|
|
EVT_GRID_CMD_CELL_BEGIN_DRAG = wx.PyEventBinder( wxEVT_GRID_CELL_BEGIN_DRAG, 1 )
|
|
EVT_GRID_CMD_COL_MOVE = wx.PyEventBinder( wxEVT_GRID_COL_MOVE, 1 )
|
|
EVT_GRID_CMD_COL_SORT = wx.PyEventBinder( wxEVT_GRID_COL_SORT, 1 )
|
|
EVT_GRID_CMD_TABBING = wx.PyEventBinder( wxEVT_GRID_TABBING, 1 )
|
|
|
|
GRID_VALUE_STRING = "string"
|
|
GRID_VALUE_BOOL = "bool"
|
|
GRID_VALUE_NUMBER = "long"
|
|
GRID_VALUE_FLOAT = "double"
|
|
GRID_VALUE_CHOICE = "choice"
|
|
GRID_VALUE_TEXT = "string"
|
|
GRID_VALUE_LONG = "long"
|
|
GRID_VALUE_CHOICEINT = "choiceint"
|
|
GRID_VALUE_DATETIME = "datetime"
|
|
|
|
def _GridCellCoordsArray___repr__(self):
|
|
return "GridCellCoordsArray: " + repr(list(self))
|
|
GridCellCoordsArray.__repr__ = _GridCellCoordsArray___repr__
|
|
del _GridCellCoordsArray___repr__
|
|
PyGridCellRenderer = wx.deprecated(GridCellRenderer, 'Use GridCellRenderer instead.')
|
|
|
|
PyGridCellEditor = wx.deprecated(GridCellEditor, 'Use GridCellEditor instead.')
|
|
|
|
PyGridCellAttrProvider = wx.deprecated(GridCellAttrProvider, 'Use GridCellAttrProvider instead.')
|
|
|
|
PyGridTableBase = wx.deprecated(GridTableBase, 'Use GridTableBase instead.')
|
|
|