/*
* Copyright (C) 2008 Canonical Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
* 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 .
*
* Authored by Neil Jagdish Patel
*
*/
#include
#include
#include
#include
#include
#include
#include
#include "maximus-app.h"
#ifdef __GNUC__
#define UNUSED_VARIABLE __attribute__ ((unused))
#else
#define UNUSED_VARIABLE
#endif
static gboolean version = FALSE;
gboolean no_maximize = FALSE;
GOptionEntry entries[] =
{
{
"version", 'v',
0, G_OPTION_ARG_NONE,
&version,
"Prints the version number", NULL
},
{
"no-maximize", 'm',
0, G_OPTION_ARG_NONE,
&no_maximize,
"Do not automatically maximize every window", NULL
},
{
NULL
}
};
gint main (gint argc, gchar *argv[])
{
UniqueApp *unique;
MaximusApp UNUSED_VARIABLE *app;
GOptionContext *context;
g_set_application_name ("Maximus");
gtk_init (&argc, &argv);
unique = unique_app_new ("com.canonical.Maximus", NULL);
if (unique_app_is_running (unique))
{
return 0;
}
context = g_option_context_new ("- Maximus");
g_option_context_add_main_entries (context, entries, "maximus");
g_option_context_add_group (context, gtk_get_option_group (TRUE));
g_option_context_parse (context, &argc, &argv, NULL);
g_option_context_free(context);
gdk_error_trap_push ();
app = maximus_app_get_default ();
#if GTK_CHECK_VERSION (3, 0, 0)
gdk_error_trap_pop_ignored ();
#else
gdk_error_trap_pop ();
#endif
gtk_main ();
return EXIT_SUCCESS;
}