472,955 Members | 2,437 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,955 software developers and data experts.

Tkinter button doesn't appear in OS X

I'm creating a shelve interface using Tkinter. I have a button that
allows the user to modify an existing entry; when the button is
clicked, a new TopLevel window appears with Entry boxes holding the
selected entry. Below the Entry boxes are two buttons, one that saves
the changes to the database and the other is simply a Cancel button.

Under Linux, both buttons appear correctly. However, in OS X the
Cancel button is invisible unless the window is resized or you click in
the area where the Cancel button is located. I believe it works
correctly under Windows (it's been a few days since I was able to check
it on a Windows machine).

Is there something special about OS X and Tkinter that I need to know
about or is it just a glitch I'll have to work around? Below is the
relevant code block:
------------------------------------------------------
def changeInven(self):
"""Allows modification of a database entry.

Called by modifyInven Button"""

try: #see if a selection was made
self.getSelection = self.listBox.curselection() #get index
of selection
self.selectedEntry = self.listBox.get(self.getSelection)
#get tuple from selection
(self.prodnum, self.descrip, self.colors, self.cost,
self.price,
self.quan) = self.selectedEntry #unpack tuple

#---New 'edit product' window
self.editWindow = Toplevel()
self.editWindow.title("Edit selected entry")

#---Edit product window widgets
Label(self.editWindow, text = "Product Number").grid(row =
0, column = 0)
Label(self.editWindow, text = "Description").grid(row = 0,
column = 1)
Label(self.editWindow, text = "Color").grid(row = 0, column
= 2)
Label(self.editWindow, text = "Unit cost").grid(row = 0,
column = 3)
Label(self.editWindow, text = "Sell price").grid(row = 0,
column = 4)
Label(self.editWindow, text = "Quantity").grid(row = 0,
column = 5)

self.oldNum = Entry(self.editWindow, name = "prodNum")
self.oldNum.grid(row = 1, column = 0)
self.oldDescrip = Entry(self.editWindow, name = "descrip")
self.oldDescrip.grid(row = 1, column = 1)
self.oldColor = Entry(self.editWindow, name = "color")
self.oldColor.grid(row = 1, column = 2)
self.oldCost = Entry(self.editWindow, name = "cost")
self.oldCost.grid(row = 1, column = 3)
self.oldPrice = Entry(self.editWindow, name = "price")
self.oldPrice.grid(row = 1, column = 4)
self.oldQuan = Entry(self.editWindow, name = "quan")
self.oldQuan.grid(row = 1, column = 5)

self.update = Button(self.editWindow, text = "Update
product",
command = self.updateProduct).grid(row = 2, column = 2)
self.cancel = Button(self.editWindow, text = "Cancel",
command = self.cancelProduct).grid(row = 2, column = 3)
#---Edit product data
self.oldNum.insert(END, self.prodnum)
self.oldDescrip.insert(END, self.descrip)
self.oldColor.insert(END, self.colors)
self.oldCost.insert(END, self.cost)
self.oldPrice.insert(END, self.price)
self.oldQuan.insert(END, self.quan)

except TclError: #tell user to make a selection first
showerror(title = "Error!", message = "You must make a
selection first!")

Dec 11 '06 #1
5 2002
crystalattice wrote:
I'm creating a shelve interface using Tkinter. I have a button that
allows the user to modify an existing entry; when the button is
clicked, a new TopLevel window appears with Entry boxes holding the
selected entry. Below the Entry boxes are two buttons, one that saves
the changes to the database and the other is simply a Cancel button.

Under Linux, both buttons appear correctly. However, in OS X the
Cancel button is invisible unless the window is resized or you click in
the area where the Cancel button is located. I believe it works
correctly under Windows (it's been a few days since I was able to check
it on a Windows machine).
What version of Tk are you running? I've seen this bug on old versions
of Tk (i.e. 8.4.7) but not recently.

--
Kevin Walzer
Code by Kevin
http://www.codebykevin.com
Dec 11 '06 #2

Kevin Walzer wrote:
>
What version of Tk are you running? I've seen this bug on old versions
of Tk (i.e. 8.4.7) but not recently.

--
Kevin Walzer
Code by Kevin
http://www.codebykevin.com
I'm using Python 2.4.2, which I believe is the default version for OS
X. How do I check the Tk version? Can I force my programs to use a
different version of Python, e.g. if I installed Python 2.5?

Dec 12 '06 #3
crystalattice wrote:
Kevin Walzer wrote:
>What version of Tk are you running? I've seen this bug on old versions
of Tk (i.e. 8.4.7) but not recently.

--
Kevin Walzer
Code by Kevin
http://www.codebykevin.com

I'm using Python 2.4.2, which I believe is the default version for OS
X. How do I check the Tk version? Can I force my programs to use a
different version of Python, e.g. if I installed Python 2.5?
When you run your program on OS X, there should be a menu item next to
the Apple menu that says "about Tcl/Tk," which you access from the
"Python" menu item. That will give you the version number.

Python 2.3.5 and Tcl/Tk 8.4.7 ship with OS X 10.4. Python 2.4.2 is a
separate installation, but probably accesses the system Tcl/Tk unless
you have installed a more recent version. Using the official Mac build
of Python 2.5 will update your Python, but not Tcl/Tk--you'll need to
install something more recent.

You can install ActiveTcl for a "batteries-included" distro of
Tcl/Tk--it has the latest and greatest of everything. Or, you can
install a slightly older (8.4.13) version of Tcl/Tk at
http://tk-components.sourceforge.net. (This is a version of Tcl/Tk Aqua
that I use in my own programs and I made the build available for others
to use.)

