LarsGit223 commented on this pull request.
> +gchar *dialogs_create_new_workbench(void)
+{
+ gchar *utf8_filename = NULL;
+ GtkWidget *dialog;
+
+ dialog = gtk_file_chooser_dialog_new(_("Create new workbench"),
+
GTK_WINDOW(wb_globals.geany_plugin->geany_data->main_widgets->window),
GTK_FILE_CHOOSER_ACTION_SAVE,
+ _("_Cancel"), GTK_RESPONSE_CANCEL,
+ _("Create"), GTK_RESPONSE_ACCEPT, NULL);
+ gtk_file_chooser_set_current_name(GTK_FILE_CHOOSER(dialog),
"new.geanywb");
+ gtk_file_chooser_set_do_overwrite_confirmation
(GTK_FILE_CHOOSER(dialog), TRUE);
+
+ if (gtk_dialog_run(GTK_DIALOG(dialog)) == GTK_RESPONSE_ACCEPT)
+ {
+ gchar *locale_filename =
gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(dialog));
+ utf8_filename = utils_get_utf8_from_locale(locale_filename);
Done.
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-plugins/pull/598#discussion_r134034556