On 6 June 2010 06:40, ds <span dir="ltr"><<a href="mailto:ds2@physik.de">ds2@physik.de</a>></span> wrote:<br><div class="gmail_quote"><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
Hello,<br>
<br>
I have a problem with hildon file chooser dialog in scratchbox. I can<br>
not test in N900:-)<br>
<br>
I use simple code<br>
<br>
hildon_file_chooser_dialog_new((GtkWindow*)window,GTK_FILE_CHOOSER_ACTION_SAVE);<br>
GtkFileFilter *filter=gtk_file_filter_new();<br>
gtk_file_filter_add_pattern (filter,"*.png");<br>
gtk_file_chooser_set_filter (GTK_FILE_CHOOSER (fdialog),filter);<br>
<br>
gtk_file_chooser_set_current_name (GTK_FILE_CHOOSER (fdialog),<br>
"nicedraw");<br>
gtk_widget_show_all(GTK_WIDGET(fdialog));<br>
if (gtk_dialog_run (GTK_DIALOG (fdialog)) == GTK_RESPONSE_OK) {<br>
SaveToFile=TRUE;<br>
char nn[150];<br>
char *filename;<br>
filename = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (fdialog));<br>
g_stpcpy(nn,filename);<br>
g_free (filename);<br>
<br>
<br>
Only in case I directly press "SAVE" when the dialog is open, I get an<br>
corrupted filename. If I first change location in the dialog everything<br>
works fine.<br>
<br>
Is this only a problem in scratchbox. I used X86 target and run it in<br>
the full maemo GUI. My application was installed with the GUI installer.<br>
<br>
Thanks a lot for any hint<br>
<br>
Detlef<br>
<br></blockquote><div><br>Probably you've got to set the default directory with a call like:<br><br> gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER (dialog), default_path);<br><br>Where default path should point (usually) to user's Documents (/home/user/MyDocs/.documents)<br>
<br>If you don't do that, or pass a wrong path, it'll default to the root directory ("/") and it'll behave like you described.<br><br></div></div>-- <br>anidel<br>