Tagged Questions
0
votes
2answers
27 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 ...
25
votes
8answers
19k views
Nice IDE for wxPython or Tkinter GUI Development
I have a little experience developing small command-line applications with Python. I want to move on to developing GUIs with Python. From the available GUI toolkits for Python, the ones I feel the ...
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 ...
2
votes
2answers
312 views
Why is wx.SingleChoiceDialog not subclassing properly
I'm trying to subclass the wxpython SingleChoiceDialog class. I have a TableChoiceDialog class that inherits from SingleChoiceDialog adding generic functionality, and I have 2 sub classes for that ...
0
votes
0answers
8 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 ...
3
votes
2answers
58 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 ...
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 ...
1
vote
1answer
20 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?
1
vote
1answer
12 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
21 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
vote
5answers
223 views
Considerations for python gui toolkit for app that queries remote database? [on hold]
I know this question has been asked before but those questions typically lack specific details and result in answers that say something like "It depends what you are trying to do..." so the main gist ...
0
votes
1answer
24 views
wx.TextCtrl use drag and drop folder to get file path
I currently have a working app using wx.TextCtrl, where I open a select folder dialogue box. I would like to add drag and drop so I could just drag and drop a folder to get the folder path, so I could ...
1
vote
1answer
16 views
Can I run App.MainLoop from a Process using multiprocessing?
I'm developing an app which makes use of multiple processes.
Each process is created by the original python process (ie, there is one level of forking involved).
In order to gracefully terminate in ...
0
votes
3answers
19 views
How to display a leading zeros for number in wx.SpinCtrl?
What's the best way to dispay leading zeros for number in wx.SpinCtrl?
I've created SpinCtrl:
self.MySpin = wx.SpinCtrl(self, min=1, max=100)
and i want that displaying 002, 003... 012 etc
when ...
0
votes
1answer
13 views
Go to specifc row in wx.grid
I have wx.grid filled with data and I have search option so when user enters some text, I find it and select that row. The problem is that row only gets selected but doesnt become visible. It doesnt ...