2009-10-27 15:27:45 +00:00
|
|
|
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
2008-10-31 04:22:44 +00:00
|
|
|
#ifndef __SHELL_GLOBAL_H__
|
|
|
|
#define __SHELL_GLOBAL_H__
|
|
|
|
|
|
|
|
#include <clutter/clutter.h>
|
|
|
|
#include <glib-object.h>
|
2008-11-21 00:39:14 +00:00
|
|
|
#include <gdk-pixbuf/gdk-pixbuf.h>
|
2009-01-09 01:09:35 +00:00
|
|
|
#include <gtk/gtk.h>
|
2011-03-05 15:49:24 +00:00
|
|
|
#include <meta/meta-plugin.h>
|
2011-02-07 15:21:30 +00:00
|
|
|
|
2008-10-31 04:22:44 +00:00
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2015-09-24 18:07:44 +00:00
|
|
|
#define SHELL_TYPE_GLOBAL (shell_global_get_type ())
|
|
|
|
G_DECLARE_FINAL_TYPE (ShellGlobal, shell_global, SHELL, GLOBAL, GObject)
|
2008-10-31 04:22:44 +00:00
|
|
|
|
2011-03-24 14:54:46 +00:00
|
|
|
ShellGlobal *shell_global_get (void);
|
2008-10-31 04:22:44 +00:00
|
|
|
|
2012-02-14 19:33:56 +00:00
|
|
|
ClutterStage *shell_global_get_stage (ShellGlobal *global);
|
2011-07-13 16:34:31 +00:00
|
|
|
MetaDisplay *shell_global_get_display (ShellGlobal *global);
|
2011-03-24 14:54:46 +00:00
|
|
|
GList *shell_global_get_window_actors (ShellGlobal *global);
|
|
|
|
GSettings *shell_global_get_settings (ShellGlobal *global);
|
|
|
|
guint32 shell_global_get_current_time (ShellGlobal *global);
|
2010-09-10 01:46:13 +00:00
|
|
|
|
|
|
|
|
2011-03-24 14:54:46 +00:00
|
|
|
/* Input/event handling */
|
|
|
|
gboolean shell_global_begin_modal (ShellGlobal *global,
|
2011-10-21 07:12:17 +00:00
|
|
|
guint32 timestamp,
|
|
|
|
MetaModalOptions options);
|
2011-03-24 14:54:46 +00:00
|
|
|
void shell_global_end_modal (ShellGlobal *global,
|
|
|
|
guint32 timestamp);
|
2009-10-25 22:53:10 +00:00
|
|
|
|
2011-03-24 14:54:46 +00:00
|
|
|
void shell_global_set_stage_input_region (ShellGlobal *global,
|
|
|
|
GSList *rectangles);
|
2010-01-25 21:42:11 +00:00
|
|
|
|
2011-03-24 14:54:46 +00:00
|
|
|
void shell_global_get_pointer (ShellGlobal *global,
|
|
|
|
int *x,
|
|
|
|
int *y,
|
|
|
|
ClutterModifierType *mods);
|
2010-05-05 21:05:42 +00:00
|
|
|
|
2011-05-20 19:50:54 +00:00
|
|
|
typedef struct {
|
|
|
|
guint glibc_uordblks;
|
|
|
|
|
|
|
|
guint js_bytes;
|
|
|
|
|
|
|
|
guint gjs_boxed;
|
|
|
|
guint gjs_gobject;
|
|
|
|
guint gjs_function;
|
|
|
|
guint gjs_closure;
|
2011-09-15 23:36:07 +00:00
|
|
|
|
|
|
|
/* 32 bit to avoid js conversion problems with 64 bit */
|
|
|
|
guint last_gc_seconds_ago;
|
2011-05-20 19:50:54 +00:00
|
|
|
} ShellMemoryInfo;
|
|
|
|
|
2011-03-24 14:54:46 +00:00
|
|
|
/* Run-at-leisure API */
|
|
|
|
void shell_global_begin_work (ShellGlobal *global);
|
|
|
|
void shell_global_end_work (ShellGlobal *global);
|
2010-05-09 04:34:15 +00:00
|
|
|
|
|
|
|
typedef void (*ShellLeisureFunction) (gpointer data);
|
|
|
|
|
2011-03-24 14:54:46 +00:00
|
|
|
void shell_global_run_at_leisure (ShellGlobal *global,
|
|
|
|
ShellLeisureFunction func,
|
|
|
|
gpointer user_data,
|
|
|
|
GDestroyNotify notify);
|
|
|
|
|
|
|
|
|
|
|
|
/* Misc utilities / Shell API */
|
|
|
|
void shell_global_sync_pointer (ShellGlobal *global);
|
|
|
|
|
|
|
|
GAppLaunchContext *
|
2014-01-19 17:34:32 +00:00
|
|
|
shell_global_create_app_launch_context (ShellGlobal *global,
|
2016-07-27 13:46:38 +00:00
|
|
|
guint32 timestamp,
|
2014-01-19 17:34:32 +00:00
|
|
|
int workspace);
|
2010-05-09 04:34:15 +00:00
|
|
|
|
2011-03-24 14:54:46 +00:00
|
|
|
void shell_global_notify_error (ShellGlobal *global,
|
|
|
|
const char *msg,
|
|
|
|
const char *details);
|
2011-03-15 22:31:16 +00:00
|
|
|
|
2011-03-24 14:54:46 +00:00
|
|
|
void shell_global_reexec_self (ShellGlobal *global);
|
2011-01-05 14:47:27 +00:00
|
|
|
|
2012-05-16 21:11:57 +00:00
|
|
|
const char * shell_global_get_session_mode (ShellGlobal *global);
|
2011-08-24 14:06:13 +00:00
|
|
|
|
2013-10-13 22:46:50 +00:00
|
|
|
void shell_global_set_runtime_state (ShellGlobal *global,
|
|
|
|
const char *property_name,
|
|
|
|
GVariant *variant);
|
2013-01-17 19:39:54 +00:00
|
|
|
GVariant * shell_global_get_runtime_state (ShellGlobal *global,
|
|
|
|
const char *property_type,
|
|
|
|
const char *property_name);
|
|
|
|
|
2013-10-13 22:46:50 +00:00
|
|
|
void shell_global_set_persistent_state (ShellGlobal *global,
|
|
|
|
const char *property_name,
|
|
|
|
GVariant *variant);
|
|
|
|
GVariant * shell_global_get_persistent_state (ShellGlobal *global,
|
|
|
|
const char *property_type,
|
|
|
|
const char *property_name);
|
2013-01-17 19:39:54 +00:00
|
|
|
|
2008-10-31 04:22:44 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __SHELL_GLOBAL_H__ */
|