Skip to main content

Learning wxPython

I spent some time today picking up wxPython to add a GUI to Nessie. Here's a few things I learned:

wxPython defaults to logging errors into a wx window on Windows and Mac. That's pretty useless if your application crashes and the window disappears immediately. To redirect output to your console use:
wx.App(redirect=False)
The wxPython style guide suggests using sizers for laying out your application. The most useful of these is the GridBagSizer (basically a table where items can span multiple cells). Unfortunately, the API for this sizer is a bit cumbersome. It requires you to specify the coordinates for each item in the grid. That's fine until you want to insert a new row and end up shifting all the following coordinates by one. I wrote a quick factory wrapper around the GridBagSizer that I think makes for a nicer API.
class GridBagSizerFactory(object):
def __init__(self, hgap, vgap):
self.sizer = wx.GridBagSizer(hgap, vgap)
self._row = 0
self._col = 0

def _Add(self, obj, *args, **kwargs):
self.sizer.Add(obj, (self._row, self._col), *args, **kwargs)

def Add(self, *args, **kwargs):
self._Add(*args, **kwargs)
self.NewCol()

def AddGrowable(self, *args, **kwargs):
self._Add(*args, **kwargs)
self.sizer.AddGrowableCol(self._col)
self.NewCol()

def NewCol(self):
self._col += 1

def NewRow(self):
self._col = 0
self._row += 1

def NewGrowableRow(self):
self.NewRow()
self.sizer.AddGrowableRow(self._row)
With this factory, row and column numbers are handled automatically so adding new items is a cinch. Here's a small snippet from the Nessie GUI I'm working on:
class MainWindow(wx.Frame):
def __init__(self, *args, **kwargs):
wx.Frame.__init__(self, *args, **kwargs)
add_node_btn = wx.Button(self, label='Add Node')
chat_log_txt = wx.TextCtrl(self, style=wx.TE_MULTILINE)
nodes_lbx = wx.ListBox(self, choices=['foo', 'bar', 'baz'])
chat_txt = wx.TextCtrl(self, size=(-1, -1))
chat_txt.Bind(wx.EVT_KEY_DOWN, self.Chat)
sizer_factory = GridBagSizerFactory(5, 5)
sizer_factory.Add(add_node_btn, (1, 1))
sizer_factory.NewGrowableRow()
sizer_factory.AddGrowable(chat_log_txt, (1, 1), wx.EXPAND)
sizer_factory.Add(nodes_lbx, (1, 1), wx.EXPAND)
sizer_factory.NewRow()
sizer_factory.Add(chat_txt, (1, 2), wx.EXPAND)
self.SetSizer(sizer_factory.sizer)
self.Show()

Popular posts from this blog

Bot Commander r1 Released

I just published Bot Commander , the code for my Lego NXT rover . There's a lot left to be done, but release early and often, right? Currently it provides a UI for controlling the direction and speed of all three motor ports on the NXT brick. You can link motors together to adjust their speed in unison. In addition, you can enable "Tilt Control" for a steering-wheel-type experience. To use tilt control: Hook up motor A and B to be the left and right wheels of your vehicle. Hold the phone sideways (i.e. landscape). Tilt the phone forward and backward to drive forward and backward. Turn the phone right and left (like a steering wheel) to steer right and left. As you tilt the phone, you'll see the UI update the slider controls for the speed of motors A and B. I plan to expand the UI to provide a lot more than just motor control. Before that, though, I'll push a JAR to make it easy to integrate control of Lego NXT robots into your own Android project. The code
Read more

Email Injection

Not so long ago, I ran a wiki called SecurePHP. On that wiki, there was one particular article about email injection that received a lot of attention. Naturally, with all the attention came lots of spam. As a result, I disabled editing of the wiki and content stagnated. Still, the email injection article remained popular. About a year later, the server that hosted SecurePHP died and I never had a chance to hook it all back up. I saved the article though and I'm reposting it now. It may be a bit old (I've been away from PHP for a long time), and I didn't write all of it, so feel free to leave comments about needed updates and corrections. Though this article focuses on PHP, it provides a lot of general information regarding email injection attacks. The PHP mail() Function There are a lot of ways to send anonymous emails, some use it to mass mail, some use it to spoof identity, and some (a few) use it to send email anonymously. Usually a web mailform using the mail() funct
Read more

Android Recipes and Snippets

I've put together a small collection of Android recipes. For each of these recipes, this is an instance of Context (more specifically, Activity or Service ) unless otherwise noted. Enjoy :) Intents One of the coolest things about Android is Intents . The two most common uses of Intents are starting an Activity (open an email, contact, etc.) and starting an Activity for a result (scan a barcode, take a picture to attach to an email, etc.). Intents are specified primarily using action strings and URIs. Here are some things you can do with the android.intent.action.VIEW action and startActivity() . Intent intent = new Intent(Intent.ACTION_VIEW); // Choose a value for uri from the following. // Search Google Maps: geo:0,0?q=query // Show contacts: content://contacts/people // Show a URL: http://www.google.com intent.setData(Uri.parse(uri)); intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); startActivity(intent); Other useful action/URI pairs include: Intent.ACTION_DIAL , tel://867530
Read more