~canonical-dx-team/ubuntu/maverick/gtk+2.0/menuproxy

« back to all changes in this revision

Viewing changes to gdk/gdkregion-generic.h

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2007-05-04 12:24:25 UTC
  • mfrom: (1.1.21 upstream)
  • Revision ID: james.westby@ubuntu.com-20070504122425-0m8midgzrp40y8w2
Tags: 2.10.12-1ubuntu1
* Sync with Debian
* New upstream version:
  Fixed bugs:
  - 379414 file chooser warnings when changing path in the entry
  - 418585 GtkFileChooserDefault sizing code is not DPI independent
  - 419568 Crash in search if start with special letter
  - 435062 build dies with icon cache validation
  - 379399 Segfault to call gtk_print_operation_run twice.
  - 387889 cups backend has problems when there are too many printers
  - 418531 invalid read to gtkicontheme.c gtk_icon_theme_lookup_icon...
  - 423916 crash in color scheme code
  - 424042 Segmentation fault while quickly pressing Alt+arrows
  - 415260 Protect against negative indices when setting values in G...
  - 419171 XGetVisualInfo() may not set nxvisuals
  - 128852 Gdk cursors don't look good on win32
  - 344657 Ctrl-H doesn't toggle "Show Hidden Files" setting
  - 345345 PrintOperation::paginate is not emitted for class handler
  - 347567 GtkPrintOperation::end-print is not emitted if it's cance...
  - 369112 gtk_ui_manager_add_ui should accept unnamed separator
  - 392015 Selected menu item invisible on Windows Vista
  - 399253 MS-Windows Theme Bottom Tab placement rendering glitches
  - 399425 gtk_input_dialog_fill_axes() adds child to gtkscrolledwin...
  - 403251 [patch] little memory leak in GtkPrintJob
  - 403267 [patch] memory leak in GtkPageSetupUnixDialog
  - 403470 MS-Windows Theme tab placement other than on top leaks a ...
  - 404506 Windows system fonts that have multi-byte font names cann...
  - 405089 Incorrect window placement for GtkEventBox private window
  - 405515 Minor leak in gtkfilesystemmodel.c
  - 405539 gdk_pixbuf_save() for PNG saver can return FALSE without ...
  - 415681 gdk_window_clear_area includes an extra line and column o...
  - 418219 GtkRecentChooser should apply filter before sorting and c...
  - 418403 Scroll to printer after selecting it from settings
  - 421985 _gtk_print_operation_platform_backend_launch_preview
  - 421990 gtk_print_job_get_surface
  - 421993 gtk_print_operation_init
  - 423064 Conditional jump or move depends on uninitialised value(s...
  - 423722 Fix printing header in gtk-demo
  - 424168 gtk_print_operation_run on async preview
  - 425655 Don't install gtk+-unix-print-2.0.pc on non-UNIX platforms
  - 425786 GDK segfaults if XineramaQueryScreens fails
  - 428665 Lpr Backend gets stuck in infinite loop during gtk_enumer...
  - 429902 GtkPrintOperation leaks cairo contextes
  - 431997 First delay of GdkPixbufAnimationIter is wrong
  - 433242 Inconsistent scroll arrow position calculations
  - 433972 Placing gtk.Expander inside a gtk.TextView() changes gtk....
  - 434261 _gtk_toolbar_elide_underscores incorrectly handles some s...
  - 383354 ctrl-L should make 'Location' entry disappear
  - 418673 gtk_recent_manager_add_item
  - 429732 gtk_accel_group_finalize accesses invalid memory
  - 435028 WM_CLIENT_LEADER is wrong on the leader_window
  - 431067 Background of the header window is not updated
  - 338843 add recent files support inside the ui manager
  - 148535 add drop shadow to menus, tooltips, etc. under Windows XP
* debian/control.in:
  - Conflicts on ubuntulooks (<= 0.9.11-1)
* debian/patches/15_default-fallback-icon-theme.patch:
  - patch from Debian, fallback on gnome icon theme

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* $TOG: region.h /main/9 1998/02/06 17:50:30 kaleb $ */
 
2
/************************************************************************
 
3
 
 
4
Copyright 1987, 1998  The Open Group
 
5
 
 
6
All Rights Reserved.
 
7
 
 
8
The above copyright notice and this permission notice shall be included in
 
9
all copies or substantial portions of the Software.
 
10
 
 
11
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 
12
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 
13
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
 
14
OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
 
15
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 
16
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 
17
 
 
18
Except as contained in this notice, the name of The Open Group shall not be
 
19
used in advertising or otherwise to promote the sale, use or other dealings
 
20
in this Software without prior written authorization from The Open Group.
 
21
 
 
22
 
 
23
Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts.
 
24
 
 
25
                        All Rights Reserved
 
26
 
 
27
Permission to use, copy, modify, and distribute this software and its 
 
28
documentation for any purpose and without fee is hereby granted, 
 
29
provided that the above copyright notice appear in all copies and that
 
30
both that copyright notice and this permission notice appear in 
 
31
supporting documentation, and that the name of Digital not be
 
32
used in advertising or publicity pertaining to distribution of the
 
33
software without specific, written prior permission.  
 
34
 
 
35
DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
 
36
ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
 
37
DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
 
38
ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
 
39
WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
 
40
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
 
41
SOFTWARE.
 
42
 
 
43
************************************************************************/
 
44
 
 
45
#ifndef __GDK_REGION_GENERIC_H__
 
46
#define __GDK_REGION_GENERIC_H__
 
47
 
 
48
typedef GdkSegment GdkRegionBox;
 
49
 
 
50
/* 
 
51
 *   clip region
 
52
 */
 
53
 
 
54
struct _GdkRegion
 
55
{
 
56
  long size;
 
57
  long numRects;
 
58
  GdkRegionBox *rects;
 
59
  GdkRegionBox extents;
 
60
};
 
61
 
 
62
/*  1 if two BOXs overlap.
 
63
 *  0 if two BOXs do not overlap.
 
64
 *  Remember, x2 and y2 are not in the region 
 
65
 */
 
66
#define EXTENTCHECK(r1, r2) \
 
67
        ((r1)->x2 > (r2)->x1 && \
 
68
         (r1)->x1 < (r2)->x2 && \
 
69
         (r1)->y2 > (r2)->y1 && \
 
70
         (r1)->y1 < (r2)->y2)
 
71
 
 
72
/*
 
73
 *  update region extents
 
74
 */
 
75
#define EXTENTS(r,idRect){\
 
76
            if((r)->x1 < (idRect)->extents.x1)\
 
77
              (idRect)->extents.x1 = (r)->x1;\
 
78
            if((r)->y1 < (idRect)->extents.y1)\
 
79
              (idRect)->extents.y1 = (r)->y1;\
 
80
            if((r)->x2 > (idRect)->extents.x2)\
 
81
              (idRect)->extents.x2 = (r)->x2;\
 
82
            if((r)->y2 > (idRect)->extents.y2)\
 
83
              (idRect)->extents.y2 = (r)->y2;\
 
84
        }
 
