summaryrefslogtreecommitdiff
path: root/xfce4-session/xfsm-global.h
blob: f70884a46c40f9c0a83ae33e2b87e15ce2fccf1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/* $Id$ */
/*-
 * Copyright (c) 2003-2004 Benedikt Meurer <benny@xfce.org>
 * All rights reserved.
 *
 * 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, 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.
 */

#ifndef __XFSM_GLOBAL_H__
#define __XFSM_GLOBAL_H__

#include <glib.h>
#include <gdk/gdkx.h>
#include <X11/SM/SMlib.h>

#include <xfce4-session/xfsm-shutdown.h> /* XfsmShutdownType */

#include "settings/xfae-model.h" /* XfsmRunHook */


#define DEFAULT_SESSION_NAME "Default"

extern gboolean          verbose;

#if defined(G_HAVE_ISO_VARARGS)

#define xfsm_verbose(...)\
G_STMT_START{ \
  if (G_UNLIKELY (verbose)) \
    xfsm_verbose_real (__func__, __FILE__, __LINE__, __VA_ARGS__); \
}G_STMT_END

#else

#define xfsm_verbose(...)

#endif

void xfsm_enable_verbose (void);
gboolean xfsm_is_verbose_enabled (void);
void xfsm_verbose_real (const char *func,
                        const char *file,
                        int line,
                        const char *format,
                        ...) G_GNUC_PRINTF (4, 5);

gchar *xfsm_generate_client_id (SmsConn sms_conn) G_GNUC_PURE;

GValue *xfsm_g_value_new (GType gtype);
void    xfsm_g_value_free (GValue *value);

gint    xfsm_launch_desktop_files_on_login    (gboolean         start_at_spi);
gint    xfsm_launch_desktop_files_on_shutdown (gboolean         start_at_spi,
                                               XfsmShutdownType shutdown_type);
gint    xfsm_launch_desktop_files_on_run_hook (gboolean         start_at_spi,
                                               XfsmRunHook      run_hook);

#endif /* !__XFSM_GLOBAL_H__ */