Finding installed applications

2005-08-03 Thread James McArthur
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, - From the Gnome Control Center you can specify which applications should be used for which file types. How can I query that list from inside my Perl/Gtk2 application so that I use the correct application to view files? Thanks! James

Re: multiple displays under Win32

2005-08-25 Thread James McArthur
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, It would appear Mike Davis said the following on 08/25/05 18:04: Under WinXP it's just one big screen with the geometry being the maximum width/height of all the screens together. To the best of my knowledge, Windows treats two monitors as

Column model has only 1 column

2005-09-15 Thread James McArthur
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, I have a piece of code that looks like this: my %column_definition = ( Date = text ); my $table = $gladexml-get_widget('treeEventOutput'); my $simpleList = Gtk2::SimpleList-new_from_treeview ( $table, %column_definition); foreach my

Re: Column model has only 1 column

2005-09-18 Thread James McArthur
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, It would appear muppet said the following on 09/17/05 13:33: In general, you must specify the full complement of model columns at creation time. Models don't handle changing their columns after creation. Ah, okay. That is what I had a