blob: a2f71cf40a5e0c95573b4aae5df589b178b079e8 [file] [log] [blame]
/*
* Copyright (C) 2013-2016 Savoir-faire Linux Inc.
* Author: Tristan Matthews <tristan.matthews@savoirfairelinux.com>
* Author: Stepan Salenikovich <stepan.salenikovich@savoirfairelinux.com>
*
* 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, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include "ring_client_options.h"
#include "config.h"
#include "revision.h"
#include "ring_client.h"
#include <glib/gi18n.h>
#include <gtk/gtk.h>
#include <stdlib.h>
G_GNUC_NORETURN static gboolean
option_version_cb(G_GNUC_UNUSED const gchar *option_name,
G_GNUC_UNUSED const gchar *value,
G_GNUC_UNUSED gpointer data,
G_GNUC_UNUSED GError **error)
{
g_print("%d.%d.%d - %s\n", VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH, RING_CLIENT_REVISION);
exit(EXIT_SUCCESS);
}
static gboolean
option_debug_cb(G_GNUC_UNUSED const gchar *option_name,
G_GNUC_UNUSED const gchar *value,
G_GNUC_UNUSED gpointer data,
G_GNUC_UNUSED GError **error)
{
g_setenv("G_MESSAGES_DEBUG", "all", TRUE);
g_setenv("RING_CHATVIEW_DEBUG", "true", TRUE);
g_debug("debug enabled");
return TRUE;
}
static gboolean
option_restore_cb(G_GNUC_UNUSED const gchar *option_name,
G_GNUC_UNUSED const gchar *value,
G_GNUC_UNUSED gpointer data,
G_GNUC_UNUSED GError **error)
{
GApplication *client = g_application_get_default();
if (IS_RING_CLIENT(client))
ring_client_set_restore_main_window_state(RING_CLIENT(client), TRUE);
return TRUE;
}
static const GOptionEntry all_options[] = {
{"version", 'v', G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK, option_version_cb, NULL, NULL},
{"debug", 'd', G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK, option_debug_cb, N_("Enable debug"), NULL},
{"restore-last-window-state", 'r', G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK, option_restore_cb,
N_("Restores the hidden state of the main window (only applicable to the primary instance)"), NULL},
{NULL} /* list must be NULL-terminated */
};
#if GLIB_CHECK_VERSION(2,40,0)
void
ring_client_add_options(GApplication *app) {
/* NOTE: using this function, the options do not get translated in glib versions <2.45 due to
* bug 750322: https://bugzilla.gnome.org/show_bug.cgi?id=750322
*/
g_application_add_main_option_entries(app, all_options);
}
#else
GOptionContext *
ring_client_options_get_context()
{
GOptionContext *context = g_option_context_new(_("- GNOME client for Ring"));
g_option_context_set_ignore_unknown_options(context, TRUE);
g_option_context_add_main_entries(context, all_options, PACKAGE_NAME);
g_option_context_add_group(context, gtk_get_option_group(TRUE));
return context;
}
#endif