-1
votes
0answers
8 views
Can someone give a brief overview of the HtmlWindow widget for wxPython?
I've been trying to implement an HtmlWindow into a panel on an RSS aggregator client I'm making, but for some reason I can't seem to get the window to display any html information. I create an ...
0
votes
1answer
15 views
WxPython Login Function
I'm writing a GUI and I'm trying to make a login screen before my main GUI screen but i cant figure out the right way to do this
First i tried to structure it like this:
class GUI(wx.Frame):
...
1
vote
2answers
57 views
+50
wxpython listctrl and fix column widths
I am trying to make a "table" look good within my panel. This issue I'm having is that the table fills up the panel but everything is to the left. I would like to have each column be the same size ...
1
vote
1answer
190 views
Wget and Python download manager?
I'm having difficulties with python download manager. I already tried downloading with only wget and it worked. I also created my wxpython interface. But my problem now is how will I combine the two? ...
0
votes
2answers
40 views
How to get the button object created by CreateButtonSizer (or CreateSeparatedButtonSizer) in wxPython
I feel like this should be simple, but I can't find anything out there. I have a pretty simple dialog, with two text controls. I then create a OK/CANCEL buttons sizer using the ...
10
votes
7answers
2k views
How to create a Mac OS X app with Python?
I want to create a GUI application which should work on Windows and Mac. For this I've chosen Python.
The problem is on Mac OS X.
There are 2 tools to generate an ".app" for Mac: py2app and ...
0
votes
1answer
19 views
Boa Constructor keeps crashing
I'm recently using Boa Constructor to build GUI, and here's my problem:
create a new wx.Frame
add a wx.Panel
add a wx.BoxSizer
add a wx.StaticBox
add a wx.StaticBoxSizer
It crashes every single ...
1
vote
2answers
19 views
wxpython frame initialization error with threads
Here's an example:
class DemoFrame(wx.Frame):
def __init__(self, parent):
wx.Frame.__init__(self, parent)
self.panel = wx.Panel(self, -1)
...
initialize other ...
2
votes
2answers
992 views
How do I make my wxpython top frame show in the middle of my desktop?
I want to make my GUI program top frame both vertically and horizontally aligned.
wx.Frame.__init__(self, parent=None, id= -1, title="Test Frame", pos=(-1, -1), size=(1280, 770), ...
0
votes
0answers
22 views
How to to embed matplotlib.pyplot in wxpython? [duplicate]
I made me a litle graph builded with matplotlib.
import matplotlib.pyplot as plt
plt.plot([1,2,3], [1,4,9], label='going up')#, color="red")
plt.plot([1,2,3],[1,2**3, 3**3], label='going down') ...
3
votes
2answers
1k views
How do I install wxPython in virtualenv
I'm on a Mac OSX Lion machine, and I've downloaded wxPython-src-2.9.3.1.tar.bz2. I then did the following (note: output messages have been removed):
$ tar -xjf wxPython-src-2.9.3.1.tar.bz2
$ cd ...
0
votes
1answer
14 views
Enabling the dock icon on Mac with WxPython
I'm trying to get my empty frame so that when I click the X it just hides the window, and then if I hit the dock icon it'll reveal the window. It's turning out to be more of a challenge than I ...
0
votes
1answer
18 views
How to delete a specific row in wxListCtrl after sorting?
I'm using wx.ListCtrl for live report in my app, and there will be continuous status updating including inserting a new row when a task starts and deleting related rows when the tasks end. Since the ...
0
votes
1answer
51 views
Python: best way to do 2D graphics very fast? [on hold]
I wrote a program that analyzes hand writings. It is a cross platform app based on wxPython. My main problem right now is its speed of 2D graphics. First the writing is scanned into a big image. ...
3
votes
0answers
56 views
+300
VTK window not filling wx.Panel
I'm creating an application with wxPython and VTK. There is a configuration panel (wx.Panel) on the left of screen and a VTK window on the right, also based on a wx.Panel. The panels are placed in the ...