forked from AuroraMiddleware/gtk
Replace homegrown "nbsp", "hash" and "percent" entities by standard ISO
* gtk/tmpl/gtkprogress.sgml: * gtk/tmpl/gtkscale.sgml: * gtk/tmpl/gtktreemodel.sgml: * gtk/tmpl/gtkimage.sgml: * gtk/tmpl/gtksignal.sgml: * gtk/tmpl/gtkrc.sgml: * gtk/gtk-docs.sgml: * gdk/gdk-docs.sgml: * gdk/tmpl/threads.sgml: * gdk/tmpl/cursors.sgml: * gdk/tmpl/rgb.sgml: Replace homegrown "nbsp", "hash" and "percent" entities by standard ISO entities "nbsp", "num" and "percnt". * gtk/text_widget.sgml: Fix a link.
This commit is contained in:
parent
dc8e66d35d
commit
96937b32e4
@ -1,3 +1,21 @@
|
||||
2002-06-03 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/tmpl/gtkprogress.sgml:
|
||||
* gtk/tmpl/gtkscale.sgml:
|
||||
* gtk/tmpl/gtktreemodel.sgml:
|
||||
* gtk/tmpl/gtkimage.sgml:
|
||||
* gtk/tmpl/gtksignal.sgml:
|
||||
* gtk/tmpl/gtkrc.sgml:
|
||||
* gtk/gtk-docs.sgml:
|
||||
* gdk/gdk-docs.sgml:
|
||||
* gdk/tmpl/threads.sgml:
|
||||
* gdk/tmpl/cursors.sgml:
|
||||
* gdk/tmpl/rgb.sgml: Replace homegrown "nbsp", "hash" and
|
||||
"percent" entities by standard ISO entities "nbsp", "num" and
|
||||
"percnt".
|
||||
|
||||
* gtk/text_widget.sgml: Fix a link.
|
||||
|
||||
2002-05-30 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
Make stock icons appear again (patch by Gediminas Paulauskas):
|
||||
|
@ -1,7 +1,6 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
|
||||
"http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd" [
|
||||
<!ENTITY hash "#">
|
||||
<!ENTITY gdk-General SYSTEM "xml/general.xml">
|
||||
<!ENTITY gdk-Bitmaps-and-Pixmaps SYSTEM "xml/pixmaps.xml">
|
||||
<!ENTITY gdk-Images SYSTEM "xml/images.xml">
|
||||
|
@ -128,8 +128,8 @@ from inline data as in the below example.
|
||||
<programlisting>
|
||||
/* This data is in X bitmap format, and can be created with the 'bitmap'
|
||||
utility. */
|
||||
&hash;define cursor1_width 16
|
||||
&hash;define cursor1_height 16
|
||||
#define cursor1_width 16
|
||||
#define cursor1_height 16
|
||||
static unsigned char cursor1_bits[] = {
|
||||
0x80, 0x01, 0x40, 0x02, 0x20, 0x04, 0x10, 0x08, 0x08, 0x10, 0x04, 0x20,
|
||||
0x82, 0x41, 0x41, 0x82, 0x41, 0x82, 0x82, 0x41, 0x04, 0x20, 0x08, 0x10,
|
||||
|
@ -37,10 +37,10 @@ in cases where a "better" visual than the default is available.
|
||||
<example>
|
||||
<title>A simple example program using GdkRGB.</title>
|
||||
<programlisting>
|
||||
&hash;include <gtk/gtk.h>
|
||||
#include <gtk/gtk.h>
|
||||
|
||||
&hash;define IMAGE_WIDTH 256
|
||||
&hash;define IMAGE_HEIGHT 256
|
||||
#define IMAGE_WIDTH 256
|
||||
#define IMAGE_HEIGHT 256
|
||||
|
||||
guchar rgbbuf[IMAGE_WIDTH * IMAGE_HEIGHT * 3];
|
||||
|
||||
|
@ -104,16 +104,16 @@ illustrate how to use threads within GTK+ programs.
|
||||
*
|
||||
*/
|
||||
|
||||
&hash;include <stdio.h>
|
||||
&hash;include <stdlib.h>
|
||||
&hash;include <unistd.h>
|
||||
&hash;include <time.h>
|
||||
&hash;include <gtk/gtk.h>
|
||||
&hash;include <glib.h>
|
||||
&hash;include <pthread.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <unistd.h>
|
||||
#include <time.h>
|
||||
#include <gtk/gtk.h>
|
||||
#include <glib.h>
|
||||
#include <pthread.h>
|
||||
|
||||
&hash;define YES_IT_IS (1)
|
||||
&hash;define NO_IT_IS_NOT (0)
|
||||
#define YES_IT_IS (1)
|
||||
#define NO_IT_IS_NOT (0)
|
||||
|
||||
typedef struct
|
||||
{
|
||||
|
@ -1,8 +1,6 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
|
||||
"http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd" [
|
||||
<!ENTITY hash "#">
|
||||
<!ENTITY percent "%">
|
||||
<!ENTITY GtkAccelLabel SYSTEM "xml/gtkaccellabel.xml">
|
||||
<!ENTITY GtkAdjustment SYSTEM "xml/gtkadjustment.xml">
|
||||
<!ENTITY GtkAlignment SYSTEM "xml/gtkalignment.xml">
|
||||
|
@ -162,7 +162,7 @@ font and foreground color — use standard
|
||||
functions such as
|
||||
<link linkend="gtk-widget-modify-font">gtk_widget_modify_font()</link>
|
||||
or
|
||||
<link linkend="gtk-widget-modify-fg">gtk_widget_modify_text()</link>.
|
||||
<link linkend="gtk-widget-modify-text">gtk_widget_modify_text()</link>.
|
||||
For other attributes there are dedicated methods on
|
||||
<link linkend="GtkTextView">GtkTextView</link> such as
|
||||
<link linkend="gtk-text-view-set-tabs">gtk_text_view_set_tabs()</link>.
|
||||
|
@ -45,7 +45,7 @@ on the image, such as button clicks, place the image inside a
|
||||
GdkEventButton *event,
|
||||
gpointer data)
|
||||
{
|
||||
g_print ("Event box clicked at coordinates &percent;d,&percent;d\n",
|
||||
g_print ("Event box clicked at coordinates %d,%d\n",
|
||||
event->x, event->y);
|
||||
|
||||
/* Returning TRUE means we handled the event, so the signal
|
||||
|
@ -53,22 +53,22 @@ current progress. The string can contain the following substitution characters:
|
||||
<itemizedlist>
|
||||
<listitem>
|
||||
<para>
|
||||
&percent;v - the current progress value.
|
||||
%v - the current progress value.
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
&percent;l - the lower bound for the progress value.
|
||||
%l - the lower bound for the progress value.
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
&percent;u - the upper bound for the progress value.
|
||||
%u - the upper bound for the progress value.
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
&percent;p - the current progress percentage.
|
||||
%p - the current progress percentage.
|
||||
</para>
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
|
@ -371,9 +371,9 @@ state of the widget. The states are:
|
||||
Colors can be specified as a string containing a color name (GTK+ knows
|
||||
all names from the X color database
|
||||
<filename>/usr/lib/X11/rgb.txt</filename>),
|
||||
in one of the hexadecimal forms <literal>&hash;rrrrggggbbbb</literal>,
|
||||
<literal>&hash;rrrgggbbb</literal>, <literal>&hash;rrggbb</literal>,
|
||||
or <literal>&hash;rgb</literal>, where <literal>r</literal>,
|
||||
in one of the hexadecimal forms <literal>#rrrrggggbbbb</literal>,
|
||||
<literal>#rrrgggbbb</literal>, <literal>#rrggbb</literal>,
|
||||
or <literal>#rgb</literal>, where <literal>r</literal>,
|
||||
<literal>g</literal> and <literal>b</literal> are
|
||||
hex digits, or they can be specified as a triplet
|
||||
<literal>{ <replaceable>r</replaceable>, <replaceable>g</replaceable>,
|
||||
|
@ -121,7 +121,7 @@ static gchar*
|
||||
format_value_callback (GtkScale *scale,
|
||||
gdouble value)
|
||||
{
|
||||
return g_strdup_printf ("-->&percent;0.*g<--",
|
||||
return g_strdup_printf ("-->%0.*g<--",
|
||||
gtk_scale_get_digits (scale), value);
|
||||
}
|
||||
</programlisting></informalexample>
|
||||
|
@ -450,7 +450,7 @@ as parameter to your function:
|
||||
<programlisting>
|
||||
static void button_clicked_int (GtkButton* button, gpointer func_data)
|
||||
{
|
||||
g_print ("button pressed: &percent;d\n", GPOINTER_TO_INT (func_data));
|
||||
g_print ("button pressed: %d\n", GPOINTER_TO_INT (func_data));
|
||||
}
|
||||
|
||||
/* By calling this function, you will make the g_print above
|
||||
|
@ -177,7 +177,7 @@ enum
|
||||
-1);
|
||||
|
||||
/* Do something with the data */
|
||||
g_print ("Row &percent;d: (&percent;s,&percent;d)\n", row_count, str_data, int_data);
|
||||
g_print ("Row %d: (%s,%d)\n", row_count, str_data, int_data);
|
||||
g_free (str_data);
|
||||
|
||||
row_count ++;
|
||||
|
Loading…
Reference in New Issue
Block a user