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 X_SERVER_LOCAL_H_
13 #define X_SERVER_LOCAL_H_
14 
15 #include "x-server.h"
16 #include "process.h"
17 
18 G_BEGIN_DECLS
19 
20 #define X_SERVER_LOCAL_TYPE    (x_server_local_get_type())
21 #define X_SERVER_LOCAL(obj)    (G_TYPE_CHECK_INSTANCE_CAST ((obj), X_SERVER_LOCAL_TYPE, XServerLocal))
22 #define X_SERVER_LOCAL_CLASS(klass)   (G_TYPE_CHECK_CLASS_CAST ((klass), X_SERVER_LOCAL_TYPE, XServerLocalClass))
23 #define X_SERVER_LOCAL_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), X_SERVER_LOCAL_TYPE, XServerLocalClass))
24 #define IS_X_SERVER_LOCAL(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), X_SERVER_LOCAL_TYPE))
25 
26 typedef struct
27 {
28     XServer parent_instance;
29 } XServerLocal;
30 
31 typedef struct
32 {
33     XServerClass parent_class;
34     ProcessRunFunc (*get_run_function)(XServerLocal *server);
35     gboolean (*get_log_stdout)(XServerLocal *server);
36     void (*add_args)(XServerLocal *server, GString *command);
37     gboolean (*start)(DisplayServer *server);
38 } XServerLocalClass;
39 
40 G_DEFINE_AUTOPTR_CLEANUP_FUNC (XServerLocal, g_object_unref)
41 
42 const gchar *x_server_local_get_version (void);
43 
44 gint x_server_local_version_compare (guint major, guint minor);
45 
46 guint x_server_local_get_unused_display_number (void);
47 
48 void x_server_local_release_display_number (guint display_number);
49 
50 GType x_server_local_get_type (void);
51 
52 XServerLocal *x_server_local_new (void);
53 
54 void x_server_local_set_command (XServerLocal *server, const gchar *command);
55 
56 void x_server_local_set_vt (XServerLocal *server, gint vt);
57 
58 void x_server_local_set_config (XServerLocal *server, const gchar *path);
59 
60 void x_server_local_set_layout (XServerLocal *server, const gchar *layout);
61 
62 void x_server_local_set_xdg_seat (XServerLocal *server, const gchar *xdg_seat);
63 
64 void x_server_local_set_allow_tcp (XServerLocal *server, gboolean allow_tcp);
65 
66 void x_server_local_set_xdmcp_server (XServerLocal *server, const gchar *hostname);
67 
68 const gchar *x_server_local_get_xdmcp_server (XServerLocal *server);
69 
70 void x_server_local_set_xdmcp_port (XServerLocal *server, guint port);
71 
72 guint x_server_local_get_xdmcp_port (XServerLocal *server);
73 
74 void x_server_local_set_xdmcp_key (XServerLocal *server, const gchar *key);
75 
76 void x_server_local_set_background (XServerLocal *server, const gchar *background);
77 
78 const gchar *x_server_local_get_authority_file_path (XServerLocal *server);
79 
80 G_END_DECLS
81 
82 #endif /* X_SERVER_LOCAL_H_ */
83