Tagged Questions
4
votes
2answers
105 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
96 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
707 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
937 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
44 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
95 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
256 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
984 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
16 views
How to center a wx.BusyInfo() - wxpython?
Looking at the API there doesn't seem to be a way to center a wx.BusyInfo message to the center of the screen like with other pop up modals by using Center().
Is there a way to center wx.BusyInfo()? ...
1
vote
1answer
384 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
36 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
146 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
133 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
78 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
135 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
58 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
115 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
308 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
512 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
208 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
388 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
122 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
510 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
1answer
425 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 ...
1
vote
2answers
374 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
678 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
1answer
12 views
Get Selected Files directories with wxThumbnailCtrl?
How can I get the directories of the selected items in a wxThumbCtrl in wxpython?
EDIT:
There is http://wxpython.org/docs/api/wx.lib.agw.thumbnailctrl.Thumb-class.html#GetFileName
However how can I ...
0
votes
1answer
18 views
How to use ScrolledThumbnail in wxpython
Here is my code however it doesnt work. There is not any examples of this widget that is available online. The following code returns an error. Im not too sure on how to use the ScrolledThumbnail ...
0
votes
1answer
17 views
How can wxThumbnailCtrl in wxpython be used?
I think this is a new widget and theres no examples online about this. im not sure how i should start using it or how it can be used.
0
votes
1answer
27 views
Set String of the Current Selected Item with wxListbox
I have a listbox,
How can I change the string of current selected item of the listbox to another string?
I cant really find how to do this on Google.
0
votes
1answer
47 views
embedding grid in panel in wxpython
What is the proper way to embedd grid (wx.grid.Grid) into the panel? I tried the following code and got bizarre frame:
wx.Frame.__init__(self,wx.GetApp().TopWindow,size=(600,800),title='Material ...
0
votes
2answers
18 views
Hide the “Show more fonts” button in wxFontDialog, wxpython
How do we remove the "Show more fonts" button when we use wx.FontDialog?
dlg = wx.FontDialog(self, data)
0
votes
2answers
42 views
Hide the “Failed to load” message when loading an invalid image, wxpython
bmp = wx.Image("C:\User\Desktop\cool.bmp", wx.BITMAP_TYPE_ANY).ConvertToBitmap()
If i run this, it will automatically show an error message saying that it failed to load the image. How can I stop my ...
0
votes
2answers
39 views
Assiociate Widgets into Groups, for Hide and Show, wxpython
I have a bunch of widgets and right now I am using Hide() and Show() to each widget individually when I flip through different sections/pages of my program.
Because I did this, You can see each ...
0
votes
1answer
36 views
How to set an array to ListCtrl
I want to set an array into a wxListCtrl.
Similar to the Set function when using wx.ListBox or the SetItems function when using wx.ComboBox.
On the wxpython API there only seems to be an Append ...
0
votes
1answer
23 views
COMBOBOX is not vertically sizable wxpython
i am wondering if there is a way to size a combobox vertically
This does not work
self.combo1 = wx.ComboBox(self, -1, value='dsadas', pos=wx.Point(10, 30),
size=wx.Size(120, 423450), ...
0
votes
0answers
44 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
51 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
43 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
85 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
143 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
200 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
55 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
122 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
179 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
111 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
114 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
134 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.