diff --git a/docs/reference/ChangeLog b/docs/reference/ChangeLog index 6d748cf57e..3238c1abcc 100644 --- a/docs/reference/ChangeLog +++ b/docs/reference/ChangeLog @@ -1,3 +1,18 @@ +2001-10-31 Matthias Clasen + + * gdk-pixbuf/gdk-pixbuf.sgml: include initialization_versions.sgml, + file-saving.sgml and module_interface.sgml. + + * gdk-pixbuf/tmpl/module_interface.sgml: add short description. + + * gtk/tmpl/gtkarg.sgml, gtk/tmpl/gtkdata.sgml, + gtk/tmpl/gtkcellrenderertextpixbuf.sgml: removed, since they described + no longer existent stuff and aren't included anymore. + + * gdk/tmpl/color_contexts.sgml, gdk/tmpl/input_contexts.sgml, + gdk/tmpl/input_methods.sgml: removed, since they described no longer + existent stuff and aren't included anymore. + 2001-10-31 Matthias Clasen * gdk-pixbuf/gdk-pixbuf-sections.txt, diff --git a/docs/reference/gdk-pixbuf/gdk-pixbuf.sgml b/docs/reference/gdk-pixbuf/gdk-pixbuf.sgml index 4c70065040..b19896b082 100644 --- a/docs/reference/gdk-pixbuf/gdk-pixbuf.sgml +++ b/docs/reference/gdk-pixbuf/gdk-pixbuf.sgml @@ -3,12 +3,15 @@ + + + @@ -84,9 +87,12 @@ + &initialization_versions; + &gdk-pixbuf-gdk-pixbuf; &gdk-pixbuf-refcounting; &gdk-pixbuf-file-loading; + &gdk-pixbuf-file-saving; &gdk-pixbuf-creating; &gdk-pixbuf-inline; &gdk-pixbuf-scaling; @@ -94,6 +100,7 @@ &gdk-pixbuf-animation; &GdkPixbufLoader; + &module_interface; &gdk-pixbuf-gdk-pixbuf-xlib-init; &gdk-pixbuf-gdk-pixbuf-xlib-rendering; diff --git a/docs/reference/gdk-pixbuf/tmpl/module_interface.sgml b/docs/reference/gdk-pixbuf/tmpl/module_interface.sgml index 5b0a95bc07..b39ee2f2ae 100644 --- a/docs/reference/gdk-pixbuf/tmpl/module_interface.sgml +++ b/docs/reference/gdk-pixbuf/tmpl/module_interface.sgml @@ -2,7 +2,7 @@ Module Interface - +extending &gdk-pixbuf; diff --git a/docs/reference/gdk/tmpl/color_contexts.sgml b/docs/reference/gdk/tmpl/color_contexts.sgml deleted file mode 100644 index af6455024c..0000000000 --- a/docs/reference/gdk/tmpl/color_contexts.sgml +++ /dev/null @@ -1,207 +0,0 @@ - -Color Contexts - - -routines for allocating colors (deprecated). - - - -The #GdkColorContext type is used for allocating groups of colors. - - -It is now deprecated in favor of the gdk_colormap_*() functions described in -the Colormaps and Colors -section. - - - - - - - - - - - - -@visual: -@colormap: -@num_colors: -@max_colors: -@num_allocated: -@mode: -@need_to_free_colormap: -@std_cmap_atom: -@clut: -@cmap: -@color_hash: -@palette: -@num_palette: -@fast_dither: - - - - - - -@fast_rgb: -@fast_err: -@fast_erg: -@fast_erb: - - - - - - -@GDK_CC_MODE_UNDEFINED: -@GDK_CC_MODE_BW: -@GDK_CC_MODE_STD_CMAP: -@GDK_CC_MODE_TRUE: -@GDK_CC_MODE_MY_GRAY: -@GDK_CC_MODE_PALETTE: - - - - - - -@visual: -@colormap: -@Returns: - - - - - - - -@visual: -@colormap: -@Returns: - - - - - - - -@cc: - - - - - - - -@cc: -@red: -@green: -@blue: -@failed: -@Returns: - - - - - - - -@cc: -@reds: -@greens: -@blues: -@ncolors: -@colors: -@nallocated: - - - - - - - -@cc: -@reds: -@greens: -@blues: -@ncolors: -@used: -@colors: -@nallocated: - - - - - - - -@cc: -@color: -@Returns: - - - - - - - -@cc: -@colors: -@num_colors: -@Returns: - - - - - - - -@cc: -@palette: -@num_palette: -@Returns: - - - - - - - -@cc: - - - - - - - -@cc: - - - - - - - -@cc: -@red: -@green: -@blue: -@failed: -@Returns: - - - - - - - -@cc: -@red: -@green: -@blue: -@failed: -@Returns: - - diff --git a/docs/reference/gdk/tmpl/input_contexts.sgml b/docs/reference/gdk/tmpl/input_contexts.sgml deleted file mode 100644 index 683017ba20..0000000000 --- a/docs/reference/gdk/tmpl/input_contexts.sgml +++ /dev/null @@ -1,19 +0,0 @@ - -Input Contexts - - -internationalized text input properties. - - - -A #GdkIC input context is used for each user interface element which supports -internationalized text input. See the -Input Methods section for an overview -of how internationalized text input works in GTK+. - - - - - - - diff --git a/docs/reference/gdk/tmpl/input_methods.sgml b/docs/reference/gdk/tmpl/input_methods.sgml deleted file mode 100644 index 7346e1c5af..0000000000 --- a/docs/reference/gdk/tmpl/input_methods.sgml +++ /dev/null @@ -1,88 +0,0 @@ - -Input Methods - - -support for internationalized text input. - - - -Input Methods provide a way for complex character sets to be used in GTK+. -Languages such as Chinese, Japanese, and Korean (often abbreviated to CJK) -use a large number of ideographs, making it impossible to support all -characters with a simple keyboard. Instead, text is usually -pre-edited using a phonetic alphabet and then -composed to form the ideographs. - - -GTK+ makes use of the input method mechanism provided by the X Windows -platform. When a GTK+ application is started, it opens a connection to the -input method appropriate for the current locale (if any). - - -Widgets which handle textual input, such as #GtkEntry, need to do a number of -things to support internationalized text input: - - -When the widget is realized: -Check if an input method is being used with gdk_im_ready(). -If it is, create a new Input Context -using gdk_ic_new(). Find out which events the -Input Context needs to receive -with gdk_ic_get_events(), and make sure that the widget's window receives -these events using gdk_window_set_events(). - - - - -When the widget's size, state or cursor position changes: - -Update the appropriate -Input Context attributes -using gdk_ic_set_attr(). - - - - -When the keyboard focus enters or leaves the widget: - -Call gdk_im_begin() or gdk_im_end() to start or finish editing the text. - - - - -When the widget receives a key_press event: - -The string and length -fields of the #GdkEventKey struct should be used to insert the composed text -into the widget. - - - - -When the widget is unrealized: - -Destroy the Input Context. - - - - - - -See the XLib reference manual for more detailed information on input methods, -and the #GtkEntry and #GtkText widgets for some example code. - - - - - - -Input Contexts - -Used for each widget that handles internationalized text input using the -global input method. - - - - - - diff --git a/docs/reference/gtk/tmpl/gtkarg.sgml b/docs/reference/gtk/tmpl/gtkarg.sgml deleted file mode 100644 index 7c2d950613..0000000000 --- a/docs/reference/gtk/tmpl/gtkarg.sgml +++ /dev/null @@ -1,43 +0,0 @@ - -Implementation of Object Properties - - -Utility function to manipulate lists of named, typed arguments. - - - -All the functions in here are marked a Non-public. -We describe it anyway because it is occasionally useful -to understand how the work is done. - - -Arguments are a way of describing a named parameter to a function. -They have two important roles within gtk+: - - - -they describe object properties. -This means that they present an interface to get and set a named-type -for any type of object in a consistent way. -(All the relevant functions to do this start with gtk_object_set -or gtk_object_get). - - - - -they describe signal arguments. -This is a lot less often needed but still useful. -Usually if you are just emitting or creating a particular signal -it is more convenient to just use gtk_signal_emit() or gtk_signal_new(). -However if you are writing a function to emit or create an arbitrary -signal, you must use gtk_signal_emitv() or gtk_signal_newv(). - - - - - - - -#GtkObject. - - diff --git a/docs/reference/gtk/tmpl/gtkcellrenderertextpixbuf.sgml b/docs/reference/gtk/tmpl/gtkcellrenderertextpixbuf.sgml deleted file mode 100644 index 7350e49a15..0000000000 --- a/docs/reference/gtk/tmpl/gtkcellrenderertextpixbuf.sgml +++ /dev/null @@ -1,16 +0,0 @@ - -GtkCellRendererTextPixbuf - - - - - - - - - - - - - - diff --git a/docs/reference/gtk/tmpl/gtkdata.sgml b/docs/reference/gtk/tmpl/gtkdata.sgml deleted file mode 100644 index 09e9d453cf..0000000000 --- a/docs/reference/gtk/tmpl/gtkdata.sgml +++ /dev/null @@ -1,24 +0,0 @@ - -GtkData - - -abstract base class for objects containing data. - - - -The #GtkData object is a very simple object intended to be used as a base -class for objects which contain data (i.e. the 'Model' in the object-oriented -Model/View/Controller framework). - - -Currently it is not very useful since all it provides is a "disconnect" signal. -This signal could be emitted by a #GtkData subclass to notify any 'Views' -that they should disconnect from the #GtkData (the 'Model'), possibly just -before the #GtkData is destroyed. - - - - - - -