0
votes
0answers
4 views

wxpython ListBox not updating correctly in another frame/class

I am having an issue, getting my List control box to pass the arguments from one class to another. I am using wxpython to create a gui that allows the users to only select files from one directory and ...
0
votes
0answers
6 views

wxpython 2.8 on linux - critical GTK error (works fine on Windows)

So...I have a wxpython 2.8 problem. My program runs fine on Windows (and Python runs it fine). When I run it on linux, I get this (ENV)mentonin@ubuntu:~/code/FiberDrill$ python main.py ...
0
votes
1answer
8 views

wx.SpinButton acceleration when holding down one of the buttons (up/down)

Some GUI's libraries have spin button widget with optional feature - acceleration. When holding down one of the buttons (up or down) - as a result an acceleration of change in the value according to ...
0
votes
1answer
10 views

How do you change border line color of wx.StaticBox?

As you can see from the above pic, the border line of wx.StaticBox is always grey on windows, is it possible to change it? I've searched quite a bit, but there doesn't seem to be any ...
0
votes
1answer
24 views

wxPython toolbar issue

I have a problem with this code: import wx class Example(wx.Frame): def __init__(self, *args, **kwargs): super(Example, self).__init__(*args, **kwargs) self.InitUI() def ...
-2
votes
1answer
13 views

python wxpython global name not defined [on hold]

I'm trying to develop a very simple wxpython GUI. At the moment there is just a button which opens a file dialog & underneath that a text control box. For the moment all I am trying to do is print ...
0
votes
0answers
12 views

How to have wxpython capture thread events in a unit test?

I built a wx python app that runs a background thread to perform some computation. However, my current implementation does not allow for unit testing. I very closely based my implementation off of ...
0
votes
1answer
11 views

Unbind default button behavior in wxPython

I am writing an interface where I'd like to have a user click a button, then capture his next keystroke. I can currently capture all the keys on the keyboard, except for those like tab or the arrow ...
0
votes
0answers
11 views

How do i start a MplayerCtrl player using wxPython?

I am using a code from this webpage for an application that I am writing. Reference: http://www.blog.pythonlibrary.org/2010/07/24/wxpython-creating-a-simple-media-player/ Unlike in this code, I ...
0
votes
1answer
27 views

How does Clipboard work in wx?

I have following function in python - def GetClipboardText(): text_obj = wx.TextDataObject() rtext = "" if wx.TheClipboard.IsOpened() or wx.TheClipboard.Open(): if ...
0
votes
2answers
36 views

Python thread runs even after closing WxPython application

the following code takes screenshots and logs keystrokes and mouse movements. It uses wxpython as GUI framework. I'm using python threads for screenshot and logging service. But whenever I close the ...
1
vote
1answer
22 views

wxgrid cell renderer set col size

I made a class whic extends PyGridCellRenderer and I can set size of columns with self.colSize = SOME_SIZE, but that sets same size for all columns, how can I set size for specific column?
3
votes
2answers
66 views

Python GUI programming using drag and drop, also incorporating stdout redirect

Hi to everyone & thanks in advance for any help given! I'm new to programming & new to python. I've just developed my first script, it prosesses file, but at the moment only from the ...
1
vote
1answer
14 views

wxPython slider: Some module attributes appear to be missing

When I run this wxPython code: self.pwm_duty_cycle_slider = wx.Slider(self.panel, id=wx.ID_ANY, value=60, minValue=5, ...
3
votes
1answer
24 views

wxPython scrolled panel scroll bar sizing issue

I'm having an issue with a GUI that I'm currently building. My app is currently structured with two notebooks side by side, with a terminal/log textCtrl below. The left notebook contains various ...

1 2 3 4 5 145
15 30 50 per page