2013-07-18 11:09:16 +00:00
|
|
|
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2001, 2002 Havoc Pennington
|
|
|
|
* Copyright (C) 2002, 2003 Red Hat Inc.
|
|
|
|
* Some ICCCM manager selection code derived from fvwm2,
|
|
|
|
* Copyright (C) 2001 Dominik Vogt, Matthias Clasen, and fvwm2 team
|
|
|
|
* Copyright (C) 2003 Rob Adams
|
|
|
|
* Copyright (C) 2004-2006 Elijah Newren
|
|
|
|
* Copyright (C) 2013 Red Hat Inc.
|
|
|
|
*
|
|
|
|
* 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, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
|
|
|
* 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
2013-07-19 12:39:28 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <math.h>
|
2013-07-24 13:35:47 +00:00
|
|
|
#include <stdlib.h>
|
2013-07-18 11:09:16 +00:00
|
|
|
#include <clutter/clutter.h>
|
|
|
|
|
2013-07-19 12:39:28 +00:00
|
|
|
#include <meta/main.h>
|
2013-09-11 08:18:53 +00:00
|
|
|
#include "util-private.h"
|
2013-07-22 11:31:10 +00:00
|
|
|
#include <meta/errors.h>
|
2013-07-18 11:09:16 +00:00
|
|
|
#include "monitor-private.h"
|
2013-07-30 09:36:18 +00:00
|
|
|
#include "meta-wayland-private.h"
|
2013-07-18 11:09:16 +00:00
|
|
|
|
2013-07-19 12:39:28 +00:00
|
|
|
#include "meta-dbus-xrandr.h"
|
|
|
|
|
2013-07-24 08:01:57 +00:00
|
|
|
#define ALL_WL_TRANSFORMS ((1 << (WL_OUTPUT_TRANSFORM_FLIPPED_270 + 1)) - 1)
|
2013-07-22 11:31:10 +00:00
|
|
|
|
2013-07-18 11:09:16 +00:00
|
|
|
enum {
|
2013-07-29 08:12:24 +00:00
|
|
|
CONFIRM_DISPLAY_CHANGE,
|
2013-07-18 11:09:16 +00:00
|
|
|
SIGNALS_LAST
|
|
|
|
};
|
|
|
|
|
2013-07-24 08:39:06 +00:00
|
|
|
enum {
|
|
|
|
PROP_0,
|
|
|
|
PROP_POWER_SAVE_MODE,
|
|
|
|
PROP_LAST
|
|
|
|
};
|
|
|
|
|
2013-07-18 11:09:16 +00:00
|
|
|
static int signals[SIGNALS_LAST];
|
|
|
|
|
2013-07-23 17:32:17 +00:00
|
|
|
static void meta_monitor_manager_display_config_init (MetaDBusDisplayConfigIface *iface);
|
|
|
|
|
|
|
|
G_DEFINE_TYPE_WITH_CODE (MetaMonitorManager, meta_monitor_manager, META_DBUS_TYPE_DISPLAY_CONFIG_SKELETON,
|
|
|
|
G_IMPLEMENT_INTERFACE (META_DBUS_TYPE_DISPLAY_CONFIG, meta_monitor_manager_display_config_init));
|
2013-07-18 11:09:16 +00:00
|
|
|
|
2013-07-29 11:00:15 +00:00
|
|
|
static void initialize_dbus_interface (MetaMonitorManager *manager);
|
2013-07-23 08:07:52 +00:00
|
|
|
|
2013-07-18 11:09:16 +00:00
|
|
|
static void
|
2013-07-29 11:00:15 +00:00
|
|
|
read_current_dummy (MetaMonitorManager *manager)
|
2013-07-18 11:09:16 +00:00
|
|
|
{
|
2013-07-22 16:57:12 +00:00
|
|
|
manager->max_screen_width = 65535;
|
|
|
|
manager->max_screen_height = 65535;
|
|
|
|
manager->screen_width = 1024;
|
|
|
|
manager->screen_height = 768;
|
|
|
|
|
2013-08-29 17:01:42 +00:00
|
|
|
manager->modes = g_new0 (MetaMonitorMode, 1);
|
|
|
|
manager->n_modes = 1;
|
2013-07-18 11:09:16 +00:00
|
|
|
|
2013-08-29 17:01:42 +00:00
|
|
|
manager->modes[0].mode_id = 0;
|
2013-07-23 08:07:52 +00:00
|
|
|
manager->modes[0].width = 1024;
|
|
|
|
manager->modes[0].height = 768;
|
2013-07-19 12:39:28 +00:00
|
|
|
manager->modes[0].refresh_rate = 60.0;
|
|
|
|
|
2013-08-29 17:01:42 +00:00
|
|
|
manager->crtcs = g_new0 (MetaCRTC, 1);
|
|
|
|
manager->n_crtcs = 1;
|
2013-07-25 09:54:22 +00:00
|
|
|
|
2013-08-29 17:01:42 +00:00
|
|
|
manager->crtcs[0].crtc_id = 1;
|
2013-07-19 12:39:28 +00:00
|
|
|
manager->crtcs[0].rect.x = 0;
|
|
|
|
manager->crtcs[0].rect.y = 0;
|
|
|
|
manager->crtcs[0].rect.width = manager->modes[0].width;
|
|
|
|
manager->crtcs[0].rect.height = manager->modes[0].height;
|
|
|
|
manager->crtcs[0].current_mode = &manager->modes[0];
|
2013-07-24 08:01:57 +00:00
|
|
|
manager->crtcs[0].transform = WL_OUTPUT_TRANSFORM_NORMAL;
|
|
|
|
manager->crtcs[0].all_transforms = ALL_WL_TRANSFORMS;
|
2013-07-22 11:31:10 +00:00
|
|
|
manager->crtcs[0].is_dirty = FALSE;
|
|
|
|
manager->crtcs[0].logical_monitor = NULL;
|
2013-07-18 11:09:16 +00:00
|
|
|
|
2013-08-29 17:01:42 +00:00
|
|
|
manager->outputs = g_new0 (MetaOutput, 1);
|
|
|
|
manager->n_outputs = 1;
|
2013-07-18 11:09:16 +00:00
|
|
|
|
2013-08-29 17:01:42 +00:00
|
|
|
manager->outputs[0].crtc = &manager->crtcs[0];
|
|
|
|
manager->outputs[0].output_id = 1;
|
|
|
|
manager->outputs[0].name = g_strdup ("LVDS");
|
2013-07-24 13:35:47 +00:00
|
|
|
manager->outputs[0].vendor = g_strdup ("MetaProducts Inc.");
|
2013-07-19 12:39:28 +00:00
|
|
|
manager->outputs[0].product = g_strdup ("unknown");
|
2013-08-29 17:01:42 +00:00
|
|
|
manager->outputs[0].serial = g_strdup ("0xC0FFEE");
|
|
|
|
manager->outputs[0].width_mm = 222;
|
|
|
|
manager->outputs[0].height_mm = 125;
|
2013-07-18 11:09:16 +00:00
|
|
|
manager->outputs[0].subpixel_order = COGL_SUBPIXEL_ORDER_UNKNOWN;
|
2013-08-29 17:01:42 +00:00
|
|
|
manager->outputs[0].preferred_mode = &manager->modes[0];
|
|
|
|
manager->outputs[0].n_modes = 1;
|
|
|
|
manager->outputs[0].modes = g_new0 (MetaMonitorMode *, 1);
|
2013-07-19 12:39:28 +00:00
|
|
|
manager->outputs[0].modes[0] = &manager->modes[0];
|
2013-08-29 17:01:42 +00:00
|
|
|
manager->outputs[0].n_possible_crtcs = 1;
|
|
|
|
manager->outputs[0].possible_crtcs = g_new0 (MetaCRTC *, 1);
|
2013-07-19 12:39:28 +00:00
|
|
|
manager->outputs[0].possible_crtcs[0] = &manager->crtcs[0];
|
2013-07-19 16:47:01 +00:00
|
|
|
manager->outputs[0].n_possible_clones = 0;
|
|
|
|
manager->outputs[0].possible_clones = g_new0 (MetaOutput *, 0);
|
2013-07-25 13:06:09 +00:00
|
|
|
manager->outputs[0].backlight = -1;
|
|
|
|
manager->outputs[0].backlight_min = 0;
|
|
|
|
manager->outputs[0].backlight_max = 0;
|
2013-07-18 11:09:16 +00:00
|
|
|
}
|
|
|
|
|
2013-07-29 11:00:15 +00:00
|
|
|
static void
|
|
|
|
apply_config_dummy (MetaMonitorManager *manager,
|
|
|
|
MetaCRTCInfo **crtcs,
|
|
|
|
unsigned int n_crtcs,
|
|
|
|
MetaOutputInfo **outputs,
|
|
|
|
unsigned int n_outputs)
|
2013-07-24 08:01:57 +00:00
|
|
|
{
|
2013-07-29 11:00:15 +00:00
|
|
|
unsigned i;
|
|
|
|
int screen_width = 0, screen_height = 0;
|
2013-07-24 08:01:57 +00:00
|
|
|
|
2013-07-29 11:00:15 +00:00
|
|
|
for (i = 0; i < n_crtcs; i++)
|
|
|
|
{
|
|
|
|
MetaCRTCInfo *crtc_info = crtcs[i];
|
|
|
|
MetaCRTC *crtc = crtc_info->crtc;
|
|
|
|
crtc->is_dirty = TRUE;
|
2013-07-18 11:09:16 +00:00
|
|
|
|
2013-07-29 11:00:15 +00:00
|
|
|
if (crtc_info->mode == NULL)
|
|
|
|
{
|
|
|
|
crtc->rect.x = 0;
|
|
|
|
crtc->rect.y = 0;
|
|
|
|
crtc->rect.width = 0;
|
|
|
|
crtc->rect.height = 0;
|
|
|
|
crtc->current_mode = NULL;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
MetaMonitorMode *mode;
|
|
|
|
MetaOutput *output;
|
|
|
|
int i, n_outputs;
|
|
|
|
int width, height;
|
2013-07-25 09:16:51 +00:00
|
|
|
|
2013-07-29 11:00:15 +00:00
|
|
|
mode = crtc_info->mode;
|
2013-07-25 09:16:51 +00:00
|
|
|
|
2013-07-29 11:00:15 +00:00
|
|
|
if (meta_monitor_transform_is_rotated (crtc_info->transform))
|
|
|
|
{
|
|
|
|
width = mode->height;
|
|
|
|
height = mode->width;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
width = mode->width;
|
|
|
|
height = mode->height;
|
|
|
|
}
|
2013-07-25 09:16:51 +00:00
|
|
|
|
2013-07-29 11:00:15 +00:00
|
|
|
crtc->rect.x = crtc_info->x;
|
|
|
|
crtc->rect.y = crtc_info->y;
|
|
|
|
crtc->rect.width = width;
|
|
|
|
crtc->rect.height = height;
|
|
|
|
crtc->current_mode = mode;
|
|
|
|
crtc->transform = crtc_info->transform;
|
2013-07-25 13:06:09 +00:00
|
|
|
|
2013-07-29 11:00:15 +00:00
|
|
|
screen_width = MAX (screen_width, crtc_info->x + width);
|
|
|
|
screen_height = MAX (screen_height, crtc_info->y + height);
|
2013-07-25 13:06:09 +00:00
|
|
|
|
2013-07-29 11:00:15 +00:00
|
|
|
n_outputs = crtc_info->outputs->len;
|
|
|
|
for (i = 0; i < n_outputs; i++)
|
|
|
|
{
|
|
|
|
output = ((MetaOutput**)crtc_info->outputs->pdata)[i];
|
2013-07-25 13:06:09 +00:00
|
|
|
|
2013-07-29 11:00:15 +00:00
|
|
|
output->is_dirty = TRUE;
|
|
|
|
output->crtc = crtc;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-07-25 13:06:09 +00:00
|
|
|
|
2013-07-29 11:00:15 +00:00
|
|
|
for (i = 0; i < n_outputs; i++)
|
2013-07-25 13:06:09 +00:00
|
|
|
{
|
2013-07-29 11:00:15 +00:00
|
|
|
MetaOutputInfo *output_info = outputs[i];
|
|
|
|
MetaOutput *output = output_info->output;
|
|
|
|
|
|
|
|
output->is_primary = output_info->is_primary;
|
|
|
|
output->is_presentation = output_info->is_presentation;
|
2013-07-25 13:06:09 +00:00
|
|
|
}
|
|
|
|
|
2013-07-29 11:00:15 +00:00
|
|
|
/* Disable CRTCs not mentioned in the list */
|
|
|
|
for (i = 0; i < manager->n_crtcs; i++)
|
2013-07-25 13:06:09 +00:00
|
|
|
{
|
2013-07-29 11:00:15 +00:00
|
|
|
MetaCRTC *crtc = &manager->crtcs[i];
|
2013-07-25 13:06:09 +00:00
|
|
|
|
2013-07-29 11:00:15 +00:00
|
|
|
crtc->logical_monitor = NULL;
|
2013-07-25 13:06:09 +00:00
|
|
|
|
2013-07-29 11:00:15 +00:00
|
|
|
if (crtc->is_dirty)
|
|
|
|
{
|
|
|
|
crtc->is_dirty = FALSE;
|
|
|
|
continue;
|
|
|
|
}
|
2013-07-25 13:06:09 +00:00
|
|
|
|
2013-07-29 11:00:15 +00:00
|
|
|
crtc->rect.x = 0;
|
|
|
|
crtc->rect.y = 0;
|
|
|
|
crtc->rect.width = 0;
|
|
|
|
crtc->rect.height = 0;
|
|
|
|
crtc->current_mode = NULL;
|
|
|
|
}
|
2013-07-24 13:35:47 +00:00
|
|
|
|
2013-07-29 11:00:15 +00:00
|
|
|
/* Disable outputs not mentioned in the list */
|
|
|
|
for (i = 0; i < manager->n_outputs; i++)
|
|
|
|
{
|
|
|
|
MetaOutput *output = &manager->outputs[i];
|
2013-07-24 13:35:47 +00:00
|
|
|
|
2013-07-29 11:00:15 +00:00
|
|
|
if (output->is_dirty)
|
|
|
|
{
|
|
|
|
output->is_dirty = FALSE;
|
|
|
|
continue;
|
|
|
|
}
|
2013-07-18 11:09:16 +00:00
|
|
|
|
2013-07-29 11:00:15 +00:00
|
|
|
output->crtc = NULL;
|
|
|
|
output->is_primary = FALSE;
|
|
|
|
}
|
2013-07-18 11:09:16 +00:00
|
|
|
|
2013-07-29 11:00:15 +00:00
|
|
|
manager->screen_width = screen_width;
|
|
|
|
manager->screen_height = screen_height;
|
|
|
|
|
2013-09-02 13:04:05 +00:00
|
|
|
meta_monitor_manager_rebuild_derived (manager);
|
2013-07-18 11:09:16 +00:00
|
|
|
}
|
|
|
|
|
2013-08-08 11:32:05 +00:00
|
|
|
static GBytes *
|
|
|
|
read_edid_dummy (MetaMonitorManager *manager,
|
|
|
|
MetaOutput *output)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *
|
|
|
|
get_edid_file_dummy (MetaMonitorManager *manager,
|
|
|
|
MetaOutput *output)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2013-07-18 11:09:16 +00:00
|
|
|
static void
|
|
|
|
meta_monitor_manager_init (MetaMonitorManager *manager)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
read_current_config (MetaMonitorManager *manager)
|
|
|
|
{
|
2013-07-24 13:35:47 +00:00
|
|
|
manager->serial++;
|
|
|
|
|
2013-07-29 11:00:15 +00:00
|
|
|
META_MONITOR_MANAGER_GET_CLASS (manager)->read_current (manager);
|
2013-07-18 11:09:16 +00:00
|
|
|
}
|
|
|
|
|
2013-07-19 12:39:28 +00:00
|
|
|
/*
|
|
|
|
* make_logical_config:
|
|
|
|
*
|
|
|
|
* Turn outputs and CRTCs into logical MetaMonitorInfo,
|
|
|
|
* that will be used by the core and API layer (MetaScreen
|
|
|
|
* and friends)
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
make_logical_config (MetaMonitorManager *manager)
|
|
|
|
{
|
|
|
|
GArray *monitor_infos;
|
|
|
|
unsigned int i, j;
|
|
|
|
|
|
|
|
monitor_infos = g_array_sized_new (FALSE, TRUE, sizeof (MetaMonitorInfo),
|
|
|
|
manager->n_outputs);
|
|
|
|
|
|
|
|
/* Walk the list of MetaCRTCs, and build a MetaMonitorInfo
|
|
|
|
for each of them, unless they reference a rectangle that
|
|
|
|
is already there.
|
|
|
|
*/
|
|
|
|
for (i = 0; i < manager->n_crtcs; i++)
|
|
|
|
{
|
|
|
|
MetaCRTC *crtc = &manager->crtcs[i];
|
|
|
|
|
|
|
|
/* Ignore CRTCs not in use */
|
|
|
|
if (crtc->current_mode == NULL)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
for (j = 0; j < monitor_infos->len; j++)
|
|
|
|
{
|
|
|
|
MetaMonitorInfo *info = &g_array_index (monitor_infos, MetaMonitorInfo, i);
|
|
|
|
if (meta_rectangle_equal (&crtc->rect,
|
|
|
|
&info->rect))
|
|
|
|
{
|
|
|
|
crtc->logical_monitor = info;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (crtc->logical_monitor == NULL)
|
|
|
|
{
|
|
|
|
MetaMonitorInfo info;
|
|
|
|
|
|
|
|
info.number = monitor_infos->len;
|
|
|
|
info.rect = crtc->rect;
|
|
|
|
info.is_primary = FALSE;
|
|
|
|
/* This starts true because we want
|
|
|
|
is_presentation only if all outputs are
|
|
|
|
marked as such (while for primary it's enough
|
|
|
|
that any is marked)
|
|
|
|
*/
|
|
|
|
info.is_presentation = TRUE;
|
|
|
|
info.in_fullscreen = -1;
|
|
|
|
info.output_id = 0;
|
|
|
|
|
|
|
|
g_array_append_val (monitor_infos, info);
|
|
|
|
|
|
|
|
crtc->logical_monitor = &g_array_index (monitor_infos, MetaMonitorInfo,
|
|
|
|
info.number);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Now walk the list of outputs applying extended properties (primary
|
|
|
|
and presentation)
|
|
|
|
*/
|
|
|
|
for (i = 0; i < manager->n_outputs; i++)
|
|
|
|
{
|
|
|
|
MetaOutput *output;
|
|
|
|
MetaMonitorInfo *info;
|
|
|
|
|
|
|
|
output = &manager->outputs[i];
|
|
|
|
|
|
|
|
/* Ignore outputs that are not active */
|
|
|
|
if (output->crtc == NULL)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* We must have a logical monitor on every CRTC at this point */
|
|
|
|
g_assert (output->crtc->logical_monitor != NULL);
|
|
|
|
|
|
|
|
info = output->crtc->logical_monitor;
|
|
|
|
|
|
|
|
info->is_primary = info->is_primary || output->is_primary;
|
|
|
|
info->is_presentation = info->is_presentation && output->is_presentation;
|
|
|
|
|
|
|
|
if (output->is_primary || info->output_id == 0)
|
|
|
|
info->output_id = output->output_id;
|
|
|
|
|
|
|
|
if (info->is_primary)
|
|
|
|
manager->primary_monitor_index = info->number;
|
|
|
|
}
|
|
|
|
|
|
|
|
manager->n_monitor_infos = monitor_infos->len;
|
|
|
|
manager->monitor_infos = (void*)g_array_free (monitor_infos, FALSE);
|
|
|
|
}
|
|
|
|
|
2013-08-19 09:12:42 +00:00
|
|
|
static GType
|
|
|
|
get_default_backend (void)
|
|
|
|
{
|
|
|
|
if (meta_is_wayland_compositor ())
|
2013-07-30 09:36:18 +00:00
|
|
|
{
|
|
|
|
MetaWaylandCompositor *compositor;
|
|
|
|
|
|
|
|
compositor = meta_wayland_compositor_get_default ();
|
|
|
|
|
|
|
|
if (meta_wayland_compositor_is_native (compositor))
|
|
|
|
return META_TYPE_MONITOR_MANAGER_KMS;
|
|
|
|
else
|
|
|
|
return META_TYPE_MONITOR_MANAGER;
|
|
|
|
}
|
2013-08-19 09:12:42 +00:00
|
|
|
else
|
|
|
|
return META_TYPE_MONITOR_MANAGER_XRANDR;
|
|
|
|
}
|
|
|
|
|
2013-07-18 11:09:16 +00:00
|
|
|
static MetaMonitorManager *
|
2013-07-29 11:00:15 +00:00
|
|
|
meta_monitor_manager_new (void)
|
2013-07-18 11:09:16 +00:00
|
|
|
{
|
2013-07-29 11:00:15 +00:00
|
|
|
const char *env;
|
|
|
|
GType type;
|
2013-07-18 11:09:16 +00:00
|
|
|
|
2013-07-29 11:00:15 +00:00
|
|
|
env = g_getenv ("META_DEBUG_MULTIMONITOR");
|
2013-07-18 11:09:16 +00:00
|
|
|
|
2013-07-29 11:00:15 +00:00
|
|
|
if (env == NULL)
|
2013-08-19 09:12:42 +00:00
|
|
|
type = get_default_backend ();
|
2013-07-29 11:00:15 +00:00
|
|
|
else if (strcmp (env, "xrandr") == 0)
|
|
|
|
type = META_TYPE_MONITOR_MANAGER_XRANDR;
|
|
|
|
else
|
|
|
|
type = META_TYPE_MONITOR_MANAGER;
|
2013-07-18 11:09:16 +00:00
|
|
|
|
2013-07-29 11:00:15 +00:00
|
|
|
return g_object_new (type, NULL);
|
|
|
|
}
|
2013-07-22 16:57:12 +00:00
|
|
|
|
2013-07-29 11:00:15 +00:00
|
|
|
static void
|
|
|
|
meta_monitor_manager_constructed (GObject *object)
|
|
|
|
{
|
|
|
|
MetaMonitorManager *manager = META_MONITOR_MANAGER (object);
|
|
|
|
|
|
|
|
manager->in_init = TRUE;
|
2013-07-22 16:57:12 +00:00
|
|
|
|
2013-07-24 13:35:47 +00:00
|
|
|
manager->config = meta_monitor_config_new ();
|
2013-07-22 16:57:12 +00:00
|
|
|
|
2013-07-18 11:09:16 +00:00
|
|
|
read_current_config (manager);
|
2013-07-24 13:35:47 +00:00
|
|
|
|
|
|
|
if (!meta_monitor_config_apply_stored (manager->config, manager))
|
|
|
|
meta_monitor_config_make_default (manager->config, manager);
|
|
|
|
|
|
|
|
/* Under XRandR, we don't rebuild our data structures until we see
|
|
|
|
the RRScreenNotify event, but at least at startup we want to have
|
|
|
|
the right configuration immediately.
|
|
|
|
|
|
|
|
The other backends keep the data structures always updated,
|
|
|
|
so this is not needed.
|
|
|
|
*/
|
2013-07-29 11:00:15 +00:00
|
|
|
if (META_IS_MONITOR_MANAGER_XRANDR (manager))
|
2013-07-24 13:35:47 +00:00
|
|
|
{
|
|
|
|
MetaOutput *old_outputs;
|
|
|
|
MetaCRTC *old_crtcs;
|
|
|
|
MetaMonitorMode *old_modes;
|
2013-07-30 09:36:18 +00:00
|
|
|
unsigned int n_old_outputs, n_old_modes;
|
2013-07-24 13:35:47 +00:00
|
|
|
|
|
|
|
old_outputs = manager->outputs;
|
|
|
|
n_old_outputs = manager->n_outputs;
|
|
|
|
old_modes = manager->modes;
|
2013-07-30 09:36:18 +00:00
|
|
|
n_old_modes = manager->n_modes;
|
2013-07-24 13:35:47 +00:00
|
|
|
old_crtcs = manager->crtcs;
|
|
|
|
|
|
|
|
read_current_config (manager);
|
|
|
|
|
2013-09-02 13:04:05 +00:00
|
|
|
meta_monitor_manager_free_output_array (old_outputs, n_old_outputs);
|
2013-07-30 09:36:18 +00:00
|
|
|
meta_monitor_manager_free_mode_array (old_modes, n_old_modes);
|
2013-07-24 13:35:47 +00:00
|
|
|
g_free (old_crtcs);
|
|
|
|
}
|
2013-07-25 08:57:59 +00:00
|
|
|
|
2013-07-19 12:39:28 +00:00
|
|
|
make_logical_config (manager);
|
2013-07-29 11:00:15 +00:00
|
|
|
initialize_dbus_interface (manager);
|
2013-07-25 08:57:59 +00:00
|
|
|
|
|
|
|
manager->in_init = FALSE;
|
2013-07-18 11:09:16 +00:00
|
|
|
}
|
|
|
|
|
2013-07-24 08:39:06 +00:00
|
|
|
static void
|
|
|
|
meta_monitor_manager_set_power_save_mode (MetaMonitorManager *manager,
|
|
|
|
MetaPowerSave mode)
|
|
|
|
{
|
2013-07-29 11:00:15 +00:00
|
|
|
MetaMonitorManagerClass *klass;
|
|
|
|
|
2013-09-09 11:12:20 +00:00
|
|
|
if (manager->power_save_mode == META_POWER_SAVE_UNSUPPORTED ||
|
|
|
|
mode == META_POWER_SAVE_UNSUPPORTED)
|
2013-07-24 08:39:06 +00:00
|
|
|
return;
|
|
|
|
|
2013-07-29 11:00:15 +00:00
|
|
|
klass = META_MONITOR_MANAGER_GET_CLASS (manager);
|
|
|
|
if (klass->set_power_save_mode)
|
|
|
|
klass->set_power_save_mode (manager, mode);
|
2013-07-24 08:39:06 +00:00
|
|
|
|
|
|
|
manager->power_save_mode = mode;
|
|
|
|
}
|
|
|
|
|
2013-09-02 13:04:05 +00:00
|
|
|
void
|
|
|
|
meta_monitor_manager_free_output_array (MetaOutput *old_outputs,
|
|
|
|
int n_old_outputs)
|
2013-07-18 11:09:16 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < n_old_outputs; i++)
|
2013-07-19 12:39:28 +00:00
|
|
|
{
|
|
|
|
g_free (old_outputs[i].name);
|
|
|
|
g_free (old_outputs[i].vendor);
|
|
|
|
g_free (old_outputs[i].product);
|
|
|
|
g_free (old_outputs[i].serial);
|
|
|
|
g_free (old_outputs[i].modes);
|
|
|
|
g_free (old_outputs[i].possible_crtcs);
|
2013-07-19 16:47:01 +00:00
|
|
|
g_free (old_outputs[i].possible_clones);
|
2013-07-30 09:36:18 +00:00
|
|
|
|
|
|
|
if (old_outputs[i].driver_notify)
|
|
|
|
old_outputs[i].driver_notify (&old_outputs[i]);
|
2013-07-19 12:39:28 +00:00
|
|
|
}
|
|
|
|
|
2013-07-18 11:09:16 +00:00
|
|
|
g_free (old_outputs);
|
|
|
|
}
|
|
|
|
|
2013-07-30 09:36:18 +00:00
|
|
|
void
|
|
|
|
meta_monitor_manager_free_mode_array (MetaMonitorMode *old_modes,
|
|
|
|
int n_old_modes)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < n_old_modes; i++)
|
|
|
|
{
|
|
|
|
g_free (old_modes[i].name);
|
|
|
|
|
|
|
|
if (old_modes[i].driver_notify)
|
|
|
|
old_modes[i].driver_notify (&old_modes[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_free (old_modes);
|
|
|
|
}
|
|
|
|
|
2013-07-18 11:09:16 +00:00
|
|
|
static void
|
|
|
|
meta_monitor_manager_finalize (GObject *object)
|
|
|
|
{
|
|
|
|
MetaMonitorManager *manager = META_MONITOR_MANAGER (object);
|
|
|
|
|
2013-09-02 13:04:05 +00:00
|
|
|
meta_monitor_manager_free_output_array (manager->outputs, manager->n_outputs);
|
2013-07-30 09:36:18 +00:00
|
|
|
meta_monitor_manager_free_mode_array (manager->modes, manager->n_modes);
|
2013-07-18 11:09:16 +00:00
|
|
|
g_free (manager->monitor_infos);
|
2013-07-19 12:39:28 +00:00
|
|
|
g_free (manager->crtcs);
|
2013-07-18 11:09:16 +00:00
|
|
|
|
|
|
|
G_OBJECT_CLASS (meta_monitor_manager_parent_class)->finalize (object);
|
|
|
|
}
|
|
|
|
|
2013-07-19 12:39:28 +00:00
|
|
|
static void
|
|
|
|
meta_monitor_manager_dispose (GObject *object)
|
|
|
|
{
|
|
|
|
MetaMonitorManager *manager = META_MONITOR_MANAGER (object);
|
|
|
|
|
|
|
|
if (manager->dbus_name_id != 0)
|
|
|
|
{
|
|
|
|
g_bus_unown_name (manager->dbus_name_id);
|
|
|
|
manager->dbus_name_id = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
G_OBJECT_CLASS (meta_monitor_manager_parent_class)->dispose (object);
|
|
|
|
}
|
|
|
|
|
2013-07-24 08:39:06 +00:00
|
|
|
static void
|
|
|
|
meta_monitor_manager_set_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
MetaMonitorManager *self = META_MONITOR_MANAGER (object);
|
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
{
|
|
|
|
case PROP_POWER_SAVE_MODE:
|
|
|
|
meta_monitor_manager_set_power_save_mode (self, g_value_get_int (value));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
meta_monitor_manager_get_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
MetaMonitorManager *self = META_MONITOR_MANAGER (object);
|
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
{
|
|
|
|
case PROP_POWER_SAVE_MODE:
|
|
|
|
g_value_set_int (value, self->power_save_mode);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-18 11:09:16 +00:00
|
|
|
static void
|
|
|
|
meta_monitor_manager_class_init (MetaMonitorManagerClass *klass)
|
|
|
|
{
|
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
|
|
|
2013-07-29 11:00:15 +00:00
|
|
|
object_class->constructed = meta_monitor_manager_constructed;
|
2013-07-24 08:39:06 +00:00
|
|
|
object_class->get_property = meta_monitor_manager_get_property;
|
|
|
|
object_class->set_property = meta_monitor_manager_set_property;
|
2013-07-19 12:39:28 +00:00
|
|
|
object_class->dispose = meta_monitor_manager_dispose;
|
2013-07-18 11:09:16 +00:00
|
|
|
object_class->finalize = meta_monitor_manager_finalize;
|
|
|
|
|
2013-07-29 11:00:15 +00:00
|
|
|
klass->read_current = read_current_dummy;
|
|
|
|
klass->apply_configuration = apply_config_dummy;
|
2013-08-08 11:32:05 +00:00
|
|
|
klass->get_edid_file = get_edid_file_dummy;
|
|
|
|
klass->read_edid = read_edid_dummy;
|
2013-07-29 11:00:15 +00:00
|
|
|
|
2013-07-29 08:12:24 +00:00
|
|
|
signals[CONFIRM_DISPLAY_CHANGE] =
|
|
|
|
g_signal_new ("confirm-display-change",
|
|
|
|
G_TYPE_FROM_CLASS (object_class),
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
0,
|
|
|
|
NULL, NULL, NULL,
|
|
|
|
G_TYPE_NONE, 0);
|
|
|
|
|
2013-07-24 08:39:06 +00:00
|
|
|
g_object_class_override_property (object_class, PROP_POWER_SAVE_MODE, "power-save-mode");
|
2013-07-18 11:09:16 +00:00
|
|
|
}
|
|
|
|
|
2013-07-19 12:39:28 +00:00
|
|
|
static const double known_diagonals[] = {
|
|
|
|
12.1,
|
|
|
|
13.3,
|
|
|
|
15.6
|
|
|
|
};
|
|
|
|
|
|
|
|
static char *
|
|
|
|
diagonal_to_str (double d)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
for (i = 0; i < G_N_ELEMENTS (known_diagonals); i++)
|
|
|
|
{
|
|
|
|
double delta;
|
|
|
|
|
|
|
|
delta = fabs(known_diagonals[i] - d);
|
|
|
|
if (delta < 0.1)
|
|
|
|
return g_strdup_printf ("%0.1lf\"", known_diagonals[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
return g_strdup_printf ("%d\"", (int) (d + 0.5));
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *
|
2013-08-16 15:32:50 +00:00
|
|
|
make_display_name (MetaMonitorManager *manager,
|
|
|
|
MetaOutput *output)
|
2013-07-19 12:39:28 +00:00
|
|
|
{
|
2013-08-16 15:32:50 +00:00
|
|
|
if (g_str_has_prefix (output->name, "LVDS") ||
|
|
|
|
g_str_has_prefix (output->name, "eDP"))
|
|
|
|
return g_strdup (_("Built-in display"));
|
|
|
|
|
2013-07-19 12:39:28 +00:00
|
|
|
if (output->width_mm != -1 && output->height_mm != -1)
|
|
|
|
{
|
|
|
|
double d = sqrt (output->width_mm * output->width_mm +
|
|
|
|
output->height_mm * output->height_mm);
|
|
|
|
char *inches = diagonal_to_str (d / 25.4);
|
2013-08-16 15:32:50 +00:00
|
|
|
char *vendor_name;
|
2013-07-19 12:39:28 +00:00
|
|
|
char *ret;
|
|
|
|
|
2013-08-16 15:32:50 +00:00
|
|
|
if (g_strcmp0 (output->vendor, "unknown") != 0)
|
|
|
|
{
|
|
|
|
if (!manager->pnp_ids)
|
|
|
|
manager->pnp_ids = gnome_pnp_ids_new ();
|
|
|
|
|
|
|
|
vendor_name = gnome_pnp_ids_get_pnp_id (manager->pnp_ids,
|
|
|
|
output->vendor);
|
|
|
|
|
|
|
|
ret = g_strdup_printf ("%s %s", vendor_name, inches);
|
|
|
|
|
|
|
|
g_free (vendor_name);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* TRANSLATORS: this is a monitor name (in case we don't know
|
|
|
|
the vendor), it's Unknown followed by a size in inches,
|
|
|
|
like 'Unknown 15"'
|
|
|
|
*/
|
|
|
|
ret = g_strdup_printf (_("Unknown %s"), inches);
|
|
|
|
}
|
2013-07-19 12:39:28 +00:00
|
|
|
|
|
|
|
g_free (inches);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return g_strdup (output->vendor);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2013-07-23 17:32:17 +00:00
|
|
|
meta_monitor_manager_handle_get_resources (MetaDBusDisplayConfig *skeleton,
|
|
|
|
GDBusMethodInvocation *invocation)
|
2013-07-19 12:39:28 +00:00
|
|
|
{
|
2013-07-23 17:32:17 +00:00
|
|
|
MetaMonitorManager *manager = META_MONITOR_MANAGER (skeleton);
|
2013-08-08 11:32:05 +00:00
|
|
|
MetaMonitorManagerClass *manager_class = META_MONITOR_MANAGER_GET_CLASS (skeleton);
|
2013-07-19 12:39:28 +00:00
|
|
|
GVariantBuilder crtc_builder, output_builder, mode_builder;
|
|
|
|
unsigned int i, j;
|
|
|
|
|
|
|
|
g_variant_builder_init (&crtc_builder, G_VARIANT_TYPE ("a(uxiiiiiuaua{sv})"));
|
2013-07-19 16:47:01 +00:00
|
|
|
g_variant_builder_init (&output_builder, G_VARIANT_TYPE ("a(uxiausauaua{sv})"));
|
2013-07-19 12:39:28 +00:00
|
|
|
g_variant_builder_init (&mode_builder, G_VARIANT_TYPE ("a(uxuud)"));
|
|
|
|
|
|
|
|
for (i = 0; i < manager->n_crtcs; i++)
|
|
|
|
{
|
|
|
|
MetaCRTC *crtc = &manager->crtcs[i];
|
|
|
|
GVariantBuilder transforms;
|
|
|
|
|
|
|
|
g_variant_builder_init (&transforms, G_VARIANT_TYPE ("au"));
|
2013-07-24 08:01:57 +00:00
|
|
|
for (j = 0; j <= WL_OUTPUT_TRANSFORM_FLIPPED_270; j++)
|
|
|
|
if (crtc->all_transforms & (1 << j))
|
|
|
|
g_variant_builder_add (&transforms, "u", j);
|
2013-07-19 12:39:28 +00:00
|
|
|
|
|
|
|
g_variant_builder_add (&crtc_builder, "(uxiiiiiuaua{sv})",
|
|
|
|
i, /* ID */
|
|
|
|
crtc->crtc_id,
|
|
|
|
(int)crtc->rect.x,
|
|
|
|
(int)crtc->rect.y,
|
|
|
|
(int)crtc->rect.width,
|
|
|
|
(int)crtc->rect.height,
|
|
|
|
(int)(crtc->current_mode ? crtc->current_mode - manager->modes : -1),
|
2013-07-24 08:01:57 +00:00
|
|
|
crtc->transform,
|
2013-07-19 12:39:28 +00:00
|
|
|
&transforms,
|
|
|
|
NULL /* properties */);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < manager->n_outputs; i++)
|
|
|
|
{
|
|
|
|
MetaOutput *output = &manager->outputs[i];
|
2013-07-19 16:47:01 +00:00
|
|
|
GVariantBuilder crtcs, modes, clones, properties;
|
2013-08-08 11:32:05 +00:00
|
|
|
GBytes *edid;
|
|
|
|
char *edid_file;
|
2013-07-19 12:39:28 +00:00
|
|
|
|
|
|
|
g_variant_builder_init (&crtcs, G_VARIANT_TYPE ("au"));
|
|
|
|
for (j = 0; j < output->n_possible_crtcs; j++)
|
|
|
|
g_variant_builder_add (&crtcs, "u",
|
|
|
|
(unsigned)(output->possible_crtcs[j] - manager->crtcs));
|
|
|
|
|
|
|
|
g_variant_builder_init (&modes, G_VARIANT_TYPE ("au"));
|
|
|
|
for (j = 0; j < output->n_modes; j++)
|
|
|
|
g_variant_builder_add (&modes, "u",
|
|
|
|
(unsigned)(output->modes[j] - manager->modes));
|
|
|
|
|
2013-07-19 16:47:01 +00:00
|
|
|
g_variant_builder_init (&clones, G_VARIANT_TYPE ("au"));
|
|
|
|
for (j = 0; j < output->n_possible_clones; j++)
|
|
|
|
g_variant_builder_add (&clones, "u",
|
|
|
|
(unsigned)(output->possible_clones[j] - manager->outputs));
|
|
|
|
|
2013-07-19 12:39:28 +00:00
|
|
|
g_variant_builder_init (&properties, G_VARIANT_TYPE ("a{sv}"));
|
|
|
|
g_variant_builder_add (&properties, "{sv}", "vendor",
|
|
|
|
g_variant_new_string (output->vendor));
|
|
|
|
g_variant_builder_add (&properties, "{sv}", "product",
|
|
|
|
g_variant_new_string (output->product));
|
|
|
|
g_variant_builder_add (&properties, "{sv}", "serial",
|
|
|
|
g_variant_new_string (output->serial));
|
2013-08-19 15:37:24 +00:00
|
|
|
g_variant_builder_add (&properties, "{sv}", "width-mm",
|
|
|
|
g_variant_new_int32 (output->width_mm));
|
|
|
|
g_variant_builder_add (&properties, "{sv}", "height-mm",
|
|
|
|
g_variant_new_int32 (output->height_mm));
|
2013-07-19 12:39:28 +00:00
|
|
|
g_variant_builder_add (&properties, "{sv}", "display-name",
|
2013-08-16 15:32:50 +00:00
|
|
|
g_variant_new_take_string (make_display_name (manager, output)));
|
2013-07-25 13:06:09 +00:00
|
|
|
g_variant_builder_add (&properties, "{sv}", "backlight",
|
|
|
|
g_variant_new_int32 (output->backlight));
|
2013-10-17 15:05:59 +00:00
|
|
|
g_variant_builder_add (&properties, "{sv}", "min-backlight-step",
|
|
|
|
g_variant_new_int32 ((output->backlight_max - output->backlight_min) ?
|
|
|
|
100 / (output->backlight_max - output->backlight_min) : -1));
|
2013-07-19 12:39:28 +00:00
|
|
|
g_variant_builder_add (&properties, "{sv}", "primary",
|
|
|
|
g_variant_new_boolean (output->is_primary));
|
|
|
|
g_variant_builder_add (&properties, "{sv}", "presentation",
|
|
|
|
g_variant_new_boolean (output->is_presentation));
|
|
|
|
|
2013-08-08 11:32:05 +00:00
|
|
|
edid_file = manager_class->get_edid_file (manager, output);
|
|
|
|
if (edid_file)
|
|
|
|
{
|
|
|
|
g_variant_builder_add (&properties, "{sv}", "edid-file",
|
|
|
|
g_variant_new_take_string (edid_file));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
edid = manager_class->read_edid (manager, output);
|
|
|
|
|
|
|
|
if (edid)
|
|
|
|
{
|
|
|
|
g_variant_builder_add (&properties, "{sv}", "edid",
|
|
|
|
g_variant_new_from_bytes (G_VARIANT_TYPE ("ay"),
|
|
|
|
edid, TRUE));
|
|
|
|
g_bytes_unref (edid);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-19 16:47:01 +00:00
|
|
|
g_variant_builder_add (&output_builder, "(uxiausauaua{sv})",
|
2013-07-19 12:39:28 +00:00
|
|
|
i, /* ID */
|
|
|
|
output->output_id,
|
|
|
|
(int)(output->crtc ? output->crtc - manager->crtcs : -1),
|
|
|
|
&crtcs,
|
|
|
|
output->name,
|
|
|
|
&modes,
|
2013-07-19 16:47:01 +00:00
|
|
|
&clones,
|
2013-07-19 12:39:28 +00:00
|
|
|
&properties);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < manager->n_modes; i++)
|
|
|
|
{
|
|
|
|
MetaMonitorMode *mode = &manager->modes[i];
|
|
|
|
|
|
|
|
g_variant_builder_add (&mode_builder, "(uxuud)",
|
|
|
|
i, /* ID */
|
|
|
|
mode->mode_id,
|
|
|
|
mode->width,
|
|
|
|
mode->height,
|
|
|
|
(double)mode->refresh_rate);
|
|
|
|
}
|
|
|
|
|
|
|
|
meta_dbus_display_config_complete_get_resources (skeleton,
|
|
|
|
invocation,
|
|
|
|
manager->serial,
|
|
|
|
g_variant_builder_end (&crtc_builder),
|
|
|
|
g_variant_builder_end (&output_builder),
|
2013-07-22 11:31:10 +00:00
|
|
|
g_variant_builder_end (&mode_builder),
|
|
|
|
manager->max_screen_width,
|
|
|
|
manager->max_screen_height);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
output_can_config (MetaOutput *output,
|
|
|
|
MetaCRTC *crtc,
|
|
|
|
MetaMonitorMode *mode)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
gboolean ok = FALSE;
|
|
|
|
|
|
|
|
for (i = 0; i < output->n_possible_crtcs && !ok; i++)
|
|
|
|
ok = output->possible_crtcs[i] == crtc;
|
|
|
|
|
|
|
|
if (!ok)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (mode == NULL)
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
ok = FALSE;
|
|
|
|
for (i = 0; i < output->n_modes && !ok; i++)
|
|
|
|
ok = output->modes[i] == mode;
|
|
|
|
|
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
output_can_clone (MetaOutput *output,
|
|
|
|
MetaOutput *clone)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
gboolean ok = FALSE;
|
|
|
|
|
|
|
|
for (i = 0; i < output->n_possible_clones && !ok; i++)
|
|
|
|
ok = output->possible_clones[i] == clone;
|
|
|
|
|
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
|
2013-07-24 13:35:47 +00:00
|
|
|
void
|
|
|
|
meta_monitor_manager_apply_configuration (MetaMonitorManager *manager,
|
2013-07-24 16:01:31 +00:00
|
|
|
MetaCRTCInfo **crtcs,
|
|
|
|
unsigned int n_crtcs,
|
|
|
|
MetaOutputInfo **outputs,
|
|
|
|
unsigned int n_outputs)
|
2013-07-24 13:35:47 +00:00
|
|
|
{
|
2013-07-29 11:00:15 +00:00
|
|
|
META_MONITOR_MANAGER_GET_CLASS (manager)->apply_configuration (manager,
|
|
|
|
crtcs, n_crtcs,
|
|
|
|
outputs, n_outputs);
|
2013-07-24 13:35:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
save_config_timeout (gpointer user_data)
|
|
|
|
{
|
|
|
|
MetaMonitorManager *manager = user_data;
|
|
|
|
|
2013-07-29 08:12:24 +00:00
|
|
|
meta_monitor_config_restore_previous (manager->config, manager);
|
2013-07-24 13:35:47 +00:00
|
|
|
|
2013-07-29 08:12:24 +00:00
|
|
|
manager->persistent_timeout_id = 0;
|
2013-07-24 13:35:47 +00:00
|
|
|
return G_SOURCE_REMOVE;
|
|
|
|
}
|
|
|
|
|
2013-07-22 11:31:10 +00:00
|
|
|
static gboolean
|
2013-07-23 17:32:17 +00:00
|
|
|
meta_monitor_manager_handle_apply_configuration (MetaDBusDisplayConfig *skeleton,
|
|
|
|
GDBusMethodInvocation *invocation,
|
|
|
|
guint serial,
|
|
|
|
gboolean persistent,
|
|
|
|
GVariant *crtcs,
|
|
|
|
GVariant *outputs)
|
2013-07-22 11:31:10 +00:00
|
|
|
{
|
2013-07-23 17:32:17 +00:00
|
|
|
MetaMonitorManager *manager = META_MONITOR_MANAGER (skeleton);
|
2013-07-22 11:31:10 +00:00
|
|
|
GVariantIter crtc_iter, output_iter, *nested_outputs;
|
2013-07-24 16:01:31 +00:00
|
|
|
GVariant *properties;
|
2013-07-22 11:31:10 +00:00
|
|
|
guint crtc_id;
|
|
|
|
int new_mode, x, y;
|
2013-07-26 13:31:17 +00:00
|
|
|
int new_screen_width, new_screen_height;
|
2013-07-22 11:31:10 +00:00
|
|
|
guint transform;
|
|
|
|
guint output_id;
|
2013-07-24 16:01:31 +00:00
|
|
|
GPtrArray *crtc_infos, *output_infos;
|
2013-07-22 11:31:10 +00:00
|
|
|
|
|
|
|
if (serial != manager->serial)
|
|
|
|
{
|
|
|
|
g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR,
|
|
|
|
G_DBUS_ERROR_ACCESS_DENIED,
|
|
|
|
"The requested configuration is based on stale information");
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2013-07-24 16:01:31 +00:00
|
|
|
crtc_infos = g_ptr_array_new_full (g_variant_n_children (crtcs),
|
|
|
|
(GDestroyNotify) meta_crtc_info_free);
|
|
|
|
output_infos = g_ptr_array_new_full (g_variant_n_children (outputs),
|
|
|
|
(GDestroyNotify) meta_output_info_free);
|
|
|
|
|
2013-07-22 11:31:10 +00:00
|
|
|
/* Validate all arguments */
|
2013-07-26 13:31:17 +00:00
|
|
|
new_screen_width = 0; new_screen_height = 0;
|
2013-07-22 11:31:10 +00:00
|
|
|
g_variant_iter_init (&crtc_iter, crtcs);
|
|
|
|
while (g_variant_iter_loop (&crtc_iter, "(uiiiuaua{sv})",
|
|
|
|
&crtc_id, &new_mode, &x, &y, &transform,
|
|
|
|
&nested_outputs, NULL))
|
|
|
|
{
|
2013-07-24 16:01:31 +00:00
|
|
|
MetaCRTCInfo *crtc_info;
|
2013-07-22 11:31:10 +00:00
|
|
|
MetaOutput *first_output;
|
|
|
|
MetaCRTC *crtc;
|
|
|
|
MetaMonitorMode *mode;
|
|
|
|
guint output_id;
|
|
|
|
|
2013-07-24 16:01:31 +00:00
|
|
|
crtc_info = g_slice_new (MetaCRTCInfo);
|
|
|
|
crtc_info->outputs = g_ptr_array_new ();
|
|
|
|
|
2013-07-22 11:31:10 +00:00
|
|
|
if (crtc_id >= manager->n_crtcs)
|
|
|
|
{
|
|
|
|
g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR,
|
|
|
|
G_DBUS_ERROR_INVALID_ARGS,
|
|
|
|
"Invalid CRTC id");
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
crtc = &manager->crtcs[crtc_id];
|
2013-07-24 16:01:31 +00:00
|
|
|
crtc_info->crtc = crtc;
|
2013-07-22 11:31:10 +00:00
|
|
|
|
|
|
|
if (new_mode != -1 && (new_mode < 0 || (unsigned)new_mode >= manager->n_modes))
|
|
|
|
{
|
|
|
|
g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR,
|
|
|
|
G_DBUS_ERROR_INVALID_ARGS,
|
|
|
|
"Invalid mode id");
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
mode = new_mode != -1 ? &manager->modes[new_mode] : NULL;
|
2013-07-24 16:01:31 +00:00
|
|
|
crtc_info->mode = mode;
|
2013-07-22 11:31:10 +00:00
|
|
|
|
2013-07-24 08:01:57 +00:00
|
|
|
if (mode)
|
2013-07-22 11:31:10 +00:00
|
|
|
{
|
2013-07-24 08:01:57 +00:00
|
|
|
int width, height;
|
|
|
|
|
|
|
|
if (meta_monitor_transform_is_rotated (transform))
|
|
|
|
{
|
|
|
|
width = mode->height;
|
|
|
|
height = mode->width;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
width = mode->width;
|
|
|
|
height = mode->height;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (x < 0 ||
|
|
|
|
x + width > manager->max_screen_width ||
|
|
|
|
y < 0 ||
|
|
|
|
y + height > manager->max_screen_height)
|
|
|
|
{
|
|
|
|
g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR,
|
|
|
|
G_DBUS_ERROR_INVALID_ARGS,
|
|
|
|
"Invalid CRTC geometry");
|
|
|
|
return TRUE;
|
|
|
|
}
|
2013-07-26 13:31:17 +00:00
|
|
|
|
|
|
|
new_screen_width = MAX (new_screen_width, x + width);
|
|
|
|
new_screen_height = MAX (new_screen_height, y + height);
|
|
|
|
crtc_info->x = x;
|
|
|
|
crtc_info->y = y;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
crtc_info->x = 0;
|
|
|
|
crtc_info->y = 0;
|
2013-07-22 11:31:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (transform < WL_OUTPUT_TRANSFORM_NORMAL ||
|
2013-07-24 08:01:57 +00:00
|
|
|
transform > WL_OUTPUT_TRANSFORM_FLIPPED_270 ||
|
|
|
|
((crtc->all_transforms & (1 << transform)) == 0))
|
2013-07-22 11:31:10 +00:00
|
|
|
{
|
|
|
|
g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR,
|
|
|
|
G_DBUS_ERROR_INVALID_ARGS,
|
|
|
|
"Invalid transform");
|
|
|
|
return TRUE;
|
|
|
|
}
|
2013-07-24 16:01:31 +00:00
|
|
|
crtc_info->transform = transform;
|
2013-07-22 11:31:10 +00:00
|
|
|
|
|
|
|
first_output = NULL;
|
|
|
|
while (g_variant_iter_loop (nested_outputs, "u", &output_id))
|
|
|
|
{
|
|
|
|
MetaOutput *output;
|
|
|
|
|
|
|
|
if (output_id >= manager->n_outputs)
|
|
|
|
{
|
|
|
|
g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR,
|
|
|
|
G_DBUS_ERROR_INVALID_ARGS,
|
|
|
|
"Invalid output id");
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
output = &manager->outputs[output_id];
|
|
|
|
|
|
|
|
if (!output_can_config (output, crtc, mode))
|
|
|
|
{
|
|
|
|
g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR,
|
|
|
|
G_DBUS_ERROR_INVALID_ARGS,
|
|
|
|
"Output cannot be assigned to this CRTC or mode");
|
|
|
|
return TRUE;
|
|
|
|
}
|
2013-07-24 16:01:31 +00:00
|
|
|
g_ptr_array_add (crtc_info->outputs, output);
|
2013-07-22 11:31:10 +00:00
|
|
|
|
|
|
|
if (first_output)
|
|
|
|
{
|
|
|
|
if (!output_can_clone (output, first_output))
|
|
|
|
{
|
|
|
|
g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR,
|
|
|
|
G_DBUS_ERROR_INVALID_ARGS,
|
|
|
|
"Outputs cannot be cloned");
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
first_output = output;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!first_output && mode)
|
|
|
|
{
|
|
|
|
g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR,
|
|
|
|
G_DBUS_ERROR_INVALID_ARGS,
|
|
|
|
"Mode specified without outputs?");
|
|
|
|
return TRUE;
|
|
|
|
}
|
2013-07-25 08:57:59 +00:00
|
|
|
|
|
|
|
g_ptr_array_add (crtc_infos, crtc_info);
|
2013-07-22 11:31:10 +00:00
|
|
|
}
|
|
|
|
|
2013-07-26 13:31:17 +00:00
|
|
|
if (new_screen_width == 0 || new_screen_height == 0)
|
|
|
|
{
|
|
|
|
g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR,
|
|
|
|
G_DBUS_ERROR_INVALID_ARGS,
|
|
|
|
"Refusing to disable all outputs");
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2013-07-22 11:31:10 +00:00
|
|
|
g_variant_iter_init (&output_iter, outputs);
|
2013-07-24 16:01:31 +00:00
|
|
|
while (g_variant_iter_loop (&output_iter, "(u@a{sv})", &output_id, &properties))
|
2013-07-22 11:31:10 +00:00
|
|
|
{
|
2013-07-24 16:01:31 +00:00
|
|
|
MetaOutputInfo *output_info;
|
|
|
|
gboolean primary, presentation;
|
|
|
|
|
2013-07-22 11:31:10 +00:00
|
|
|
if (output_id >= manager->n_outputs)
|
|
|
|
{
|
|
|
|
g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR,
|
|
|
|
G_DBUS_ERROR_INVALID_ARGS,
|
|
|
|
"Invalid output id");
|
|
|
|
return TRUE;
|
|
|
|
}
|
2013-07-24 16:01:31 +00:00
|
|
|
|
|
|
|
output_info = g_slice_new0 (MetaOutputInfo);
|
|
|
|
output_info->output = &manager->outputs[output_id];
|
|
|
|
|
|
|
|
if (g_variant_lookup (properties, "primary", "b", &primary))
|
|
|
|
output_info->is_primary = primary;
|
|
|
|
|
|
|
|
if (g_variant_lookup (properties, "presentation", "b", &presentation))
|
|
|
|
output_info->is_presentation = presentation;
|
2013-07-25 08:57:59 +00:00
|
|
|
|
|
|
|
g_ptr_array_add (output_infos, output_info);
|
2013-07-22 11:31:10 +00:00
|
|
|
}
|
|
|
|
|
2013-07-24 13:35:47 +00:00
|
|
|
/* If we were in progress of making a persistent change and we see a
|
|
|
|
new request, it's likely that the old one failed in some way, so
|
2013-07-29 08:12:24 +00:00
|
|
|
don't save it, but also don't queue for restoring it.
|
2013-07-24 13:35:47 +00:00
|
|
|
*/
|
|
|
|
if (manager->persistent_timeout_id && persistent)
|
|
|
|
{
|
|
|
|
g_source_remove (manager->persistent_timeout_id);
|
|
|
|
manager->persistent_timeout_id = 0;
|
|
|
|
}
|
2013-07-23 08:07:52 +00:00
|
|
|
|
2013-07-24 16:01:31 +00:00
|
|
|
meta_monitor_manager_apply_configuration (manager,
|
|
|
|
(MetaCRTCInfo**)crtc_infos->pdata,
|
|
|
|
crtc_infos->len,
|
|
|
|
(MetaOutputInfo**)output_infos->pdata,
|
|
|
|
output_infos->len);
|
|
|
|
|
|
|
|
g_ptr_array_unref (crtc_infos);
|
|
|
|
g_ptr_array_unref (output_infos);
|
2013-07-24 13:35:47 +00:00
|
|
|
|
|
|
|
/* Update MetaMonitorConfig data structures immediately so that we
|
2013-07-29 08:12:24 +00:00
|
|
|
don't revert the change at the next XRandR event, then ask the plugin
|
|
|
|
manager (through MetaScreen) to confirm the display change with the
|
|
|
|
appropriate UI. Then wait 20 seconds and if not confirmed, revert the
|
|
|
|
configuration.
|
2013-07-24 13:35:47 +00:00
|
|
|
*/
|
|
|
|
meta_monitor_config_update_current (manager->config, manager);
|
|
|
|
if (persistent)
|
2013-07-29 08:12:24 +00:00
|
|
|
{
|
|
|
|
manager->persistent_timeout_id = g_timeout_add_seconds (20, save_config_timeout, manager);
|
|
|
|
g_signal_emit (manager, signals[CONFIRM_DISPLAY_CHANGE], 0);
|
|
|
|
}
|
2013-07-22 11:31:10 +00:00
|
|
|
|
|
|
|
meta_dbus_display_config_complete_apply_configuration (skeleton, invocation);
|
|
|
|
return TRUE;
|
|
|
|
}
|
2013-07-19 12:39:28 +00:00
|
|
|
|
2013-07-29 08:12:24 +00:00
|
|
|
void
|
|
|
|
meta_monitor_manager_confirm_configuration (MetaMonitorManager *manager,
|
|
|
|
gboolean ok)
|
|
|
|
{
|
|
|
|
if (!manager->persistent_timeout_id)
|
|
|
|
{
|
|
|
|
/* too late */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_source_remove (manager->persistent_timeout_id);
|
|
|
|
manager->persistent_timeout_id = 0;
|
|
|
|
|
|
|
|
if (ok)
|
|
|
|
meta_monitor_config_make_persistent (manager->config);
|
|
|
|
else
|
|
|
|
meta_monitor_config_restore_previous (manager->config, manager);
|
|
|
|
}
|
|
|
|
|
2013-07-25 13:06:09 +00:00
|
|
|
static gboolean
|
|
|
|
meta_monitor_manager_handle_change_backlight (MetaDBusDisplayConfig *skeleton,
|
|
|
|
GDBusMethodInvocation *invocation,
|
|
|
|
guint serial,
|
|
|
|
guint output_id,
|
|
|
|
gint value)
|
|
|
|
{
|
|
|
|
MetaMonitorManager *manager = META_MONITOR_MANAGER (skeleton);
|
|
|
|
MetaOutput *output;
|
|
|
|
|
|
|
|
if (serial != manager->serial)
|
|
|
|
{
|
|
|
|
g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR,
|
|
|
|
G_DBUS_ERROR_ACCESS_DENIED,
|
|
|
|
"The requested configuration is based on stale information");
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (output_id >= manager->n_outputs)
|
|
|
|
{
|
|
|
|
g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR,
|
|
|
|
G_DBUS_ERROR_INVALID_ARGS,
|
|
|
|
"Invalid output id");
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
output = &manager->outputs[output_id];
|
|
|
|
|
|
|
|
if (value < 0 || value > 100)
|
|
|
|
{
|
|
|
|
g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR,
|
|
|
|
G_DBUS_ERROR_INVALID_ARGS,
|
|
|
|
"Invalid backlight value");
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (output->backlight == -1 ||
|
|
|
|
(output->backlight_min == 0 && output->backlight_max == 0))
|
|
|
|
{
|
|
|
|
g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR,
|
|
|
|
G_DBUS_ERROR_INVALID_ARGS,
|
|
|
|
"Output does not support changing backlight");
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2013-07-29 11:00:15 +00:00
|
|
|
META_MONITOR_MANAGER_GET_CLASS (manager)->change_backlight (manager, output, value);
|
2013-07-25 13:06:09 +00:00
|
|
|
|
2013-08-26 15:27:33 +00:00
|
|
|
meta_dbus_display_config_complete_change_backlight (skeleton, invocation, output->backlight);
|
2013-07-25 13:06:09 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2013-07-26 13:57:34 +00:00
|
|
|
static gboolean
|
|
|
|
meta_monitor_manager_handle_get_crtc_gamma (MetaDBusDisplayConfig *skeleton,
|
|
|
|
GDBusMethodInvocation *invocation,
|
|
|
|
guint serial,
|
|
|
|
guint crtc_id)
|
|
|
|
{
|
|
|
|
MetaMonitorManager *manager = META_MONITOR_MANAGER (skeleton);
|
2013-07-29 11:00:15 +00:00
|
|
|
MetaMonitorManagerClass *klass;
|
2013-07-26 13:57:34 +00:00
|
|
|
MetaCRTC *crtc;
|
|
|
|
gsize size;
|
|
|
|
unsigned short *red;
|
|
|
|
unsigned short *green;
|
|
|
|
unsigned short *blue;
|
|
|
|
GBytes *red_bytes, *green_bytes, *blue_bytes;
|
|
|
|
GVariant *red_v, *green_v, *blue_v;
|
|
|
|
|
|
|
|
if (serial != manager->serial)
|
|
|
|
{
|
|
|
|
g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR,
|
|
|
|
G_DBUS_ERROR_ACCESS_DENIED,
|
|
|
|
"The requested configuration is based on stale information");
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (crtc_id >= manager->n_crtcs)
|
|
|
|
{
|
|
|
|
g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR,
|
|
|
|
G_DBUS_ERROR_INVALID_ARGS,
|
|
|
|
"Invalid crtc id");
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
crtc = &manager->crtcs[crtc_id];
|
|
|
|
|
2013-07-29 11:00:15 +00:00
|
|
|
klass = META_MONITOR_MANAGER_GET_CLASS (manager);
|
|
|
|
if (klass->get_crtc_gamma)
|
|
|
|
klass->get_crtc_gamma (manager, crtc, &size, &red, &green, &blue);
|
2013-07-26 13:57:34 +00:00
|
|
|
else
|
2013-07-29 11:00:15 +00:00
|
|
|
{
|
|
|
|
size = 0;
|
|
|
|
red = green = blue = NULL;
|
|
|
|
}
|
2013-07-26 13:57:34 +00:00
|
|
|
|
|
|
|
red_bytes = g_bytes_new_take (red, size * sizeof (unsigned short));
|
|
|
|
green_bytes = g_bytes_new_take (green, size * sizeof (unsigned short));
|
|
|
|
blue_bytes = g_bytes_new_take (blue, size * sizeof (unsigned short));
|
|
|
|
|
|
|
|
red_v = g_variant_new_from_bytes (G_VARIANT_TYPE ("aq"), red_bytes, TRUE);
|
|
|
|
green_v = g_variant_new_from_bytes (G_VARIANT_TYPE ("aq"), green_bytes, TRUE);
|
|
|
|
blue_v = g_variant_new_from_bytes (G_VARIANT_TYPE ("aq"), blue_bytes, TRUE);
|
|
|
|
|
|
|
|
meta_dbus_display_config_complete_get_crtc_gamma (skeleton, invocation,
|
|
|
|
red_v, green_v, blue_v);
|
|
|
|
|
|
|
|
g_bytes_unref (red_bytes);
|
|
|
|
g_bytes_unref (green_bytes);
|
|
|
|
g_bytes_unref (blue_bytes);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
meta_monitor_manager_handle_set_crtc_gamma (MetaDBusDisplayConfig *skeleton,
|
|
|
|
GDBusMethodInvocation *invocation,
|
|
|
|
guint serial,
|
|
|
|
guint crtc_id,
|
|
|
|
GVariant *red_v,
|
|
|
|
GVariant *green_v,
|
|
|
|
GVariant *blue_v)
|
|
|
|
{
|
|
|
|
MetaMonitorManager *manager = META_MONITOR_MANAGER (skeleton);
|
2013-07-29 11:00:15 +00:00
|
|
|
MetaMonitorManagerClass *klass;
|
2013-07-26 13:57:34 +00:00
|
|
|
MetaCRTC *crtc;
|
|
|
|
gsize size, dummy;
|
|
|
|
unsigned short *red;
|
|
|
|
unsigned short *green;
|
|
|
|
unsigned short *blue;
|
|
|
|
GBytes *red_bytes, *green_bytes, *blue_bytes;
|
|
|
|
|
|
|
|
if (serial != manager->serial)
|
|
|
|
{
|
|
|
|
g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR,
|
|
|
|
G_DBUS_ERROR_ACCESS_DENIED,
|
|
|
|
"The requested configuration is based on stale information");
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (crtc_id >= manager->n_crtcs)
|
|
|
|
{
|
|
|
|
g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR,
|
|
|
|
G_DBUS_ERROR_INVALID_ARGS,
|
|
|
|
"Invalid crtc id");
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
crtc = &manager->crtcs[crtc_id];
|
|
|
|
|
|
|
|
red_bytes = g_variant_get_data_as_bytes (red_v);
|
|
|
|
green_bytes = g_variant_get_data_as_bytes (green_v);
|
|
|
|
blue_bytes = g_variant_get_data_as_bytes (blue_v);
|
|
|
|
|
|
|
|
size = g_bytes_get_size (red_bytes) / sizeof (unsigned short);
|
|
|
|
red = (unsigned short*) g_bytes_get_data (red_bytes, &dummy);
|
|
|
|
green = (unsigned short*) g_bytes_get_data (green_bytes, &dummy);
|
|
|
|
blue = (unsigned short*) g_bytes_get_data (blue_bytes, &dummy);
|
|
|
|
|
2013-07-29 11:00:15 +00:00
|
|
|
klass = META_MONITOR_MANAGER_GET_CLASS (manager);
|
|
|
|
if (klass->set_crtc_gamma)
|
|
|
|
klass->set_crtc_gamma (manager, crtc, size, red, green, blue);
|
2013-07-26 13:57:34 +00:00
|
|
|
|
|
|
|
meta_dbus_display_config_complete_set_crtc_gamma (skeleton, invocation);
|
|
|
|
|
|
|
|
g_bytes_unref (red_bytes);
|
|
|
|
g_bytes_unref (green_bytes);
|
|
|
|
g_bytes_unref (blue_bytes);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2013-07-23 17:32:17 +00:00
|
|
|
static void
|
|
|
|
meta_monitor_manager_display_config_init (MetaDBusDisplayConfigIface *iface)
|
|
|
|
{
|
|
|
|
iface->handle_get_resources = meta_monitor_manager_handle_get_resources;
|
|
|
|
iface->handle_apply_configuration = meta_monitor_manager_handle_apply_configuration;
|
2013-07-25 13:06:09 +00:00
|
|
|
iface->handle_change_backlight = meta_monitor_manager_handle_change_backlight;
|
2013-07-26 13:57:34 +00:00
|
|
|
iface->handle_get_crtc_gamma = meta_monitor_manager_handle_get_crtc_gamma;
|
|
|
|
iface->handle_set_crtc_gamma = meta_monitor_manager_handle_set_crtc_gamma;
|
2013-07-23 17:32:17 +00:00
|
|
|
}
|
|
|
|
|
2013-07-19 12:39:28 +00:00
|
|
|
static void
|
|
|
|
on_bus_acquired (GDBusConnection *connection,
|
|
|
|
const char *name,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
MetaMonitorManager *manager = user_data;
|
|
|
|
|
2013-07-23 17:32:17 +00:00
|
|
|
g_dbus_interface_skeleton_export (G_DBUS_INTERFACE_SKELETON (manager),
|
2013-07-19 12:39:28 +00:00
|
|
|
connection,
|
|
|
|
"/org/gnome/Mutter/DisplayConfig",
|
|
|
|
NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
on_name_acquired (GDBusConnection *connection,
|
|
|
|
const char *name,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
meta_topic (META_DEBUG_DBUS, "Acquired name %s\n", name);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
on_name_lost (GDBusConnection *connection,
|
|
|
|
const char *name,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
meta_topic (META_DEBUG_DBUS, "Lost or failed to acquire name %s\n", name);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
initialize_dbus_interface (MetaMonitorManager *manager)
|
|
|
|
{
|
|
|
|
manager->dbus_name_id = g_bus_own_name (G_BUS_TYPE_SESSION,
|
|
|
|
"org.gnome.Mutter.DisplayConfig",
|
|
|
|
G_BUS_NAME_OWNER_FLAGS_ALLOW_REPLACEMENT |
|
|
|
|
(meta_get_replace_current_wm () ?
|
|
|
|
G_BUS_NAME_OWNER_FLAGS_REPLACE : 0),
|
|
|
|
on_bus_acquired,
|
|
|
|
on_name_acquired,
|
|
|
|
on_name_lost,
|
|
|
|
g_object_ref (manager),
|
|
|
|
g_object_unref);
|
|
|
|
}
|
|
|
|
|
|
|
|
static MetaMonitorManager *global_monitor_manager;
|
2013-07-18 11:09:16 +00:00
|
|
|
|
|
|
|
void
|
2013-07-29 11:00:15 +00:00
|
|
|
meta_monitor_manager_initialize (void)
|
2013-07-18 11:09:16 +00:00
|
|
|
{
|
2013-07-29 11:00:15 +00:00
|
|
|
global_monitor_manager = meta_monitor_manager_new ();
|
2013-07-18 11:09:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
MetaMonitorManager *
|
|
|
|
meta_monitor_manager_get (void)
|
|
|
|
{
|
2013-07-19 12:39:28 +00:00
|
|
|
g_assert (global_monitor_manager != NULL);
|
2013-07-18 11:09:16 +00:00
|
|
|
|
2013-07-19 12:39:28 +00:00
|
|
|
return global_monitor_manager;
|
2013-07-18 11:09:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
MetaMonitorInfo *
|
|
|
|
meta_monitor_manager_get_monitor_infos (MetaMonitorManager *manager,
|
2013-07-24 13:35:47 +00:00
|
|
|
unsigned int *n_infos)
|
2013-07-18 11:09:16 +00:00
|
|
|
{
|
|
|
|
*n_infos = manager->n_monitor_infos;
|
|
|
|
return manager->monitor_infos;
|
|
|
|
}
|
|
|
|
|
|
|
|
MetaOutput *
|
|
|
|
meta_monitor_manager_get_outputs (MetaMonitorManager *manager,
|
2013-07-24 13:35:47 +00:00
|
|
|
unsigned int *n_outputs)
|
2013-07-18 11:09:16 +00:00
|
|
|
{
|
|
|
|
*n_outputs = manager->n_outputs;
|
|
|
|
return manager->outputs;
|
|
|
|
}
|
|
|
|
|
2013-07-24 16:01:31 +00:00
|
|
|
void
|
|
|
|
meta_monitor_manager_get_resources (MetaMonitorManager *manager,
|
|
|
|
MetaMonitorMode **modes,
|
|
|
|
unsigned int *n_modes,
|
|
|
|
MetaCRTC **crtcs,
|
|
|
|
unsigned int *n_crtcs,
|
|
|
|
MetaOutput **outputs,
|
|
|
|
unsigned int *n_outputs)
|
|
|
|
{
|
2013-09-05 14:45:41 +00:00
|
|
|
if (modes)
|
|
|
|
{
|
|
|
|
*modes = manager->modes;
|
|
|
|
*n_modes = manager->n_modes;
|
|
|
|
}
|
|
|
|
if (crtcs)
|
|
|
|
{
|
|
|
|
*crtcs = manager->crtcs;
|
|
|
|
*n_crtcs = manager->n_crtcs;
|
|
|
|
}
|
|
|
|
if (outputs)
|
|
|
|
{
|
|
|
|
*outputs = manager->outputs;
|
|
|
|
*n_outputs = manager->n_outputs;
|
|
|
|
}
|
2013-07-24 16:01:31 +00:00
|
|
|
}
|
|
|
|
|
2013-07-18 11:09:16 +00:00
|
|
|
int
|
|
|
|
meta_monitor_manager_get_primary_index (MetaMonitorManager *manager)
|
|
|
|
{
|
|
|
|
return manager->primary_monitor_index;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-07-22 16:57:12 +00:00
|
|
|
meta_monitor_manager_get_screen_size (MetaMonitorManager *manager,
|
|
|
|
int *width,
|
|
|
|
int *height)
|
|
|
|
{
|
|
|
|
*width = manager->screen_width;
|
|
|
|
*height = manager->screen_height;
|
|
|
|
}
|
|
|
|
|
2013-07-25 08:57:59 +00:00
|
|
|
void
|
|
|
|
meta_monitor_manager_get_screen_limits (MetaMonitorManager *manager,
|
|
|
|
int *width,
|
|
|
|
int *height)
|
|
|
|
{
|
|
|
|
*width = manager->max_screen_width;
|
|
|
|
*height = manager->max_screen_height;
|
|
|
|
}
|
|
|
|
|
2013-09-02 13:04:05 +00:00
|
|
|
void
|
|
|
|
meta_monitor_manager_rebuild_derived (MetaMonitorManager *manager)
|
2013-07-23 08:07:52 +00:00
|
|
|
{
|
|
|
|
MetaMonitorInfo *old_monitor_infos;
|
|
|
|
|
|
|
|
old_monitor_infos = manager->monitor_infos;
|
|
|
|
|
2013-07-25 08:57:59 +00:00
|
|
|
if (manager->in_init)
|
|
|
|
return;
|
|
|
|
|
2013-07-23 08:07:52 +00:00
|
|
|
make_logical_config (manager);
|
|
|
|
|
2013-08-20 11:25:42 +00:00
|
|
|
g_signal_emit_by_name (manager, "monitors-changed");
|
2013-07-23 08:07:52 +00:00
|
|
|
|
|
|
|
g_free (old_monitor_infos);
|
|
|
|
}
|
|
|
|
|
2013-07-22 16:57:12 +00:00
|
|
|
gboolean
|
|
|
|
meta_monitor_manager_handle_xevent (MetaMonitorManager *manager,
|
|
|
|
XEvent *event)
|
2013-07-18 11:09:16 +00:00
|
|
|
{
|
2013-07-29 11:00:15 +00:00
|
|
|
MetaMonitorManagerClass *klass;
|
2013-07-18 11:09:16 +00:00
|
|
|
|
2013-07-29 11:00:15 +00:00
|
|
|
klass = META_MONITOR_MANAGER_GET_CLASS (manager);
|
|
|
|
if (klass->handle_xevent)
|
2013-09-02 13:04:05 +00:00
|
|
|
return klass->handle_xevent (manager, event);
|
2013-07-29 11:00:15 +00:00
|
|
|
else
|
2013-07-22 16:57:12 +00:00
|
|
|
return FALSE;
|
2013-07-18 11:09:16 +00:00
|
|
|
}
|
|
|
|
|