wxPython is a Python wrapper for the cross-platform C++ GUI API wxWidgets.
1
vote
1answer
8 views
Why is wxGlade enforcing a sizer as the first child for wx.Frame?
I notice that wxGlade (gui builder for wxPython) is enforcing a sizer as the first child element for wx.Frame which seems odd to me since almost every book and tutorial out there suggests to use a ...
-1
votes
0answers
17 views
Trying to install wxpython on Mac OSX
I am trying to install wxpython onto my Mac OSX 10.8.3. I download the disk images from their downloads page and mount it. When I try to install the package I get an error that saying that the package ...
1
vote
1answer
23 views
wxpython ctrl+x shortcut does not work
I'm running this wxpython app in windows 7. For some reason when I press ctrl+x on my keyboard, the frame does not close.
However if I change the binding from text='quit\tCtrl+x' to ...
1
vote
0answers
27 views
is it possible to set numbers as a string in a listctrl
Okay ran into some complications setting some numbers in my Listctrl They're numbers in the SQL database and they're inserted as strings... converted to numbers automatically
from wx import *
import ...
0
votes
0answers
19 views
wxpython TextCtrl color specific part of the text
I'm using wxpython to create GUI with python, now, is there a way to color specific part of the text?
Example (using Tkinter):
http://i.stack.imgur.com/fGAVA.png
Here is my Print function:
def ...
0
votes
0answers
11 views
unable to install wxPython 2.8.12.1 on debian using apt-get install
I am trying to install wxPython 2.8.12.1(msw-unicode) version on debian(6.0.6) but did'n.
getting following error:
(venv)root@localhost:/home/aloha# apt-get install python-wxgtk2.8
Reading package ...
0
votes
2answers
18 views
Updating a listctrl item
so I got the thing to automatically add items to the list. my problem revolves now around updating entries given the code bellow.. when I select the item and try to update it Via update via update ...
2
votes
1answer
34 views
Best Canvas for WxPython
I am a Java programmer working on a project in Python and the latest version of WxPython. In Java Swing, you can draw on JPanel elements by overriding their paint method.
I am looking for a similar ...
0
votes
2answers
34 views
Cant add a text control without blocking the toolbar in wxpython
I reproduced the error here;
import wx
import debug
class MyFrame(wx.Frame):
def __init__(self, parent):
wx.Frame.__init__(self, parent, -1, "Test")
self.SetSize((600,500))
...
0
votes
0answers
13 views
How to change point of rotation using DrawRotatedText in wxPython?
I'm using a ClientDC to draw a bunch of text, some of which needs to be rotated. I need the individual letters to each rotate around their own center, if possible, so that I can produce a line of ...
0
votes
1answer
25 views
wxPython Dialog freezes after ShowModal
Here the code directly, worth thousand words of explaining it.
#!/usr/bin/env python2
import wx
class TestDialog(wx.Dialog):
def __init__self(*arg, **args):
wx.Dialog.__init__(self, ...
0
votes
1answer
28 views
using the GetIndex() function
Managed to fix up my code. now thing is I'm trying to call up an event to use the getIndex() to extract the index of the currently selected listctrl item. I know I need to pass a varable for event but ...
0
votes
1answer
10 views
What makes a wxpython TextCtrl fill horizontally
I have a TextCtrl in a horizontal BoxSizer. It is added with a weight of 1 (next to a button with a weight of 0). When I run the program, the TextCtrl will remain at a fixed width with empty space ...
0
votes
1answer
14 views
Is it possible in wxwidgets to determine if the window is currently visible?
In my wxWidgets (wxPython) app, I am using a 50 ms timer to do some polling and update a window if there are any changes. If changes are detected it calls wxWindow.Refresh to update the window, and ...
0
votes
1answer
25 views
python application structure, dynamically loading modules
I'm new to python and wxPython.
I have a question concerning the application structure for the following:
There is a base module, the main module.
This main module gets called at the beginning.
In ...
0
votes
1answer
26 views
trouble with matplotlib pubsub python
Traceback (most recent call last):
File "PSPsolver1.py", line 520, in getchain
Publisher().sendMessage(("show.mainframe"), msg)
File ...
0
votes
1answer
40 views
variable not being defined in a class despite being defined in it's init function
from wx import *
import Customer as c
class CustomerMain ( wx.Frame ):
def __init__( self, parent ):
wx.Frame.__init__ ( self, parent, id = wx.ID_ANY, title = u"Customers", pos = ...
0
votes
0answers
14 views
wx MediaCtrl Mac OS X backend does not mantain aspect ratio
On the Mac OS X backend I found that it doesn't keep the aspect ratio when the window is resized? Is there a way to do that?
Note: This code also doesn't seem to work with urls... strange but it ...
0
votes
3answers
34 views
Running ride.py shows error “wxPython with ansi encoding is not supported”
When executing a file called ride.py, I get the following error message:
wxPython with ansi encoding is not supported You need to install
wxPython 2.8 toolkit with unicode support to run RIDE. ...
0
votes
1answer
41 views
I'm trying to get the correct minutes, and seconds when using integers
I'm attempting to create a stopwatch-like gui application (wxpython). I have the buttons: start, stop, reset, and a frame that displays 00:00.0 (mm:ss:tt, minutes, seconds, tenths of seconds). ...
0
votes
2answers
27 views
Can we change background color of checkbox text in WxPython?
Can we change background color of checkbox text in WxPython?
I want the whole region of the square box + attached text to it, to be in a particular color
checkbox = wx.CheckBox(self.panel, -1, ...
0
votes
1answer
24 views
Non-flicker interactive Image sequence display with wxpython
I've created an interactive image sequence viewer. The viewer would work almost perfectly only if there is no flickering. I read a bit about double buffering and find it a bit confusing. I need ...
0
votes
1answer
11 views
wxPython set selected control upon application start
I have a simple wxPython application. It basically has a image and a text-entry field (a wx.TextCtrl).
I want to be able to immediately be able to start entering text as soon as the window opens. ...
0
votes
1answer
24 views
Why does the use of *args and **kwargs throw an error in wxpython?
Running this code results an in error
import wx
class MyFrame(wx.Frame):
def __init__(self, *args, **kwargs):
wx.Frame.__init__(self, args, kwargs)
self.Show()
app = wx.App()
...
-1
votes
1answer
24 views
updating text on canvas wxpython
canvas = FigureCanvas(self, -1, fig)
canvas.mpl_connect('pick_event',on_pick)
canvas.mpl_connect('motion_notify_event', motion_notify_callback)
SSkey1=wx.StaticText(canvas,-1,"SS",pos=(623,42))
...
0
votes
1answer
21 views
wx.Python: Passing control between multiple panels
I'm a newbie to wxPython, and have researched similar questions, but can't specifically find an answer to my question. I'm creating two panels with a splitter. Each panel has a number of widgets. I'd ...
0
votes
1answer
33 views
pass terminal output to GUI using wxpython
Hi all i am using python 2.7 and for GUI wxpython, in linux environment. I wants to redirect output from terminal to Message box, how it will happen?
My code is:
p = subprocess.call(" grep "Wanted" ...
2
votes
1answer
37 views
Setting up idle thread/signalling thread
I'm using Python with wxPython for writing an app.
The method I'm considering to accomplish this may not be the best - if that's the case, let me know because I'm open to refactoring.
Right now, I ...
0
votes
1answer
29 views
How to establish a connection from a wxpython desktop app to a remote msyql database?
I'm writing a desktop app in wxpython. For simplicity sake let's say it's a just a frame with a button in it. When someone clicks that button a record inserted into a remote mysql table with the ...
0
votes
0answers
19 views
wxpython, passing user datas to html2
i am trying to develop python GUI to access webpages. below example is working fine. but i need to pass user credentials(username/password) with in this code.
i dont want to click on that button. ...
1
vote
1answer
18 views
wxPython TextCtrl Not Focusing After using Remove() or Clear()
So I am making my Major Project for my HSC which consists of three banking calculators.
I gather the data from various TextCtrls before doing the calculations. For my Savings Calculator, I have two ...
2
votes
1answer
33 views
controlling UI elements in wxPython using threading
I'm writing a simple game using Python/wxWidgets.
I've written a class for the main window and a simple class for another frame that gets user input.
The architecture I have so far is that the app ...
1
vote
0answers
15 views
NSUserNotification not working with wx.app.MainLoop() method
Here is simple code that uses PyObjC interface to show the desktop notification. When I call notify method without wx.app.MainLoop() it works fine but with wx.app.MainLoop() it not.
import ...
0
votes
0answers
11 views
wxpython error issue for glcanvas
i am getting error on excuting python code. Error is "wx._core.PyAssertionError: C++ assertion "GetParent()->IsShown()" failed at ....\src\msw\glcanvas.cpp(565) in wxGLCanvas::SetCurrent(): can't make ...
-1
votes
3answers
34 views
Iterating over controls in wxPython in order to save session data
I have a GUI written in wxPython (with boa constructor).
I would like to save a user's session to a file, to be loaded the next time the application starts.
I would like to avoid saving each value ...
0
votes
1answer
17 views
draw lines to connect two shapes
How to design such function that user can use mouse to draw a line to connect two shapes? I'm using this module in wxpython : wx.lib.ogl.
The doc for theses methods are brief and no good demo that ...
0
votes
1answer
33 views
How to converter Pyw to executable in Ubuntu?
i have a wxPython(with Python 2.7 64x) script, and this script was been created on Ubuntu 12.
Well, i wanna execute this wxPython as executable on Windows(doubleclick), but on Ubuntu.
I tried change ...
0
votes
1answer
18 views
cp copy in wxPython spaces
In a small wxPython programme I'm making I have a for loop that takes items in a list of files and copies them using cp copy. Everything is fine and works on sources without spaces in their paths. ...
0
votes
1answer
34 views
Dont reset fields when message box show up
Hi all i am learning python language, and for gui i use wxpython. I have 2 spin ctrl, 1 text ctrl, 1 password ctrl in my GUI. whenever user enter wrong password it will pop-up message that "password ...
1
vote
1answer
22 views
In wxpython, how to make frame fully transparent, while line is visible?
import wx
class DrawPanel(wx.Frame):
def __init__(self):
wx.Frame.__init__(self,None,title="Draw",size=(150,150))
self.SetTransparent(0)
self.Bind(wx.EVT_PAINT, self.OnPaint)
def ...
0
votes
1answer
16 views
Call Function inside of another class that is threaded
I am writing a gui application in python. In one instance of the GUI I want to call a method inside of my thread class, but I don't want to call the initial run() method.
Here is an example of my ...
1
vote
1answer
21 views
In wx.Python.aui, how do I detect/pass events between panes?
I do not code very often and therefore forget some things quickly. However I have been tinkering (working in) python and wx.python for a couple of years and finally came across AGW.AUI and thought it ...
0
votes
1answer
27 views
How to clear drawing on screen in wxpython?
import wx
app=wx.App()
dc=wx.ScreenDC()
dc.DrawLine(100,100,500,500)
dc.Clear()
I just draw on screen, not to create frame and draw on frame.
The line appear, but dc.Clear() no effect. And I can't ...
0
votes
1answer
34 views
Error when using wx.StaticBitmap.SetBitmap
I wrote a program in python which can download pictures from the web.
For every downloaded picture it is doing a preview of that picture in the GUI but every time it does so I receive the following ...
0
votes
0answers
10 views
how to add text in composite shape when double clicking it
I want to double click a composite shape to add textCtrl on it, but when I double click the composite shape, it do nothing, it can't response to the double click event. Can you help me to solve this?
...
-1
votes
2answers
137 views
How to integrate simpleGUI with python 2.7 and 3.0 shell
I am learning Python from coursera. In this course they use simpleGUI module on Codeskulpture. Can anyone tell me how to integrate simpleGUI with python 2.7 and 3.0 shell...
Thanks
0
votes
0answers
26 views
How to make double click event right in textCtrl
I have a problem when using textCtrl.
I want to realize a function that when I double click a shape, there would be a textCtrl and you can input text in it, and after the 'enter' key down, textCtrl ...
0
votes
1answer
21 views
closing a program in wxpython via a menu item
class MainPanel(wx.Panel):##main frame
""""""
#----------------------------------------------------------------------
def __init__(self, parent, size = (5000,5000)):
...
-1
votes
1answer
38 views
How can I display image as color managed with wxPython?
I want to show images with embedded ICC profile with wxPython. To show them correctly, they need to be converted to the current display profile.
Is there a way to get wxPython automatically do the ...
0
votes
1answer
12 views
Very large wx.ScrolledPanel rendering
I am trying to display a very large map in a scrollable window. The idea is that you have a grid of square tiles with an image for each tile and you can scroll around to see them. Each tile also has ...



