gnome-control-center r8728 - branches/randr-12/capplets/display
- From: federico svn gnome org
- To: svn-commits-list gnome org
- Subject: gnome-control-center r8728 - branches/randr-12/capplets/display
- Date: Thu, 29 May 2008 18:05:30 +0000 (UTC)
Author: federico
Date: Thu May 29 18:05:30 2008
New Revision: 8728
URL: http://svn.gnome.org/viewvc/gnome-control-center?rev=8728&view=rev
Log:
Check if the X server supports the Virtual size we need
Signed-off-by: Federico Mena Quintero <federico novell com>
Modified:
branches/randr-12/capplets/display/xrandr-capplet.c
Modified: branches/randr-12/capplets/display/xrandr-capplet.c
==============================================================================
--- branches/randr-12/capplets/display/xrandr-capplet.c (original)
+++ branches/randr-12/capplets/display/xrandr-capplet.c Thu May 29 18:05:30 2008
@@ -1468,12 +1468,57 @@
}
static void
+find_required_virtual_size (Configuration *config, int *ret_width, int *ret_height)
+{
+ int i;
+ int width, height;
+
+ width = height = 0;
+
+ for (i = 0; config->outputs[i] != NULL; i++)
+ {
+ Output *output;
+
+ output = config->outputs[i];
+
+ if (output->on)
+ {
+ width = MAX (width, output->x + output->width);
+ height = MAX (height, output->y + output->height);
+ }
+ }
+
+ *ret_width = width;
+ *ret_height = height;
+}
+
+static void
+check_required_virtual_size (App *app)
+{
+ int req_width, req_height;
+ int min_width, max_width;
+ int min_height, max_height;
+
+ find_required_virtual_size (app->current_configuration, &req_width, &req_height);
+
+ rw_screen_get_ranges (app->screen, &min_width, &max_width, &min_height, &max_height);
+
+ if (!(min_width <= req_width && req_width <= max_width
+ && min_height <= req_height && req_height <= max_height))
+ {
+ g_print ("Your X server sucks because it doesn't support the size I need\n");
+ }
+}
+
+static void
apply (App *app)
{
GError *err = NULL;
configuration_sanitize (app->current_configuration);
+ check_required_virtual_size (app);
+
foo_scroll_area_invalidate (FOO_SCROLL_AREA (app->area));
if (configuration_save (app->current_configuration, &err))
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]