mirror of
https://github.com/brl/mutter.git
synced 2024-11-11 08:46:26 -05:00
5e3d93da87
Mutter originally started out with the idea that only a subset of the total API was exposed to plugins, so some APIs are duplicated on MutterPlugin. We've long since abandoned that idea; remove these wrappers. https://bugzilla.gnome.org/show_bug.cgi?id=671103
72 lines
2.1 KiB
C
72 lines
2.1 KiB
C
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
#ifndef META_COMPOSITOR_PRIVATE_H
|
|
#define META_COMPOSITOR_PRIVATE_H
|
|
|
|
#include <X11/extensions/Xfixes.h>
|
|
|
|
#include <meta/compositor.h>
|
|
#include <meta/display.h>
|
|
#include "meta-plugin-manager.h"
|
|
#include "meta-window-actor-private.h"
|
|
#include <clutter/clutter.h>
|
|
|
|
typedef struct _MetaCompScreen MetaCompScreen;
|
|
|
|
struct _MetaCompositor
|
|
{
|
|
MetaDisplay *display;
|
|
|
|
Atom atom_x_root_pixmap;
|
|
Atom atom_x_set_root;
|
|
Atom atom_net_wm_window_opacity;
|
|
guint repaint_func_id;
|
|
|
|
ClutterActor *shadow_src;
|
|
|
|
MetaPlugin *modal_plugin;
|
|
|
|
gboolean show_redraw : 1;
|
|
gboolean debug : 1;
|
|
gboolean no_mipmaps : 1;
|
|
};
|
|
|
|
struct _MetaCompScreen
|
|
{
|
|
MetaScreen *screen;
|
|
|
|
ClutterActor *stage, *window_group, *overlay_group;
|
|
ClutterActor *background_actor;
|
|
ClutterActor *hidden_group;
|
|
GList *windows;
|
|
GHashTable *windows_by_xid;
|
|
Window output;
|
|
|
|
/* Used for unredirecting fullscreen windows */
|
|
guint disable_unredirect_count;
|
|
MetaWindowActor *unredirected_window;
|
|
|
|
/* Before we create the output window */
|
|
XserverRegion pending_input_region;
|
|
|
|
gint switch_workspace_in_progress;
|
|
|
|
MetaPluginManager *plugin_mgr;
|
|
};
|
|
|
|
void meta_switch_workspace_completed (MetaScreen *screen);
|
|
|
|
gboolean meta_begin_modal_for_plugin (MetaScreen *screen,
|
|
MetaPlugin *plugin,
|
|
Window grab_window,
|
|
Cursor cursor,
|
|
MetaModalOptions options,
|
|
guint32 timestamp);
|
|
void meta_end_modal_for_plugin (MetaScreen *screen,
|
|
MetaPlugin *plugin,
|
|
guint32 timestamp);
|
|
|
|
void meta_check_end_modal (MetaScreen *screen);
|
|
|
|
#endif /* META_COMPOSITOR_PRIVATE_H */
|