On 5/25/07, Pierre Amadio <[EMAIL PROTECTED]> wrote:
Hi there.

I do not understand how i can tell a hildon.FileChooserDialog to let the
user select a directory located on a memory card.

Even when i click on the location icon in the filechooserdialog that is
shown on the test case, nothing happens altough i have a memory card
present.

Any idea what i may doing wrong ?


Hi Pierre.

I wrote a simple C program that uses FileChooserDialog and it doesn't
show the memory card too. I think that it's a FileChooserDialog
limitation.

--
Lauro ("lmoura" on Freenode)
INdT - Recife
http://lauro.wordpress.com
#include <hildon-widgets/hildon-file-chooser-dialog.h>
#include <gtk/gtk.h>

int main(int argc, char *argv[])
{
    int i;
    GtkWidget *filechooser;

    gtk_init(&argc, &argv);

    filechooser = hildon_file_chooser_dialog_new(NULL,
                    GTK_FILE_CHOOSER_ACTION_CREATE_FOLDER);

    i = gtk_dialog_run(filechooser);

    gtk_widget_destroy(filechooser);
    return 0;
}
_______________________________________________
maemo-developers mailing list
[email protected]
https://maemo.org/mailman/listinfo/maemo-developers

Reply via email to