0
votes
1answer
21 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
4 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
21 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
22 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
29 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 …
1
vote
6answers
80 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
31 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 …
1
vote
2answers
55 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
3answers
42 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?
0
votes
1answer
37 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
41 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 = …
0
votes
1answer
161 views
Why organizations don’t use Python? [closed]
Yesterday I came across this article..
http://programminglanguagefaqs.blogspot.com/2009/11/why-organizations-dont-use-python.html
Well, Some points mentioned there stuck my mind...so let's discuss …
1
vote
1answer
63 views
Displaying OpenCV iplimage data structures with wxPython
Here is my current code (language is Python):
newFrameImage = cv.QueryFrame(webcam)
newFrameImageFile = cv.SaveImage("temp.jpg",newFrameImage)
wxImage = wx.Image("temp.jpg", …
0
votes
2answers
41 views
Tree view GUI widget/gui library that can do multiple icons?
Screenshot
I'm looking to recreate this in Python; I can't find a library that seems to have what I need. Are there any GUI libraries that might possibly have this? - I have scoured wxWidgets (which …
1
vote
1answer
38 views
wxPython: Update wx.ListBox list
I have a wx.ListBox in a python program, and I wan't to change out the list in it on a wx.Timer update. I have the timer working, I just don't know how to change out the list that it displays.
