[gnome-session] Move inhibitor flags to a separate file



commit 48fd7e6c0cea668c4378af869cfca1cee71afaf3
Author: Bastien Nocera <hadess hadess net>
Date:   Wed Nov 7 12:45:01 2012 +0100

    Move inhibitor flags to a separate file

 gnome-session/Makefile.am          |    1 +
 gnome-session/gsm-inhibitor-flag.h |   38 ++++++++++++++++++++++++++++++++++++
 gnome-session/gsm-inhibitor.h      |   10 +-------
 3 files changed, 41 insertions(+), 8 deletions(-)
---
diff --git a/gnome-session/Makefile.am b/gnome-session/Makefile.am
index 48a1516..954ab0e 100644
--- a/gnome-session/Makefile.am
+++ b/gnome-session/Makefile.am
@@ -48,6 +48,7 @@ gnome_session_SOURCES =				\
 	gsm-store.c				\
 	gsm-inhibitor.h				\
 	gsm-inhibitor.c				\
+	gsm-inhibitor-flag.h			\
 	gsm-manager.c				\
 	gsm-manager.h				\
 	gsm-process-helper.c			\
diff --git a/gnome-session/gsm-inhibitor-flag.h b/gnome-session/gsm-inhibitor-flag.h
new file mode 100644
index 0000000..dbe0288
--- /dev/null
+++ b/gnome-session/gsm-inhibitor-flag.h
@@ -0,0 +1,38 @@
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*-
+ *
+ * Copyright (C) 2008 Red Hat, Inc.
+ *
+ * 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 of the
+ * License, 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
+ * Lesser 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., 59 Temple Place - Suite 330, Boston, MA
+ * 02111-1307, USA.
+ */
+
+#ifndef __GSM_INHIBITOR_FLAG_H__
+#define __GSM_INHIBITOR_FLAG_H__
+
+#include <glib-object.h>
+
+G_BEGIN_DECLS
+
+typedef enum {
+        GSM_INHIBITOR_FLAG_LOGOUT      = 1 << 0,
+        GSM_INHIBITOR_FLAG_SWITCH_USER = 1 << 1,
+        GSM_INHIBITOR_FLAG_SUSPEND     = 1 << 2,
+        GSM_INHIBITOR_FLAG_IDLE        = 1 << 3,
+        GSM_INHIBITOR_FLAG_AUTOMOUNT   = 1 << 4
+} GsmInhibitorFlag;
+
+G_END_DECLS
+
+#endif /* __GSM_INHIBITOR_FLAG_H__ */
diff --git a/gnome-session/gsm-inhibitor.h b/gnome-session/gsm-inhibitor.h
index f160046..4f49e86 100644
--- a/gnome-session/gsm-inhibitor.h
+++ b/gnome-session/gsm-inhibitor.h
@@ -24,6 +24,8 @@
 #include <glib-object.h>
 #include <sys/types.h>
 
+#include "gsm-inhibitor-flag.h"
+
 G_BEGIN_DECLS
 
 #define GSM_TYPE_INHIBITOR            (gsm_inhibitor_get_type ())
@@ -49,14 +51,6 @@ struct _GsmInhibitorClass
         GObjectClass parent_class;
 };
 
-typedef enum {
-        GSM_INHIBITOR_FLAG_LOGOUT      = 1 << 0,
-        GSM_INHIBITOR_FLAG_SWITCH_USER = 1 << 1,
-        GSM_INHIBITOR_FLAG_SUSPEND     = 1 << 2,
-        GSM_INHIBITOR_FLAG_IDLE        = 1 << 3,
-        GSM_INHIBITOR_FLAG_AUTOMOUNT   = 1 << 4
-} GsmInhibitorFlag;
-
 typedef enum
 {
         GSM_INHIBITOR_ERROR_GENERAL = 0,



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]