summaryrefslogtreecommitdiff
path: root/logview/logview-main.c
diff options
context:
space:
mode:
authormonsta <[email protected]>2015-09-09 10:46:57 +0300
committermonsta <[email protected]>2015-09-09 10:46:57 +0300
commitc9cadcd53d03e73475dd266aad223a1ebc9229b5 (patch)
tree0166a7c33476e9d9a4a2a3a3b66bde69594dc242 /logview/logview-main.c
parent09a33e1feefbf5bc06eb5692b03c894c3b48daa9 (diff)
downloadmate-utils-c9cadcd53d03e73475dd266aad223a1ebc9229b5.tar.bz2
mate-utils-c9cadcd53d03e73475dd266aad223a1ebc9229b5.tar.xz
logview: move sources to src/ subdir
Diffstat (limited to 'logview/logview-main.c')
-rw-r--r--logview/logview-main.c120
1 files changed, 0 insertions, 120 deletions
diff --git a/logview/logview-main.c b/logview/logview-main.c
deleted file mode 100644
index 74dcb44b..00000000
--- a/logview/logview-main.c
+++ /dev/null
@@ -1,120 +0,0 @@
-/* -*- Mode: C; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2; -*- */
-/* logview-main.c - logview main
- *
- * Copyright (C) 2005 Vincent Noel <[email protected]>
- * Copyright (C) 2008 Cosimo Cecchi <[email protected]>
- *
- * 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 2 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 St, Fifth Floor, Boston, MA 02110-1301, USA.
- */
-
-#include "config.h"
-
-#include <stdlib.h>
-
-#include <glib/gi18n.h>
-#include <glib.h>
-
-#include <gtk/gtk.h>
-
-#include "logview-app.h"
-
-/* log files specified on the command line */
-static char **log_files = NULL;
-
-static void
-app_quit_cb (LogviewApp *app,
- gpointer user_data)
-{
- gtk_main_quit ();
-}
-
-static void
-logview_show_version_and_quit (void)
-{
- g_print ("%s - Version %s\n"
- "Copyright (C) 2004-2008 Vincent Noel, Cosimo Cecchi and others.\n",
- g_get_application_name (),
- VERSION);
-
- exit (0);
-}
-
-static GOptionContext *
-create_option_context (void)
-{
- GOptionContext *context;
-
- const GOptionEntry entries[] = {
- { "version", 'V', G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK,
- logview_show_version_and_quit, N_("Show the application's version"), NULL },
- { G_OPTION_REMAINING, '\0', 0, G_OPTION_ARG_FILENAME_ARRAY, &log_files,
- NULL, N_("[LOGFILE...]") },
- { NULL },
- };
-
- context = g_option_context_new (_(" - Browse and monitor logs"));
- g_option_context_set_translation_domain (context, GETTEXT_PACKAGE);
- g_option_context_add_main_entries (context, entries, GETTEXT_PACKAGE);
- g_option_context_set_ignore_unknown_options (context, TRUE);
- g_option_context_add_group (context, gtk_get_option_group (TRUE));
-
- return context;
-}
-
-int
-main (int argc, char *argv[])
-{
- GError *error = NULL;
- GOptionContext *context;
- LogviewApp *app;
-
- bindtextdomain (GETTEXT_PACKAGE, MATELOCALEDIR);
- bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
- textdomain (GETTEXT_PACKAGE);
-
- context = create_option_context ();
-
- g_option_context_parse (context, &argc, &argv, &error);
-
- if (error) {
- g_critical ("Unable to parse arguments: %s", error->message);
- g_error_free (error);
- g_option_context_free (context);
-
- exit (1);
- }
-
- g_option_context_free (context);
- g_set_application_name (_("Log Viewer"));
-
- app = logview_app_get ();
-
- if (!app) {
- g_critical ("Unable to create the user interface.");
-
- exit (1);
- } else {
- g_signal_connect (app, "app-quit",
- G_CALLBACK (app_quit_cb), NULL);
- }
-
- logview_app_initialize (app, log_files);
-
- gtk_main ();
-
- g_object_unref (app);
-
- return EXIT_SUCCESS;
-}