NAImporterAsk: fix z-order
[nautilus-actions.git] / src / nact / main.c
blob436219742e6ef38ee4459d09aab7b05eff17a78a
1 /*
2 * Nautilus-Actions
3 * A Nautilus extension which offers configurable context menu actions.
5 * Copyright (C) 2005 The GNOME Foundation
6 * Copyright (C) 2006, 2007, 2008 Frederic Ruaudel and others (see AUTHORS)
7 * Copyright (C) 2009, 2010, 2011 Pierre Wieser and others (see AUTHORS)
9 * This Program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation; either version 2 of
12 * the License, or (at your option) any later version.
14 * This Program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public
20 * License along with this Library; see the file COPYING. If not,
21 * write to the Free Software Foundation, Inc., 59 Temple Place,
22 * Suite 330, Boston, MA 02111-1307, USA.
24 * Authors:
25 * Frederic Ruaudel <grumz@grumz.net>
26 * Rodrigo Moya <rodrigo@gnome-db.org>
27 * Pierre Wieser <pwieser@trychlos.org>
28 * ... and many others (see AUTHORS)
31 #ifdef HAVE_CONFIG_H
32 #include <config.h>
33 #endif
35 #include <core/na-gconf-migration.h>
37 #include "nact-application.h"
40 * The 'configure' script may define a NA_MAINTAINER_MODE variable when
41 * the application is compiled for/in a development environment. When
42 * this variable is defined, debug messages are printed on stdout.
44 * The NAUTILUS_ACTIONS_DEBUG environment variable may be defined at
45 * execution time to display debug messages. Else, debug messages are only
46 * displayed when in maintainer mode.
49 static void set_log_handler( void );
50 static void log_handler( const gchar *log_domain, GLogLevelFlags log_level, const gchar *message, gpointer user_data );
52 static GLogFunc st_default_log_func = NULL;
54 int
55 main( int argc, char *argv[] )
57 NactApplication *appli;
58 int ret;
60 set_log_handler();
62 /* pwi 2011-01-05
63 * run GConf migration tools before doing anything else
64 * above all before allocating a new NAPivot
66 na_gconf_migration_run();
68 appli = nact_application_new_with_args( argc, argv );
69 ret = base_application_run( BASE_APPLICATION( appli ));
70 g_object_unref( appli );
72 return( ret );
75 static void
76 set_log_handler( void )
78 st_default_log_func = g_log_set_default_handler(( GLogFunc ) log_handler, NULL );
81 static void
82 log_handler( const gchar *log_domain, GLogLevelFlags log_level, const gchar *message, gpointer user_data )
84 #ifdef NA_MAINTAINER_MODE
85 ( *st_default_log_func )( log_domain, log_level, message, user_data );
86 #else
87 if( g_getenv( NAUTILUS_ACTIONS_DEBUG )){
88 ( *st_default_log_func )( log_domain, log_level, message, user_data );
90 #endif