summaryrefslogtreecommitdiff
path: root/src/unity-system-compositor.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/unity-system-compositor.h')
-rw-r--r--src/unity-system-compositor.h54
1 files changed, 0 insertions, 54 deletions
diff --git a/src/unity-system-compositor.h b/src/unity-system-compositor.h
deleted file mode 100644
index 546a8cc6..00000000
--- a/src/unity-system-compositor.h
+++ /dev/null
@@ -1,54 +0,0 @@
-/*
- * Copyright (C) 2013 Canonical Ltd.
- * 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 UNITY_SYSTEM_COMPOSITOR_H_
-#define UNITY_SYSTEM_COMPOSITOR_H_
-
-#include <glib-object.h>
-#include "display-server.h"
-
-G_BEGIN_DECLS
-
-#define UNITY_SYSTEM_COMPOSITOR_TYPE (unity_system_compositor_get_type())
-#define UNITY_SYSTEM_COMPOSITOR(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), UNITY_SYSTEM_COMPOSITOR_TYPE, UnitySystemCompositor))
-#define IS_UNITY_SYSTEM_COMPOSITOR(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), UNITY_SYSTEM_COMPOSITOR_TYPE))
-
-typedef struct
-{
- DisplayServer parent_instance;
-} UnitySystemCompositor;
-
-typedef struct
-{
- DisplayServerClass parent_class;
-} UnitySystemCompositorClass;
-
-GType unity_system_compositor_get_type (void);
-
-UnitySystemCompositor *unity_system_compositor_new (void);
-
-void unity_system_compositor_set_command (UnitySystemCompositor *compositor, const gchar *command);
-
-void unity_system_compositor_set_socket (UnitySystemCompositor *compositor, const gchar *socket);
-
-const gchar *unity_system_compositor_get_socket (UnitySystemCompositor *compositor);
-
-void unity_system_compositor_set_vt (UnitySystemCompositor *compositor, gint vt);
-
-void unity_system_compositor_set_timeout (UnitySystemCompositor *compositor, gint timeout);
-
-void unity_system_compositor_set_active_session (UnitySystemCompositor *compositor, const gchar *id);
-
-void unity_system_compositor_set_next_session (UnitySystemCompositor *compositor, const gchar *id);
-
-G_END_DECLS
-
-#endif /* UNITY_SYSTEM_COMPOSITOR_H_ */