TODO
====
Double click to launch game
Fix minor mem leak
More columns (is server passworded, etc)
Configurable columns
Mark humans in bold text
Refresh ability on a single server (tracking)
Implement people finder (woo!)
Country flags
XML config load/save
dmflags human-readable display
player ranking
buddy list?
IRC
Other games
Map screenshot preview

Nearest similar utilities:
zlauncher http://doom.milichovsky.com/img/ostatni/zlauncher.gif
XQF http://www.linuxgames.com/xqf/screenshots.shtml

NOTES
=====

Example code that might be useful in the future follows

// Example dialog

{
 GtkWidget *dialog;
 gint result;
 dialog = gtk_message_dialog_new (window,
                                  GTK_DIALOG_DESTROY_WITH_PARENT,
                                  GTK_MESSAGE_INFO,
                                  GTK_BUTTONS_OK,
                                  "Found %d servers", numServers);
 result = gtk_dialog_run (GTK_DIALOG (dialog));
 switch (result)
 {
      case GTK_RESPONSE_OK:

         break;
      default:

         break;
    }
 gtk_widget_destroy (dialog);
}


// Example XML markup
// See http://library.gnome.org/devel/glib/unstable/glib-Simple-XML-Subset-Parser.html
const char *store = "Fortnum & Mason";
const char *item = "Tea";
char *output;

output = g_markup_printf_escaped ("<purchase>"
                                  "<store>%s</store>"
                                  "<item>%s</item>"
                                  "</purchase>",
                                  store, item);

EXAMPLE SERVER VARIABLES
========================
mapname = ctf-killbox
mapname = DM-OMEGA
needpass = 0
needpass = 0
maxspectators = 4
maxspectators = 4
gamedate = Jan  9 2007
gamedate = Jan 31 2007
gamename = data1
gamename = data1
gamedir = arena
game = arena
sv_joustmode = 0
sv_joustmode = 0
maxclients = 8
maxclients = 16
protocol = 34
protocol = 34
cheats = 0
cheats = 0
timelimit = 0
timelimit = 0
fraglimit = 10
fraglimit = 10
dmflags = 16
dmflags = 2641944
version = 6.03 x86 Jan  7 2007 Win32 RELEASE
version = 6.03 x86 Jan  7 2007 Win32 RELEASE
hostname = pufdogs hell
hostname = Alienarena.info - CTF
gamedir = arena
game = arena
Admin = Forsaken
website = http://www.alienarena.info
deathmatch = 1


