0
votes
1answer
18 views
Need to add httpd support to this wxPython code.
I need to add httpd support to this sample wxpython code.
It parses the url and display different images.
What's the easiest way to do this?
import wx
a = wx.PySimpleApp()
wximg = …
0
votes
3answers
33 views
wxPython - How to get the ID of a widget when you passed in -1?
I'm doing a little wxPython work today and I've got this piece of code (I've stripped out the irrelevant parts):
def CreateRowOne(self, pan):
hbox1 = wx.BoxSizer(wx.HORIZONTAL)
…
0
votes
1answer
20 views
wxPython progress bar
I can't use wx.ProgressDialog because I need to add extra contents to the dialog box (a pause button and information about what is currently being processed). Is there a control for just the progress …
0
votes
1answer
28 views
Saving wx widget contents to a file
Hi
I have created different shapes like circle/rect etc in my program using BufferedPaintDC on event. Now i want to save the file as I click the saveas button in the menu option. For that I am using …
0
votes
0answers
5 views
Wx.Widgets AUIMananger Toggle Panes
I'm having trouble toggling panes with the AUIManager.
Here's basically what I'm doing:
class foo(wx.Frame):
def __init__(self, parent, title):
…
0
votes
1answer
24 views
WxPython, Windows Vista 64-bit, and failure
I have Windows Vista 64-bit SP2. I am trying to use wxPython for GUI development with Python, because all my research pointed to that as the way to go. I have downloaded and installed the win64 …
1
vote
1answer
31 views
Highlight a row in wxGrid (with wxPython) when a cell in that row changes programatically
How do I highlight a row after an update of the underlying PyGridTableBase? I can't seem to get my head around it.
I am able to create alternate row highlighting lines when the table is first drawn:
…
0
votes
1answer
35 views
Python2.6 Backtrack/Ubuntu wxPython
I wrote a python app and it needs python2.6. I'm trying to get it to run in Backtrack 4 which is a pen-testing linux distro based on debian/ubuntu. I'v managed to install python2.6 along side of …
0
votes
3answers
48 views
Knowing if any key is pressed, wxPython
Hi, I have a timer, and need to know if any of the keys is pressed on any cycle. How do I do it?
1
vote
6answers
81 views
Need a Python package suitable for visualizing queue simulations
I am working on a simulation in Queueing Theory, within a wxPython GUI. (Project link.) What would be a good tool for visualizing the simulations? The visualization should consist of simple objects, …
1
vote
1answer
33 views
Getting value of TextCtrl from a different wxPanel
I was trying to get my first wxWindow application to work and I ran into following difficulty:
I create wxPanel and add a wxNotebook object to it. Then I add a page to notebook created from another …
0
votes
2answers
110 views
Python wx (Python Card) logging subprocess output to window
There are similar questions to this one, but I'd like to see a clarified answer. I'm building a simple GUI with PythonCard to wrap a command line process. Specifically, it's a wrapper for a series of …
1
vote
2answers
67 views
Where can I find good tutorials and guides on wxPython and wxGlade?
Just out of curiosity, aside from their respective sites, have any of you guys found a better resource for figuring out wxPython/wxGlade?
I figured I'd ask while I'm chewing on something else, I plan …
0
votes
1answer
46 views
wxPython. Create a panel with four static sized boxes.
I'm trying to create a panel, with four boxes containing some data. These four boxes should have a predefined static size. What I have so far is four boxes that is overlapping to some extent.
Any …
1
vote
1answer
43 views
Continuously redraw wxPython element
Hi, I have a chat client that continuously polls a server and fetches new messages.
From my def __init__() I have:
wx.CallAfter(self.pollServer)
Which is defined:
def pollServer(self):
t = …
