public
Description: Collection of custom gtk widgets I've created
Homepage:
Clone URL: git://github.com/chergert/custom-gtk-widgets.git
nzjrs (author)
Sat Aug 29 18:13:29 -0700 2009
chergert (committer)
Mon Aug 31 16:22:01 -0700 2009
name age message
file README Tue Dec 30 23:11:10 -0800 2008 Update readme. [chergert]
directory TreeMap/ Sat Aug 15 00:41:44 -0700 2009 Add c# treemap. [chergert]
directory bdbliststore/ Tue Dec 30 23:09:59 -0800 2008 New GtkTreeModel impelementation using BDB as t... [chergert]
directory cellrendererbubble/ Mon Feb 09 02:38:44 -0800 2009 Add GtkCellRendererBubble. [chergert]
directory eggsqlitestore/ Tue Dec 30 23:11:01 -0800 2008 Add old EggSqliteStore. Lots of optimizations n... [chergert]
directory gtkmodebutton/ Mon Aug 31 16:22:01 -0700 2009 Add gtk_mode_button_append_button * Makes addi... [nzjrs]
file pyhud.py Fri Aug 07 02:12:00 -0700 2009 Add hud and treemap. [chergert]
file treemap.py Fri Aug 07 02:12:00 -0700 2009 Add hud and treemap. [chergert]
README
This is a collection of gtk widgets I've made.  As i find the sources to them
i'll add them here.

gtkmodebutton

  This is a simple button that performs an action similar to a radio
  button.  It can have one active setting. However you are free to
  pack in many widgets (but there can be only one, highlander!).

  Sorry, that tv show ruled.

bdbliststore

  This is a GtkTreeModel implementation that uses a BDB database as the
  backend.  This allows for tuning how you want pages cached and what
  not on the database level.

  The current requirement is that the database is a DB_RECNO (a btree
  with auto-generated record nunbers, aka keys) and that it is created
  with the DB_RENUMBER option so that a record offset == key.

eggsqlitestore

  This is an old hack to make a GtkTreeModel that was backed by
  sqlite.  I made many more optimizations in other versions i wrote,
  but im not sure where they are at the moment. someday ill make
  this version better (when i decide that rdbms' don't suck)