开源 企业版 高校版 私有云 模力方舟 AI 队友
代码拉取完成,页面将自动刷新
加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
已有帐号? 立即登录
文件
master
分支 (1)
master
master
分支 (1)
master
克隆/下载
克隆/下载
提示
下载代码请复制以下命令到终端执行
为确保你提交的代码身份被 Gitee 正确识别,请执行以下命令完成配置
初次使用 SSH 协议进行代码克隆、推送等操作时,需按下述提示完成 SSH 配置
1 生成 RSA 密钥
2 获取 RSA 公钥内容,并配置到 SSH公钥
在 Gitee 上使用 SVN,请访问 使用指南
使用 HTTPS 协议时,命令行会出现如下账号密码验证步骤。基于安全考虑,Gitee 建议 配置并使用私人令牌 替代登录密码进行克隆、推送等操作
Username for 'https://gitee.com': userName
Password for 'https://userName@gitee.com': # 私人令牌
master
分支 (1)
master
python3.7.4
/
Doc
/
library
/
tkinter.tix.rst
python3.7.4
/
Doc
/
library
/
tkinter.tix.rst
tkinter.tix.rst 21.51 KB
一键复制 编辑 原始数据 按行查看 历史
zhangweibo 提交于 2021年11月17日 13:49 +08:00 . git init

:mod:`tkinter.tix` --- Extension widgets for Tk

.. module:: tkinter.tix
 :synopsis: Tk Extension Widgets for Tkinter

.. sectionauthor:: Mike Clarkson <mikeclarkson@users.sourceforge.net>

Source code: :source:`Lib/tkinter/tix.py`

.. index:: single: Tix

.. deprecated:: 3.6
 This Tk extension is unmaintained and should not be used in new code. Use
 :mod:`tkinter.ttk` instead.


The :mod:`tkinter.tix` (Tk Interface Extension) module provides an additional rich set of widgets. Although the standard Tk library has many useful widgets, they are far from complete. The :mod:`tkinter.tix` library provides most of the commonly needed widgets that are missing from standard Tk: :class:`HList`, :class:`ComboBox`, :class:`Control` (a.k.a. SpinBox) and an assortment of scrollable widgets. :mod:`tkinter.tix` also includes many more widgets that are generally useful in a wide range of applications: :class:`NoteBook`, :class:`FileEntry`, :class:`PanedWindow`, etc; there are more than 40 of them.

With all these new widgets, you can introduce new interaction techniques into applications, creating more useful and more intuitive user interfaces. You can design your application by choosing the most appropriate widgets to match the special needs of your application and users.

.. seealso::

 `Tix Homepage <http://tix.sourceforge.net/>`_
 The home page for :mod:`Tix`. This includes links to additional documentation
 and downloads.

 `Tix Man Pages <http://tix.sourceforge.net/dist/current/man/>`_
 On-line version of the man pages and reference material.

 `Tix Programming Guide <http://tix.sourceforge.net/dist/current/docs/tix-book/tix.book.html>`_
 On-line version of the programmer's reference material.

 `Tix Development Applications <http://tix.sourceforge.net/Tixapps/src/Tide.html>`_
 Tix applications for development of Tix and Tkinter programs. Tide applications
 work under Tk or Tkinter, and include :program:`TixInspect`, an inspector to
 remotely modify and debug Tix/Tk/Tkinter applications.


Using Tix

Toplevel widget of Tix which represents mostly the main window of an application. It has an associated Tcl interpreter.

Classes in the :mod:`tkinter.tix` module subclasses the classes in the :mod:`tkinter`. The former imports the latter, so to use :mod:`tkinter.tix` with Tkinter, all you need to do is to import one module. In general, you can just import :mod:`tkinter.tix`, and replace the toplevel call to :class:`tkinter.Tk` with :class:`tix.Tk`:

from tkinter import tix
from tkinter.constants import *
root = tix.Tk()

To use :mod:`tkinter.tix`, you must have the Tix widgets installed, usually alongside your installation of the Tk widgets. To test your installation, try the following:

from tkinter import tix
root = tix.Tk()
root.tk.eval('package require Tix')

Tix Widgets

:mod:`tkinter` repertoire.

Basic Widgets

A ButtonBox widget creates a box of buttons, such as is commonly used for Ok Cancel.

The Control widget is also known as the :class:`SpinBox` widget. The user can adjust the value by pressing the two arrow buttons or by entering the value directly into the entry. The new value will be checked against the user-defined upper and lower limits.

The

The :attr:`frame` subwidget and manage them inside the :attr:`frame` subwidget.

The OptionMenu creates a menu button of options.

The :mod:`Tix` :class:`PopupMenu` widget is it requires less application code to manipulate.

The StdButtonBox widget is a group of standard buttons for Motif-like dialog boxes.

File Selectors

The DirTree widget displays a tree view of a directory, its previous directories and its sub-directories. The user can choose one of the directories displayed in the list or change to another directory.

The :class:`DirSelectBox` is similar to the standard Motif(TM) directory-selection box. It is generally used for the user to choose a directory. DirSelectBox stores the directories mostly recently selected into a ComboBox widget so that they can be quickly selected again.

The :class:`ExFileSelectBox` widget is very similar to the standard file dialog on MS Windows 3.1.

The :class:`ComboBox` widget so that they can be quickly selected again.

The Hierarchical ListBox

The CheckList widget displays a list of items to be selected by the user. CheckList acts similarly to the Tk checkbutton or radiobutton widgets, except it is capable of handling many more items than checkbuttons or radiobuttons.

