aboutsummaryrefslogtreecommitdiffstats
path: root/shell/main.c
diff options
context:
space:
mode:
authorPhilip Van Hoof <pvanhoof@gnome.org>2006-04-19 19:37:17 +0800
committerPhilip Van Hoof <pvanhoof@src.gnome.org>2006-04-19 19:37:17 +0800
commit4e220990b3e0814895566264fbd87147f006e236 (patch)
treef60de1f0f28420fc5206626cb0e0cde103aa1bed /shell/main.c
parent9a9d6aacb2d12a719af04c2524ab67157e02b3f7 (diff)
downloadgsoc2013-evolution-4e220990b3e0814895566264fbd87147f006e236.tar
gsoc2013-evolution-4e220990b3e0814895566264fbd87147f006e236.tar.gz
gsoc2013-evolution-4e220990b3e0814895566264fbd87147f006e236.tar.bz2
gsoc2013-evolution-4e220990b3e0814895566264fbd87147f006e236.tar.lz
gsoc2013-evolution-4e220990b3e0814895566264fbd87147f006e236.tar.xz
gsoc2013-evolution-4e220990b3e0814895566264fbd87147f006e236.tar.zst
gsoc2013-evolution-4e220990b3e0814895566264fbd87147f006e236.zip
Replaced popt with GOption API
2006-04-19 Philip Van Hoof <pvanhoof@gnome.org> * shell/main.c: Replaced popt with GOption API svn path=/trunk/; revision=31833
Diffstat (limited to 'shell/main.c')
-rw-r--r--shell/main.c70
1 files changed, 36 insertions, 34 deletions
diff --git a/shell/main.c b/shell/main.c
index fae54d01fe..2937f10e86 100644
--- a/shell/main.c
+++ b/shell/main.c
@@ -103,6 +103,7 @@ static gint idle_cb (void *data);
static char *default_component_id = NULL;
static char *evolution_debug_log = NULL;
+static gchar **remaining_args;
static void
no_windows_left_cb (EShell *shell, gpointer data)
@@ -460,44 +461,45 @@ setup_segv_redirect (void)
#define setup_segv_redirect() 0
#endif
+static const GOptionEntry options[] = {
+ { "component", 'c', 0, G_OPTION_ARG_STRING, &default_component_id,
+ N_("Start Evolution activating the specified component"), NULL },
+ { "offline", '\0', 0, G_OPTION_ARG_NONE, &start_offline,
+ N_("Start in offline mode"), NULL },
+ { "online", '\0', 0, G_OPTION_ARG_NONE, &start_online,
+ N_("Start in online mode"), NULL },
+#ifdef KILL_PROCESS_CMD
+ { "force-shutdown", '\0', 0, G_OPTION_ARG_NONE, &killev,
+ N_("Forcibly shut down all Evolution components"), NULL },
+#endif
+#if DEVELOPMENT
+ { "force-migrate", '\0', 0, G_OPTION_ARG_NONE, &force_migrate,
+ N_("Forcibly re-migrate from Evolution 1.4"), NULL },
+#endif
+ { "debug", '\0', 0, G_OPTION_ARG_STRING, &evolution_debug_log,
+ N_("Send the debugging output of all components to a file."), NULL },
+ { "disable-eplugin", '\0', 0, G_OPTION_ARG_NONE, &disable_eplugin,
+ N_("Disable loading of any plugins."), NULL },
+ { "setup-only", '\0', G_OPTION_FLAG_HIDDEN, G_OPTION_ARG_NONE,
+ &setup_only, NULL, NULL },
+ { G_OPTION_REMAINING, 0, 0, G_OPTION_ARG_STRING_ARRAY, &remaining_args, NULL, NULL },
+ { NULL }
+};
+
int
main (int argc, char **argv)
{
#ifdef G_OS_WIN32
extern void link_shutdown (void);
#endif
- struct poptOption options[] = {
- { "component", 'c', POPT_ARG_STRING, &default_component_id, 0,
- N_("Start Evolution activating the specified component"), NULL },
- { "offline", '\0', POPT_ARG_NONE, &start_offline, 0,
- N_("Start in offline mode"), NULL },
- { "online", '\0', POPT_ARG_NONE, &start_online, 0,
- N_("Start in online mode"), NULL },
-#ifdef KILL_PROCESS_CMD
- { "force-shutdown", '\0', POPT_ARG_NONE, &killev, 0,
- N_("Forcibly shut down all Evolution components"), NULL },
-#endif
-#if DEVELOPMENT
- { "force-migrate", '\0', POPT_ARG_NONE, &force_migrate, 0,
- N_("Forcibly re-migrate from Evolution 1.4"), NULL },
-#endif
- { "debug", '\0', POPT_ARG_STRING, &evolution_debug_log, 0,
- N_("Send the debugging output of all components to a file."), NULL },
- { "disable-eplugin", '\0', POPT_ARG_NONE, &disable_eplugin, 0,
- N_("Disable loading of any plugins."), NULL },
- { "setup-only", '\0', POPT_ARG_NONE | POPT_ARGFLAG_DOC_HIDDEN,
- &setup_only, 0, NULL, NULL },
- { NULL, '\0', 0, NULL, 0, NULL, NULL }
- };
+
#if DEVELOPMENT
GConfClient *client;
gboolean skip_warning_dialog;
#endif
GSList *uri_list;
- GValue popt_context_value = { 0, };
GnomeProgram *program;
- poptContext popt_context;
- const char **args;
+ GOptionContext *context;
GList *icon_list;
char *filename;
@@ -508,9 +510,13 @@ main (int argc, char **argv)
bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
textdomain (GETTEXT_PACKAGE);
+ context = g_option_context_new (_("- The Evolution PIM and Email Client"));
+
+ g_option_context_add_main_entries (context, options, GETTEXT_PACKAGE);
+
program = gnome_program_init (PACKAGE "-" BASE_VERSION, VERSION, LIBGNOMEUI_MODULE, argc, argv,
GNOME_PROGRAM_STANDARD_PROPERTIES,
- GNOME_PARAM_POPT_TABLE, options,
+ GNOME_PARAM_GOPTION_CONTEXT, context,
GNOME_PARAM_HUMAN_READABLE_NAME, _("Evolution"),
NULL);
@@ -570,18 +576,14 @@ main (int argc, char **argv)
uri_list = NULL;
- g_value_init (&popt_context_value, G_TYPE_POINTER);
- g_object_get_property (G_OBJECT (program), GNOME_PARAM_POPT_CONTEXT, &popt_context_value);
- popt_context = g_value_get_pointer (&popt_context_value);
- args = poptGetArgs (popt_context);
- if (args != NULL) {
+ if (remaining_args != NULL) {
const char **p;
- for (p = args; *p != NULL; p++)
+ for (p = (const char**)remaining_args; *p != NULL; p++)
uri_list = g_slist_prepend (uri_list, (char *) *p);
}
uri_list = g_slist_reverse (uri_list);
- g_value_unset (&popt_context_value);
+
gnome_sound_init ("localhost");