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__
|
|
|
|
|
2008-10-31 15:20:54 +00:00
|
|
|
#include "mutter-plugin.h"
|
2008-10-31 04:22:44 +00:00
|
|
|
#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>
|
2008-10-31 04:22:44 +00:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
typedef struct _ShellGlobal ShellGlobal;
|
|
|
|
typedef struct _ShellGlobalClass ShellGlobalClass;
|
|
|
|
|
|
|
|
#define SHELL_TYPE_GLOBAL (shell_global_get_type ())
|
|
|
|
#define SHELL_GLOBAL(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), SHELL_TYPE_GLOBAL, ShellGlobal))
|
|
|
|
#define SHELL_GLOBAL_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), SHELL_TYPE_GLOBAL, ShellGlobalClass))
|
|
|
|
#define SHELL_IS_GLOBAL(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), SHELL_TYPE_GLOBAL))
|
|
|
|
#define SHELL_IS_GLOBAL_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), SHELL_TYPE_GLOBAL))
|
|
|
|
#define SHELL_GLOBAL_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), SHELL_TYPE_GLOBAL, ShellGlobalClass))
|
|
|
|
|
2009-04-23 14:46:36 +00:00
|
|
|
#define SHELL_GCONF_DIR "/desktop/gnome/shell"
|
|
|
|
|
2008-11-07 18:42:23 +00:00
|
|
|
struct _ShellGlobalClass
|
|
|
|
{
|
|
|
|
GObjectClass parent_class;
|
|
|
|
|
2010-01-19 17:59:29 +00:00
|
|
|
void (*screen_size_changed) (ShellGlobal *global);
|
2008-11-07 18:42:23 +00:00
|
|
|
};
|
|
|
|
|
2008-10-31 04:22:44 +00:00
|
|
|
GType shell_global_get_type (void) G_GNUC_CONST;
|
|
|
|
|
2009-01-09 01:09:35 +00:00
|
|
|
gboolean shell_clutter_texture_set_from_pixbuf (ClutterTexture *texture,
|
|
|
|
GdkPixbuf *pixbuf);
|
|
|
|
|
2009-04-24 14:01:34 +00:00
|
|
|
ClutterActor *shell_get_event_related(ClutterEvent *event);
|
|
|
|
|
2008-10-31 04:22:44 +00:00
|
|
|
ShellGlobal *shell_global_get (void);
|
|
|
|
|
2009-06-25 21:42:46 +00:00
|
|
|
MetaScreen *shell_global_get_screen (ShellGlobal *global);
|
|
|
|
|
2009-10-25 22:53:10 +00:00
|
|
|
gboolean shell_global_add_extension_importer (ShellGlobal *global,
|
|
|
|
const char *target_object_script,
|
|
|
|
const char *target_property,
|
|
|
|
const char *directory,
|
|
|
|
GError **error);
|
|
|
|
|
2009-01-19 23:21:57 +00:00
|
|
|
void shell_global_grab_dbus_service (ShellGlobal *global);
|
|
|
|
|
2009-04-29 18:01:09 +00:00
|
|
|
typedef enum {
|
|
|
|
SHELL_STAGE_INPUT_MODE_NONREACTIVE,
|
|
|
|
SHELL_STAGE_INPUT_MODE_NORMAL,
|
|
|
|
SHELL_STAGE_INPUT_MODE_FULLSCREEN
|
|
|
|
} ShellStageInputMode;
|
|
|
|
|
|
|
|
void shell_global_set_stage_input_mode (ShellGlobal *global,
|
|
|
|
ShellStageInputMode mode);
|
|
|
|
void shell_global_set_stage_input_region (ShellGlobal *global,
|
|
|
|
GSList *rectangles);
|
2008-11-02 04:18:41 +00:00
|
|
|
|
2008-11-21 15:33:00 +00:00
|
|
|
GList *shell_global_get_windows (ShellGlobal *global);
|
2008-10-31 18:05:19 +00:00
|
|
|
|
2009-08-12 04:22:46 +00:00
|
|
|
gboolean shell_global_begin_modal (ShellGlobal *global,
|
|
|
|
guint32 timestamp);
|
|
|
|
void shell_global_end_modal (ShellGlobal *global,
|
|
|
|
guint32 timestamp);
|
2008-11-19 19:54:17 +00:00
|
|
|
|
2009-08-28 15:27:39 +00:00
|
|
|
gboolean shell_global_display_is_grabbed (ShellGlobal *global);
|
|
|
|
|
2008-12-18 20:57:37 +00:00
|
|
|
void shell_global_reexec_self (ShellGlobal *global);
|
|
|
|
|
2010-02-23 23:49:02 +00:00
|
|
|
void shell_global_breakpoint (ShellGlobal *global);
|
|
|
|
|
2010-01-25 21:42:11 +00:00
|
|
|
void shell_global_gc (ShellGlobal *global);
|
|
|
|
|
2009-07-20 21:56:47 +00:00
|
|
|
void shell_global_format_time_relative_pretty (ShellGlobal *global, guint delta, char **text, guint *update_time);
|
|
|
|
|
2009-04-22 00:23:06 +00:00
|
|
|
ClutterActor *shell_global_create_root_pixmap_actor (ShellGlobal *global);
|
|
|
|
|
2009-08-25 19:23:53 +00:00
|
|
|
GSList *shell_global_get_monitors (ShellGlobal *global);
|
|
|
|
GdkRectangle *shell_global_get_primary_monitor (ShellGlobal *global);
|
|
|
|
GdkRectangle *shell_global_get_focus_monitor (ShellGlobal *global);
|
|
|
|
|
2009-10-06 14:53:25 +00:00
|
|
|
GdkModifierType shell_global_get_modifier_keys (ShellGlobal *global);
|
|
|
|
|
2009-10-07 21:20:33 +00:00
|
|
|
ClutterModifierType shell_get_event_state (ClutterEvent *event);
|
|
|
|
|
2009-11-10 17:13:58 +00:00
|
|
|
void shell_popup_menu (GtkMenu *menu, int button, guint32 time,
|
|
|
|
int menu_x, int menu_y);
|
|
|
|
|
2009-12-03 20:59:52 +00:00
|
|
|
guint32 shell_global_get_current_time (ShellGlobal *global);
|
|
|
|
|
|
|
|
GAppLaunchContext *shell_global_create_app_launch_context (ShellGlobal *global);
|
2009-11-10 17:13:58 +00:00
|
|
|
|
2008-10-31 04:22:44 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __SHELL_GLOBAL_H__ */
|