summaryrefslogtreecommitdiff
path: root/src/session-config.h
blob: 247abb37475be550a711fb0674fbb92ca31c8d0e (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
/*
 * Copyright (C) 2013 Robert Ancell.
 * Author: Robert Ancell <robert.ancell@canonical.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. See http://www.gnu.org/copyleft/gpl.html the full text of the
 * license.
 */

#ifndef SESSION_CONFIG_H_
#define SESSION_CONFIG_H_

#include <glib-object.h>

G_BEGIN_DECLS

#define SESSION_CONFIG_TYPE           (session_config_get_type())
#define SESSION_CONFIG(obj)           (G_TYPE_CHECK_INSTANCE_CAST ((obj), SESSION_CONFIG_TYPE, SessionConfig))
#define SESSION_CONFIG_CLASS(klass)   (G_TYPE_CHECK_CLASS_CAST ((klass), SESSION_CONFIG_TYPE, SessionConfigClass))
#define SESSION_CONFIG_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), SESSION_CONFIG_TYPE, SessionConfigClass))

typedef struct
{
    GObject parent_instance;
} SessionConfig;

typedef struct
{
    GObjectClass parent_class;
} SessionConfigClass;

G_DEFINE_AUTOPTR_CLEANUP_FUNC (SessionConfig, g_object_unref)

GType session_config_get_type (void);

SessionConfig *session_config_new_from_file (const gchar *filename, const gchar *default_session_type, GError **error);

const gchar *session_config_get_command (SessionConfig *config);

const gchar *session_config_get_session_type (SessionConfig *config);

gchar **session_config_get_desktop_names (SessionConfig *config);

gboolean session_config_get_allow_greeter (SessionConfig *config);

G_END_DECLS

#endif /* SESSION_CONFIG_H_ */