Hope that helps,
Kevin

--
Kevin Walzer
Code by Kevin
http://www.codebykevin.com
Dec 12 '06 #4

Kevin Walzer wrote:
When you run your program on OS X, there should be a menu item next to
the Apple menu that says "about Tcl/Tk," which you access from the
"Python" menu item. That will give you the version number.

Python 2.3.5 and Tcl/Tk 8.4.7 ship with OS X 10.4. Python 2.4.2 is a
separate installation, but probably accesses the system Tcl/Tk unless
you have installed a more recent version. Using the official Mac build
of Python 2.5 will update your Python, but not Tcl/Tk--you'll need to
install something more recent.

You can install ActiveTcl for a "batteries-included" distro of
Tcl/Tk--it has the latest and greatest of everything. Or, you can
install a slightly older (8.4.13) version of Tcl/Tk at
http://tk-components.sourceforge.net. (This is a version of Tcl/Tk Aqua
that I use in my own programs and I made the build available for others
to use.)

Hope that helps,
Kevin

--
Kevin Walzer
Code by Kevin
http://www.codebykevin.com
Thanks for the info. It looks like it should work. I wasn't aware
that OS X is so "compartmentalized"; makes it a pain in the butt to
develop on sometimes.

Dec 12 '06 #5
I downloaded your file and got it working. Thanks for the hint and the
code. I really appreciate it.

Dec 13 '06 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Charles Starrett | last post by:
I am a just a dabbler in programming, but I'd like to make some simple cross-platform tools for generating webpages, as well as for text munging. One thing I need is a Mac OS 9/Windows GUI...
2
by: Marc | last post by:
Hi all, I was using Tkinter.IntVar() to store values from a large list of parts that I pulled from a list. This is the code to initialize the instances: def initVariables(self): self.e =...
1
by: midtoad | last post by:
I'm trying to display a GIF image in a label as the central area to a Tkinter GUI. The image does not appear, though a space is made for it. Why is this so? I notice that I can display a GIF...
7
by: Harlin Seritt | last post by:
I was looking at the Tcl/Tk sourceforge page and found that there were a couple of new widgets being produced for Tcl 8.5. Does anyone know if there are any Tkinter wrappers somewhere? thanks, ...
0
by: Stewart Midwinter | last post by:
I have a Tkinter app running on cygwin. It includes a Test menu item that does nothing more than fetch a directory listing and display it in a Toplevel window (I'd use a tkMessageBox showinfo...
1
by: yvesd | last post by:
hello i want to intercept tkinter python system events like wm_delete_window and if possible for any window, but the newest code I've produced give me an error : Traceback (most recent call...
0
by: nish88 | last post by:
hi everybody...i'm trying to place an oval with a mouse click on my tkinter interface. can anyone please give me the code of how should i do it. i just want the part that i should add so that by...
3
by: J-Burns | last post by:
Hello. Im a bit new to using Tkinter and im not a real pro in programming itself... :P. Need some help here. Problem 1: How do I make something appear on 2 separate windows using Tkinter? By...
0
by: Guilherme Polo | last post by:
On Sat, Sep 20, 2008 at 4:10 PM, dmitrey <dmitrey15@ukr.netwrote: It is not only the button that doesn't respond, the entire application won't respond if you are blocking tcl from processing...
2
by: DJRhino | last post by:
Was curious if anyone else was having this same issue or not.... I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...
0
tracyyun
by: tracyyun | last post by:
Hello everyone, I have a question and would like some advice on network connectivity. I have one computer connected to my router via WiFi, but I have two other computers that I want to be able to...
2
by: giovanniandrean | last post by:
The energy model is structured as follows and uses excel sheets to give input data: 1-Utility.py contains all the functions needed to calculate the variables and other minor things (mentions...
4
NeoPa
by: NeoPa | last post by:
Hello everyone. I find myself stuck trying to find the VBA way to get Access to create a PDF of the currently-selected (and open) object (Form or Report). I know it can be done by selecting :...
3
NeoPa
by: NeoPa | last post by:
Introduction For this article I'll be using a very simple database which has Form (clsForm) & Report (clsReport) classes that simply handle making the calling Form invisible until the Form, or all...
1
by: Teri B | last post by:
Hi, I have created a sub-form Roles. In my course form the user selects the roles assigned to the course. 0ne-to-many. One course many roles. Then I created a report based on the Course form and...
3
by: nia12 | last post by:
Hi there, I am very new to Access so apologies if any of this is obvious/not clear. I am creating a data collection tool for health care employees to complete. It consists of a number of...
0
NeoPa
by: NeoPa | last post by:
Introduction For this article I'll be focusing on the Report (clsReport) class. This simply handles making the calling Form invisible until all of the Reports opened by it have been closed, when it...
1
by: GKJR | last post by:
Does anyone have a recommendation to build a standalone application to replace an Access database? I have my bookkeeping software I developed in Access that I would like to make available to other...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.