diff options
author | Javier Jardón <jjardon@gnome.org> | 2010-10-04 03:19:43 +0200 |
---|---|---|
committer | Javier Jardón <jjardon@gnome.org> | 2010-10-04 03:19:43 +0200 |
commit | a4c20184524fd874e64ce2fcd3f05a97cb34155d (patch) | |
tree | 0cb0ee576c54c88b2bed6dee03b873977181eb52 /docs | |
parent | 4e71a4df7b4368954925401d0f028ddecd00004a (diff) | |
download | gtk+-a4c20184524fd874e64ce2fcd3f05a97cb34155d.tar.gz |
docs: Move documentation to inline comments: regions
Diffstat (limited to 'docs')
-rw-r--r-- | docs/reference/gdk/tmpl/.gitignore | 1 | ||||
-rw-r--r-- | docs/reference/gdk/tmpl/regions.sgml | 72 |
2 files changed, 1 insertions, 72 deletions
diff --git a/docs/reference/gdk/tmpl/.gitignore b/docs/reference/gdk/tmpl/.gitignore index ae9a982634..905a6f25fa 100644 --- a/docs/reference/gdk/tmpl/.gitignore +++ b/docs/reference/gdk/tmpl/.gitignore @@ -1,3 +1,4 @@ cairo_interaction.sgml dnd.sgml +regions.sgml windows.sgml diff --git a/docs/reference/gdk/tmpl/regions.sgml b/docs/reference/gdk/tmpl/regions.sgml deleted file mode 100644 index 5236c54230..0000000000 --- a/docs/reference/gdk/tmpl/regions.sgml +++ /dev/null @@ -1,72 +0,0 @@ -<!-- ##### SECTION Title ##### --> -Points and Rectangles - -<!-- ##### SECTION Short_Description ##### --> -Simple graphical data types - -<!-- ##### SECTION Long_Description ##### --> -<para> -GDK provides the #GdkPoint and #GdkRectangle data types for representing pixels -and sets of pixels on the screen. Together with Cairo's #cairo_region_t data -type, they make up the central types for representing graphical data. -</para> -<para> -#GdkPoint is a simple structure containing an x and y coordinate of a point. -</para> -<para> -#GdkRectangle is a structure holding the position and size of a rectangle. -The intersection of two rectangles can be computed with -gdk_rectangle_intersect(). To find the union of two rectangles use -gdk_rectangle_union(). -</para> -<para> -#cairo_region_t is usually used for managing clipping of graphical operations. -</para> - -<!-- ##### SECTION See_Also ##### --> -<para> - -</para> - -<!-- ##### SECTION Stability_Level ##### --> - - -<!-- ##### SECTION Image ##### --> - - -<!-- ##### STRUCT GdkPoint ##### --> -<para> -Defines the x and y coordinates of a point. -</para> - -@x: the x coordinate of the point. -@y: the y coordinate of the point. - -<!-- ##### TYPEDEF GdkRectangle ##### --> -<para> -Defines the position and size of a rectangle. It is identical to -#cairo_rectangle_int_t. -</para> - - -<!-- ##### FUNCTION gdk_rectangle_intersect ##### --> -<para> - -</para> - -@src1: -@src2: -@dest: -@Returns: - - -<!-- ##### FUNCTION gdk_rectangle_union ##### --> -<para> - -</para> - -@src1: -@src2: -@dest: - - |