Remove GdkBitmap

2007-05-26   Matthias Clasen  <mclasen@redhat.com>

        * gdk/gdk-overrides.txt: Remove GdkBitmap
        * gtk/gtk-sections.txt:
        * gtk/tmpl/gtkenums.sgml:
        * gdk/tmpl/rgb.sgml:
        * gdk/tmpl/gcs.sgml:
        * gdk/tmpl/pango_interaction.sgml:
        * gdk/tmpl/windows.sgml: Additions



svn path=/trunk/; revision=17945
This commit is contained in:
Matthias Clasen 2007-05-27 01:39:28 +00:00 committed by Matthias Clasen
parent cf3783f8a1
commit be4196dac7
8 changed files with 73 additions and 32 deletions

View File

@ -1,3 +1,13 @@
2007-05-26 Matthias Clasen <mclasen@redhat.com>
* gdk/gdk-overrides.txt: Remove GdkBitmap
* gtk/gtk-sections.txt:
* gtk/gtkenums.sgml:
* gdk/rgb.sgml:
* gdk/gcs.sgml:
* gdk/tmpl/pango_interaction.sgml:
* gdk/tmpl/windows.sgml: Additions
2007-05-26 Matthias Clasen <mclasen@redhat.com>
* gdk-pixbuf/gdk-pixbuf-sections.txt:

View File