The Tabular ListBox

The :class:`TList` widget are similar to the entries in the Tk listbox widget. The main differences are (1) the :class:`TList` widget can display the list entries in a two dimensional format and (2) you can use graphical images as well as multiple colors and fonts for the list entries.

Manager Widgets

The ListNoteBook widget is very similar to the :class:`TixNoteBook` widget: it can be used to display many windows in a limited space using a notebook metaphor. The notebook is divided into a stack of pages (windows). At one time only one of these pages can be shown. The user can navigate through these pages by choosing the name of the desired page in the :attr:`hlist` subwidget.

The

Image Types

The :mod:`tkinter.tix` module adds:

Miscellaneous Widgets

The Form Geometry Manager

In addition, :mod:`tkinter.tix` augments :mod:`tkinter` by providing:

The Tix Commands

The :mod:`Tix`'s internal state and the :mod:`Tix` application context. Most of the information manipulated by these methods pertains to the application as a whole, or to a screen or display, rather than to a particular window.

To view the current settings, the common usage is:

from tkinter import tix
root = tix.Tk()
print(root.tix_configure())
.. method:: tixCommand.tix_configure(cnf=None, **kw)

 Query or modify the configuration options of the Tix application context. If no
 option is specified, returns a dictionary all of the available options. If
 option is specified with no value, then the method returns a list describing the
 one named option (this list will be identical to the corresponding sublist of
 the value returned if no option is specified). If one or more option-value
 pairs are specified, then the method modifies the given option(s) to have the
 given value(s); in this case the method returns an empty string. Option may be
 any of the configuration options.


.. method:: tixCommand.tix_cget(option)

 Returns the current value of the configuration option given by *option*. Option
 may be any of the configuration options.


.. method:: tixCommand.tix_getbitmap(name)

 Locates a bitmap file of the name ``name.xpm`` or ``name`` in one of the bitmap
 directories (see the :meth:`tix_addbitmapdir` method). By using
 :meth:`tix_getbitmap`, you can avoid hard coding the pathnames of the bitmap
 files in your application. When successful, it returns the complete pathname of
 the bitmap file, prefixed with the character ``@``. The returned value can be
 used to configure the ``bitmap`` option of the Tk and Tix widgets.


.. method:: tixCommand.tix_addbitmapdir(directory)

 Tix maintains a list of directories under which the :meth:`tix_getimage` and
 :meth:`tix_getbitmap` methods will search for image files. The standard bitmap
 directory is :file:`$TIX_LIBRARY/bitmaps`. The :meth:`tix_addbitmapdir` method
 adds *directory* into this list. By using this method, the image files of an
 applications can also be located using the :meth:`tix_getimage` or
 :meth:`tix_getbitmap` method.


.. method:: tixCommand.tix_filedialog([dlgclass])

 Returns the file selection dialog that may be shared among different calls from
 this application. This method will create a file selection dialog widget when
 it is called the first time. This dialog will be returned by all subsequent
 calls to :meth:`tix_filedialog`. An optional dlgclass parameter can be passed
 as a string to specified what type of file selection dialog widget is desired.
 Possible options are ``tix``, ``FileSelectDialog`` or ``tixExFileSelectDialog``.


.. method:: tixCommand.tix_getimage(self, name)

 Locates an image file of the name :file:`name.xpm`, :file:`name.xbm` or
 :file:`name.ppm` in one of the bitmap directories (see the
 :meth:`tix_addbitmapdir` method above). If more than one file with the same name
 (but different extensions) exist, then the image type is chosen according to the
 depth of the X display: xbm images are chosen on monochrome displays and color
 images are chosen on color displays. By using :meth:`tix_getimage`, you can
 avoid hard coding the pathnames of the image files in your application. When
 successful, this method returns the name of the newly created image, which can
 be used to configure the ``image`` option of the Tk and Tix widgets.


.. method:: tixCommand.tix_option_get(name)

 Gets the options maintained by the Tix scheme mechanism.


.. method:: tixCommand.tix_resetoptions(newScheme, newFontSet[, newScmPrio])

 Resets the scheme and fontset of the Tix application to *newScheme* and
 *newFontSet*, respectively. This affects only those widgets created after this
 call. Therefore, it is best to call the resetoptions method before the creation
 of any widgets in a Tix application.

 The optional parameter *newScmPrio* can be given to reset the priority level of
 the Tk options set by the Tix schemes.

 Because of the way Tk handles the X option database, after Tix has been has
 imported and inited, it is not possible to reset the color schemes and font sets
 using the :meth:`tix_config` method. Instead, the :meth:`tix_resetoptions`
 method must be used.
Loading...
举报
举报成功
我们将于2个工作日内通过站内信反馈结果给你!
请认真填写举报原因,尽可能描述详细。
请选择举报类型
取消
发送
误判申诉

此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。

如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。

取消
提交

简介

暂无描述
取消

发行版

暂无发行版

贡献者

全部

近期动态

不能加载更多了
编辑仓库简介
简介内容
主页
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/python_sourcecode/python3.7.4.git
git@gitee.com:python_sourcecode/python3.7.4.git
python_sourcecode
python3.7.4
python3.7.4
master
点此查找更多帮助

搜索帮助

评论
仓库举报
回到顶部
登录提示
该操作需登录 Gitee 帐号,请先登录后再操作。
立即登录
没有帐号,去注册

AltStyle によって変換されたページ (->オリジナル) /