Module tkintertable.Custom
Custom Table sub-class illustrate table functionality. Created January 2008 Copyright (C) Damien Farrell
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Source code
#!/usr/bin/env python
"""
Custom Table sub-class illustrate table functionality.
Created January 2008
Copyright (C) Damien Farrell
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
"""
from __future__ import absolute_import, division, print_function
try:
from tkinter import *
from tkinter.ttk import *
from tkinter import filedialog, messagebox, simpledialog
from tkinter import font
except:
from Tkinter import *
from ttk import *
import tkFileDialog as filedialog
import tkSimpleDialog as simpledialog
import tkMessageBox as messagebox
import TkFont as font
from .Tables import TableCanvas, ColumnHeader
class MyTable(TableCanvas):
"""Sub-class of Tablecanvas, with some changes in behaviour to make
a customised table - just an example"""
def __init__(self, parent=None, model=None):
TableCanvas.__init__(self, parent, model)
self.cellbackgr = '#FFFAF0'
self.entrybackgr = 'white'
self.selectedcolor = 'yellow'
self.rowselectedcolor = '#B0E0E6'
self.multipleselectioncolor = '#ECD672'
return
Classes
class MyTable (parent=None, model=None)
-
Sub-class of Tablecanvas, with some changes in behaviour to make a customised table - just an example
Construct a canvas widget with the parent MASTER.
Valid resource names: background, bd, bg, borderwidth, closeenough, confine, cursor, height, highlightbackground, highlightcolor, highlightthickness, insertbackground, insertborderwidth, insertofftime, insertontime, insertwidth, offset, relief, scrollregion, selectbackground, selectborderwidth, selectforeground, state, takefocus, width, xscrollcommand, xscrollincrement, yscrollcommand, yscrollincrement.
Source code
class MyTable(TableCanvas): """Sub-class of Tablecanvas, with some changes in behaviour to make a customised table - just an example""" def __init__(self, parent=None, model=None): TableCanvas.__init__(self, parent, model) self.cellbackgr = '#FFFAF0' self.entrybackgr = 'white' self.selectedcolor = 'yellow' self.rowselectedcolor = '#B0E0E6' self.multipleselectioncolor = '#ECD672' return
Ancestors
- TableCanvas
- tkinter.Canvas
- tkinter.Widget
- tkinter.BaseWidget
- tkinter.Misc
- tkinter.Pack
- tkinter.Place
- tkinter.Grid
- tkinter.XView
- tkinter.YView
Inherited members
TableCanvas
:addColumn
addRow
addRows
adjustColumnWidths
applyPrefs
autoAddColumns
autoResizeColumns
checkDataEntry
checkOSType
check_hyperlink
clearData
closeFilterFrame
convertFormulae
copyCell
copyColumns
createFilteringBar
createfromDict
deleteCells
deleteColumn
deleteRow
doFilter
do_bindings
drawCellEntry
drawGrid
drawMultipleCells
drawMultipleRows
drawRect
drawRowHeader
drawSelectedCol
drawSelectedRect
drawSelectedRow
drawText
drawTooltip
exportTable
fillAcross
fillDown
findValue
formula_Dialog
getCanvasPos
getCellCoords
getColPosition
getGeometry
getModel
getRecordInfo
getRowPosition
getSelectedColumn
getSelectedRow
getSelectionValues
getVisibleCols
getVisibleRegion
getVisibleRows
get_col_clicked
get_currentColName
get_currentRecCol
get_currentRecord
get_currentRecordName
get_row_clicked
get_selectedRecordNames
getplotlabels
gotonextCell
gotonextRow
gotoprevRow
handleFormulaClick
handle_arrow_keys
handle_double_click
handle_left_click
handle_left_ctrl_click
handle_left_shift_click
handle_motion
handle_mouse_drag
handle_right_click
importCSV
isInsideTable
isLink
load
loadPrefs
mouse_wheel
movetoSelectedRow
new
paste
pasteCell
pasteColumns
plotSelected
plotSetup
popupMenu
redrawCell
redrawVisible
resizeColumn
save
savePrefs
select_All
setColPositions
setFontSize
setModel
setRowHeight
setSelectedCells
setSelectedCol
setSelectedRow
set_defaults
set_xviews
set_yviews
setcellColor
show
show_progressbar
showtablePrefs
sortTable
updateModel