2003-01-03 13:26:04 +00:00
|
|
|
/*
|
|
|
|
* main.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>
|
|
|
|
*/
|
|
|
|
|
2004-12-07 00:17:16 +00:00
|
|
|
#include "option.h"
|
2017-04-07 12:00:42 +00:00
|
|
|
#include "zenity.h"
|
2004-12-07 00:17:16 +00:00
|
|
|
|
2009-01-09 00:10:30 +00:00
|
|
|
#include <glib.h>
|
2004-12-07 00:17:16 +00:00
|
|
|
#include <gtk/gtk.h>
|
2003-01-13 17:35:57 +00:00
|
|
|
#include <langinfo.h>
|
2017-04-07 12:00:42 +00:00
|
|
|
#include <stdlib.h>
|
2003-10-27 02:48:32 +00:00
|
|
|
#ifdef HAVE_LOCALE_H
|
|
|
|
#include <locale.h>
|
|
|
|
#endif
|
2003-01-03 13:26:04 +00:00
|
|
|
|
2022-05-15 04:52:44 +00:00
|
|
|
static GLogWriterOutput
|
|
|
|
zenity_suppress_log (GLogLevelFlags log_level, const GLogField *fields,
|
|
|
|
gsize n_fields, gpointer user_data) {
|
|
|
|
return G_LOG_WRITER_HANDLED;
|
|
|
|
}
|
|
|
|
|
2017-04-07 12:00:42 +00:00
|
|
|
gint
|
2003-01-06 15:06:17 +00:00
|
|
|
main (gint argc, gchar **argv) {
|
2017-04-07 12:00:42 +00:00
|
|
|
ZenityParsingOptions *results;
|
|
|
|
gint retval;
|
2022-05-15 04:52:44 +00:00
|
|
|
const char *is_debug;
|
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
|
|
|
|
2003-10-27 02:48:32 +00:00
|
|
|
#ifdef HAVE_LOCALE_H
|
2017-04-07 12:00:42 +00:00
|
|
|
setlocale (LC_ALL, "");
|
2003-10-27 02:48:32 +00:00
|
|
|
#endif
|
|
|
|
|
2022-05-15 04:52:44 +00:00
|
|
|
is_debug = getenv ("ZENITY_DEBUG");
|
|
|
|
if (is_debug == NULL || strlen (is_debug) < 1)
|
|
|
|
g_log_set_writer_func (zenity_suppress_log, NULL, NULL);
|
|
|
|
|
2017-04-07 12:00:42 +00:00
|
|
|
gtk_init (&argc, &argv);
|
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
|
|
|
|
2017-04-07 12:00:42 +00:00
|
|
|
results = zenity_option_parse (argc, argv);
|
2007-05-27 20:09:27 +00:00
|
|
|
|
2017-04-07 12:00:42 +00:00
|
|
|
switch (results->mode) {
|
|
|
|
case MODE_ENTRY:
|
|
|
|
results->entry_data->data = (const gchar **) argv + 1;
|
|
|
|
zenity_entry (results->data, results->entry_data);
|
|
|
|
break;
|
|
|
|
case MODE_LIST:
|
|
|
|
results->tree_data->data = (const gchar **) argv + 1;
|
|
|
|
zenity_tree (results->data, results->tree_data);
|
|
|
|
break;
|
2022-05-12 01:34:29 +00:00
|
|
|
case MODE_TEXTINFO:
|
|
|
|
zenity_text (results->data, results->text_data);
|
|
|
|
break;
|
2017-04-07 12:00:42 +00:00
|
|
|
case MODE_LAST:
|
2022-03-11 03:37:39 +00:00
|
|
|
g_printerr ("You must specify a dialog type. See 'zenity "
|
|
|
|
"--help' for details\n");
|
2017-04-07 12:00:42 +00:00
|
|
|
zenity_option_free ();
|
|
|
|
exit (-1);
|
|
|
|
default:
|
|
|
|
g_assert_not_reached ();
|
|
|
|
zenity_option_free ();
|
|
|
|
exit (-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
retval = results->data->exit_code;
|
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
|
|
|
|
2017-04-07 12:00:42 +00:00
|
|
|
zenity_option_free ();
|
2003-01-19 12:48:57 +00:00
|
|
|
|
2017-04-07 12:00:42 +00:00
|
|
|
exit (retval);
|
2003-01-03 13:26:04 +00:00
|
|
|
}
|