Questions tagged [wxglade]

wxglade: a GUI builder for wxwidget

http://wxglade.sourceforge.net

42 questions
16
votes
3 answers

How do I stop pyCharm from complaining about underscore strings?

I'm programming in pyCharm making a wxPython project (Mostly generated from wxGlade). If I have some code which specifies a string e.g.: value_label = wx.StaticText(self, wx.ID_ANY, _("Value")) It then complains about Unresolved reference '_'. Is…
Jack burridge
  • 472
  • 7
  • 21
5
votes
1 answer

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 frame is very small. I believe this is because…
Niclas Nilsson
  • 5,691
  • 3
  • 30
  • 43
4
votes
2 answers

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. I've worked out that every time you add something…
Acorn
  • 49,061
  • 27
  • 133
  • 172
3
votes
3 answers

How to run wxGlade generated code

I have created my GUI using wxGlade and it looks fine in the display. I am now trying to run the code it generated before adding it to my finished Python program. I have tryed copying it in to the file structure and running it then copying the code…
Misterman1982
  • 47
  • 1
  • 5
2
votes
5 answers

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. Thank you
nonot1
  • 2,788
  • 4
  • 25
  • 41
2
votes
3 answers

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, I'd like to avoid writing additional code in this…
m_pGladiator
  • 8,462
  • 7
  • 43
  • 61
2
votes
2 answers

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 on using those tools to create a GUI for the…
2
votes
1 answer

wxGlade GUI behavioural problems

I have designed a GUI with wxGlade in python and the design within the program looks fine. But once i had generated the code and ran it in idle, it looks much different. I would like to know why this has happened, what went wrong and what i can do…
user1416451
1
vote
1 answer

output statictext while processing python

I have written code to perform a function that could take a while to perform and I would like there to be output to a text box. at the moment all the intermediate output message all come at the end def main(): …
geo_pythoncl
  • 927
  • 1
  • 7
  • 13
1
vote
1 answer

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 problem with the standard dialogs, but then my…
sromero
  • 184
  • 2
  • 16
1
vote
1 answer

Why does this StaticLine appear behind the sizer?

I'm trying to draw a static line between the "Label"+TextCtrl and the radio buttons. It keeps appearing only when the window is dragged, and then it appears behind everything and I can't figure out why. The goal is to have the static line draw…
Kris M
  • 81
  • 7
1
vote
0 answers

Event to show list when clicking on an option

How can I display the list on the right pane when clicking on an item in the left pane? For example, as per the code, if I click on option A in the left pane, it displays one list but if I click on the B option, it display another list on the right…
1
vote
1 answer

wxglade list tree not showing properly

I am new to wxglade and trying to create a form to show tabs and split window. There are going to be tree lists on the left pane. The issue is that when I open the form, it shows the treelist but the list cannot be collapsed or expanded. When I go…
1
vote
3 answers

How to change the value of an existing wxPython object with a file dialog button

I have been working on creating a python GUI for some work. I would self-describe as a novice when it comes to by Python knowledge. I am using wxPython and wxGlade to help with the GUI development, as well. The problem is as follows: I have an…
MTorres
  • 11
  • 2
1
vote
1 answer

Unable to run Perl code generated from wxGlade

I am trying to run Perl code generated using wxGlade but I am receiving this error . In text Can't load 'C:/Perl/site/lib/auto/Wx/Wx.dll' for module Wx: load_file:The specified module could not be found at C:/Perl/lib/Dynaloader.pm line…
Matt
  • 15
  • 4
1
2 3