Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
36 views

How to add custom widgets in wxglade

I have an app that I made with wxglade. I've added a mediacontrol to be able to play mp3:s. Without the mediacontrol the app starts with a frame that is 800x600px. But when I add the mediacontrol, the ...
2
votes
2answers
497 views

Where can I find good tutorials and guides on wxPython and wxGlade?

Just out of curiosity, aside from their respective sites, have any of you guys found a better resource for figuring out wxPython/wxGlade? I figured I'd ask while I'm chewing on something else, I plan ...
1
vote
1answer
93 views

OK/CANCEL order in “custom” dialogs created with wxglade

I've noticed that standard dialogs some CANCEL and OK buttons in different order under Windows and under Linux. Under Linux, you get "[CANCEL] [OK]", and under Windows, "[OK] [CANCEL]". I have no ...
1
vote
5answers
211 views

Does Qt have a “XAML-like” markup-based GUI creation?

WPF uses XAML. Gtk has GladeXML, and associated tooling. Does something similar exist for Qt? Just to clarify: I'm asking about runtime loading of a UI from a markup file. XML/YAML/JSON, etc. ...
1
vote
1answer
232 views

wxPython GridSizer - dealing with empty cells

I'm making my first foray into GUI programming, and I'm trying to get to grips with wxPython. I'm trying to use wxGlade, but it's turning out to be a bit buggy. I'm making a layout using GridSizer. ...
1
vote
1answer
242 views

Pango error after a minute of running

I have the following python modules. Sorry if the code is ugly. This is my first python GUI app and I'm fairly new to python as well. It's some sort of a count down timer with a todo list. It works ...
1
vote
1answer
292 views

How to insert a copyright statement into files created by wxGlade?

I use wxGlade to create Python scripts, which use wxWidgets. wxGlade directly manipulates XML files, which describe the wxWidgets based GUI. Those files have the *.wxg extension. From the *.wxg ...
1
vote
3answers
748 views

Is it possible to enumerate the wxFrame children in wxWidgets?

I'm using the wxGlade designer to generate the GUI for a small application. It generates a class, inherited from wxFrame, which is the main application window. In order to facilitate the maintenance, ...
0
votes
0answers
29 views

wxglade formatting issue

Im using wxGlade to create a simple GUI in python. I've used it before, and haven't had this problem, but it seems to me this might be a simple fix... Here's the deal: I have my gui formatted as I ...
0
votes
2answers
132 views

wxPython making a panel not accessible through tab

I built a gui using wx.glade. Part of this gui is a section to enter in passwords and then click a button to validate them. To make this section I used a grid sizer. Not every cell of the grid ...