Python

wxPython: Eguid – Editra Gui Designer

Cody Precord, author of wxPython 2.8 Application Development Cookbook, recently started a thread on the wxPython-dev Google group where he described a WYSIWYG project he has been working on for creating wxPython GUIs. Originally, he programmed it as a plugin for his Editra project, but has decided to release it as a separate project. He

wxPython: Eguid – Editra Gui Designer Read More »

Top Ten Articles of 2010

A lot of websites are doing year-end retrospectives this week, so I thought you might find it interesting to know which articles on this blog were the most popular this year. Below you will find links to each article along with the page view count I got from Google Analytics: A Simple Step-by-Step Reportlab Tutorial,

Top Ten Articles of 2010 Read More »

wxPython: Storing Objects in ComboBox or ListBox Widgets

Earlier this week, there was a discussion on the wxPython IRC channel about how to store objects in wx.ListBox. Then later on that day, there was a question on StackOverflow about the same thing, but in relation to the wx.ComboBox. Fortunately, both of these widgets inherit from wx.ItemContainer and contain the Append method, which allows

wxPython: Storing Objects in ComboBox or ListBox Widgets Read More »

wxPython: Keyboard Shortcuts (Accelerators)

Almost any computer power user will want to use keyboard shortcuts (AKA: accelerators) to get their work done. Fortunately for us, wxPython provides a way to accomplish this very easily using an Accelerator Table via the wx.AcceleratorTable class. In this article we will look at a couple examples to see how this is accomplished.

wxPython: Keyboard Shortcuts (Accelerators) Read More »