2003-01-03 13:26:04 +00:00
|
|
|
/*
|
|
|
|
* msg.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002 Sun Microsystems, Inc.
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
COPYING, src/about.c, src/calendar.c, src/eggtrayicon.c, src/entry.c,
2005-04-25 Glynn Foster <glynn.foster@sun.com>
* COPYING, src/about.c, src/calendar.c, src/eggtrayicon.c,
* src/entry.c, src/fileselection.c, src/main.c, src/msg.c,
* src/notification.c, src/option.c, src/progress.c,
* src/text.c, src/tree.c, src/util.c: Update the FSF address
to point to 51 Franklin Street, Fifth Floor as per forwarded
mail from Alvaro Lopez Ortega.
2005-04-25 03:20:45 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2003-01-03 13:26:04 +00:00
|
|
|
*
|
|
|
|
* Authors: Glynn Foster <glynn.foster@sun.com>
|
|
|
|
*/
|
|
|
|
|
2005-07-06 20:13:11 +00:00
|
|
|
#include "config.h"
|
|
|
|
|
2003-01-03 13:26:04 +00:00
|
|
|
#include "zenity.h"
|
|
|
|
#include "util.h"
|
|
|
|
|
Fix up the response signal handlers. Use returns of 0 for 'Ok' and
2003-01-07 Glynn Foster <glynn.foster@sun.com>
* src/calendar.c, src/entry.c, src/fileselection.c,
src/main.c, src/msg.c, src/progress.c, src/text.c,
src/tree.c, src/zenity.glade, src/zenity.h: Fix up
the response signal handlers. Use returns of 0 for
'Ok' and 'Close', 1 for 'Cancel' and 'Escape' and
-1 for 'Uh Oh'. Get stuff printing to stderr. Fix up
the error handling that I thought was improved,
although still have issues with popt callback getting
called numerous times because of more than one instance
of the same kind is being used in poptOption.
* TODO: Update accordingly.
2003-01-07 13:22:57 +00:00
|
|
|
static void zenity_msg_dialog_response (GtkWidget *widget, int response, gpointer data);
|
2014-05-29 17:51:46 -03:00
|
|
|
static void zenity_text_size_allocate (GtkWidget *widget, GtkAllocation *allocation, gpointer data);
|
2008-03-29 22:13:50 +00:00
|
|
|
static void
|
2011-07-26 14:00:28 -03:00
|
|
|
zenity_msg_construct_question_dialog (GtkWidget *dialog, ZenityMsgData *msg_data, ZenityData *data)
|
2008-03-29 22:13:50 +00:00
|
|
|
{
|
2015-02-28 20:06:09 +01:00
|
|
|
|
|
|
|
|
2008-03-29 22:13:50 +00:00
|
|
|
GtkWidget *cancel_button, *ok_button;
|
|
|
|
|
2015-03-22 05:17:25 +00:00
|
|
|
cancel_button = gtk_dialog_add_button (GTK_DIALOG (dialog), _("_No"), GTK_RESPONSE_CANCEL);
|
|
|
|
ok_button = gtk_dialog_add_button (GTK_DIALOG (dialog), _("_Yes"), GTK_RESPONSE_OK);
|
2008-03-29 22:13:50 +00:00
|
|
|
|
2013-11-23 16:44:26 -02:00
|
|
|
gtk_widget_grab_focus (msg_data->default_cancel ? cancel_button : ok_button);
|
2008-03-29 22:13:50 +00:00
|
|
|
|
2011-07-26 14:00:28 -03:00
|
|
|
if (data->cancel_label) {
|
|
|
|
gtk_button_set_label (GTK_BUTTON (cancel_button), data->cancel_label);
|
2008-03-29 22:13:50 +00:00
|
|
|
}
|
|
|
|
|
2011-07-26 14:00:28 -03:00
|
|
|
if (data->ok_label) {
|
|
|
|
gtk_button_set_label (GTK_BUTTON (ok_button), data->ok_label);
|
2008-03-29 22:13:50 +00:00
|
|
|
}
|
2015-02-28 20:06:09 +01:00
|
|
|
|
|
|
|
|
2008-03-29 22:13:50 +00:00
|
|
|
}
|
|
|
|
|
2015-04-21 09:55:40 +02:00
|
|
|
static void
|
|
|
|
zenity_label_widget_clipboard_selection(GtkWidget *widget)
|
|
|
|
{
|
|
|
|
/* Workaround hotfix for suspected toolkit issue:
|
|
|
|
since focus change of the dialog's focussed widget (text)
|
|
|
|
somehow currently chooses to destroy
|
|
|
|
a pre-existing (read: foreign, user-initiated) X11 primary selection
|
|
|
|
(via gtk_label_select_region() -> ...
|
|
|
|
-> gtk_clipboard_set_contents()/gtk_clipboard_clear()),
|
|
|
|
we need to ensure
|
|
|
|
that the widget does have its gtk-label-select-on-focus property off,
|
|
|
|
in order to avoid having the label become selected automatically
|
|
|
|
and thereby having pre-existing clipboard content nullified.
|
|
|
|
Side note: this selection issue only applies to widgets
|
|
|
|
which have both
|
|
|
|
<property name="can_focus">True</property>
|
|
|
|
<property name="selectable">True</property>
|
|
|
|
.
|
|
|
|
*/
|
|
|
|
g_object_set(gtk_widget_get_settings (widget),
|
|
|
|
"gtk-label-select-on-focus",
|
|
|
|
FALSE,
|
|
|
|
NULL);
|
|
|
|
}
|
|
|
|
|
Fix up the response signal handlers. Use returns of 0 for 'Ok' and
2003-01-07 Glynn Foster <glynn.foster@sun.com>
* src/calendar.c, src/entry.c, src/fileselection.c,
src/main.c, src/msg.c, src/progress.c, src/text.c,
src/tree.c, src/zenity.glade, src/zenity.h: Fix up
the response signal handlers. Use returns of 0 for
'Ok' and 'Close', 1 for 'Cancel' and 'Escape' and
-1 for 'Uh Oh'. Get stuff printing to stderr. Fix up
the error handling that I thought was improved,
although still have issues with popt callback getting
called numerous times because of more than one instance
of the same kind is being used in poptOption.
* TODO: Update accordingly.
2003-01-07 13:22:57 +00:00
|
|
|
void
|
|
|
|
zenity_msg (ZenityData *data, ZenityMsgData *msg_data)
|
2003-01-03 13:26:04 +00:00
|
|
|
{
|
2009-07-20 10:23:32 +02:00
|
|
|
GtkBuilder *builder;
|
Mass indentation cleanup. Make sure the glade dialogs aren't initially
2003-03-10 Glynn Foster <glynn.foster@sun.com>
* src/about.c, src/calendar.c, src/entry.c, src/fileselection.c,
src/main.c, src/msg.c, src/progress.c, src/text.c, src/tree.c,
src/util.c, src/util.h, src/zenity.glade, src/zenity.h:
Mass indentation cleanup. Make sure the glade dialogs aren't initially
visible because this avoids a visibility jump. Apparently == TRUE is
bad mojo. Fix up.
2003-03-10 17:11:18 +00:00
|
|
|
GtkWidget *dialog;
|
2011-07-26 14:00:28 -03:00
|
|
|
GtkWidget *ok_button;
|
2009-07-20 10:23:32 +02:00
|
|
|
GObject *text;
|
2012-09-18 22:51:08 +02:00
|
|
|
GObject *image;
|
Mass indentation cleanup. Make sure the glade dialogs aren't initially
2003-03-10 Glynn Foster <glynn.foster@sun.com>
* src/about.c, src/calendar.c, src/entry.c, src/fileselection.c,
src/main.c, src/msg.c, src/progress.c, src/text.c, src/tree.c,
src/util.c, src/util.h, src/zenity.glade, src/zenity.h:
Mass indentation cleanup. Make sure the glade dialogs aren't initially
visible because this avoids a visibility jump. Apparently == TRUE is
bad mojo. Fix up.
2003-03-10 17:11:18 +00:00
|
|
|
|
|
|
|
switch (msg_data->mode) {
|
|
|
|
case ZENITY_MSG_WARNING:
|
2009-07-20 10:23:32 +02:00
|
|
|
builder = zenity_util_load_ui_file ("zenity_warning_dialog", NULL);
|
|
|
|
dialog = GTK_WIDGET (gtk_builder_get_object (builder, "zenity_warning_dialog"));
|
|
|
|
text = gtk_builder_get_object (builder, "zenity_warning_text");
|
2012-09-18 22:51:08 +02:00
|
|
|
image = gtk_builder_get_object (builder, "zenity_warning_image");
|
2011-07-26 14:00:28 -03:00
|
|
|
ok_button = GTK_WIDGET (gtk_builder_get_object (builder, "zenity_warning_ok_button"));
|
Mass indentation cleanup. Make sure the glade dialogs aren't initially
2003-03-10 Glynn Foster <glynn.foster@sun.com>
* src/about.c, src/calendar.c, src/entry.c, src/fileselection.c,
src/main.c, src/msg.c, src/progress.c, src/text.c, src/tree.c,
src/util.c, src/util.h, src/zenity.glade, src/zenity.h:
Mass indentation cleanup. Make sure the glade dialogs aren't initially
visible because this avoids a visibility jump. Apparently == TRUE is
bad mojo. Fix up.
2003-03-10 17:11:18 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ZENITY_MSG_QUESTION:
|
2015-02-28 20:06:09 +01:00
|
|
|
case ZENITY_MSG_SWITCH:
|
2009-07-20 10:23:32 +02:00
|
|
|
builder = zenity_util_load_ui_file ("zenity_question_dialog", NULL);
|
|
|
|
dialog = GTK_WIDGET (gtk_builder_get_object (builder, "zenity_question_dialog"));
|
|
|
|
text = gtk_builder_get_object (builder, "zenity_question_text");
|
2012-09-18 22:51:08 +02:00
|
|
|
image = gtk_builder_get_object (builder, "zenity_question_image");
|
2011-07-26 14:00:28 -03:00
|
|
|
ok_button = NULL;
|
Mass indentation cleanup. Make sure the glade dialogs aren't initially
2003-03-10 Glynn Foster <glynn.foster@sun.com>
* src/about.c, src/calendar.c, src/entry.c, src/fileselection.c,
src/main.c, src/msg.c, src/progress.c, src/text.c, src/tree.c,
src/util.c, src/util.h, src/zenity.glade, src/zenity.h:
Mass indentation cleanup. Make sure the glade dialogs aren't initially
visible because this avoids a visibility jump. Apparently == TRUE is
bad mojo. Fix up.
2003-03-10 17:11:18 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ZENITY_MSG_ERROR:
|
2009-07-20 10:23:32 +02:00
|
|
|
builder = zenity_util_load_ui_file ("zenity_error_dialog", NULL);
|
|
|
|
dialog = GTK_WIDGET (gtk_builder_get_object (builder, "zenity_error_dialog"));
|
|
|
|
text = gtk_builder_get_object (builder, "zenity_error_text");
|
2012-09-18 22:51:08 +02:00
|
|
|
image = gtk_builder_get_object (builder, "zenity_error_image");
|
2011-07-26 14:00:28 -03:00
|
|
|
ok_button = GTK_WIDGET (gtk_builder_get_object (builder, "zenity_error_ok_button"));
|
Mass indentation cleanup. Make sure the glade dialogs aren't initially
2003-03-10 Glynn Foster <glynn.foster@sun.com>
* src/about.c, src/calendar.c, src/entry.c, src/fileselection.c,
src/main.c, src/msg.c, src/progress.c, src/text.c, src/tree.c,
src/util.c, src/util.h, src/zenity.glade, src/zenity.h:
Mass indentation cleanup. Make sure the glade dialogs aren't initially
visible because this avoids a visibility jump. Apparently == TRUE is
bad mojo. Fix up.
2003-03-10 17:11:18 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ZENITY_MSG_INFO:
|
2009-07-20 10:23:32 +02:00
|
|
|
builder = zenity_util_load_ui_file ("zenity_info_dialog", NULL);
|
|
|
|
dialog = GTK_WIDGET (gtk_builder_get_object (builder, "zenity_info_dialog"));
|
|
|
|
text = gtk_builder_get_object (builder, "zenity_info_text");
|
2012-09-18 22:51:08 +02:00
|
|
|
image = gtk_builder_get_object (builder, "zenity_info_image");
|
2011-07-26 14:00:28 -03:00
|
|
|
ok_button = GTK_WIDGET (gtk_builder_get_object (builder, "zenity_info_ok_button"));
|
Mass indentation cleanup. Make sure the glade dialogs aren't initially
2003-03-10 Glynn Foster <glynn.foster@sun.com>
* src/about.c, src/calendar.c, src/entry.c, src/fileselection.c,
src/main.c, src/msg.c, src/progress.c, src/text.c, src/tree.c,
src/util.c, src/util.h, src/zenity.glade, src/zenity.h:
Mass indentation cleanup. Make sure the glade dialogs aren't initially
visible because this avoids a visibility jump. Apparently == TRUE is
bad mojo. Fix up.
2003-03-10 17:11:18 +00:00
|
|
|
break;
|
2003-01-03 13:26:04 +00:00
|
|
|
|
Mass indentation cleanup. Make sure the glade dialogs aren't initially
2003-03-10 Glynn Foster <glynn.foster@sun.com>
* src/about.c, src/calendar.c, src/entry.c, src/fileselection.c,
src/main.c, src/msg.c, src/progress.c, src/text.c, src/tree.c,
src/util.c, src/util.h, src/zenity.glade, src/zenity.h:
Mass indentation cleanup. Make sure the glade dialogs aren't initially
visible because this avoids a visibility jump. Apparently == TRUE is
bad mojo. Fix up.
2003-03-10 17:11:18 +00:00
|
|
|
default:
|
2009-07-20 10:23:32 +02:00
|
|
|
builder = NULL;
|
2003-06-04 12:53:46 +00:00
|
|
|
dialog = NULL;
|
|
|
|
text = NULL;
|
2012-09-18 22:51:08 +02:00
|
|
|
image = NULL;
|
2011-07-26 14:00:28 -03:00
|
|
|
ok_button = NULL;
|
Mass indentation cleanup. Make sure the glade dialogs aren't initially
2003-03-10 Glynn Foster <glynn.foster@sun.com>
* src/about.c, src/calendar.c, src/entry.c, src/fileselection.c,
src/main.c, src/msg.c, src/progress.c, src/text.c, src/tree.c,
src/util.c, src/util.h, src/zenity.glade, src/zenity.h:
Mass indentation cleanup. Make sure the glade dialogs aren't initially
visible because this avoids a visibility jump. Apparently == TRUE is
bad mojo. Fix up.
2003-03-10 17:11:18 +00:00
|
|
|
g_assert_not_reached ();
|
|
|
|
break;
|
|
|
|
}
|
2003-01-03 13:26:04 +00:00
|
|
|
|
2015-02-28 20:06:09 +01:00
|
|
|
if (data->extra_label) {
|
|
|
|
gint i=0;
|
|
|
|
while(data->extra_label[i]!=NULL){
|
|
|
|
gtk_dialog_add_button (GTK_DIALOG (dialog), data->extra_label[i], i);
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-07-20 10:23:32 +02:00
|
|
|
if (builder == NULL) {
|
2003-06-07 14:41:56 +00:00
|
|
|
data->exit_code = zenity_util_return_exit_code (ZENITY_ERROR);
|
Mass indentation cleanup. Make sure the glade dialogs aren't initially
2003-03-10 Glynn Foster <glynn.foster@sun.com>
* src/about.c, src/calendar.c, src/entry.c, src/fileselection.c,
src/main.c, src/msg.c, src/progress.c, src/text.c, src/tree.c,
src/util.c, src/util.h, src/zenity.glade, src/zenity.h:
Mass indentation cleanup. Make sure the glade dialogs aren't initially
visible because this avoids a visibility jump. Apparently == TRUE is
bad mojo. Fix up.
2003-03-10 17:11:18 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-07-20 10:23:32 +02:00
|
|
|
g_signal_connect (G_OBJECT (dialog), "response",
|
|
|
|
G_CALLBACK (zenity_msg_dialog_response), data);
|
|
|
|
|
|
|
|
gtk_builder_connect_signals (builder, NULL);
|
|
|
|
|
Mass indentation cleanup. Make sure the glade dialogs aren't initially
2003-03-10 Glynn Foster <glynn.foster@sun.com>
* src/about.c, src/calendar.c, src/entry.c, src/fileselection.c,
src/main.c, src/msg.c, src/progress.c, src/text.c, src/tree.c,
src/util.c, src/util.h, src/zenity.glade, src/zenity.h:
Mass indentation cleanup. Make sure the glade dialogs aren't initially
visible because this avoids a visibility jump. Apparently == TRUE is
bad mojo. Fix up.
2003-03-10 17:11:18 +00:00
|
|
|
if (data->dialog_title)
|
|
|
|
gtk_window_set_title (GTK_WINDOW (dialog), data->dialog_title);
|
|
|
|
|
2011-07-26 14:00:28 -03:00
|
|
|
if (ok_button) {
|
|
|
|
if (data->ok_label) {
|
|
|
|
gtk_button_set_label (GTK_BUTTON (ok_button), data->ok_label);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
Add new notification icon. Update for new files. Restructure code a little
2004-09-13 Glynn Foster <glynn.foster@sun.com>
* data/Makefile.am, data/zenity-notification.png: Add new
notification icon.
* src/Makefile.am: Update for new files.
* src/about.c, src/calendar.c, src/entry.c, src/fileselection.c,
src/progress.c, src/text.c, src/tree.c, src/msg.c: Restructure code a
little bit for new utility functions for setting window icons.
* src/eggtrayicon.c, src/eggtrayicon.h: New files for notification area
support.
* src/main.c, src/notification.c, src/util.c, src/util.h, src/zenity.h:
Add support for notification area.
* data/zenity.1, help/*: Update docs for notification and new file
selection changes.
2004-09-13 07:51:51 +00:00
|
|
|
switch (msg_data->mode) {
|
|
|
|
case ZENITY_MSG_WARNING:
|
2015-03-22 06:02:41 +00:00
|
|
|
zenity_util_set_window_icon_from_icon_name (dialog, data->window_icon, "dialog-warning");
|
Add new notification icon. Update for new files. Restructure code a little
2004-09-13 Glynn Foster <glynn.foster@sun.com>
* data/Makefile.am, data/zenity-notification.png: Add new
notification icon.
* src/Makefile.am: Update for new files.
* src/about.c, src/calendar.c, src/entry.c, src/fileselection.c,
src/progress.c, src/text.c, src/tree.c, src/msg.c: Restructure code a
little bit for new utility functions for setting window icons.
* src/eggtrayicon.c, src/eggtrayicon.h: New files for notification area
support.
* src/main.c, src/notification.c, src/util.c, src/util.h, src/zenity.h:
Add support for notification area.
* data/zenity.1, help/*: Update docs for notification and new file
selection changes.
2004-09-13 07:51:51 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ZENITY_MSG_QUESTION:
|
2015-03-22 06:02:41 +00:00
|
|
|
zenity_util_set_window_icon_from_icon_name (dialog, data->window_icon, "dialog-question");
|
2011-07-26 14:00:28 -03:00
|
|
|
zenity_msg_construct_question_dialog (dialog, msg_data, data);
|
Add new notification icon. Update for new files. Restructure code a little
2004-09-13 Glynn Foster <glynn.foster@sun.com>
* data/Makefile.am, data/zenity-notification.png: Add new
notification icon.
* src/Makefile.am: Update for new files.
* src/about.c, src/calendar.c, src/entry.c, src/fileselection.c,
src/progress.c, src/text.c, src/tree.c, src/msg.c: Restructure code a
little bit for new utility functions for setting window icons.
* src/eggtrayicon.c, src/eggtrayicon.h: New files for notification area
support.
* src/main.c, src/notification.c, src/util.c, src/util.h, src/zenity.h:
Add support for notification area.
* data/zenity.1, help/*: Update docs for notification and new file
selection changes.
2004-09-13 07:51:51 +00:00
|
|
|
break;
|
Mass indentation cleanup. Make sure the glade dialogs aren't initially
2003-03-10 Glynn Foster <glynn.foster@sun.com>
* src/about.c, src/calendar.c, src/entry.c, src/fileselection.c,
src/main.c, src/msg.c, src/progress.c, src/text.c, src/tree.c,
src/util.c, src/util.h, src/zenity.glade, src/zenity.h:
Mass indentation cleanup. Make sure the glade dialogs aren't initially
visible because this avoids a visibility jump. Apparently == TRUE is
bad mojo. Fix up.
2003-03-10 17:11:18 +00:00
|
|
|
|
2015-02-28 20:06:09 +01:00
|
|
|
case ZENITY_MSG_SWITCH:
|
2015-04-21 13:51:23 +02:00
|
|
|
zenity_util_set_window_icon_from_icon_name (dialog, data->window_icon, "dialog-question");
|
2015-02-28 20:06:09 +01:00
|
|
|
break;
|
|
|
|
|
Add new notification icon. Update for new files. Restructure code a little
2004-09-13 Glynn Foster <glynn.foster@sun.com>
* data/Makefile.am, data/zenity-notification.png: Add new
notification icon.
* src/Makefile.am: Update for new files.
* src/about.c, src/calendar.c, src/entry.c, src/fileselection.c,
src/progress.c, src/text.c, src/tree.c, src/msg.c: Restructure code a
little bit for new utility functions for setting window icons.
* src/eggtrayicon.c, src/eggtrayicon.h: New files for notification area
support.
* src/main.c, src/notification.c, src/util.c, src/util.h, src/zenity.h:
Add support for notification area.
* data/zenity.1, help/*: Update docs for notification and new file
selection changes.
2004-09-13 07:51:51 +00:00
|
|
|
case ZENITY_MSG_ERROR:
|
2015-03-22 06:02:41 +00:00
|
|
|
zenity_util_set_window_icon_from_icon_name (dialog, data->window_icon, "dialog-error");
|
Add new notification icon. Update for new files. Restructure code a little
2004-09-13 Glynn Foster <glynn.foster@sun.com>
* data/Makefile.am, data/zenity-notification.png: Add new
notification icon.
* src/Makefile.am: Update for new files.
* src/about.c, src/calendar.c, src/entry.c, src/fileselection.c,
src/progress.c, src/text.c, src/tree.c, src/msg.c: Restructure code a
little bit for new utility functions for setting window icons.
* src/eggtrayicon.c, src/eggtrayicon.h: New files for notification area
support.
* src/main.c, src/notification.c, src/util.c, src/util.h, src/zenity.h:
Add support for notification area.
* data/zenity.1, help/*: Update docs for notification and new file
selection changes.
2004-09-13 07:51:51 +00:00
|
|
|
break;
|
Mass indentation cleanup. Make sure the glade dialogs aren't initially
2003-03-10 Glynn Foster <glynn.foster@sun.com>
* src/about.c, src/calendar.c, src/entry.c, src/fileselection.c,
src/main.c, src/msg.c, src/progress.c, src/text.c, src/tree.c,
src/util.c, src/util.h, src/zenity.glade, src/zenity.h:
Mass indentation cleanup. Make sure the glade dialogs aren't initially
visible because this avoids a visibility jump. Apparently == TRUE is
bad mojo. Fix up.
2003-03-10 17:11:18 +00:00
|
|
|
|
Add new notification icon. Update for new files. Restructure code a little
2004-09-13 Glynn Foster <glynn.foster@sun.com>
* data/Makefile.am, data/zenity-notification.png: Add new
notification icon.
* src/Makefile.am: Update for new files.
* src/about.c, src/calendar.c, src/entry.c, src/fileselection.c,
src/progress.c, src/text.c, src/tree.c, src/msg.c: Restructure code a
little bit for new utility functions for setting window icons.
* src/eggtrayicon.c, src/eggtrayicon.h: New files for notification area
support.
* src/main.c, src/notification.c, src/util.c, src/util.h, src/zenity.h:
Add support for notification area.
* data/zenity.1, help/*: Update docs for notification and new file
selection changes.
2004-09-13 07:51:51 +00:00
|
|
|
case ZENITY_MSG_INFO:
|
2015-03-22 06:02:41 +00:00
|
|
|
zenity_util_set_window_icon_from_icon_name (dialog, data->window_icon, "dialog-information");
|
Add new notification icon. Update for new files. Restructure code a little
2004-09-13 Glynn Foster <glynn.foster@sun.com>
* data/Makefile.am, data/zenity-notification.png: Add new
notification icon.
* src/Makefile.am: Update for new files.
* src/about.c, src/calendar.c, src/entry.c, src/fileselection.c,
src/progress.c, src/text.c, src/tree.c, src/msg.c: Restructure code a
little bit for new utility functions for setting window icons.
* src/eggtrayicon.c, src/eggtrayicon.h: New files for notification area
support.
* src/main.c, src/notification.c, src/util.c, src/util.h, src/zenity.h:
Add support for notification area.
* data/zenity.1, help/*: Update docs for notification and new file
selection changes.
2004-09-13 07:51:51 +00:00
|
|
|
break;
|
Mass indentation cleanup. Make sure the glade dialogs aren't initially
2003-03-10 Glynn Foster <glynn.foster@sun.com>
* src/about.c, src/calendar.c, src/entry.c, src/fileselection.c,
src/main.c, src/msg.c, src/progress.c, src/text.c, src/tree.c,
src/util.c, src/util.h, src/zenity.glade, src/zenity.h:
Mass indentation cleanup. Make sure the glade dialogs aren't initially
visible because this avoids a visibility jump. Apparently == TRUE is
bad mojo. Fix up.
2003-03-10 17:11:18 +00:00
|
|
|
|
Add new notification icon. Update for new files. Restructure code a little
2004-09-13 Glynn Foster <glynn.foster@sun.com>
* data/Makefile.am, data/zenity-notification.png: Add new
notification icon.
* src/Makefile.am: Update for new files.
* src/about.c, src/calendar.c, src/entry.c, src/fileselection.c,
src/progress.c, src/text.c, src/tree.c, src/msg.c: Restructure code a
little bit for new utility functions for setting window icons.
* src/eggtrayicon.c, src/eggtrayicon.h: New files for notification area
support.
* src/main.c, src/notification.c, src/util.c, src/util.h, src/zenity.h:
Add support for notification area.
* data/zenity.1, help/*: Update docs for notification and new file
selection changes.
2004-09-13 07:51:51 +00:00
|
|
|
default:
|
|
|
|
break;
|
Mass indentation cleanup. Make sure the glade dialogs aren't initially
2003-03-10 Glynn Foster <glynn.foster@sun.com>
* src/about.c, src/calendar.c, src/entry.c, src/fileselection.c,
src/main.c, src/msg.c, src/progress.c, src/text.c, src/tree.c,
src/util.c, src/util.h, src/zenity.glade, src/zenity.h:
Mass indentation cleanup. Make sure the glade dialogs aren't initially
visible because this avoids a visibility jump. Apparently == TRUE is
bad mojo. Fix up.
2003-03-10 17:11:18 +00:00
|
|
|
}
|
2004-03-19 02:28:30 +00:00
|
|
|
|
2014-10-22 15:16:22 +02:00
|
|
|
if (data->width > -1 || data->height > -1)
|
2004-03-19 02:28:30 +00:00
|
|
|
gtk_window_set_default_size (GTK_WINDOW (dialog), data->width, data->height);
|
2012-09-18 18:33:07 +02:00
|
|
|
|
2014-10-22 15:35:22 +02:00
|
|
|
if (data->width > -1)
|
|
|
|
gtk_widget_set_size_request (GTK_WIDGET (text), data->width, -1);
|
|
|
|
else
|
|
|
|
if (!msg_data->ellipsize)
|
|
|
|
g_signal_connect_after (G_OBJECT (text), "size-allocate",
|
|
|
|
G_CALLBACK (zenity_text_size_allocate), data);
|
2014-10-22 15:16:22 +02:00
|
|
|
|
2012-09-18 18:33:07 +02:00
|
|
|
if (data->modal)
|
|
|
|
gtk_window_set_modal (GTK_WINDOW (dialog), TRUE);
|
Add some screenshots for the help documentation.
2003-01-18 Glynn Foster <glynn.foster@sun.com>
* help/C/figures/zenity-calendar-screenshot.png,
help/C/figures/zenity-entry-screenshot.png,
help/C/figures/zenity-error-screenshot.png,
help/C/figures/zenity-fileselection-screenshot.png,
help/C/figures/zenity-information-screenshot.png,
help/C/figures/zenity-list-screenshot.png,
help/C/figures/zenity-progress-screenshot.png,
help/C/figures/zenity-question-screenshot.png,
help/C/figures/zenity-text-screenshot.png,
help/C/figures/zenity-warning-screenshot.png: Add some
screenshots for the help documentation.
* src/entry.c, src/msg.c: Don't set the text if it's NULL.
2003-01-18 18:30:52 +00:00
|
|
|
|
2011-07-06 15:09:38 -03:00
|
|
|
if (msg_data->dialog_text) {
|
|
|
|
if (msg_data->no_markup)
|
|
|
|
gtk_label_set_text (GTK_LABEL (text), msg_data->dialog_text);
|
|
|
|
else
|
|
|
|
gtk_label_set_markup (GTK_LABEL (text), g_strcompress (msg_data->dialog_text));
|
2015-04-21 09:55:40 +02:00
|
|
|
zenity_label_widget_clipboard_selection(GTK_WIDGET (text));
|
2011-07-06 15:09:38 -03:00
|
|
|
}
|
2012-09-18 22:51:08 +02:00
|
|
|
|
2014-05-20 16:05:32 -03:00
|
|
|
if (msg_data->ellipsize)
|
|
|
|
gtk_label_set_ellipsize (GTK_LABEL(text), PANGO_ALIGN_RIGHT);
|
2014-10-22 15:16:22 +02:00
|
|
|
|
2012-09-18 22:51:08 +02:00
|
|
|
if (msg_data->dialog_icon)
|
|
|
|
gtk_image_set_from_icon_name (GTK_IMAGE (image), msg_data->dialog_icon, GTK_ICON_SIZE_DIALOG);
|
2014-10-22 15:16:22 +02:00
|
|
|
|
2005-04-20 01:59:42 +00:00
|
|
|
if (msg_data->no_wrap)
|
|
|
|
gtk_label_set_line_wrap (GTK_LABEL (text), FALSE);
|
|
|
|
|
2013-08-23 09:15:07 +08:00
|
|
|
zenity_util_show_dialog (dialog, data->attach);
|
2007-08-13 20:36:29 +00:00
|
|
|
|
|
|
|
if(data->timeout_delay > 0) {
|
2011-06-16 14:45:52 -03:00
|
|
|
g_timeout_add_seconds (data->timeout_delay, (GSourceFunc) zenity_util_timeout_handle, NULL);
|
2007-08-13 20:36:29 +00:00
|
|
|
}
|
|
|
|
|
2009-07-20 10:23:32 +02:00
|
|
|
g_object_unref (builder);
|
|
|
|
|
Mass indentation cleanup. Make sure the glade dialogs aren't initially
2003-03-10 Glynn Foster <glynn.foster@sun.com>
* src/about.c, src/calendar.c, src/entry.c, src/fileselection.c,
src/main.c, src/msg.c, src/progress.c, src/text.c, src/tree.c,
src/util.c, src/util.h, src/zenity.glade, src/zenity.h:
Mass indentation cleanup. Make sure the glade dialogs aren't initially
visible because this avoids a visibility jump. Apparently == TRUE is
bad mojo. Fix up.
2003-03-10 17:11:18 +00:00
|
|
|
gtk_main ();
|
2003-01-03 13:26:04 +00:00
|
|
|
}
|
|
|
|
|
2014-05-29 17:51:46 -03:00
|
|
|
static void
|
|
|
|
zenity_text_size_allocate (GtkWidget *widget, GtkAllocation *allocation, gpointer data)
|
|
|
|
{
|
2014-10-22 15:16:22 +02:00
|
|
|
gtk_widget_set_size_request (widget, allocation->width/2, -1);
|
2014-05-29 17:51:46 -03:00
|
|
|
}
|
2014-05-20 16:05:32 -03:00
|
|
|
|
Fix up the response signal handlers. Use returns of 0 for 'Ok' and
2003-01-07 Glynn Foster <glynn.foster@sun.com>
* src/calendar.c, src/entry.c, src/fileselection.c,
src/main.c, src/msg.c, src/progress.c, src/text.c,
src/tree.c, src/zenity.glade, src/zenity.h: Fix up
the response signal handlers. Use returns of 0 for
'Ok' and 'Close', 1 for 'Cancel' and 'Escape' and
-1 for 'Uh Oh'. Get stuff printing to stderr. Fix up
the error handling that I thought was improved,
although still have issues with popt callback getting
called numerous times because of more than one instance
of the same kind is being used in poptOption.
* TODO: Update accordingly.
2003-01-07 13:22:57 +00:00
|
|
|
static void
|
|
|
|
zenity_msg_dialog_response (GtkWidget *widget, int response, gpointer data)
|
2003-01-03 13:26:04 +00:00
|
|
|
{
|
Mass indentation cleanup. Make sure the glade dialogs aren't initially
2003-03-10 Glynn Foster <glynn.foster@sun.com>
* src/about.c, src/calendar.c, src/entry.c, src/fileselection.c,
src/main.c, src/msg.c, src/progress.c, src/text.c, src/tree.c,
src/util.c, src/util.h, src/zenity.glade, src/zenity.h:
Mass indentation cleanup. Make sure the glade dialogs aren't initially
visible because this avoids a visibility jump. Apparently == TRUE is
bad mojo. Fix up.
2003-03-10 17:11:18 +00:00
|
|
|
ZenityData *zen_data = data;
|
|
|
|
|
|
|
|
switch (response) {
|
|
|
|
case GTK_RESPONSE_OK:
|
2011-06-17 10:47:07 -03:00
|
|
|
zenity_util_exit_code_with_data(ZENITY_OK, zen_data);
|
Mass indentation cleanup. Make sure the glade dialogs aren't initially
2003-03-10 Glynn Foster <glynn.foster@sun.com>
* src/about.c, src/calendar.c, src/entry.c, src/fileselection.c,
src/main.c, src/msg.c, src/progress.c, src/text.c, src/tree.c,
src/util.c, src/util.h, src/zenity.glade, src/zenity.h:
Mass indentation cleanup. Make sure the glade dialogs aren't initially
visible because this avoids a visibility jump. Apparently == TRUE is
bad mojo. Fix up.
2003-03-10 17:11:18 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case GTK_RESPONSE_CANCEL:
|
2003-06-07 14:41:56 +00:00
|
|
|
zen_data->exit_code = zenity_util_return_exit_code (ZENITY_CANCEL);
|
Mass indentation cleanup. Make sure the glade dialogs aren't initially
2003-03-10 Glynn Foster <glynn.foster@sun.com>
* src/about.c, src/calendar.c, src/entry.c, src/fileselection.c,
src/main.c, src/msg.c, src/progress.c, src/text.c, src/tree.c,
src/util.c, src/util.h, src/zenity.glade, src/zenity.h:
Mass indentation cleanup. Make sure the glade dialogs aren't initially
visible because this avoids a visibility jump. Apparently == TRUE is
bad mojo. Fix up.
2003-03-10 17:11:18 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2015-02-28 20:06:09 +01:00
|
|
|
if (response < g_strv_length(zen_data->extra_label))
|
|
|
|
printf("%s\n",zen_data->extra_label[response]);
|
2004-07-19 01:13:40 +00:00
|
|
|
zen_data->exit_code = zenity_util_return_exit_code (ZENITY_ESC);
|
Mass indentation cleanup. Make sure the glade dialogs aren't initially
2003-03-10 Glynn Foster <glynn.foster@sun.com>
* src/about.c, src/calendar.c, src/entry.c, src/fileselection.c,
src/main.c, src/msg.c, src/progress.c, src/text.c, src/tree.c,
src/util.c, src/util.h, src/zenity.glade, src/zenity.h:
Mass indentation cleanup. Make sure the glade dialogs aren't initially
visible because this avoids a visibility jump. Apparently == TRUE is
bad mojo. Fix up.
2003-03-10 17:11:18 +00:00
|
|
|
break;
|
|
|
|
}
|
2004-07-19 01:13:40 +00:00
|
|
|
gtk_main_quit ();
|
2003-01-03 13:26:04 +00:00
|
|
|
}
|