1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370
|
/* GIMP - The GNU Image Manipulation Program
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
*
* busy-dialog.c
* Copyright (C) 2018 Ell
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include "config.h"
#include <libgimp/gimp.h>
#include <libgimp/gimpui.h>
#include "libgimp/stdplugins-intl.h"
#define PLUG_IN_PROC "plug-in-busy-dialog"
#define PLUG_IN_BINARY "busy-dialog"
#define PLUG_IN_ROLE "gimp-busy-dialog"
typedef struct
{
GIOChannel *read_channel;
GIOChannel *write_channel;
} Context;
typedef struct _BusyDialog BusyDialog;
typedef struct _BusyDialogClass BusyDialogClass;
struct _BusyDialog
{
GimpPlugIn parent_instance;
};
struct _BusyDialogClass
{
GimpPlugInClass parent_class;
};
#define BUSY_DIALOG_TYPE (busy_dialog_get_type ())
#define BUSY_DIALOG(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), BUSY_DIALOG_TYPE, BusyDialog))
GType busy_dialog_get_type (void) G_GNUC_CONST;
static GList * busy_dialog_query_procedures (GimpPlugIn *plug_in);
static GimpProcedure * busy_dialog_create_procedure (GimpPlugIn *plug_in,
const gchar *name);
static GimpValueArray * busy_dialog_run (GimpProcedure *procedure,
GimpProcedureConfig *config,
gpointer run_data);
static GimpPDBStatusType busy_dialog (gint read_fd,
gint write_fd,
const gchar *message,
gboolean cancelable);
static gboolean busy_dialog_read_channel_notify (GIOChannel *source,
GIOCondition condition,
Context *context);
static gboolean busy_dialog_delete_event (GtkDialog *dialog,
GdkEvent *event,
Context *context);
static void busy_dialog_response (GtkDialog *dialog,
gint response_id,
Context *context);
G_DEFINE_TYPE (BusyDialog, busy_dialog, GIMP_TYPE_PLUG_IN)
GIMP_MAIN (BUSY_DIALOG_TYPE)
DEFINE_STD_SET_I18N
static void
busy_dialog_class_init (BusyDialogClass *klass)
{
GimpPlugInClass *plug_in_class = GIMP_PLUG_IN_CLASS (klass);
plug_in_class->query_procedures = busy_dialog_query_procedures;
plug_in_class->create_procedure = busy_dialog_create_procedure;
plug_in_class->set_i18n = STD_SET_I18N;
}
static void
busy_dialog_init (BusyDialog *busy_dialog)
{
}
static GList *
busy_dialog_query_procedures (GimpPlugIn *plug_in)
{
return g_list_append (NULL, g_strdup (PLUG_IN_PROC));
}
static GimpProcedure *
busy_dialog_create_procedure (GimpPlugIn *plug_in,
const gchar *name)
{
GimpProcedure *procedure = NULL;
if (! strcmp (name, PLUG_IN_PROC))
{
procedure = gimp_procedure_new (plug_in, name,
GIMP_PDB_PROC_TYPE_PLUGIN,
busy_dialog_run, NULL, NULL);
gimp_procedure_set_documentation (procedure,
"Show a dialog while waiting for an "
"operation to finish",
"Used by GIMP to display a dialog, "
"containing a spinner and a custom "
"message, while waiting for an "
"ongoing operation to finish. "
"Optionally, the dialog may provide "
"a \"Cancel\" button, which can be used "
"to cancel the operation.",
name);
gimp_procedure_set_attribution (procedure,
"Ell",
"Ell",
"2018");
gimp_procedure_add_enum_argument (procedure, "run-mode",
"Run mode",
"The run mode",
GIMP_TYPE_RUN_MODE,
GIMP_RUN_INTERACTIVE,
G_PARAM_READWRITE);
gimp_procedure_add_int_argument (procedure, "read-fd",
"The read file descriptor",
"The read file descriptor",
G_MININT, G_MAXINT, 0,
G_PARAM_READWRITE);
gimp_procedure_add_int_argument (procedure, "write-fd",
"The write file descriptor",
"The write file descriptor",
G_MININT, G_MAXINT, 0,
G_PARAM_READWRITE);
gimp_procedure_add_string_argument (procedure, "message",
"The message",
"The message",
NULL,
G_PARAM_READWRITE);
gimp_procedure_add_boolean_argument (procedure, "cancelable",
"Whether the dialog is cancelable",
"Whether the dialog is cancelable",
FALSE,
G_PARAM_READWRITE);
}
return procedure;
}
static GimpValueArray *
busy_dialog_run (GimpProcedure *procedure,
GimpProcedureConfig *config,
gpointer run_data)
{
GimpValueArray *return_vals = NULL;
GimpPDBStatusType status = GIMP_PDB_SUCCESS;
GimpRunMode run_mode = GIMP_RUN_INTERACTIVE;
gint read_fd;
gint write_fd;
const gchar *message;
gboolean cancelable;
g_object_get (config,
"run-mode", &run_mode,
"read-fd", &read_fd,
"write-fd", &write_fd,
"message", &message,
"cancelable", &cancelable,
NULL);
switch (run_mode)
{
case GIMP_RUN_INTERACTIVE:
case GIMP_RUN_NONINTERACTIVE:
case GIMP_RUN_WITH_LAST_VALS:
status = busy_dialog (read_fd, write_fd, message, cancelable);
break;
default:
status = GIMP_PDB_CALLING_ERROR;
break;
}
return_vals = gimp_procedure_new_return_values (procedure, status, NULL);
return return_vals;
}
static GimpPDBStatusType
busy_dialog (gint read_fd,
gint write_fd,
const gchar *message,
gboolean cancelable)
{
Context context;
GtkWidget *window;
GtkWidget *content_area;
GtkWidget *vbox;
GtkWidget *label;
GtkWidget *box;
#ifdef G_OS_WIN32
context.read_channel = g_io_channel_win32_new_fd (read_fd);
context.write_channel = g_io_channel_win32_new_fd (write_fd);
#else
context.read_channel = g_io_channel_unix_new (read_fd);
context.write_channel = g_io_channel_unix_new (write_fd);
#endif
g_io_channel_set_close_on_unref (context.read_channel, TRUE);
g_io_channel_set_close_on_unref (context.write_channel, TRUE);
/* triggered when the operation is finished in the main app, and we should
* quit.
*/
g_io_add_watch (context.read_channel, G_IO_IN | G_IO_ERR | G_IO_HUP,
(GIOFunc) busy_dialog_read_channel_notify,
&context);
/* call gtk_init() before gimp_ui_init(), to avoid DESKTOP_STARTUP_ID from
* taking effect -- we want the dialog to be prominently displayed above
* other plug-in windows.
*/
gtk_init (NULL, NULL);
gimp_ui_init (PLUG_IN_BINARY);
/* the main window */
if (! cancelable)
{
window = g_object_new (GTK_TYPE_WINDOW,
"title", _("Please Wait"),
"skip-taskbar-hint", TRUE,
"deletable", FALSE,
"resizable", FALSE,
"role", "gimp-busy-dialog",
"type-hint", GDK_WINDOW_TYPE_HINT_DIALOG,
"window-position", GTK_WIN_POS_CENTER,
NULL);
g_signal_connect (window, "delete-event", G_CALLBACK (gtk_true), NULL);
content_area = window;
}
else
{
window = g_object_new (GTK_TYPE_DIALOG,
"title", _("Please Wait"),
"skip-taskbar-hint", TRUE,
"resizable", FALSE,
"role", "gimp-busy-dialog",
"window-position", GTK_WIN_POS_CENTER,
NULL);
gtk_dialog_add_button (GTK_DIALOG (window),
_("_Cancel"), GTK_RESPONSE_CANCEL);
g_signal_connect (window, "delete-event",
G_CALLBACK (busy_dialog_delete_event),
&context);
g_signal_connect (window, "response",
G_CALLBACK (busy_dialog_response),
&context);
content_area = gtk_dialog_get_content_area (GTK_DIALOG (window));
}
/* the main vbox */
vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 8);
gtk_container_set_border_width (GTK_CONTAINER (vbox), 16);
gtk_container_add (GTK_CONTAINER (content_area), vbox);
gtk_widget_show (vbox);
/* the title label */
label = gtk_label_new (_("Please wait for the operation to complete"));
gimp_label_set_attributes (GTK_LABEL (label),
PANGO_ATTR_WEIGHT, PANGO_WEIGHT_BOLD,
-1);
gtk_box_pack_start (GTK_BOX (vbox), label, FALSE, FALSE, 0);
gtk_widget_show (label);
/* the busy box */
box = gimp_busy_box_new (message);
gtk_container_set_border_width (GTK_CONTAINER (box), 8);
gtk_box_pack_start (GTK_BOX (vbox), box, TRUE, TRUE, 0);
gtk_widget_show (box);
gtk_window_present (GTK_WINDOW (window));
gtk_main ();
gtk_widget_destroy (window);
g_clear_pointer (&context.read_channel, g_io_channel_unref);
g_clear_pointer (&context.write_channel, g_io_channel_unref);
return GIMP_PDB_SUCCESS;
}
static gboolean
busy_dialog_read_channel_notify (GIOChannel *source,
GIOCondition condition,
Context *context)
{
gtk_main_quit ();
return FALSE;
}
static gboolean
busy_dialog_delete_event (GtkDialog *dialog,
GdkEvent *event,
Context *context)
{
gtk_dialog_response (dialog, GTK_RESPONSE_CANCEL);
return TRUE;
}
static void
busy_dialog_response (GtkDialog *dialog,
gint response_id,
Context *context)
{
switch (response_id)
{
case GTK_RESPONSE_CANCEL:
{
GtkWidget *button;
gtk_dialog_set_response_sensitive (dialog, GTK_RESPONSE_CANCEL, FALSE);
button = gtk_dialog_get_widget_for_response (dialog,
GTK_RESPONSE_CANCEL);
gtk_button_set_label (GTK_BUTTON (button), _("Canceling..."));
/* signal the cancellation request to the main app */
g_clear_pointer (&context->write_channel, g_io_channel_unref);
}
break;
default:
break;
}
}
|