summaryrefslogtreecommitdiff
path: root/gdk/quartz/gdkgeometry-quartz.c
blob: 7e4ec5eec1933951480a2815299dddae4660ac53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/* gdkgeometry-quartz.c
 *
 * Copyright (C) 2005 Imendio AB
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 * Boston, MA 02111-1307, USA.
 */

#include <config.h>

#include "gdkprivate-quartz.h"

void
gdk_window_scroll (GdkWindow *window,
                   gint       dx,
                   gint       dy)
{
  NSRect visible_nsrect;
  GdkRectangle visible_rect, scrolled_rect;
  GdkRegion *visible_region, *scrolled_region;
  GdkRectangle *rects;
  gint n_rects, i;
  GdkWindowObject *private = GDK_WINDOW_OBJECT (window);
  GdkWindowImplQuartz *impl = GDK_WINDOW_IMPL_QUARTZ (private->impl);
  GList *list;

  g_return_if_fail (GDK_IS_WINDOW (window));

  /* Move the current invalid region */
  if (private->update_area)
    gdk_region_offset (private->update_area, dx, dy);

  visible_nsrect = [impl->view visibleRect];

  visible_rect.x = visible_nsrect.origin.x;
  visible_rect.y = visible_nsrect.origin.y;
  visible_rect.width = visible_nsrect.size.width;
  visible_rect.height = visible_nsrect.size.height;
  
  scrolled_rect = visible_rect;
  scrolled_rect.x += dx;
  scrolled_rect.y += dy;
  
  gdk_rectangle_intersect (&visible_rect, &scrolled_rect, &scrolled_rect);
  
  visible_region = gdk_region_rectangle (&visible_rect);
  scrolled_region = gdk_region_rectangle (&scrolled_rect);

  gdk_region_subtract (visible_region, scrolled_region);

  [impl->view scrollRect:[impl->view bounds] by:NSMakeSize(dx, dy)];

  gdk_region_get_rectangles (visible_region, &rects, &n_rects);
  for (i = 0; i < n_rects; i++)
    [impl->view setNeedsDisplayInRect:NSMakeRect (rects[i].x, rects[i].y, rects[i].width, rects[i].height)];
  
  g_free (rects);

  gdk_region_destroy (visible_region);
  gdk_region_destroy (scrolled_region);

  /* Move child windows */
  for (list = private->children; list; list = list->next)
    {
      GdkWindowObject *child = GDK_WINDOW_OBJECT (list->data);

      gdk_window_move (list->data,
		       child->x + dx,
		       child->y + dy);
    }
}

void
gdk_window_move_region (GdkWindow       *window,
                        const GdkRegion *region,
                        gint             dx,
                        gint             dy)
{
  /* FIXME: Implement */
}