1
vote
1answer
22 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 pollServ …
0
votes
1answer
129 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. …
1
vote
1answer
27 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", wx.BI …
0
votes
2answers
32 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 scou …
0
votes
1answer
12 views
wxPython: StatusBar does NOT update with long help from wxToolBar
I am creating a ToolBar within a wx.Frame init and setting the help string as follows:
def __init_(self,...):
...
self.CreateStatusBar()
tb = self.CreateToolBar(wx.TB_HOR …
1
vote
1answer
19 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 …
0
votes
11answers
233 views
Cross-Platform Programming Language with a decent gui toolkit?
For the program idea I have, it requires that the software be written in one binary that is executeable by all major desktop platforms, meaning it needs an interpreted language or …
0
votes
1answer
35 views
Vista/7 all-glass style with wxPython
Is this possible? I really want to make my wxPython program (since they only work on windows) use the glass theme.
Also, if it's possible, is there a way to make dialogs that look …
0
votes
2answers
45 views
wxPython : Problem updating background color of controls
[EDIT - Reduced and re-posted code, restated question]
I would like to change the background color of a frame (or panel; whichever makes it work).
The problem is that the backgrou …
1
vote
1answer
22 views
Alternatives to wx.lib.masked.NumCtrl
Hi everyone!
In a wxPython application I'm developing I need a lot of input fields for numbers (integers and floats), so I tried using wx.lib.masked.NumCtrl, but my users now tell …
0
votes
2answers
26 views
wxPython wx.KeyEvent GetKeyCode()
All,
I am writing a wxPython app in which I want (at the moment) to print the name of the key that was pressed. I have a dictionary that maps, for example, the WXK_BACK to "back" …
0
votes
1answer
15 views
How to Remove a Field from a wxStatusBar
This may be obvious, but I'm missing it. I'm working in wxpython.
I have a wxStatusBar with several fields (these fields have text as well as other widgets). I need to be able t …
0
votes
2answers
56 views
Are wxPython events posted in order?
If multiple events are posted using wxPostEvent/wxCallAfter from same thread e.g. on button click are they supposed to be processed in same order?
In the below example wx.Callafte …
0
votes
1answer
36 views
Using the same handler for multiple wx.TextCtrls?
I'm having a bit of trouble with a panel that has two wxPython TextCtrls in it. I want either an EVT_CHAR or EVT_KEY_UP handler bound to both controls, and I want to be able to tel …
0
votes
0answers
57 views
better version of fakemodal?
I found a code snippet (http://aspn.activestate.com/ASPN/Mail/Message/wxpython-users/3695248) for a "fakemodal" dialog. This works for what I am doing, but I would like to make it …
