Tagged Questions
0
votes
3answers
138 views
Can python make Matlab style GUIs [closed]
I'm really trying to fall in love with Python and move away from Matlab. Is it possible to make Matlab style GUIs in Python? How easy is it by comparison? (I make matlab GUIs programmatically, ...
0
votes
1answer
87 views
WxPython File Dialogs
I am building an application in wxPython and i read somewhere on a blog that you cannot use wx.FD_OPEN and wx.FD_SAVE on the same application at the same time, is this true?
If this is true, does ...
0
votes
1answer
39 views
Python & translucid canvas
I'm looking for a way to draw real translucent lines with pygtk or wxPython, I now this is not possible with TKinter (I like this one because its already there). Also, I already now I can do this ...
1
vote
3answers
206 views
GUI development for my c application . How to proceed?
I have developed an application in C which works on command line interface. I want to make my code display data over GUI, and I would also want to provide a window waiting for user input.
I need some ...
1
vote
1answer
268 views
How is Python interpreted with wxPython, PyQt, PySide or Tkinter?
I got curious and have been reading about GUI development using Python for the past hour. After reading documentation of wxPython, PyQt, Nokia's Python bindings for Qt along with Tkinter a question ...
3
votes
3answers
605 views
Python GUI App Distribution: written in wxPython, TKinter or QT
My question is about the easiness of distributing the GUI app across the platforms (Mac/Linux/Windows), and I want to know the one that makes the user's job easiest.
My current understanding is that ...
0
votes
1answer
112 views
Python GUI apps without “Python.app”?
I've recently started using Tkinter, and now I'd like to try wxPython, but I have one major problem: on Mac, the Python app launches and runs the gui. I'm using Platypus, so window already has an app ...
0
votes
1answer
116 views
NSStatusItem in Python
Is there any way to create a menubar app in python (The obj-c equivalent appears to be NSStatusItem) using either wxPython or Tkinter? Ideally, I'd like to keep my program in pure python, so I would ...
2
votes
4answers
799 views
Cookbook GUI interface for a command-line script
I have a command-line Python script that works well to convert one sort of file into another given a few parameters and would now like to deploy this to some of my colleagues who may not know what a ...
1
vote
4answers
941 views
Python GUI for cardgame
I am planning to write a card game in python, and now looking for a GUI (I'm new to Python).
I have so far tried out two GUI's :TK(inter) and wxPython.
Neither of them seem to be able , and ...
3
votes
1answer
578 views
Fullscreen Python TKinter or wxPython window, but 'stay at the bottom' of all windows?
I want to create a fullscreen panel that visually blocks access to everything on the screen (desktop, menu, Unity Panel, etc in Ubuntu (11.10)), but stays below other applications' opened windows.
...
1
vote
5answers
212 views
Is wxPython Needed on the End User's Computer
I am making programs that solve and show work for math problems. I would like to add a GUI, and I think wxPython will be best. If I use wxPython for the GUI, will the end user need wxPython on their ...
1
vote
2answers
635 views
Python Widget that can show both HTML & CSS
I have an idea to create a Parental Supervision Web Browser. The way it works is that I create a desktop application in python(preferably using wxPython or wxPythons webkit) thats just a widget that ...
1
vote
1answer
453 views
bad screen distance
I'm trying to obtain an figure object (using matplotlib), inside a wxpython application. I don't need to plot (or see) the figure, because I would want only to save it in a png file.
When I do it ...
0
votes
1answer
142 views
Access Violation with wxPythons CallLater
I'm attempting to convert some of my code from Tkinter to wxPython. Currently I'm trying to create a function that continually loops, updating the time. However, I have run into some problems. ...