and make the html code valid...
This commit is contained in:
parent
acefe83bea
commit
bca41cdcdb
|
@ -2063,7 +2063,7 @@ typedef uint32_t xcb_font_t;
|
||||||
<pre class="code">
|
<pre class="code">
|
||||||
xcb_font_t xcb_generate_id (xcb_connection_t *c);
|
xcb_font_t xcb_generate_id (xcb_connection_t *c);
|
||||||
</pre>
|
</pre>
|
||||||
<p>
|
<br>
|
||||||
<li class="subtitle"><a name="openingfont">Opening a Font</a>
|
<li class="subtitle"><a name="openingfont">Opening a Font</a>
|
||||||
<p>
|
<p>
|
||||||
To open a font, we use the following function:
|
To open a font, we use the following function:
|
||||||
|
@ -2140,11 +2140,12 @@ xcb_void_cookie_t xcb_image_text_8 (xcb_connection_t *c,
|
||||||
This example draw a text at 10 pixels (for the base line) of
|
This example draw a text at 10 pixels (for the base line) of
|
||||||
the bottom of a window. Pressing the Esc key exits the program.
|
the bottom of a window. Pressing the Esc key exits the program.
|
||||||
</p>
|
</p>
|
||||||
<pre class="code">#include <stdlib.h>
|
<pre class="code">
|
||||||
#include <stdio.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <stdio.h>
|
||||||
|
#include <string.h>
|
||||||
|
|
||||||
#include <xcb/xcb.h>
|
#include <xcb/xcb.h>
|
||||||
|
|
||||||
#define WIDTH 300
|
#define WIDTH 300
|
||||||
#define HEIGHT 100
|
#define HEIGHT 100
|
||||||
|
@ -2266,7 +2267,7 @@ int main ()
|
||||||
int screen_number;
|
int screen_number;
|
||||||
|
|
||||||
/* getting the connection */
|
/* getting the connection */
|
||||||
c = xcb_connect (NULL, &screen_number);
|
c = xcb_connect (NULL, &screen_number);
|
||||||
if (!c) {
|
if (!c) {
|
||||||
fprintf (stderr, "ERROR: can't connect to an X server\n");
|
fprintf (stderr, "ERROR: can't connect to an X server\n");
|
||||||
return -1;
|
return -1;
|
||||||
|
@ -2277,7 +2278,7 @@ int main ()
|
||||||
|
|
||||||
screen = NULL;
|
screen = NULL;
|
||||||
screen_iter = xcb_setup_roots_iterator (setup);
|
screen_iter = xcb_setup_roots_iterator (setup);
|
||||||
for (; screen_iter.rem != 0; --screen_number, xcb_screen_next (&screen_iter))
|
for (; screen_iter.rem != 0; --screen_number, xcb_screen_next (&screen_iter))
|
||||||
if (screen_number == 0)
|
if (screen_number == 0)
|
||||||
{
|
{
|
||||||
screen = screen_iter.data;
|
screen = screen_iter.data;
|
||||||
|
|
Loading…
Reference in New Issue