mirror of
https://github.com/brl/mutter.git
synced 2024-11-23 16:40:41 -05:00
x11-display: set per-monitor work areas
In addition to existing property set also new _NET_WORKAREA_Mn property where n is Xinerama monitor index. The property in its form is same as _NET_WORKAREA except that work area is for monitor not whole screen.
This commit is contained in:
parent
a3da4b8d5b
commit
b413672a51
@ -142,6 +142,7 @@ item(_NET_WM_STATE_FULLSCREEN)
|
|||||||
item(_NET_WM_PING)
|
item(_NET_WM_PING)
|
||||||
item(_NET_WM_PID)
|
item(_NET_WM_PID)
|
||||||
item(_NET_WORKAREA)
|
item(_NET_WORKAREA)
|
||||||
|
item(_NET_WORKAREA_Mn)
|
||||||
item(_NET_SHOWING_DESKTOP)
|
item(_NET_SHOWING_DESKTOP)
|
||||||
item(_NET_DESKTOP_LAYOUT)
|
item(_NET_DESKTOP_LAYOUT)
|
||||||
item(_NET_DESKTOP_NAMES)
|
item(_NET_DESKTOP_NAMES)
|
||||||
|
@ -915,6 +915,9 @@ set_work_area_hint (MetaDisplay *display,
|
|||||||
GList *l;
|
GList *l;
|
||||||
unsigned long *data, *tmp;
|
unsigned long *data, *tmp;
|
||||||
MetaRectangle area;
|
MetaRectangle area;
|
||||||
|
MetaBackend *backend;
|
||||||
|
MetaMonitorManager *monitor_manager;
|
||||||
|
GList *logical_monitors, *lm;
|
||||||
|
|
||||||
num_workspaces = meta_workspace_manager_get_n_workspaces (workspace_manager);
|
num_workspaces = meta_workspace_manager_get_n_workspaces (workspace_manager);
|
||||||
data = g_new (unsigned long, num_workspaces * 4);
|
data = g_new (unsigned long, num_workspaces * 4);
|
||||||
@ -941,6 +944,50 @@ set_work_area_hint (MetaDisplay *display,
|
|||||||
(guchar*) data, num_workspaces*4);
|
(guchar*) data, num_workspaces*4);
|
||||||
meta_x11_error_trap_pop (x11_display);
|
meta_x11_error_trap_pop (x11_display);
|
||||||
|
|
||||||
|
backend = meta_get_backend ();
|
||||||
|
monitor_manager = meta_backend_get_monitor_manager (backend);
|
||||||
|
logical_monitors = meta_monitor_manager_get_logical_monitors (monitor_manager);
|
||||||
|
|
||||||
|
for (lm = logical_monitors; lm; lm = lm->next)
|
||||||
|
{
|
||||||
|
MetaLogicalMonitor *logical_monitor = lm->data;
|
||||||
|
int xinerama_index;
|
||||||
|
gchar *workarea_name;
|
||||||
|
Atom workarea_atom;
|
||||||
|
|
||||||
|
tmp = data;
|
||||||
|
|
||||||
|
for (l = workspace_manager->workspaces; l; l = l->next)
|
||||||
|
{
|
||||||
|
MetaWorkspace *workspace = l->data;
|
||||||
|
|
||||||
|
meta_workspace_get_work_area_for_logical_monitor (workspace,
|
||||||
|
logical_monitor,
|
||||||
|
&area);
|
||||||
|
|
||||||
|
tmp[0] = area.x;
|
||||||
|
tmp[1] = area.y;
|
||||||
|
tmp[2] = area.width;
|
||||||
|
tmp[3] = area.height;
|
||||||
|
|
||||||
|
tmp += 4;
|
||||||
|
}
|
||||||
|
|
||||||
|
xinerama_index = meta_x11_display_logical_monitor_to_xinerama_index (x11_display,
|
||||||
|
logical_monitor);
|
||||||
|
workarea_name = g_strdup_printf ("_NET_WORKAREA_M%d", xinerama_index);
|
||||||
|
workarea_atom = XInternAtom (x11_display->xdisplay, workarea_name, False);
|
||||||
|
g_free (workarea_name);
|
||||||
|
|
||||||
|
meta_x11_error_trap_push (x11_display);
|
||||||
|
XChangeProperty (x11_display->xdisplay,
|
||||||
|
x11_display->xroot,
|
||||||
|
workarea_atom,
|
||||||
|
XA_CARDINAL, 32, PropModeReplace,
|
||||||
|
(guchar*) data, num_workspaces*4);
|
||||||
|
meta_x11_error_trap_pop (x11_display);
|
||||||
|
}
|
||||||
|
|
||||||
g_free (data);
|
g_free (data);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user