On Friday, May 25, 2001, at 02:32 , <[EMAIL PROTECTED]> wrote:
> I'm looking for alternatives to Gtk's file selector widget which have
> any/all of the following properties:

Haven't seen one, but I think you could build one up yourself with the 
usual Gtk+ widgets.  Look at opendir(), readdir(), and closedir() in C, 
or the os and dircache modules in Python.

You probably should build up your own since it seems you have a good 
idea what you want and it sounds unusual enough that it's probably not 
already out there.  Also, if you want to make it work differently, you 
can.

>     * Ability to list various file attributes (size, modtime, owner, 
> etc)

fstat() in C, or the os, stat, and statcache modules in Python.

>     * Ability to select multiple files or directories at once

List and CList can do this.

Have fun!
_______________________________________________
pygtk mailing list   [EMAIL PROTECTED]
http://www.daa.com.au/mailman/listinfo/pygtk

Reply via email to