85
 
 
86
#define GROWREGION(reg, nRects) {                                          \
 
87
          if ((nRects) == 0) {                                             \
 
88
            if ((reg)->rects != &(reg)->extents) {                         \
 
89
              g_free ((reg)->rects);                                       \
 
90
              (reg)->rects = &(reg)->extents;                              \
 
91
            }                                                              \
 
92
          }                                                                \
 
93
          else if ((reg)->rects == &(reg)->extents) {                      \
 
94
            (reg)->rects = g_new (GdkRegionBox, (nRects));                 \
 
95
            (reg)->rects[0] = (reg)->extents;                              \
 
96
          }                                                                \
 
97
          else                                                             \
 
98
            (reg)->rects = g_renew (GdkRegionBox, (reg)->rects, (nRects)); \
 
99
          (reg)->size = (nRects);                                          \
 
100
       }                                 
 
101
 
 
102
/*
 
103
 *   Check to see if there is enough memory in the present region.
 
104
 */
 
105
#define MEMCHECK(reg, rect, firstrect){                                          \
 
106
        if ((reg)->numRects >= ((reg)->size - 1)) {                              \
 
107
          GROWREGION(reg,2*(reg)->size);                                         \
 
108
          (rect) = &(firstrect)[(reg)->numRects];                                \
 
109
         }                                                                       \
 
