473,386 Members | 1,748 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

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

Tkinter and Graphics

Hi I was wondering if there is anyway in Tkinter to create GUIs using
Graphics, like windows media player or other tools like that

basically so the interface wouldn't be your standard interface

any ideas, links to tutorials, or examples

is appreciated

Cheers
Jul 18 '05 #1
5 3675
Andrew <no****@hotmail.com> wrote:
Hi I was wondering if there is anyway in Tkinter to create GUIs using
Graphics, like windows media player or other tools like that


I guess you could do just about anything with Canvas, it that's what you
mean.
Alex
Jul 18 '05 #2
>>>>> "Andrew" == Andrew <no****@hotmail.com> writes:

Andrew> Hi I was wondering if there is anyway in Tkinter to create
Andrew> GUIs using Graphics, like windows media player or other
Andrew> tools like that

Andrew> basically so the interface wouldn't be your standard
Andrew> interface

Andrew> any ideas, links to tutorials, or examples

Andrew> is appreciated

This sounds like enthought's enable toolkit, which is still under
development. Basically, they use the antigrain graphics library to
develop their own GUI widgets, which can then be embedded in a tk
graphic's canvas, at gtk drawing area, a wx panel, etc. Though enable
doesn't support all of these GUIs currently, I believe, it can in
principle.

http://svn.enthought.com/svn/enthought

I've often wished for something like this in developing matplotlib,
because a lot of work goes into supporting multiple GUIs, and it would
be nice to have a core set of widgets that port across GUIs. Another
approach is anygui, which I've been meaning to look into...

JDH
Jul 18 '05 #3
al*****@yahoo.com (Alex Martelli) wrote in message news:<1gn98g2.1uhohpdpev85hN%al*****@yahoo.com>...
Andrew <no****@hotmail.com> wrote:
Hi I was wondering if there is anyway in Tkinter to create GUIs using
Graphics, like windows media player or other tools like that


I guess you could do just about anything with Canvas, it that's what you
mean.
Alex


Such as this (below)
(I made this while reading as an refresher for myself, since I'm doing
mostly CGI and web related stuff these days!)

Good interface design!!!

JM

################
import Tkinter

bar = 1
cursing = True

def foo(s):
global bar
print bar
bar += 1

def baz(s):
global cursing,rCanvas
if cursing :
cursing = False
rCanvas.config(cursor="pirate")
else:
cursing = True
rCanvas.config(cursor="")

root = Tkinter.Tk()
rCanvas=Tkinter.Canvas(root, background="white")
idPoly=rCanvas.create_polygon(10,10,10,200,150,250 ,50,100)
rCanvas.tag_bind(idPoly,"<Button-1>",foo)
rCanvas.tag_bind(idPoly,"<Enter>",baz)
rCanvas.tag_bind(idPoly,"<Leave>",baz)
rCanvas.pack()
root.mainloop()
###############
Jul 18 '05 #4
Andrew <no****@hotmail.com> wrote in message news:<10*************@corp.supernews.com>...
Hi I was wondering if there is anyway in Tkinter to create GUIs using
Graphics, like windows media player or other tools like that

basically so the interface wouldn't be your standard interface

any ideas, links to tutorials, or examples

is appreciated

Cheers

Check out wxPython ShapedWindow in the DEMO
Jul 18 '05 #5
On Sun, 14 Nov 2004 21:46:27 -0800, Andrew wrote:
Hi I was wondering if there is anyway in Tkinter to create GUIs using
Graphics, like windows media player or other tools like that

basically so the interface wouldn't be your standard interface

any ideas, links to tutorials, or examples

is appreciated

Cheers


Highly recommended: _Python and Tkinter Programming_ by John E. Grayson,
if you can find a copy. (It's out of stock on Manning's site and they
don't offer it in Electronic form.)

http://www.manning.com/grayson

Section 8.7 ("Image Maps"), where the author describes building a GUI that
looks like a TI-82, by using an image of same as the basis for the
interface seems like it could be relevant.

Chapter 9 ("Panels and Machines") also seems like it could be of help to
you. It describes building a GUI modeled on the front panel of an actual
device. It also contains a nice front-end for a digital multimeter with a
rotating knob for setting the current range.

Perhaps you can find a copy on amazon, ebay or a brick-and-mortar store
with slow turn-over.

// Ben
Jul 18 '05 #6

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

Similar topics

9
by: rhmd | last post by:
I need to create image files (eg bmp or jpeg) of xy scatter graphs (i.e., graphs in which markers denote individual points; the markers need to be small polygons of various sizes, shapes, colors,...
2
by: ServantOfTheSecretFire | last post by:
Hi there, I wrote my first Python program this weekend, Conway's Game of Life, and I used Tkinter for the graphics. I thought I had done something wrong when I saw the memory consumption, so I...
7
by: John Slimick | last post by:
I want to do a little Tkinter in my 1 credit python practicum, but I am having problems getting everything installed correctly. A sample of the problem is below: ------------------- The...
1
by: Elaine Jackson | last post by:
Newbie. Playing with the 'turtle' module and wondering if there's a way to save the graphics you make with it. The documentation itself has nothing to say about this, nor (as far as I can tell)...
7
by: SeeBelow | last post by:
Do many people think that wxPython should replace Tkinter? Is this likely to happen? I ask because I have just started learning Tkinter, and I wonder if I should abandon it in favor of...
5
by: Sean McIlroy | last post by:
The subject line essentially says it all. Is there a way to do it? If so, where do I look to find out how? Any help will be much appreciated. Thx, STM
8
by: Erik Johnson | last post by:
I am looking for some input on GUI libraries. I want to build a Python-driven GUI, but don't really understand the playing field very well. I have generally heard good things about wxPython. I...
5
by: Ben Kovitz | last post by:
Hi, I just tried to run Tkinter on OS X 10.3.9 under Python 2.4.3, and I'm getting a bus error as soon as I call Tk(). Googling has turned up info other Tkinter bus errors, but not this one that...
2
by: David Lees | last post by:
Does anyone have advice on installing Tkinter on s Silicon Graphics machine (under IRIX 6, I think). The SysAdmin at work build Python 2.4.3 for me on the SGI box, but it does not have Tkinter. ...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

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.