Questions tagged [tix]

Tix is a Tkinter Interface Extension module, which includes new widgets that are not included in the standard Tk library.

Tix (Tk Interface Extension) is a module which includes a rich set of new widgets that are not included in the standard Tk library.

Basic widgets

File Selectors

Hierarchical ListBox

Tabular ListBox

Manager Widgets

Image Types

Miscellaneous Widgets

Form Geometry Manager

67 questions
0
votes
1 answer

Directory treeview with filetype filter and checkbox using ttk

I have a GUI in python using Tkinter with multiple frames inside the main GUI. Added another frame to show a treeview of a directory (which will have sub directories as well) and filter to show only files of specific type. Then user selects file(s)…
0
votes
1 answer

What does 'root.tk.eval()' mean in python, in the case of GUI programming?

I'm learning to develop GUI applications in python, searched a lot but didn'nt find a satisfactory answer to the use of root.tk.eval() in the code from tkinter import tix root = tix.Tk() root.tk.eval('package require Tix')
kunal dubey
  • 67
  • 2
  • 8
0
votes
1 answer

Programatically collapse branches in a Tix hlist checklist?

For my first GUI in Python, I'm using Tix for its built-in 'checklist' and 'hlist' widgets to construct a tree view with checkboxes against each branch and leaf of the tree. It is mostly working well. But the one thing that I have not been able to…
Son of a Beach
  • 1,733
  • 1
  • 11
  • 29
0
votes
2 answers

How to change background color for a CheckList widget from tkinter.tix module?

I tried to google it but couldn't find out. I am trying to create a CheckList widget with a tkinter.tix package in Python3.5 and set background color to white with this code: from tkinter import tix as tk checklist = tk.CheckList(parent,…
pawliux
  • 183
  • 2
  • 10
0
votes
0 answers

Python /Tix : Fill a ComboBox list when another ComboBox is set

I'm working on a project for school, and I just can't seem to solve my problem: The application I wrote manages a .csv file containing informations about patients in a hospital, and their date of birth is set by three distinct ComboBoxes (Y/M/D). I…
AnosterS
  • 1
  • 2
0
votes
0 answers

How to Enable Mouse Wheel to scroll Scrollbar in Checklist using Tix Python

How to enable Mouse Wheel for scrolling window.I can scroll the window using scroll bar but I want to scroll the window using Mouse Wheel. Please tell me how to do ? Is it there any method available in Tix ? import Tix class View(object): def…
sam
  • 25
  • 7
0
votes
1 answer

Value gets vanished when i check a checkbox in Tkinter

When I check a checkbox in Tkinter the value of checkbox gets vanished. This problem appears in Linux only. The same code I am using in windows and it is working Fine. I Referred this link to make this gui How to create a tree view with checkboxes…
sam
  • 25
  • 7
0
votes
1 answer

How to get value of checkbox in tix

i can get status of checkbox but How to Get value of checkbox in Tix. from tkinter import tix class View(object): def __init__(self, root): self.root = root self.makeCheckList() def makeCheckList(self): self.cl =…
python_fan
  • 113
  • 2
  • 15
0
votes
1 answer

How do I get rid of the arrow in a Tix.Balloon widget?

When I use the standard Tix.Balloon widget, bind it to a button and use a balloonmsg, I get the tooltip over the button, but I also get a stupid looking arrow inside the tooltip. (See the demo code from the Python source tree here.) Is it possible…
Brandon
  • 3,684
  • 1
  • 18
  • 25
0
votes
0 answers

How can I resize tab in Tix Notebook?

How I can change the size of a tab in a Tix Notebook ? this is what I do: window = Tix.Tk() sizex = 800 sizey = 600 posx = 500 posy = 150 window.wm_geometry("%dx%d+%d+%d" % (sizex, sizey, posx, posy)) nb = Tix.NoteBook(window)…
ifko366
  • 1
  • 2
0
votes
3 answers

Tix and Python 3.0

Has anyone seen anything in Tix work under python 3.0? I've tried to work through the examples but when creating anything it states that cnf is unsubscriptable. I also noticed that none of the Dir Select stuff (DirList DirTree) works under…
MKaras
  • 2,063
  • 2
  • 20
  • 35
0
votes
1 answer

Tkinter Tix Checklist Hlist Header Configuration Options

I'm hoping a tcl/tk expert can help answer this super-niche question regarding a Tix CheckList Hlist Header. All I want to do is change the background color from an ugly gray to white. I find it very difficult to even know what options (cnf={} or…
Jarad
  • 17,409
  • 19
  • 95
  • 154
0
votes
2 answers

Generating .exe file from Python code that uses Tix

Recently I found a program's code that I used a lot (Pikasav) on Github and since I had recently learned Python syntax, decided to fork it to practice Python and implement some features that would make it easier/better to use. After implementing a…
sceptross
  • 1
  • 2
0
votes
0 answers

Python Tix Help documentation view

Doing an application in Tix (Python), I want to include help documentation. I see a "regular" Help format i.e. the left-hand side is the index, a tree with the hierarchy of topics, and the right-hand side displays the currently selected topic.…
WraithWireless
  • 634
  • 9
  • 21
0
votes
1 answer

Creating a Treeview with Checkboxes

I am trying to build an application based on the following usage example (How to create a tree view with checkboxes in Python). This example builds a Treeview with checkboxes using the Tix library. However, when I run this example, whenever a…
AlwaysLearning
  • 7,257
  • 4
  • 33
  • 68