summaryrefslogtreecommitdiffstats
path: root/gnome-session/gsm-system.h
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:49:37 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:49:37 +0000
commit35504d91654321ff2b378229ff13150f53d5aad2 (patch)
treecb85edefc751b37c8423d78c5e5888f42cc01e4b /gnome-session/gsm-system.h
parentInitial commit. (diff)
downloadgnome-session-35504d91654321ff2b378229ff13150f53d5aad2.tar.xz
gnome-session-35504d91654321ff2b378229ff13150f53d5aad2.zip
Adding upstream version 43.0.upstream/43.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'gnome-session/gsm-system.h')
-rw-r--r--gnome-session/gsm-system.h130
1 files changed, 130 insertions, 0 deletions
diff --git a/gnome-session/gsm-system.h b/gnome-session/gsm-system.h
new file mode 100644
index 0000000..438434c
--- /dev/null
+++ b/gnome-session/gsm-system.h
@@ -0,0 +1,130 @@
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*-
+ *
+ * Copyright (C) 2008 Jon McCann <jmccann@redhat.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 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
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, see <http://www.gnu.org/licenses/>.
+ *
+ * Authors:
+ * Jon McCann <jmccann@redhat.com>
+ */
+
+#ifndef __GSM_SYSTEM_H__
+#define __GSM_SYSTEM_H__
+
+#include <glib.h>
+#include <glib-object.h>
+
+#include "gsm-inhibitor.h"
+
+G_BEGIN_DECLS
+
+#define GSM_TYPE_SYSTEM (gsm_system_get_type ())
+#define GSM_SYSTEM(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GSM_TYPE_SYSTEM, GsmSystem))
+#define GSM_SYSTEM_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GSM_TYPE_SYSTEM, GsmSystemInterface))
+#define GSM_IS_SYSTEM(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GSM_TYPE_SYSTEM))
+#define GSM_SYSTEM_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE((obj), GSM_TYPE_SYSTEM, GsmSystemInterface))
+#define GSM_SYSTEM_ERROR (gsm_system_error_quark ())
+
+typedef struct _GsmSystem GsmSystem;
+typedef struct _GsmSystemInterface GsmSystemInterface;
+typedef enum _GsmSystemError GsmSystemError;
+
+struct _GsmSystemInterface
+{
+ GTypeInterface base_interface;
+
+ void (* request_completed) (GsmSystem *system,
+ GError *error);
+
+ void (* shutdown_prepared) (GsmSystem *system,
+ gboolean success);
+
+ gboolean (* can_switch_user) (GsmSystem *system);
+ gboolean (* can_stop) (GsmSystem *system);
+ gboolean (* can_restart) (GsmSystem *system);
+ gboolean (* can_restart_to_firmware_setup) (GsmSystem *system);
+ void (* set_restart_to_firmware_setup) (GsmSystem *system,
+ gboolean enable);
+ gboolean (* can_suspend) (GsmSystem *system);
+ gboolean (* can_hibernate) (GsmSystem *system);
+ void (* attempt_stop) (GsmSystem *system);
+ void (* attempt_restart) (GsmSystem *system);
+ void (* suspend) (GsmSystem *system);
+ void (* hibernate) (GsmSystem *system);
+ void (* set_session_idle) (GsmSystem *system,
+ gboolean is_idle);
+ gboolean (* is_login_session) (GsmSystem *system);
+ void (* set_inhibitors) (GsmSystem *system,
+ GsmInhibitorFlag flags);
+ void (* prepare_shutdown) (GsmSystem *system,
+ gboolean restart);
+ void (* complete_shutdown)(GsmSystem *system);
+ gboolean (* is_last_session_for_user) (GsmSystem *system);
+};
+
+enum _GsmSystemError {
+ GSM_SYSTEM_ERROR_RESTARTING = 0,
+ GSM_SYSTEM_ERROR_STOPPING
+};
+
+GType gsm_system_get_type (void);
+
+GQuark gsm_system_error_quark (void);
+
+GsmSystem *gsm_get_system (void);
+
+gboolean gsm_system_can_switch_user (GsmSystem *system);
+
+gboolean gsm_system_can_stop (GsmSystem *system);
+
+gboolean gsm_system_can_restart (GsmSystem *system);
+
+gboolean gsm_system_can_restart_to_firmware_setup (GsmSystem *system);
+
+void gsm_system_set_restart_to_firmware_setup (GsmSystem *system,
+ gboolean enable);
+
+gboolean gsm_system_can_suspend (GsmSystem *system);
+
+gboolean gsm_system_can_hibernate (GsmSystem *system);
+
+void gsm_system_attempt_stop (GsmSystem *system);
+
+void gsm_system_attempt_restart (GsmSystem *system);
+
+void gsm_system_suspend (GsmSystem *system);
+
+void gsm_system_hibernate (GsmSystem *system);
+
+void gsm_system_set_session_idle (GsmSystem *system,
+ gboolean is_idle);
+
+gboolean gsm_system_is_login_session (GsmSystem *system);
+
+gboolean gsm_system_is_last_session_for_user (GsmSystem *system);
+
+gboolean gsm_system_is_active (GsmSystem *system);
+
+void gsm_system_set_inhibitors (GsmSystem *system,
+ GsmInhibitorFlag flags);
+
+void gsm_system_prepare_shutdown (GsmSystem *system,
+ gboolean restart);
+void gsm_system_complete_shutdown (GsmSystem *system);
+
+
+
+G_END_DECLS
+
+#endif /* __GSM_SYSTEM_H__ */