I have a program where I open a file dialog and take the file name and do some resource intensive operations.
My problem is that while the opertion is running, even though gtk_widget_destroy() has been called on it the file dialog stays open.
This is a problem because I will need to implement a loading bar in the near future and I don't want the dialog hanging around. my code looks like this:
if(gtk_dialog_run(GTK_DIALOG(fileSelect)) == GTK_RESPONSE_OK){
filename = string(gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(fileSelect)));
gtk_widget_destroy(fileSelect);
}else{
gtk_widget_destroy(fileSelect);
return;
}
resourceIntensiveFunction();
So how can I wait for the file dialog to exit before continuing?
BTW I'm using GTK 2.
So, I found out how to do it, it is relatively simple.
Hope this helped someone.