110
       }
 
111
 
 
112
/*  this routine checks to see if the previous rectangle is the same
 
113
 *  or subsumes the new rectangle to add.
 
114
 */
 
115
 
 
116
#define CHECK_PREVIOUS(Reg, R, Rx1, Ry1, Rx2, Ry2)\
 
117
               (!(((Reg)->numRects > 0)&&\
 
118
                  ((R-1)->y1 == (Ry1)) &&\
 
119
                  ((R-1)->y2 == (Ry2)) &&\
 
120
                  ((R-1)->x1 <= (Rx1)) &&\
 
121
                  ((R-1)->x2 >= (Rx2))))
 
122
 
 
123
/*  add a rectangle to the given Region */
 
124
#define ADDRECT(reg, r, rx1, ry1, rx2, ry2){\
 
125
    if (((rx1) < (rx2)) && ((ry1) < (ry2)) &&\
 
126
        CHECK_PREVIOUS((reg), (r), (rx1), (ry1), (rx2), (ry2))){\
 
127
              (r)->x1 = (rx1);\
 
128
              (r)->y1 = (ry1);\
 
129
              (r)->x2 = (rx2);\
 
130
              (r)->y2 = (ry2);\
 
131
              EXTENTS((r), (reg));\
 
132
              (reg)->numRects++;\
 
133
              (r)++;\
 
134
            }\
 
135
        }
 
136
 
 
137
 
 
138
 
 
139
/*  add a rectangle to the given Region */
 
140
#define ADDRECTNOX(reg, r, rx1, ry1, rx2, ry2){\
 
141
            if ((rx1 < rx2) && (ry1 < ry2) &&\
 
142
                CHECK_PREVIOUS((reg), (r), (rx1), (ry1), (rx2), (ry2))){\
 
143
              (r)->x1 = (rx1);\
 
144
              (r)->y1 = (ry1);\
 
145
              (r)->x2 = (rx2);\
 
146
              (r)->y2 = (ry2);\
 
147
              (reg)->numRects++;\
 
148
              (r)++;\
 
149
            }\
 
150
        }
 
151
 
 
152
#define EMPTY_REGION(pReg) pReg->numRects = 0
 
153
 
 
154
#define REGION_NOT_EMPTY(pReg) pReg->numRects
 
155
 
 
156
#define INBOX(r, x, y) \
 
157
      ( ( ((r).x2 >  x)) && \
 
158
        ( ((r).x1 <= x)) && \
 
159
        ( ((r).y2 >  y)) && \
 
160
        ( ((r).y1 <= y)) )
 
161
 
 
162
/*
 
163
 * number of points to buffer before sending them off
 
164
 * to scanlines() :  Must be an even number
 
165
 */
 
166
#define NUMPTSTOBUFFER 200
 
167
 
 
168
/*
 
169
 * used to allocate buffers for points and link
 
170
 * the buffers together
 
171
 */
 
172
typedef struct _POINTBLOCK {
 
173
  GdkPoint pts[NUMPTSTOBUFFER];
 
174
  struct _POINTBLOCK *next;
 
175
} POINTBLOCK;
 
176
 
 
177
#endif /* __GDK_REGION_GENERIC_H__ */