]> rtime.felk.cvut.cz Git - sojka/lightdm.git/blob - src/seat.h
Make Greeter a subclass of session
[sojka/lightdm.git] / src / seat.h
1 /*
2  * Copyright (C) 2010-2011 Robert Ancell.
3  * Author: Robert Ancell <robert.ancell@canonical.com>
4  * 
5  * This program is free software: you can redistribute it and/or modify it under
6  * the terms of the GNU General Public License as published by the Free Software
7  * Foundation, either version 3 of the License, or (at your option) any later
8  * version. See http://www.gnu.org/copyleft/gpl.html the full text of the
9  * license.
10  */
11
12 #ifndef SEAT_H_
13 #define SEAT_H_
14
15 #include <glib-object.h>
16 #include "display-server.h"
17 #include "greeter.h"
18 #include "session.h"
19 #include "process.h"
20
21 G_BEGIN_DECLS
22
23 #define SEAT_TYPE           (seat_get_type())
24 #define SEAT(obj)           (G_TYPE_CHECK_INSTANCE_CAST ((obj), SEAT_TYPE, Seat))
25 #define SEAT_CLASS(klass)   (G_TYPE_CHECK_CLASS_CAST ((klass), SEAT_TYPE, SeatClass))
26 #define SEAT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), SEAT_TYPE, SeatClass))
27
28 typedef struct SeatPrivate SeatPrivate;
29
30 typedef struct
31 {
32     GObject         parent_instance;
33     SeatPrivate *priv;
34 } Seat;
35
36 typedef struct
37 {
38     GObjectClass parent_class;
39
40     void (*setup)(Seat *seat);
41     gboolean (*start)(Seat *seat);
42     DisplayServer *(*create_display_server) (Seat *seat);
43     Greeter *(*create_greeter_session) (Seat *seat);
44     Session *(*create_session) (Seat *seat);
45     void (*set_active_session)(Seat *seat, Session *session);
46     Session *(*get_active_session)(Seat *seat);
47     void (*run_script)(Seat *seat, DisplayServer *display_server, Process *script);
48     void (*stop)(Seat *seat);
49
50     void (*session_added)(Seat *seat, Session *session);
51     void (*session_removed)(Seat *seat, Session *session);
52     void (*stopped)(Seat *seat);
53 } SeatClass;
54
55 GType seat_get_type (void);
56
57 void seat_register_module (const gchar *name, GType type);
58
59 Seat *seat_new (const gchar *module_name);
60
61 void seat_set_property (Seat *seat, const gchar *name, const gchar *value);
62
63 gboolean seat_has_property (Seat *seat, const gchar *name);
64
65 const gchar *seat_get_string_property (Seat *seat, const gchar *name);
66
67 gboolean seat_get_boolean_property (Seat *seat, const gchar *name);
68
69 gint seat_get_integer_property (Seat *seat, const gchar *name);
70
71 void seat_set_can_switch (Seat *seat, gboolean can_switch);
72
73 void seat_set_share_display_server (Seat *seat, gboolean share_display_server);
74
75 gboolean seat_start (Seat *seat);
76
77 GList *seat_get_sessions (Seat *seat);
78
79 void seat_set_active_session (Seat *seat, Session *session);
80
81 Session *seat_get_active_session (Seat *seat);
82
83 gboolean seat_get_can_switch (Seat *seat);
84
85 gboolean seat_get_allow_guest (Seat *seat);
86
87 gboolean seat_get_greeter_allow_guest (Seat *seat);
88
89 gboolean seat_switch_to_greeter (Seat *seat);
90
91 gboolean seat_switch_to_user (Seat *seat, const gchar *username, const gchar *session_name);
92
93 gboolean seat_switch_to_guest (Seat *seat, const gchar *session_name);
94
95 gboolean seat_lock (Seat *seat, const gchar *username);
96
97 void seat_stop (Seat *seat);
98
99 gboolean seat_get_is_stopping (Seat *seat);
100
101 G_END_DECLS
102
103 #endif /* SEAT_H_ */