libui/unix/stddialogs.c

66 lines
1.9 KiB
C
Raw Normal View History

2015-06-26 17:45:00 -05:00
// 26 june 2015
#include "uipriv_unix.h"
// TODO while this runs, other windows don't get /any/ events
#define windowWindow(w) (GTK_WINDOW(uiControlHandle(uiControl(w))))
static char *filedialog(GtkWindow *parent, GtkFileChooserAction mode, const gchar *stock)
{
GtkWidget *fcd;
GtkFileChooser *fc;
gint response;
char *filename;
fcd = gtk_file_chooser_dialog_new(NULL, parent, mode,
GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
stock, GTK_RESPONSE_ACCEPT,
NULL);
fc = GTK_FILE_CHOOSER(fcd);
gtk_file_chooser_set_local_only(fc, FALSE);
gtk_file_chooser_set_select_multiple(fc, FALSE);
gtk_file_chooser_set_show_hidden(fc, TRUE);
gtk_file_chooser_set_do_overwrite_confirmation(fc, TRUE);
gtk_file_chooser_set_create_folders(fc, TRUE);
response = gtk_dialog_run(GTK_DIALOG(fcd));
if (response != GTK_RESPONSE_ACCEPT) {
gtk_widget_destroy(fcd);
return NULL;
}
filename = uiUnixStrdupText(gtk_file_chooser_get_filename(fc));
gtk_widget_destroy(fcd);
return filename;
}
char *uiOpenFile(uiWindow *parent)
2015-06-26 17:45:00 -05:00
{
return filedialog(windowWindow(parent), GTK_FILE_CHOOSER_ACTION_OPEN, GTK_STOCK_OPEN);
2015-06-26 17:45:00 -05:00
}
char *uiSaveFile(uiWindow *parent)
2015-06-26 17:45:00 -05:00
{
return filedialog(windowWindow(parent), GTK_FILE_CHOOSER_ACTION_SAVE, GTK_STOCK_SAVE);
2015-06-26 17:45:00 -05:00
}
static void msgbox(GtkWindow *parent, const char *title, const char *description, GtkMessageType type, GtkButtonsType buttons)
{
GtkWidget *md;
md = gtk_message_dialog_new(parent, GTK_DIALOG_MODAL,
type, buttons,
"%s", title);
gtk_message_dialog_format_secondary_text(GTK_MESSAGE_DIALOG(md), "%s", description);
gtk_dialog_run(GTK_DIALOG(md));
gtk_widget_destroy(md);
}
void uiMsgBox(uiWindow *parent, const char *title, const char *description)
2015-06-26 17:45:00 -05:00
{
msgbox(windowWindow(parent), title, description, GTK_MESSAGE_OTHER, GTK_BUTTONS_OK);
2015-06-26 17:45:00 -05:00
}
void uiMsgBoxError(uiWindow *parent, const char *title, const char *description)
2015-06-26 17:45:00 -05:00
{
msgbox(windowWindow(parent), title, description, GTK_MESSAGE_ERROR, GTK_BUTTONS_OK);
2015-06-26 17:45:00 -05:00
}