@ -15,13 +15,6 @@ struct GdkPixmap
};
</STRUCT>
<STRUCT>
<NAME>GdkBitmap</NAME>
struct GdkBitmap
{
gpointer user_data;
};
</STRUCT>
<STRUCT>
<NAME>GdkDrawable</NAME>
struct GdkDrawable
{

View File

@ -103,22 +103,22 @@ images, only %GDK_COPY, %GDK_XOR and %GDK_INVERT are generally
useful. For bitmaps, %GDK_AND and %GDK_OR are also useful.
</para>
@GDK_COPY:
@GDK_INVERT:
@GDK_XOR:
@GDK_CLEAR:
@GDK_AND:
@GDK_AND_REVERSE:
@GDK_AND_INVERT:
@GDK_NOOP:
@GDK_OR:
@GDK_EQUIV:
@GDK_OR_REVERSE:
@GDK_COPY_INVERT:
@GDK_OR_INVERT:
@GDK_NAND:
@GDK_NOR:
@GDK_SET:
@GDK_COPY: <literal>dst = src</literal>
@GDK_INVERT: <literal>dst = NOT dst</literal>
@GDK_XOR: <literal>dst = src XOR dst</literal>
@GDK_CLEAR: <literal>dst = 0</literal>
@GDK_AND: <literal>dst = dst AND src</literal>
@GDK_AND_REVERSE: <literal>dst = src AND (NOT dst)</literal>
@GDK_AND_INVERT: <literal>dst = (NOT src) AND dst</literal>
@GDK_NOOP: <literal>dst = dst</literal>
@GDK_OR: <literal>dst = src OR dst</literal>
@GDK_EQUIV: <literal>dst = (NOT src) XOR dst</literal>
@GDK_OR_REVERSE: <literal>dst = src OR (NOT dst)</literal>
@GDK_COPY_INVERT: <literal>dst = NOT src</literal>
@GDK_OR_INVERT: <literal>dst = (NOT src) OR dst</literal>
@GDK_NAND: <literal>dst = (NOT src) OR (NOT dst)</literal>
@GDK_NOR: <literal>dst = (NOT src) AND (NOT dst)</literal>
@GDK_SET: <literal>dst = 1</literal>
<!-- ##### FUNCTION gdk_gc_new ##### -->
<para>

View File

@ -240,6 +240,14 @@ rendering the text.
@attr: the #PangoAttribute.
@embossed: the embossed bitmap.
<!-- ##### STRUCT GdkPangoAttrEmbossColor ##### -->
<para>
A Pango text attribute specifying the color to emboss text with.
</para>
@attr: the #PangoAttribute
@color: the color
<!-- ##### STRUCT GdkPangoAttrStipple ##### -->
<para>
A Pango text attribute containing a stipple bitmap to be used when

View File

@ -325,8 +325,9 @@ A private data structure which maps color indices to actual RGB
colors. This is used only for gdk_draw_indexed_image().
</para>
@colors:
@n_colors:
@colors: The colors, represented as 0xRRGGBB integer values.
@n_colors: The number of colors in the cmap.
<!-- ##### FUNCTION gdk_rgb_gc_set_foreground ##### -->
<para>

View File

@ -202,7 +202,8 @@ window types.
@GDK_WINDOW_TYPE_HINT_NORMAL: Normal toplevel window.
@GDK_WINDOW_TYPE_HINT_DIALOG: Dialog window.
@GDK_WINDOW_TYPE_HINT_MENU: Window used to implement a menu.
@GDK_WINDOW_TYPE_HINT_MENU: Window used to implement a menu; GTK+ uses
this hint only for torn-off menus, see #GtkTearoffMenuItem.
@GDK_WINDOW_TYPE_HINT_TOOLBAR: Window used to implement toolbars.
@GDK_WINDOW_TYPE_HINT_SPLASHSCREEN: Window used to display a splash
screen during application startup.
@ -211,12 +212,14 @@ window types.
@GDK_WINDOW_TYPE_HINT_DOCK: Used for creating dock or panel windows.
@GDK_WINDOW_TYPE_HINT_DESKTOP: Used for creating the desktop background
window.
@GDK_WINDOW_TYPE_HINT_DROPDOWN_MENU:
@GDK_WINDOW_TYPE_HINT_POPUP_MENU:
@GDK_WINDOW_TYPE_HINT_TOOLTIP:
@GDK_WINDOW_TYPE_HINT_NOTIFICATION:
@GDK_WINDOW_TYPE_HINT_COMBO:
@GDK_WINDOW_TYPE_HINT_DND:
@GDK_WINDOW_TYPE_HINT_DROPDOWN_MENU: A menu that belongs to a menubar.
@GDK_WINDOW_TYPE_HINT_POPUP_MENU: A menu that does not belong to a menubar,
e.g. a context menu.
@GDK_WINDOW_TYPE_HINT_TOOLTIP: A tooltip.
@GDK_WINDOW_TYPE_HINT_NOTIFICATION: A notification - typically a "bubble"
that belongs to a status icon.
@GDK_WINDOW_TYPE_HINT_COMBO: A popup from a combo box.
@GDK_WINDOW_TYPE_HINT_DND: A window that is used to implement a DND cursor.
<!-- ##### STRUCT GdkWindowAttr ##### -->
<para>
@ -453,6 +456,15 @@ Deprecated equivalent of g_object_unref()
@setting:
<!-- ##### FUNCTION gdk_window_set_opacity ##### -->
<para>
</para>
@window:
@opacity:
<!-- ##### FUNCTION gdk_window_move ##### -->
<para>

View File

@ -5932,6 +5932,7 @@ GtkVisibility
GtkWindowPosition
GtkWindowType
GtkSortType
GtkDragResult
<SUBSECTION Private>
GtkMenuCallback

View File

@ -480,3 +480,19 @@ Determines the direction of a sort.
@GTK_SORT_ASCENDING: Sorting is in ascending order.
@GTK_SORT_DESCENDING: Sorting is in descending order.
<!-- ##### ENUM GtkDragResult ##### -->
<para>
Gives an indication why a drag operation failed.
The value can by obtained by connecting to the
#GtkWidget::drag-failed signal.
</para>
@GTK_DRAG_RESULT_SUCCESS: The drag operation was successful
@GTK_DRAG_RESULT_NO_TARGET: No suitable drag target
@GTK_DRAG_RESULT_USER_CANCELLED: The user cancelled the drag operation
@GTK_DRAG_RESULT_TIMEOUT_EXPIRED: The drag operation timed out
@GTK_DRAG_RESULT_GRAB_BROKEN: The pointer or keyboard grab used
for the drag operation was broken
@GTK_DRAG_RESULT_ERROR: The drag operation failed due to some
unspecified error