Tagged Questions

4
votes
2answers
86 views

why is my text not aligning properly in wxPython?

I'm using wxPython to build a GUI and I'm trying to align some text but it's not working at all. I'm trying align three different static text items in three places (right aligned, center aligned, and ...
3
votes
2answers
66 views

wxpython capture keyboard events in a wx.Frame

I'm trying to capture keyboard events that happen inside a wx.Frame, and I would expect the following code to capture those events. However, the handler OnKeyDown is never called when I run the code: ...
3
votes
1answer
683 views

Wxpython: Positioning a menu under a toolbar button

I have a CheckLabelTool in a wx.ToolBar and I want a menu to popup directly beneath it on mouse click. I'm trying to get the location of the tool so I can set the position of the menu, but everything ...
3
votes
1answer
923 views

wxpython: Updating a dict or other appropriate data type from wx.lib.sheet.CSheet object

If I have a notebook with three spreadsheet widgets, what is the best way to have changes to the spreadsheet update a dictionary (or maybe an sqlite file?). Do all wx grid objects come with a built ...
2
votes
1answer
24 views

wxpython:Insert multiple strings from one listbox to an other listbox

When i click on one of the choices of the zone_list in timezone1 listbox, i want to insert that string in the time_zones2 listbox and if after that i select an other choice i want to add the second ...
2
votes
2answers
88 views

Remove horizontal grid lines only on wxgrid

On the wxwidgets docs, I only found the EnableGridLines, which is set to false, removes both the horizontal and vertical lines, what I wish, is to remove only the horizontal lines on the grid. Is ...
2
votes
2answers
247 views

Drawing anti-aliased lines in wx?

I've got a program that draws my mouse movements on a window. The only problem is the line is very rough, and i would like it (not where two different lines link, but the actual line) to be ...
2
votes
1answer
951 views

Non-editable text box in wxPython

How to create a non-editable text box with no cursor in wxPython to dump text in?
1
vote
1answer
224 views

Python ImportError: No module named wx

Im sorry to ask this question again. I have searched and found endles repeats of it both on stackoverflow and also on general google search. Unfortunatly I just cant get my system sorted. I have the ...
1
vote
0answers
26 views

wx HtmlEasyPrinting encoding issues when Printing

I have an html text with non-ascii characters, and I want it printed using HtmlEasyPrinting module. printer = HtmlEasyPrinting() text = ''' <html> <head> <meta ...
1
vote
2answers
124 views

python thread crash

I have a program (time lapse maker) which has two threads that updates a wx.StaticBitmap. When the two threads access the wx.StaticBitmap it crashes with the error python: xcb_io.c:221: ...
1
vote
1answer
115 views

Unable to use wx.NotificationMessage properly with wxPython

I recently upgraded to the development release of wxPython (wxPython 2.9.2.4) since I needed the functionality of wx.NotificationMessage within my application. I have been trying unsuccessfully to ...
1
vote
1answer
75 views

Something like the wx.MultiChoiceDialog in a panel instead of a dialog

I'd like to use the list (with checkboxes next to each item) that is contained in the wxMultiChoice dialog in a panel. Is that possible?
1
vote
1answer
124 views

Displaying numpy arrays with matplotlib inside wx

I have a huge numpy ndarray with shape (MxNx3) and datatype float32. I want the image to simply display in a wx.Frame that has a wx.ScrolledWindow attached. I want the image at 100% zoom and it is ...
1
vote
1answer
57 views

What gui elements to be used?

I'm trying to create a journal entry interface, similar to those well known accounting softwares using wxpython for the gui and psycopg2 as backend. I tried doing it with a listctrl, but its use is ...
1
vote
0answers
105 views

wxBufferedPaintDC (Device Context) Trouble with wxPython onPaint event handler

I have a class called imageBrowser that displays an image in a wxMDIChildFrame. This class is mainly for displaying an image to the user with a set of controls to browse through the image set. Now, ...
1
vote
1answer
290 views

wx.ScrolledWindow not repainting when scrolled

I have a little app that I am working on with wxPython. I have a scrolled window using wx.ScrolledWindow. It seems to refuse to repaint the contents when it is scrolled. Example: Code that created ...
1
vote
1answer
462 views

How to make wx.TextEntryDialog larger and resizable

I create a wx.TextEntryDialog as follows: import wx dlg = wx.TextEntryDialog(self, 'Rules:', 'Edit rules', style=wx.TE_MULTILINE|wx.OK|wx.CANCEL) ...
1
vote
1answer
191 views

I'm trying to make a wx.Frame with variable transparancy (based on the png mapped in the erase bk event)

I'm trying to make a special splash screen that is displayed while the application is loading, it outputs messages of the various components loading and features a progress bar. The first job I am ...
1
vote
3answers
382 views

What are the existing open-source Python WxWidgets designers?

What are the usable tools? I am aware of wxformbuilder and wxGlade, but none of them seems to be complete yet.
1
vote
2answers
117 views

How to layout all children of a wxPanel?

I have a wxPython application which allows the users to select items from menus that then change what is visible on the screen. This often requires a recalculation of the layout of panels. I'd like ...
1
vote
2answers
487 views

wxPython TreeCtrl without showing root while still showing arrows

I am making a python tree visualizer using wxPython. It would be used like so: show_tree([ 'A node with no children', ('A node with children', 'A child node', ('A child node with children', 'Another ...
1
vote
2answers
338 views

Saving an image of what a dc drew, wxPython

I need to be able to save an image (format doesn't matter) of the state of the dc canvas. I tried dc.GetAsBitmap but it returns invalid bitmaps. How can I do it?
1
vote
6answers
653 views

Is there any Visual Studio-like tool for creating GUIs for Python?

My girlfriend asked me if there was a tool (actually, an IDE) that would let her create her GUI visually and edit functions associated with GUI-related events with little effort. For example, she ...
0
votes
0answers
30 views

Need some help using widgets with wxpython

Hey i am using pygame within wxpython, and I am wondering how can I use a wx widget inside the pygame part of the program. So, I would just like to replace the player image with a wxButton. (So when ...
0
votes
1answer
37 views

Change the font style of one item in a wx python ListCtrl

I am having issues changing the font of a single item in an wx list ctrl. I have 1 row and 3 columns in my ListCtrl. The code below should change the font of the item located at row = 0 col = 0 to ...
0
votes
0answers
34 views

inserting the control to wx.FlexGridSizer

I am adding some control like this : | statictext| stc1 | | statictext| stc2 | | statictext| stc3 | adding the control self.text = ...
0
votes
0answers
78 views

Python: How to kill wx.MessageBox based upon condition vs user input

I have a bit of code that checks the CD for a specific file content, and if its not correct it prompts the user to insert the correct CD. The problem is that I have a large period of time where the ...
0
votes
0answers
126 views

Python multiprocessing.manager.BaseManager instance raises EOFError during an attempt to create an instance of a derived wx.Python class

I'm writing an application in which there are two continuously running processes: a wx.python application event loop for the gui, and a crawler class run loop which is used to trigger web-crawling ...
0
votes
1answer
166 views

create multiple classes with wxFormBuilder for python

I'm using wxFormBuilder to write a series of GUI applications. So far it has worked wonderfully, but the documentation on their homepage is a broken link. What I'd like to do is combine my programs ...
0
votes
0answers
21 views

Increase number of rows on wxgridPyGridTableBase

What I want to have in my grid is to have an initial empty row, for the user to input on each cell, and as he reaches the last column of the row, when he presses enter, another set of rows are added ...
0
votes
0answers
52 views

Display summary data on a footer for wx.grid

Still new to wxpython, but I've been working on a project lately, that has a customized grid with 5 columns and no row labels, that takes, a choice from a database, 2 floats, a number, and another ...
0
votes
2answers
113 views

How do I iterate through all wx.CheckBox instances?

I have a wx frame where I have a quite a few checkboxes. Ever so often when the user changes the settings in a drop down menu (wx.ComboBox) I'd like to clear all the checkboxes. Currently, I've ...
0
votes
1answer
54 views

How to identify type of draggable item?

I need to drop an object dragged from a third party application to a wxpython application. I know the content of the object is basically a string but I dont know how to specify the type so that the ...
0
votes
1answer
170 views

Why wxPython applications are slow to start?

Is there anyway to speedup start-up for wxPython? It takes usually around 5 seconds for the application to start on my Ubuntu machine, even when I write the most simple ones! import wx class ...
0
votes
0answers
105 views

wx.grid.PyGridTableBase non modifiable

I have a grid that displays a number of informations using a PyGridTableBase. I would like to know if it possible to make this grid non-modifiable by a user. I mean, right now the user is allowed to ...
0
votes
1answer
106 views

How to preserve page position in the wx.html.HtmlWindow after link clicked?

I have a wx python application with wx.html.HtmlWindow window: class MyHtmlWindow(wx.html.HtmlWindow): Method SetPage is used to update html content on the window: def OpenURL(self, url, ...
0
votes
1answer
131 views

pylab in wx application

when I try make a picture with pylab import pylab pylab.plot([0,1,2,3],[10,50,30,40]) pylab.savefig('graph.png') in a wx application, no returned the terminal control.
0
votes
0answers
55 views

Sending a lot of output to a wx.TextCtrl from a thread

I want to start a thread immediately after my wxpython program has started, and send a lot of output to a wx.TextCtrl. Essentially, I want to modify the following program for i in range(10000): ...
0
votes
1answer
151 views

Changing Label in toolbar using wxPython

I currently have a toolbar in wxpython with an start icon. I want it so when this icon is clicked the icon and method that it uses changes to stop. This is the code that I have so far: ...
0
votes
1answer
242 views

wxPython and StaticBox(Sizer) issue

Recently I've been having an issue with the code shown below and it's been bugging me for a while now. I don't know why it's happening, the only thing I know is that the python code brings up a ...
0
votes
1answer
164 views

How do i make my web browser made in wx.python to parse pages(ex.Google.ro)

Can somebody help me? please i really need to parse at least google. i need to parse url page. i've made a web browser and this web browser doesn't parse pages. It's made in wxpython.
0
votes
2answers
171 views

Is there a way to change lookandfeel for wx Python?

i was curious if there is some sort of way to change the look and feel of wxpython to something that is more standardized. I am writing a small application for windows and mac os x. And i noticed that ...
0
votes
2answers
277 views

how to embed a webpage using wx?

I need to show a webpage (a complex page with script and stuff, no static html) in a frame or something. It's for a desktop application, I'm using python 2.6 + wxPython 2.8.10.1. I need to catch some ...
0
votes
1answer
408 views

problem with editing labels in wx list control

hello do you guys have any idea how to edit the the labels in the second column in a wx.ListCtrl here is the code that i used to create that list .. Note that the first column is the only editable ...
0
votes
2answers
293 views

Can't get wx.BufferedDC to draw anything

I've got a problem with DCs. I'm trying to make an application that will draw many lines on the screens and needs to update really fast, and since I don't want flickering, I decided to give buffered ...
0
votes
0answers
88 views

wx 'easy gui' library; how do I keep this code from crashing IDLE & Other python IDEs?

When I run this code in IDLE, it crashes. However, if I run it outside of IDLE it works just fine. There are a couple of Python IDEs that are written in python that suffer the same problem, but if I ...
-1
votes
2answers
153 views

can i use panel without a frame in wxpython?

there are some people? i have some question about wxpython , can i use panel without a frame?