Skip to main content

tinui高级表格

Project description

TinUISheet

TinUI的高级表格控件。


使用

TinUISheet类

TinUISheet(
    ui:BasicTinUI, pos:tuple, width=300, height=300, minwidth=100, maxwidth=300,
    font=('微软雅黑', 12),
    fg='black', bg='white', itemfg='#1a1a1a', itembg='#f9f9f9', headbg='#f0f0f0',
    itemactivefg='#191919', itemactivebg='#f0f0f0',
    itemonfg='#191919', itemonbg='#e0e0e0',
    scrollcolor='#8a8a8a',
    headfont=('微软雅黑', 14),
    anchor='nw'
)
  • fg-文本颜色
  • bg-表格背景色
  • itemfg-数据文本颜色
  • itembg-数据背景色
  • headbg-表栏背景色
  • itemactivefg-响应鼠标整行文本颜色
  • itemactivebg-响应鼠标整行背景色
  • itemonfg-选中时文本颜色
  • itemonbg-选中时背景颜色
  • scrollcolor-滚动条颜色

[!note]

标准配色随时可能变动,建议自行指定颜色。

tinuisheet提供sheetlightsheetdark两种样式配色

[!tip]

通过TinUISheet.uid获取控件标识符,用于TinUI面板布局。

TinSheet支持普通面板布局和拓展拉伸布局。当置于ExpandPanel中时,表格外框会平铺面板区域,表格本体的原点仍为表格框左上角。

set_heads(heads)

设置整个表头文本。

对于heads中的一项,如果为dict,则有如下结构:

{
 'title': 'TITLE',
 'width': WIDTH-INT // 宽度
}

[!important]

若表格文本超出一行,则整个表头背景均会匹配最长的一个表头内容。此后的修改,除非为空表格,均不会调整表头高度。作为表单数据显示控件,不建议内容中存在换行字符。

set_head(index:int, head)

设置某个表头文本。

head可以为str,也可以同上为dict

append_content(content)

加入一行数据。

[!important]

若表格内容超出一行,则整行背景均会匹配最长的一个内容。单独设置一个或一行表格,均不会改变高度。作为表单数据显示控件,不建议内容中存在换行字符。

content中的每一个元素,如果是字符串,则是常规文本,如果是字典,应当具备基本数据:{'text':TEXT, 'type':TYPE, ...}TYPE如下:

  • text,普通文本
  • check,复选框。另外接收command回调函数(默认None)、colors配色(默认TinUI标准配色)、val初始值(默认False
  • button,圆角按钮。另外接收command回调函数、colors配色
  • edit,可编辑内容。另外接收command回调函数(接收修改后文本)、colors配色

set_contents(index:int, contents:list)

设置一行数据(从表头栏下一行开始记为0)。

set_content(index:int, index2:int, content:str)

设置indexindex2列的数据。

get_selected(specific=False)

获取当前选中行中的所有文本列表,无则返回None

specificTrue时,返回选中块的文本。

get_selected_item()

获取当前选中的画布元素。

get_selected_row()

获取选择行的位置。

get_selected_col()

获取选择列的位置。

get_nearby_item(pos:tuple)

获取离pos最近的画布元素列表。为了方便使用,这里的pos应当是控件坐标,TinUISheet会自动将其转换为画布坐标。

delete_row(index:int)

删除某行。

无法删除表头。

delete_col(index:int)

删除某列。

delete_all()

删除所有行。

bind(sequence:str, func, add:bool=False)

TinUISheet的事件绑定方法,同tkinter一般控件。返回funcid

unbind(sequence:str, funcid:int=None)

事件解绑。


示例

from tkinter import Tk
from tinui import BasicTinUI, ExpandPanel, HorizonPanel

def test(_):
    tus.delete_col(0)
    tus.delete_row(0)
    tus.set_head(0, {'title':'α', 'width':200})
    tus.set_head(1, 'bbb')
    for _ in range(30):
        tus.append_content(['三','444','555',' ',' '])
    pass

root = Tk()
root.geometry("400x400")

ui = BasicTinUI(root)
ui.pack(expand=True, fill='both')
tus = TinUISheet(ui, (15,15), **sheetlight)

tus.set_heads(['a',{'title':'b','width':200},'c',' ',' ',' '])
	tus.append_content(['一',{'text':'222','type':'check'},{'text':'333', 'type':'button'},' ',' ',' '])
	tus.append_content(['四',{'text':'5\n55','type':'check','val':True},'666',' ',' ',' '])
	tus.append_content([{'text':'七','type':'edit','command':print},{'text':'888','type':'check'},'999',' ',' ',' '])
	tus.append_content(['万',{'text':'000','type':'check'},'111',' ',' ',' '])
	tus.append_content(['三',{'text':'444','type':'check'},'555',' ',' ',' '])
	tus.set_contents(1, ['Ⅳ',{'text':'⑤','type':'check'},'陆',' ',' ',' '])
tus.set_content(2, 2, '玖')
ui.after(2000, lambda: print(tus.get_selected(True)))

rp = ExpandPanel(ui)
hp = HorizonPanel(ui, spacing=10)
rp.set_child(hp)

ep = ExpandPanel(ui)
hp.add_child(ep, weight=1)
ep.set_child(tus.uid)

hp.add_child(ui.add_button((10,350), text='test', command=test)[-1], 100)

def update(e):
    rp.update_layout(5,5,e.width-5,e.height-5)
ui.bind('<Configure>',update)

root.mainloop()

若要使用更高级的tkinter表格功能,可以使用tksheet库。从add_ui获取画布控件,再将Sheet控件pack(fill='both',expand=True)即可,这样可以由TinUI负责Sheet的布局。

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tinuisheet-1.6.0.tar.gz (13.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

tinuisheet-1.6.0-py3-none-any.whl (12.6 kB view details)

Uploaded Python 3

File details

Details for the file tinuisheet-1.6.0.tar.gz.

File metadata

  • Download URL: tinuisheet-1.6.0.tar.gz
  • Upload date:
  • Size: 13.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.9

File hashes

Hashes for tinuisheet-1.6.0.tar.gz
Algorithm Hash digest
SHA256 dc7153023b5beda1f38bc82562aacb0ce1f79d60f070e2c2e544cef785e02ba3
MD5 fc647b81ddbbc18a7d7da50952551ef3
BLAKE2b-256 0b42882b8e53890345e54b25bc0cd6ef676f5d7ecfd5191c99a9582e6a8017f1

See more details on using hashes here.

File details

Details for the file tinuisheet-1.6.0-py3-none-any.whl.

File metadata

  • Download URL: tinuisheet-1.6.0-py3-none-any.whl
  • Upload date:
  • Size: 12.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.9

File hashes

Hashes for tinuisheet-1.6.0-py3-none-any.whl
Algorithm Hash digest
SHA256 a44f3730db7d2d1f50790908e46510e47e040225eb2620359834255fc6dc0ad5
MD5 d7aa5f4d3664008c0d5dfdcd35eea100
BLAKE2b-256 a144f1a840e298dc5403bb4e72f798306f6f60a93da2eea35b35f67ccc65b734

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page