Bonjours a tous les programmeurs C de tous les bords.
Après 6 mois d'apprentissage du C je vous publie ici un tout petit fichier après des jours passer dans les tutoriels concernant Xlib sous Linux.
Comme je poste pour la première fois dans ce forum il n'y a pas de liens vers mon code:
Je vous le montre ici, si vous désirez vous en servir vous pouvez simplement le copier-coller, grâce au lien Sélectionner tout dans un fichier *.c et l'inclure grace a un #include.
Programmez avec la Xlib est sûrement démodé surtout concernant l'utilisation de Pixmap (seul format d'image supporter par Xlib) si l'on est pas né a l'age de pierre:
Les Pixmap sont des fichiers d'images composer de pixels noire et blanc propre a Xlib, fichiers d'entension *.xbm, mais utiliser correctement ont peut faire pas mal de chose avec un GC (Graphic Context) associé (création de curseur souris, création de ligne d'enchaînement d'image, création d'images dont ont peut définir le contenus grace a Xlib et affichage de motifs divers) ont peut carrément inclure un fichier *.xbm grâce a une directive #include dans le code source.
Ont peut créer des Pixmap (*.xbm) avec divers logiciels de dessins mais attention a n'utiliser que les couleurs noire et blanc.
Pour plus d'informations regarder le wiki.

-> Voici le code:

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
 
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
 
#include <X11/Xlib.h>
 
 
/***********************************************************************************
 *                                                                                 *
 *  An extension for, the Xlib library,                                            *
 *  with easy GC (Graphic Context) generating functions.                           * 
 *  Written by Luke Spywoker for all Xlib users.                                   *
 *                                                                                 *
 *  Thank's to Christophe Tronche for the docummentation                           *
 *  you can get it at http://tronche.com/gui/x/xlib/                               *
 *  Mail:  ch.tronche@computer.org                                                 *
 *                                                                                 * 
 ***********************************************************************************/
 
/** Generate an hexdecimal string from rgb (red,green,blue) values. */
char *get_hex_from_rgb(char* color_hex_res,int8_t red,int8_t green,int8_t blue) ;
 
/** return an GC (Graphic Context) for simply dashed line. */
GC get_dashed_line_gc(Display *display,Window win,char *color_hex_fg,char *color_hex_bg,unsigned int line_width, int line_style, int cap_style, int join_style,int dash_offset, char dash_list[],int nun_elt_dash_list) ;
 
/** return an Graphic Context) for dashed line composed with an pixmap. */
GC get_pixmap_dashed_line_gc(Display *display,Window win,char *color_hex_fg,char *color_hex_bg,unsigned int line_width, int line_style, int cap_style, int join_style,int dash_offset, char dash_list[],int nun_elt_dash_list,int fill_style,Pixmap tile, Pixmap stipple)
 
/** return an GC (Graphic Context) for simply line. */ 
GC get_simple_line_gc(Display *display,Window win,char *color_hex_fg,char *color_hex_bg,unsigned int line_width, int line_style, int cap_style, int join_style) ;
 
/** return an Graphic Context) for filling forms composed with an pixmap. */
GC get_pixmap_fill_gc(Display *display,Window win,char *color_hex_fg,char *color_hex_bg,int fill_style,Pixmap tile, Pixmap stipple) ;
 
/** return an GC (Graphic Context) for simply filling forms. */ 
GC get_simple_fill_gc(Display *display,Window win,char *color_hex_fg,char *color_hex_bg) ;
 
char *get_hex_from_rgb(char* color_hex_res,int8_t red,int8_t green,int8_t blue) {
 
  /**
  * This function return an hexadecimal string in form "#%02X%02X%02X"
  * 
  * char* color_hex_res ;               The result hexdecimal string returned 
  *                                     char * hex_string=malloc(8) ; 
  * 
  * int red             ;               rgb red value   [0-255] 
  * int green           ;               rgb green value [0-255]
  * int blue            ;               reg blue value  [0-255] 
  * 
  * */
 
  memset(color_hex_res,'\0',8) ;
  char *color_hex_red=malloc(3) ;
  char *color_hex_green=malloc(3) ;
  char *color_hex_blue=malloc(3) ;
  snprintf(color_hex_red,3,"%02X",red) ;
  snprintf(color_hex_green,3,"%02X",green) ;
  snprintf(color_hex_blue,3,"%02X",blue) ;
  strcpy(color_hex_res,"#") ;
  strcat(color_hex_res,color_hex_red) ;
  strcat(color_hex_res,color_hex_green) ;
  strcat(color_hex_res,color_hex_blue) ;
  free(color_hex_red) ;
  free(color_hex_green) ;
  free(color_hex_blue) ;
  return color_hex_res ;
}
 
 
GC get_dashed_line_gc(Display *display,Window win,char *color_hex_fg,char *color_hex_bg,unsigned int line_width, int line_style, int cap_style, int join_style,int dash_offset, char dash_list[],int nun_elt_dash_list) {
 
  /**
   * This function return an GC (Graphic Context) for dashed line drawing. 
   * 
   * display                            an pointer on the display.
   * win                                the window to draw in.
   * 
   * char *color_hex_fg;                An hexadecimal formated string representing the foreground color of the GC (Graphic Context). 
   * 
   * char *color_hex_bg;                An hexadecimal formated string representing the background color of the GC (Graphic Context). 
   * 
   * int line_width     ;               line width (in pixels)
   * 
   * int line_style     ;               LineSolid, LineOnOffDash, LineDoubleDash
   *                                    The line-style defines which sections of a line are drawn: 
   *                                    LineSolid       The full path of the line is drawn.
   *                                    LineDoubleDash  The full path of the line is drawn, but the even dashes are filled differently than the odd dashes (see fill-style) with
   *                                    CapButt         style used where even and odd dashes meet.
   *                                    LineOnOffDash   Only the even dashes are drawn, and cap-style applies to all internal ends of the individual dashes, except CapNotLast is treated as CapButt.
   *  
   * int cap_style      ;               CapNotLast, CapButt, CapRound, CapProjecting
   *                                    The cap-style defines how the endpoints of a path are drawn:
   *                                    CapNotLast      This is equivalent to CapButt except that for a line-width of zero the final endpoint is not drawn.
   *                                    CapButt         The line is square at the endpoint (perpendicular to the slope of the line) with no projection beyond.
   *                                    CapRound        The line has a circular arc with the diameter equal to the line-width, centered on the endpoint. (This is equivalent to CapButt for line-width of zero).
   *                                    CapProjecting   The line is square at the end, but the path continues beyond the endpoint for a distance equal to half the line-width. (This is equivalent to CapButt for line-width of zero). 
   * 
   * int join_style     ;               JoinMiter, JoinRound, JoinBevel 
   *                                    The join-style defines how corners are drawn for wide lines:
   *                                    JoinMiter       The outer edges of two lines extend to meet at an angle. However, if the angle is less than 11 degrees, then a JoinBevel join-style is used instead.
   *                                    JoinRound       The corner is a circular arc with the diameter equal to the line-width, centered on the joinpoint.
   *                                    JoinBevel       The corner has CapButt endpoint styles with the triangular notch filled. 
   * 
   * int dash_offset                    Specifies the phase of the pattern for the dashed line-style you want to set for the specified GC.
   * char dash_list[]                   Specifies the dash-list for the dashed line-style you want to set for the specified GC.
   * int nun_elt_dash_list              Specifies the number of elements in dash_list.
   *
   **/
 
  if ( strlen(color_hex_fg) == 7 && strlen(color_hex_bg) == 7 ) {
    int c ;
 
    for (c=1 ; c < 7 ; c++) {
      if (! isxdigit(color_hex_fg[c]) || ! isxdigit(color_hex_bg[c]) ) {
	return NULL ;
      }
    }
  }   
  else {
    return NULL ;
  }
 
 
  Colormap colormap ;
  XColor fg_color, bg_color ;
 
 
  GC ret=XCreateGC(display,win,0,0) ;
  colormap=DefaultColormap(display,0) ;
  XParseColor(display,colormap,color_hex_fg,&fg_color) ;
  XAllocColor(display,colormap,&fg_color) ;
  XSetForeground(display,ret,fg_color.pixel) ;
 
  XParseColor(display,colormap,color_hex_bg,&bg_color) ;
  XAllocColor(display,colormap,&bg_color) ;
  XSetBackground(display,ret,bg_color.pixel) ;
 
  if (line_width || line_width || line_style || cap_style || join_style ) {
    XSetLineAttributes(display, ret, line_width, line_style, cap_style, join_style) ;
    if ( line_style ) {
      if ( line_style == LineOnOffDash || line_style == LineDoubleDash ) {
	  XSetDashes(display,ret, dash_offset, dash_list, nun_elt_dash_list) ;
          /**
           * dash_offset        Specifies the phase of the pattern for the dashed line-style you want to set for the specified GC.
           * dash_list          Specifies the dash-list for the dashed line-style you want to set for the specified GC.
           * nun_elt_dash_list  Specifies the number of elements in dash_list.
           **/
      }
    }
  }
  return ret ;
}
 
 
GC get_pixmap_dashed_line_gc(Display *display,Window win,char *color_hex_fg,char *color_hex_bg,unsigned int line_width, int line_style, int cap_style, int join_style,int dash_offset, char dash_list[],int nun_elt_dash_list,int fill_style,Pixmap tile, Pixmap stipple) {
 
  /**
   * This function return an GC (Graphic Context) for a pixmap dashed line drawing. 
   * 
   * display                            an pointer on the display.
   * win                                the window to draw in.
   * 
   * char *color_hex_fg;                An hexadecimal formated string representing the foreground color of the GC (Graphic Context). 
   * 
   * char *color_hex_bg;                An hexadecimal formated string representing the background color of the GC (Graphic Context). 
   * 
   * int line_width     ;               line width (in pixels)
   * 
   * int line_style     ;               LineSolid, LineOnOffDash, LineDoubleDash
   *                                    The line-style defines which sections of a line are drawn: 
   *                                    LineSolid       The full path of the line is drawn.
   *                                    LineDoubleDash  The full path of the line is drawn, but the even dashes are filled differently than the odd dashes (see fill-style) with
   *                                    CapButt         style used where even and odd dashes meet.
   *                                    LineOnOffDash   Only the even dashes are drawn, and cap-style applies to all internal ends of the individual dashes, except CapNotLast is treated as CapButt.
   *  
   * int cap_style      ;               CapNotLast, CapButt, CapRound, CapProjecting
   *                                    The cap-style defines how the endpoints of a path are drawn:
   *                                    CapNotLast      This is equivalent to CapButt except that for a line-width of zero the final endpoint is not drawn.
   *                                    CapButt         The line is square at the endpoint (perpendicular to the slope of the line) with no projection beyond.
   *                                    CapRound        The line has a circular arc with the diameter equal to the line-width, centered on the endpoint. (This is equivalent to CapButt for line-width of zero).
   *                                    CapProjecting   The line is square at the end, but the path continues beyond the endpoint for a distance equal to half the line-width. (This is equivalent to CapButt for line-width of zero). 
   * 
   * int join_style     ;               JoinMiter, JoinRound, JoinBevel 
   *                                    The join-style defines how corners are drawn for wide lines:
   *                                    JoinMiter       The outer edges of two lines extend to meet at an angle. However, if the angle is less than 11 degrees, then a JoinBevel join-style is used instead.
   *                                    JoinRound       The corner is a circular arc with the diameter equal to the line-width, centered on the joinpoint.
   *                                    JoinBevel       The corner has CapButt endpoint styles with the triangular notch filled. 
   *
   * int fill_style                     For the even dashes for line requests with line-style LineOnOffDash or LineDoubleDash, the following apply:
   *                                    FillSolid                       Foreground
   *                                    FillTiled                       Tile
   *                                    FillOpaqueStippled              A tile with the same width and height as stipple, but with background everywhere stipple has a zero and with foreground everywhere stipple has a one
   *                                    FillStippled                    Foreground masked by stipple
   * 
   * int dash_offset                    Specifies the phase of the pattern for the dashed line-style you want to set for the specified GC.
   * char dash_list[]                   Specifies the dash-list for the dashed line-style you want to set for the specified GC.
   * int nun_elt_dash_list              Specifies the number of elements in dash_list.
   * 
   * Pixmap tile                        an Pixmap image:
   * Pixmap stipple                    
   *                                    unsigned int pixmap_width, pixmap_height ;
   *                                    int icon_hot_width, icon_hot_height ;
   *                                    Pixmap pixmap_bits ;
   *                                    XReadBitmapFile(display, win, "/path/to/pixmap_file.xbm", &pixmap_width, &pixmap_height, &pixmap_bits, &pixmap_hot_width, &pixmap_hot_height) ;
   *                                    
   *                                    * The mechanic of pixmap image is that the white pixels are set in the color of the GC (Graphic Context) foreground color ;
   *                                   * The mechanic of pixmap image is that the black pixels are set in the color of the GC (Graphic Context) background color ;
   * 
   *                                    // Use XCopyPlane(display, pixmap_bits, win, gc, 0, 0, pixmap_width, pixmap_height, pos_x, pos_y, 1) ; to display it. 
   * 
   * */
 
  if ( strlen(color_hex_fg) == 7 && strlen(color_hex_bg) == 7 ) {
    int c ;
 
    for (c=1 ; c < 7 ; c++) {
      if (! isxdigit(color_hex_fg[c]) || ! isxdigit(color_hex_bg[c]) )  {
	return NULL ;
      }
    }
  }   
  else {
    return NULL ;
  }
 
 
  Colormap colormap ;
  XColor fg_color, bg_color ;
 
 
  GC ret=XCreateGC(display,win,0,0) ;
  colormap=DefaultColormap(display,0) ;
  XParseColor(display,colormap,color_hex_fg,&fg_color) ;
  XAllocColor(display,colormap,&fg_color) ;
  XSetForeground(display,ret,fg_color.pixel) ;
 
  XParseColor(display,colormap,color_hex_bg,&bg_color) ;
  XAllocColor(display,colormap,&bg_color) ;
  XSetBackground(display,ret,bg_color.pixel) ;
 
  if (line_width || line_width || line_style || cap_style || join_style ) {
    XSetLineAttributes(display, ret, line_width, line_style, cap_style, join_style) ;
    if ( line_style ) {
      if ( line_style == LineOnOffDash || line_style == LineDoubleDash ) {
	XSetDashes(display,ret, dash_offset, dash_list, nun_elt_dash_list) ;
          /**
           * dash_offset        Specifies the phase of the pattern for the dashed line-style you want to set for the specified GC.
           * dash_list          Specifies the dash-list for the dashed line-style you want to set for the specified GC.
           * nun_elt_dash_list  Specifies the number of elements in dash_list.
           **/
	if ( fill_style ) {
	  XSetFillStyle(display, ret, fill_style) ;
	   if (fill_style == FillTiled ) {
	     /** The tile and GC must have the same depth, or a BadMatch error results. */
	     XSetTile(display, ret, tile) ;
	   }
	   if (fill_style == FillStippled || fill_style == FillOpaqueStippled) {
 
	      XSetStipple(display, ret, stipple) ;
	      /**
               * When drawing lines with line-style LineDoubleDash, the odd dashes are controlled by the fill-style in the following manner:
               * FillSolid              Background
               * FillTiled              Same as for even dashes
               * FillOpaqueStippled     Same as for even dashes
               * FillStippled           Background masked by stipple 
               * */
	  }
 
	}
	} 
      }
    }
  return ret ;
}
 
 
 
GC get_simple_line_gc(Display *display,Window win,char *color_hex_fg,char *color_hex_bg,unsigned int line_width, int line_style, int cap_style, int join_style) {
 
  /**
   * This function return an GC (Graphic Context) for solid line drawing. 
   * 
   * display                            an pointer on the display.
   * win                                the window to draw in.
   * 
   * char *color_hex_fg;                An hexadecimal formated string representing the foreground color of the GC (Graphic Context). 
   * 
   * char *color_hex_bg;                An hexadecimal formated string representing the background color of the GC (Graphic Context). 
   * 
   * int line_width     ;               line width (in pixels)
   * 
   * int line_style     ;               LineSolid, LineOnOffDash, LineDoubleDash
   *                                    The line-style defines which sections of a line are drawn: 
   *                                    LineSolid       The full path of the line is drawn.
   *                                    LineDoubleDash  The full path of the line is drawn, but the even dashes are filled differently than the odd dashes (see fill-style) with
   *                                    CapButt         style used where even and odd dashes meet.
   *                                    LineOnOffDash   Only the even dashes are drawn, and cap-style applies to all internal ends of the individual dashes, except CapNotLast is treated as CapButt.
   *  
   * int cap_style      ;               CapNotLast, CapButt, CapRound, CapProjecting
   *                                    The cap-style defines how the endpoints of a path are drawn:
   *                                    CapNotLast      This is equivalent to CapButt except that for a line-width of zero the final endpoint is not drawn.
   *                                    CapButt         The line is square at the endpoint (perpendicular to the slope of the line) with no projection beyond.
   *                                    CapRound        The line has a circular arc with the diameter equal to the line-width, centered on the endpoint. (This is equivalent to CapButt for line-width of zero).
   *                                    CapProjecting   The line is square at the end, but the path continues beyond the endpoint for a distance equal to half the line-width. (This is equivalent to CapButt for line-width of zero). 
   * 
   * int join_style     ;               JoinMiter, JoinRound, JoinBevel 
   *                                    The join-style defines how corners are drawn for wide lines:
   *                                    JoinMiter       The outer edges of two lines extend to meet at an angle. However, if the angle is less than 11 degrees, then a JoinBevel join-style is used instead.
   *                                    JoinRound       The corner is a circular arc with the diameter equal to the line-width, centered on the joinpoint.
   *                                    JoinBevel       The corner has CapButt endpoint styles with the triangular notch filled. 
   *
   **/
 
  if ( strlen(color_hex_fg) == 7 && strlen(color_hex_bg) == 7 ) {
    int c ;
 
    for (c=1 ; c < 7 ; c++) {
      if (! isxdigit(color_hex_fg[c]) || ! isxdigit(color_hex_bg[c]) ) {
	return NULL ;
      }
    }
  }
  else {
    return NULL ;
  }
 
 
  Colormap colormap ;
  XColor fg_color, bg_color ;
 
 
  GC ret=XCreateGC(display,win,0,0) ;
  colormap=DefaultColormap(display,0) ;
  XParseColor(display,colormap,color_hex_fg,&fg_color) ;
  XAllocColor(display,colormap,&fg_color) ;
  XSetForeground(display,ret,fg_color.pixel) ;
 
  XParseColor(display,colormap,color_hex_bg,&bg_color) ;
  XAllocColor(display,colormap,&bg_color) ;
  XSetBackground(display,ret,bg_color.pixel) ;
 
  if (line_width || line_width || line_style || cap_style || join_style ) {
      XSetLineAttributes(display, ret, line_width, line_style, cap_style, join_style) ;
    }
  return ret ;
}
 
 
GC get_simple_fill_gc(Display *display,Window win,char *color_hex_fg,char *color_hex_bg) {
 
  /**
   * This function return an GC (Graphic Context) for filled form drawing. 
   * 
   * display                            an pointer on the display.
   * win                                the window to draw in.
   * 
   * char *color_hex_fg;                An hexadecimal formated string representing the foreground color of the GC (Graphic Context). 
   * 
   * char *color_hex_bg;                An hexadecimal formated string representing the background color of the GC (Graphic Context). 
   * 
   **/
 
  if ( strlen(color_hex_fg) == 7 && strlen(color_hex_bg) == 7 ) {
    int c ;
 
    for (c=1 ; c < 7 ; c++) {
      if (! isxdigit(color_hex_fg[c]) || ! isxdigit(color_hex_bg[c]) ) {
	return NULL ;
      }
    }
  } 
  else {
    return NULL ;
  }
 
 
  Colormap colormap ;
  XColor fg_color, bg_color ;
 
 
  GC ret=XCreateGC(display,win,0,0) ;
  colormap=DefaultColormap(display,0) ;
  XParseColor(display,colormap,color_hex_fg,&fg_color) ;
  XAllocColor(display,colormap,&fg_color) ;
  XSetForeground(display,ret,fg_color.pixel) ;
 
  XParseColor(display,colormap,color_hex_bg,&bg_color) ;
  XAllocColor(display,colormap,&bg_color) ;
  XSetBackground(display,ret,bg_color.pixel) ;
 
  XSetFillStyle(display, ret, FillSolid) ;
 
  return ret ;
}
 
GC get_pixmap_fill_gc(Display *display,Window win,char *color_hex_fg,char *color_hex_bg,int fill_style,Pixmap tile, Pixmap stipple) {
 
  /**
   * This function return an GC (Graphic Context) for pixmap filled form drawing. 
   * 
   * display                            an pointer on the display.
   * win                                the window to draw in.
   * 
   * char *color_hex_fg;                An hexadecimal formated string representing the foreground color of the GC (Graphic Context). 
   * 
   * char *color_hex_bg;                An hexadecimal formated string representing the background color of the GC (Graphic Context). 
   * 
   * int fill_style    ;                FillSolid               Foreground
   *                                    FillTiled               Tile
   *                                    FillOpaqueStippled      A tile with the same width and height as stipple, but with background everywhere stipple has a zero and with foreground everywhere stipple has a one
   *                                    FillStippled            Foreground masked by stipple 
   * 
   * Pixmap tile                        an Pixmap image:
   * Pixmap stipple                    
   *                                    unsigned int pixmap_width, pixmap_height ;
   *                                    int icon_hot_width, icon_hot_height ;
   *                                    Pixmap pixmap_bits ;
   *                                    XReadBitmapFile(display, win, "/path/to/pixmap_file.xbm", &pixmap_width, &pixmap_height, &pixmap_bits, &pixmap_hot_width, &pixmap_hot_height) ;
   *                                    
   *                                    * The mechanic of pixmap image is that the white pixels are set in the color of the GC (Graphic Context) foreground color ;
   *                                   * The mechanic of pixmap image is that the black pixels are set in the color of the GC (Graphic Context) background color ;
   * 
   *                                    // Use XCopyPlane(display, pixmap_bits, win, gc, 0, 0, pixmap_width, pixmap_height, pos_x, pos_y, 1) ; to display it. 
   **/
 
  if ( strlen(color_hex_fg) == 7 && strlen(color_hex_bg) == 7 ) {
    int c ;
 
    for (c=1 ; c < 7 ; c++) {
      if (! isxdigit(color_hex_fg[c]) || ! isxdigit(color_hex_bg[c]) )  {
	return NULL ;
      }
    }
  } 
  else {
    return NULL ;
  }
 
 
  Colormap colormap ;
  XColor fg_color, bg_color ;
 
 
  GC ret=XCreateGC(display,win,0,0) ;
  colormap=DefaultColormap(display,0) ;
  XParseColor(display,colormap,color_hex_fg,&fg_color) ;
  XAllocColor(display,colormap,&fg_color) ;
  XSetForeground(display,ret,fg_color.pixel) ;
 
  XParseColor(display,colormap,color_hex_bg,&bg_color) ;
  XAllocColor(display,colormap,&bg_color) ;
  XSetBackground(display,ret,bg_color.pixel) ;
 
  if ( fill_style ) {
    XSetFillStyle(display, ret, fill_style) ;
      if (fill_style == FillTiled ) {
	/** The tile and GC must have the same depth, or a BadMatch error results. */
	XSetTile(display, ret, tile) ;
      }
      else if (fill_style == FillStippled ) {
	XSetStipple(display, ret, stipple) ;
    }
  }
 
  return ret ;
}
Si vous désirez plus d'informations sur la Xlib sur laquelle se base GTK et qui est une application client-serveur ce qui permet de passer une IP a la fonction XOpenDisplay(display_name) et donc d'avoir un display distant.
Voici quelque liens utiles:
-> Un tutoriel sommaire.
-> Un excellent tutoriel
-> Une documentation exhaustive.

Merci pour vos réactions, je suis ouvert a toutes critiques qu'elles soit bonne ou mauvaise, idée d'amélioration etc...

PS: Petite problématique avec le paramètre FillTiled, concernant les Pixmaps, comme line_style, ce problème est mis en commentaire a l'endroit du code concerné.