File: classGFC_1_1Gdk_1_1GCValues.html

package info (click to toggle)
gfcui 2.3.1-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 43,420 kB
  • ctags: 18,023
  • sloc: cpp: 53,967; sh: 31,555; makefile: 1,322; perl: 108
file content (974 lines) | stat: -rw-r--r-- 52,215 bytes parent folder | download | duplicates (3)
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
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html; charset=ISO-8859-1"
 http-equiv="content-type">
  <title>GTK+ Foundation Classes</title>
  <link href="gfc.css" rel="stylesheet" type="text/css">
  <meta content="The GFC Development Team" name="author">
  <meta content="Core Library Reference Manual" name="description">
</head>
<body style="color: rgb(0, 0, 0); background-color: rgb(243, 244, 248);"
 alink="#000099" link="#000099" vlink="#990099">
<table style="text-align: left; width: 1227px; height: 117px;"
 border="0" cellpadding="0" cellspacing="0">
  <tbody>
    <tr>
      <td
 style="text-align: center; background-color: rgb(255, 255, 255); width: 220px; vertical-align: top;"><img
 alt="GFC Logo" src="../images/gfc.png"
 style="width: 207px; height: 92px;"></td>
      <td
 style="text-align: center; background-color: rgb(87, 107, 152); vertical-align: middle;"><img
 alt="GFC Title Logo" src="../images/gfc-title.png"
 style="width: 418px; height: 76px;"><br>
      </td>
    </tr>
    <tr>
      <td
 style="text-align: center; background-color: rgb(65, 77, 104); vertical-align: middle;"><big><span
 style="color: rgb(255, 255, 153); font-weight: bold;">Reference Manual</span></big><br>
      </td>
      <td
 style="text-align: center; background-color: rgb(148, 164, 200); vertical-align: middle;"><small
 style="font-family: helvetica,arial,sans-serif;"><a
 href="../html/index.html">Main Page</a>&nbsp; |&nbsp; <a
 href="../html/namespaces.html">Namespace List</a>&nbsp; |&nbsp; <a
 href="classes.html">Alphabetical List</a>&nbsp; |&nbsp; <a
 href="../html/annotated.html">Class List</a>&nbsp; |&nbsp; <a
 href="../html/files.html">File List</a></small><br>
      </td>
    </tr>
  </tbody>
</table>
<small> </small>
</body>
</html>
<!-- Generated by Doxygen 1.3.8 -->
<h1>GFC::Gdk::GCValues Class Reference</h1>A GdkGCValues C++ wrapper class.  
<a href="#_details">More...</a>
<p>
<code>#include &lt;<a class="el" href="gtk_2gc_8hh-source.html">gfc/gdk/gc.hh</a>&gt;</code>
<p>
<a href="classGFC_1_1Gdk_1_1GCValues-members.html">List of all members.</a><h2>Public Member Functions</h2>
<tr><td colspan="2"><div class="groupHeader">Constructors</div></td></tr>
<ul>
<li><a class="anchor" name="z158_0" doxytag="GFC::Gdk::GCValues::GCValues" ></a>
<a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z158_0">GCValues</a> ()
<dl class="el"><dd class="mdescRight">Construct a new <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html">GCValues</a> object. <br></dl><li><a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z158_1">GCValues</a> (const <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html">GCValues</a> &amp;src)
<dl class="el"><dd class="mdescRight">Copy constructor.  <a href="#z158_1"></a><br></dl><li><a class="anchor" name="z158_2" doxytag="GFC::Gdk::GCValues::~GCValues" ></a>
<a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z158_2">~GCValues</a> ()
<dl class="el"><dd class="mdescRight">Destructor. <br></dl><li><a class="el" href="classGFC_1_1Gdk_1_1GCValues.html">GCValues</a> &amp; <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z158_3">operator=</a> (const <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html">GCValues</a> &amp;src)
<dl class="el"><dd class="mdescRight">Assignemnt operator.  <a href="#z158_3"></a><br></dl></ul>
<tr><td colspan="2"><div class="groupHeader">Accessors</div></td></tr>
<ul>
<li><a class="anchor" name="z159_0" doxytag="GFC::Gdk::GCValues::gdk_gc_values" ></a>
GdkGCValues * <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z159_0">gdk_gc_values</a> () const
<dl class="el"><dd class="mdescRight">Get a pointer to the GdkGCValues structure. <br></dl><li><a class="anchor" name="z159_1" doxytag="GFC::Gdk::GCValues::gdk_gc_values_mask" ></a>
GdkGCValuesMask <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z159_1">gdk_gc_values_mask</a> () const
<dl class="el"><dd class="mdescRight">Returns the bit flags that indicate which values are currently set. <br></dl><li><a class="anchor" name="z159_2" doxytag="GFC::Gdk::GCValues::foreground" ></a>
<a class="el" href="classGFC_1_1Gdk_1_1Color.html">Color</a> <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z159_2">foreground</a> () const
<dl class="el"><dd class="mdescRight">Returns the foreground color. <br></dl><li><a class="anchor" name="z159_3" doxytag="GFC::Gdk::GCValues::foreground_set" ></a>
bool <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z159_3">foreground_set</a> () const
<dl class="el"><dd class="mdescRight">Returns true if the foreground value is set. <br></dl><li><a class="anchor" name="z159_4" doxytag="GFC::Gdk::GCValues::background" ></a>
<a class="el" href="classGFC_1_1Gdk_1_1Color.html">Color</a> <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z159_4">background</a> () const
<dl class="el"><dd class="mdescRight">Returns the background color. <br></dl><li><a class="anchor" name="z159_5" doxytag="GFC::Gdk::GCValues::background_set" ></a>
bool <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z159_5">background_set</a> () const
<dl class="el"><dd class="mdescRight">Returns true if the background value is set. <br></dl><li><a class="anchor" name="z159_6" doxytag="GFC::Gdk::GCValues::function" ></a>
<a class="el" href="namespaceGFC_1_1Gdk.html#a269">Function</a> <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z159_6">function</a> () const
<dl class="el"><dd class="mdescRight">Returns the bitwise operation used when drawing. <br></dl><li><a class="anchor" name="z159_7" doxytag="GFC::Gdk::GCValues::function_set" ></a>
bool <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z159_7">function_set</a> () const
<dl class="el"><dd class="mdescRight">Returns true if the function value is set. <br></dl><li><a class="anchor" name="z159_8" doxytag="GFC::Gdk::GCValues::fill" ></a>
<a class="el" href="namespaceGFC_1_1Gdk.html#a268">Fill</a> <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z159_8">fill</a> () const
<dl class="el"><dd class="mdescRight">Returns the fill style. <br></dl><li><a class="anchor" name="z159_9" doxytag="GFC::Gdk::GCValues::fill_set" ></a>
bool <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z159_9">fill_set</a> () const
<dl class="el"><dd class="mdescRight">Returns true if the fill value is set. <br></dl><li><a class="anchor" name="z159_10" doxytag="GFC::Gdk::GCValues::tile" ></a>
<a class="el" href="classGFC_1_1Gdk_1_1Pixmap.html">Pixmap</a> * <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z159_10">tile</a> () const
<dl class="el"><dd class="mdescRight">Returns the tile pixmap. <br></dl><li><a class="anchor" name="z159_11" doxytag="GFC::Gdk::GCValues::tile_set" ></a>
bool <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z159_11">tile_set</a> () const
<dl class="el"><dd class="mdescRight">Returns true if the tile pixmap is set. <br></dl><li><a class="anchor" name="z159_12" doxytag="GFC::Gdk::GCValues::stipple" ></a>
<a class="el" href="classGFC_1_1Gdk_1_1Bitmap.html">Bitmap</a> * <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z159_12">stipple</a> () const
<dl class="el"><dd class="mdescRight">Returns the stipple bitmap. <br></dl><li><a class="anchor" name="z159_13" doxytag="GFC::Gdk::GCValues::stipple_set" ></a>
bool <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z159_13">stipple_set</a> () const
<dl class="el"><dd class="mdescRight">Returns true if the stipple bitmap is set. <br></dl><li><a class="anchor" name="z159_14" doxytag="GFC::Gdk::GCValues::clip_mask" ></a>
<a class="el" href="classGFC_1_1Gdk_1_1Bitmap.html">Bitmap</a> * <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z159_14">clip_mask</a> () const
<dl class="el"><dd class="mdescRight">Returns the clip mask bitmap. <br></dl><li><a class="anchor" name="z159_15" doxytag="GFC::Gdk::GCValues::clip_mask_set" ></a>
bool <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z159_15">clip_mask_set</a> () const
<dl class="el"><dd class="mdescRight">Returns true if the clip_mask bitmap is set. <br></dl><li><a class="anchor" name="z159_16" doxytag="GFC::Gdk::GCValues::subwindow_mode" ></a>
<a class="el" href="namespaceGFC_1_1Gdk.html#a272">SubwindowMode</a> <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z159_16">subwindow_mode</a> () const
<dl class="el"><dd class="mdescRight">Returns the subwindow mode. <br></dl><li><a class="anchor" name="z159_17" doxytag="GFC::Gdk::GCValues::subwindow_mode_set" ></a>
bool <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z159_17">subwindow_mode_set</a> () const
<dl class="el"><dd class="mdescRight">Returns true if the subwindow_mode value is set. <br></dl><li><a class="anchor" name="z159_18" doxytag="GFC::Gdk::GCValues::ts_x_origin" ></a>
int <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z159_18">ts_x_origin</a> () const
<dl class="el"><dd class="mdescRight">Returns the x origin of the tile or stipple. <br></dl><li><a class="anchor" name="z159_19" doxytag="GFC::Gdk::GCValues::ts_x_origin_set" ></a>
bool <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z159_19">ts_x_origin_set</a> () const
<dl class="el"><dd class="mdescRight">Returns true if the ts_x_origin value is set. <br></dl><li><a class="anchor" name="z159_20" doxytag="GFC::Gdk::GCValues::ts_y_origin" ></a>
int <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z159_20">ts_y_origin</a> () const
<dl class="el"><dd class="mdescRight">Returns the y origin of the tile or stipple. <br></dl><li><a class="anchor" name="z159_21" doxytag="GFC::Gdk::GCValues::ts_y_origin_set" ></a>
bool <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z159_21">ts_y_origin_set</a> () const
<dl class="el"><dd class="mdescRight">Returns true if the ts_y_origin value is set. <br></dl><li><a class="anchor" name="z159_22" doxytag="GFC::Gdk::GCValues::clip_x_origin" ></a>
int <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z159_22">clip_x_origin</a> () const
<dl class="el"><dd class="mdescRight">Returns the x origin of the clip mask. <br></dl><li><a class="anchor" name="z159_23" doxytag="GFC::Gdk::GCValues::clip_x_origin_set" ></a>
bool <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z159_23">clip_x_origin_set</a> () const
<dl class="el"><dd class="mdescRight">Returns true if the clip_x_origin value is set. <br></dl><li><a class="anchor" name="z159_24" doxytag="GFC::Gdk::GCValues::clip_y_origin" ></a>
int <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z159_24">clip_y_origin</a> () const
<dl class="el"><dd class="mdescRight">Returns the y origin of the clip mask. <br></dl><li><a class="anchor" name="z159_25" doxytag="GFC::Gdk::GCValues::clip_y_origin_set" ></a>
bool <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z159_25">clip_y_origin_set</a> () const
<dl class="el"><dd class="mdescRight">Returns true if the clip_y_origin value is set. <br></dl><li><a class="anchor" name="z159_26" doxytag="GFC::Gdk::GCValues::graphics_exposures" ></a>
bool <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z159_26">graphics_exposures</a> () const
<dl class="el"><dd class="mdescRight">Returns true graphics exposures are enabled. <br></dl><li><a class="anchor" name="z159_27" doxytag="GFC::Gdk::GCValues::graphics_exposures_set" ></a>
bool <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z159_27">graphics_exposures_set</a> () const
<dl class="el"><dd class="mdescRight">Returns true if the graphics_exposures value is set. <br></dl><li><a class="anchor" name="z159_28" doxytag="GFC::Gdk::GCValues::line_width" ></a>
int <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z159_28">line_width</a> () const
<dl class="el"><dd class="mdescRight">Returns the line width. <br></dl><li><a class="anchor" name="z159_29" doxytag="GFC::Gdk::GCValues::line_width_set" ></a>
bool <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z159_29">line_width_set</a> () const
<dl class="el"><dd class="mdescRight">Returns true if the line_width value is set. <br></dl><li><a class="anchor" name="z159_30" doxytag="GFC::Gdk::GCValues::line_style" ></a>
<a class="el" href="namespaceGFC_1_1Gdk.html#a271">LineStyle</a> <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z159_30">line_style</a> () const
<dl class="el"><dd class="mdescRight">Returns the way dashed lines are drawn. <br></dl><li><a class="anchor" name="z159_31" doxytag="GFC::Gdk::GCValues::line_style_set" ></a>
bool <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z159_31">line_style_set</a> () const
<dl class="el"><dd class="mdescRight">Returns true if the line_style value is set. <br></dl><li><a class="anchor" name="z159_32" doxytag="GFC::Gdk::GCValues::cap_style" ></a>
<a class="el" href="namespaceGFC_1_1Gdk.html#a267">CapStyle</a> <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z159_32">cap_style</a> () const
<dl class="el"><dd class="mdescRight">Returns the way the ends of lines are drawn. <br></dl><li><a class="anchor" name="z159_33" doxytag="GFC::Gdk::GCValues::cap_style_set" ></a>
bool <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z159_33">cap_style_set</a> () const
<dl class="el"><dd class="mdescRight">Returns true if the cap_style value is set. <br></dl><li><a class="anchor" name="z159_34" doxytag="GFC::Gdk::GCValues::join_style" ></a>
<a class="el" href="namespaceGFC_1_1Gdk.html#a270">JoinStyle</a> <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z159_34">join_style</a> () const
<dl class="el"><dd class="mdescRight">Returns the way joins between lines are drawn. <br></dl><li><a class="anchor" name="z159_35" doxytag="GFC::Gdk::GCValues::join_style_set" ></a>
bool <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z159_35">join_style_set</a> () const
<dl class="el"><dd class="mdescRight">Returns true if the join_style value is set. <br></dl></ul>
<tr><td colspan="2"><div class="groupHeader">Methods</div></td></tr>
<ul>
<li><a class="anchor" name="z160_0" doxytag="GFC::Gdk::GCValues::reset" ></a>
void <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z160_0">reset</a> ()
<dl class="el"><dd class="mdescRight">Resets the object, freeing any pixmaps and setting the bit flag mask to zero. <br></dl><li>void <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z160_1">set_foreground</a> (const <a class="el" href="classGFC_1_1Gdk_1_1Color.html">Color</a> &amp;color)
<dl class="el"><dd class="mdescRight">Sets the foreground color for a graphics context.  <a href="#z160_1"></a><br></dl><li><a class="anchor" name="z160_2" doxytag="GFC::Gdk::GCValues::unset_foreground" ></a>
void <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z160_2">unset_foreground</a> ()
<dl class="el"><dd class="mdescRight">Unsets the foreground bit flag. <br></dl><li>void <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z160_3">set_background</a> (const <a class="el" href="classGFC_1_1Gdk_1_1Color.html">Color</a> &amp;color)
<dl class="el"><dd class="mdescRight">Sets the background color for a graphics context.  <a href="#z160_3"></a><br></dl><li><a class="anchor" name="z160_4" doxytag="GFC::Gdk::GCValues::unset_background" ></a>
void <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z160_4">unset_background</a> ()
<dl class="el"><dd class="mdescRight">Unsets the background bit flag. <br></dl><li>void <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z160_5">set_function</a> (<a class="el" href="namespaceGFC_1_1Gdk.html#a269">Function</a> function)
<dl class="el"><dd class="mdescRight">Determines how the current pixel values and the pixel values being drawn are combined to produce the final pixel values.  <a href="#z160_5"></a><br></dl><li><a class="anchor" name="z160_6" doxytag="GFC::Gdk::GCValues::unset_function" ></a>
void <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z160_6">unset_function</a> ()
<dl class="el"><dd class="mdescRight">Unsets the function bit flag. <br></dl><li>void <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z160_7">set_fill</a> (<a class="el" href="namespaceGFC_1_1Gdk.html#a268">Fill</a> fill)
<dl class="el"><dd class="mdescRight">Set the fill mode for a graphics context.  <a href="#z160_7"></a><br></dl><li><a class="anchor" name="z160_8" doxytag="GFC::Gdk::GCValues::unset_fill" ></a>
void <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z160_8">unset_fill</a> ()
<dl class="el"><dd class="mdescRight">Unsets the fill bit flag. <br></dl><li>void <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z160_9">set_tile</a> (<a class="el" href="classGFC_1_1Gdk_1_1Pixmap.html">Pixmap</a> &amp;tile)
<dl class="el"><dd class="mdescRight">Set a tile pixmap for a graphics context.  <a href="#z160_9"></a><br></dl><li><a class="anchor" name="z160_10" doxytag="GFC::Gdk::GCValues::unset_tile" ></a>
void <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z160_10">unset_tile</a> ()
<dl class="el"><dd class="mdescRight">Unsets the tile bit flag. <br></dl><li>void <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z160_11">set_stipple</a> (<a class="el" href="classGFC_1_1Gdk_1_1Bitmap.html">Bitmap</a> &amp;stipple)
<dl class="el"><dd class="mdescRight">Set the stipple bitmap for a graphics context.  <a href="#z160_11"></a><br></dl><li><a class="anchor" name="z160_12" doxytag="GFC::Gdk::GCValues::unset_stipple" ></a>
void <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z160_12">unset_stipple</a> ()
<dl class="el"><dd class="mdescRight">Unsets the stipple bit flag. <br></dl><li>void <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z160_13">set_clip_mask</a> (<a class="el" href="classGFC_1_1Gdk_1_1Bitmap.html">Bitmap</a> &amp;mask)
<dl class="el"><dd class="mdescRight">Sets the clip mask for a graphics context from a bitmap.  <a href="#z160_13"></a><br></dl><li><a class="anchor" name="z160_14" doxytag="GFC::Gdk::GCValues::unset_clip_mask" ></a>
void <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z160_14">unset_clip_mask</a> ()
<dl class="el"><dd class="mdescRight">Unsets the clip_mask bit flag. <br></dl><li>void <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z160_15">set_subwindow_mode</a> (<a class="el" href="namespaceGFC_1_1Gdk.html#a272">SubwindowMode</a> mode)
<dl class="el"><dd class="mdescRight">Sets how drawing with this graphics context on a window will affect child windows of that window.  <a href="#z160_15"></a><br></dl><li><a class="anchor" name="z160_16" doxytag="GFC::Gdk::GCValues::unset_subwindow_mode" ></a>
void <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z160_16">unset_subwindow_mode</a> ()
<dl class="el"><dd class="mdescRight">Unsets the subwindow_mode bit flag. <br></dl><li>void <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z160_17">set_ts_origin</a> (int x, int y)
<dl class="el"><dd class="mdescRight">Set the origin when using tiles or stipples with the graphics context.  <a href="#z160_17"></a><br></dl><li>void <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z160_18">set_ts_x_origin</a> (int x)
<dl class="el"><dd class="mdescRight">Set the x coordinate of the origin when using tiles or stipples with the graphics context.  <a href="#z160_18"></a><br></dl><li><a class="anchor" name="z160_19" doxytag="GFC::Gdk::GCValues::unset_ts_x_origin" ></a>
void <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z160_19">unset_ts_x_origin</a> ()
<dl class="el"><dd class="mdescRight">Unsets the ts_x_origin bit flag. <br></dl><li>void <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z160_20">set_ts_y_origin</a> (int y)
<dl class="el"><dd class="mdescRight">Set the y coordinate of the origin when using tiles or stipples with the graphics context.  <a href="#z160_20"></a><br></dl><li><a class="anchor" name="z160_21" doxytag="GFC::Gdk::GCValues::unset_ts_y_origin" ></a>
void <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z160_21">unset_ts_y_origin</a> ()
<dl class="el"><dd class="mdescRight">Unsets the ts_y_origin bit flag. <br></dl><li>void <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z160_22">set_clip_origin</a> (int x, int y)
<dl class="el"><dd class="mdescRight">Sets the origin of the clip mask.  <a href="#z160_22"></a><br></dl><li>void <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z160_23">set_clip_x_origin</a> (int x)
<dl class="el"><dd class="mdescRight">Sets the x coordinate of the origin of the clip mask.  <a href="#z160_23"></a><br></dl><li><a class="anchor" name="z160_24" doxytag="GFC::Gdk::GCValues::unset_clip_x_origin" ></a>
void <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z160_24">unset_clip_x_origin</a> ()
<dl class="el"><dd class="mdescRight">Unsets the clip_x_origin bit flag. <br></dl><li>void <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z160_25">set_clip_y_origin</a> (int y)
<dl class="el"><dd class="mdescRight">Sets the y coordinate of the origin of the clip mask.  <a href="#z160_25"></a><br></dl><li><a class="anchor" name="z160_26" doxytag="GFC::Gdk::GCValues::unset_clip_y_origin" ></a>
void <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z160_26">unset_clip_y_origin</a> ()
<dl class="el"><dd class="mdescRight">Unsets the clip_y_origin bit flag. <br></dl><li>void <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z160_27">set_graphics_exposures</a> (bool exposures)
<dl class="el"><dd class="mdescRight">Sets whether copying non-visible portions of a drawable using a graphics context generates exposure events for the corresponding regions of the destination drawable (see <a class="el" href="classGFC_1_1Gdk_1_1Drawable.html#z135_15">Gdk::Drawable::draw_drawable()</a>).  <a href="#z160_27"></a><br></dl><li><a class="anchor" name="z160_28" doxytag="GFC::Gdk::GCValues::unset_graphics_exposures" ></a>
void <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z160_28">unset_graphics_exposures</a> ()
<dl class="el"><dd class="mdescRight">Unsets the graphics_exposures bit flag. <br></dl><li>void <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z160_29">set_line_width</a> (int width)
<dl class="el"><dd class="mdescRight">Sets the line width.  <a href="#z160_29"></a><br></dl><li><a class="anchor" name="z160_30" doxytag="GFC::Gdk::GCValues::unset_line_width" ></a>
void <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z160_30">unset_line_width</a> ()
<dl class="el"><dd class="mdescRight">Unsets the line_width bit flag. <br></dl><li>void <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z160_31">set_line_style</a> (<a class="el" href="namespaceGFC_1_1Gdk.html#a271">LineStyle</a> style)
<dl class="el"><dd class="mdescRight">Sets the way dashed lines are drawn.  <a href="#z160_31"></a><br></dl><li><a class="anchor" name="z160_32" doxytag="GFC::Gdk::GCValues::unset_line_style" ></a>
void <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z160_32">unset_line_style</a> ()
<dl class="el"><dd class="mdescRight">Unsets the line_style bit flag. <br></dl><li>void <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z160_33">set_cap_style</a> (<a class="el" href="namespaceGFC_1_1Gdk.html#a267">CapStyle</a> style)
<dl class="el"><dd class="mdescRight">Sets the way the ends of lines are drawn.  <a href="#z160_33"></a><br></dl><li><a class="anchor" name="z160_34" doxytag="GFC::Gdk::GCValues::unset_cap_style" ></a>
void <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z160_34">unset_cap_style</a> ()
<dl class="el"><dd class="mdescRight">Unsets the cap_style bit flag. <br></dl><li>void <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z160_35">set_join_style</a> (<a class="el" href="namespaceGFC_1_1Gdk.html#a270">JoinStyle</a> style)
<dl class="el"><dd class="mdescRight">Sets the way joins between lines are drawn.  <a href="#z160_35"></a><br></dl><li><a class="anchor" name="z160_36" doxytag="GFC::Gdk::GCValues::unset_join_style" ></a>
void <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z160_36">unset_join_style</a> ()
<dl class="el"><dd class="mdescRight">Unsets the join_style bit flag. <br></dl></ul>
<hr><a name="_details"></a><h2>Detailed Description</h2>
A GdkGCValues C++ wrapper class. 
<p>
A graphics context is created with a set of default values. Any of these values can be set individually by calling one of the <a class="el" href="classGFC_1_1Gdk_1_1GC.html">Gdk::GC</a> methods, such as <a class="el" href="classGFC_1_1Gdk_1_1GC.html#z164_1">Gdk::GC::set_foreground</a> or <a class="el" href="classGFC_1_1Gdk_1_1GC.html#z164_4">Gdk::GC::set_fill()</a>.<p>
The <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html">GCValues</a> object allows you to set multiple values at once when constructing or modifying a graphics context. <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html">GCValues</a> manages the GdkGCValuesMask bit flags internally, so you don't have to worry. Just set the values you want and then pass your <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html">GCValues</a> object to the <a class="el" href="classGFC_1_1Gdk_1_1GC.html">Gdk::GC</a> constructor, or the <a class="el" href="classGFC_1_1Gdk_1_1GC.html#z164_0">Gdk::GC::set_values</a> method if your modifying the graphics context later. You can retreive the currently set values for a <a class="el" href="classGFC_1_1Gdk_1_1GC.html">Gdk::GC</a> by passing a <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html">GCValues</a> object to <a class="el" href="classGFC_1_1Gdk_1_1GC.html#z163_6">Gdk::GC::get_values()</a>. If you want to reuse the same <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html">GCValues</a> object you can unset individual values by calling the corresponding unset_() method, or you reset the entire object to its gfcal state by calling <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html#z160_0">reset()</a>. This will free any set pixmaps and reset the bit flags to zero. 
<p>
<hr><h2>Constructor &amp; Destructor Documentation</h2>
<a class="anchor" name="z158_1" doxytag="GFC::Gdk::GCValues::GCValues" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> GFC::Gdk::GCValues::GCValues           </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">const <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html">GCValues</a> &amp;&nbsp;</td>
          <td class="mdname1" valign="top" nowrap> <em>src</em>          </td>
          <td class="md" valign="top">&nbsp;)&nbsp;</td>
          <td class="md" nowrap></td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Copy constructor. 
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td></td><td valign=top><em>src</em>&nbsp;</td><td>The source <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html">GCValues</a>. </td></tr>
  </table>
</dl>
    </td>
  </tr>
</table>
<hr><h2>Member Function Documentation</h2>
<a class="anchor" name="z158_3" doxytag="GFC::Gdk::GCValues::operator=" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html">GCValues</a>&amp; GFC::Gdk::GCValues::operator=           </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">const <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html">GCValues</a> &amp;&nbsp;</td>
          <td class="mdname1" valign="top" nowrap> <em>src</em>          </td>
          <td class="md" valign="top">&nbsp;)&nbsp;</td>
          <td class="md" nowrap></td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Assignemnt operator. 
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td></td><td valign=top><em>src</em>&nbsp;</td><td>The source <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html">GCValues</a>. </td></tr>
  </table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="z160_3" doxytag="GFC::Gdk::GCValues::set_background" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> void GFC::Gdk::GCValues::set_background           </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">const <a class="el" href="classGFC_1_1Gdk_1_1Color.html">Color</a> &amp;&nbsp;</td>
          <td class="mdname1" valign="top" nowrap> <em>color</em>          </td>
          <td class="md" valign="top">&nbsp;)&nbsp;</td>
          <td class="md" nowrap></td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Sets the background color for a graphics context. 
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td></td><td valign=top><em>color</em>&nbsp;</td><td>The new background color. </td></tr>
  </table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="z160_33" doxytag="GFC::Gdk::GCValues::set_cap_style" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> void GFC::Gdk::GCValues::set_cap_style           </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top"><a class="el" href="namespaceGFC_1_1Gdk.html#a267">CapStyle</a>&nbsp;</td>
          <td class="mdname1" valign="top" nowrap> <em>style</em>          </td>
          <td class="md" valign="top">&nbsp;)&nbsp;</td>
          <td class="md" nowrap></td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Sets the way the ends of lines are drawn. 
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td></td><td valign=top><em>style</em>&nbsp;</td><td>The manner in which the ends of lines are drawn. </td></tr>
  </table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="z160_13" doxytag="GFC::Gdk::GCValues::set_clip_mask" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> void GFC::Gdk::GCValues::set_clip_mask           </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top"><a class="el" href="classGFC_1_1Gdk_1_1Bitmap.html">Bitmap</a> &amp;&nbsp;</td>
          <td class="mdname1" valign="top" nowrap> <em>mask</em>          </td>
          <td class="md" valign="top">&nbsp;)&nbsp;</td>
          <td class="md" nowrap></td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Sets the clip mask for a graphics context from a bitmap. 
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td></td><td valign=top><em>mask</em>&nbsp;</td><td>A bitmap.</td></tr>
  </table>
</dl>
<br>
The clip mask is interpreted relative to the clip origin (see <a class="el" href="classGFC_1_1Gdk_1_1GC.html#z164_9">Gdk::GC::set_clip_origin()</a>).     </td>
  </tr>
</table>
<a class="anchor" name="z160_22" doxytag="GFC::Gdk::GCValues::set_clip_origin" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> void GFC::Gdk::GCValues::set_clip_origin           </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">int&nbsp;</td>
          <td class="mdname" nowrap> <em>x</em>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap>int&nbsp;</td>
          <td class="mdname" nowrap> <em>y</em></td>
        </tr>
        <tr>
          <td></td>
          <td class="md">)&nbsp;</td>
          <td class="md" colspan="2"></td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Sets the origin of the clip mask. 
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td></td><td valign=top><em>x</em>&nbsp;</td><td>The X coordinate of the origin. </td></tr>
    <tr><td></td><td valign=top><em>y</em>&nbsp;</td><td>The Y coordinate of the origin.</td></tr>
  </table>
</dl>
<br>
The coordinates are interpreted relative to the upper-left corner of the destination drawable of the current operation.     </td>
  </tr>
</table>
<a class="anchor" name="z160_23" doxytag="GFC::Gdk::GCValues::set_clip_x_origin" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> void GFC::Gdk::GCValues::set_clip_x_origin           </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">int&nbsp;</td>
          <td class="mdname1" valign="top" nowrap> <em>x</em>          </td>
          <td class="md" valign="top">&nbsp;)&nbsp;</td>
          <td class="md" nowrap></td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Sets the x coordinate of the origin of the clip mask. 
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td></td><td valign=top><em>x</em>&nbsp;</td><td>The X coordinate of the origin.</td></tr>
  </table>
</dl>
<br>
The x coordinate is interpreted relative to the upper-left corner of the destination drawable of the current operation.     </td>
  </tr>
</table>
<a class="anchor" name="z160_25" doxytag="GFC::Gdk::GCValues::set_clip_y_origin" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> void GFC::Gdk::GCValues::set_clip_y_origin           </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">int&nbsp;</td>
          <td class="mdname1" valign="top" nowrap> <em>y</em>          </td>
          <td class="md" valign="top">&nbsp;)&nbsp;</td>
          <td class="md" nowrap></td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Sets the y coordinate of the origin of the clip mask. 
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td></td><td valign=top><em>y</em>&nbsp;</td><td>The Y coordinate of the origin.</td></tr>
  </table>
</dl>
<br>
The y coordinate is interpreted relative to the upper-left corner of the destination drawable of the current operation.     </td>
  </tr>
</table>
<a class="anchor" name="z160_7" doxytag="GFC::Gdk::GCValues::set_fill" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> void GFC::Gdk::GCValues::set_fill           </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top"><a class="el" href="namespaceGFC_1_1Gdk.html#a268">Fill</a>&nbsp;</td>
          <td class="mdname1" valign="top" nowrap> <em>fill</em>          </td>
          <td class="md" valign="top">&nbsp;)&nbsp;</td>
          <td class="md" nowrap></td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Set the fill mode for a graphics context. 
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td></td><td valign=top><em>fill</em>&nbsp;</td><td>The new fill mode. </td></tr>
  </table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="z160_1" doxytag="GFC::Gdk::GCValues::set_foreground" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> void GFC::Gdk::GCValues::set_foreground           </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">const <a class="el" href="classGFC_1_1Gdk_1_1Color.html">Color</a> &amp;&nbsp;</td>
          <td class="mdname1" valign="top" nowrap> <em>color</em>          </td>
          <td class="md" valign="top">&nbsp;)&nbsp;</td>
          <td class="md" nowrap></td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Sets the foreground color for a graphics context. 
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td></td><td valign=top><em>color</em>&nbsp;</td><td>The new foreground color. </td></tr>
  </table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="z160_5" doxytag="GFC::Gdk::GCValues::set_function" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> void GFC::Gdk::GCValues::set_function           </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top"><a class="el" href="namespaceGFC_1_1Gdk.html#a269">Function</a>&nbsp;</td>
          <td class="mdname1" valign="top" nowrap> <em>function</em>          </td>
          <td class="md" valign="top">&nbsp;)&nbsp;</td>
          <td class="md" nowrap></td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Determines how the current pixel values and the pixel values being drawn are combined to produce the final pixel values. 
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td></td><td valign=top><em>function</em>&nbsp;</td><td>The bitwise operation to use when drawing. </td></tr>
  </table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="z160_27" doxytag="GFC::Gdk::GCValues::set_graphics_exposures" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> void GFC::Gdk::GCValues::set_graphics_exposures           </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">bool&nbsp;</td>
          <td class="mdname1" valign="top" nowrap> <em>exposures</em>          </td>
          <td class="md" valign="top">&nbsp;)&nbsp;</td>
          <td class="md" nowrap></td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Sets whether copying non-visible portions of a drawable using a graphics context generates exposure events for the corresponding regions of the destination drawable (see <a class="el" href="classGFC_1_1Gdk_1_1Drawable.html#z135_15">Gdk::Drawable::draw_drawable()</a>). 
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td></td><td valign=top><em>exposures</em>&nbsp;</td><td>If <em>true</em>, exposure events will be generated. </td></tr>
  </table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="z160_35" doxytag="GFC::Gdk::GCValues::set_join_style" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> void GFC::Gdk::GCValues::set_join_style           </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top"><a class="el" href="namespaceGFC_1_1Gdk.html#a270">JoinStyle</a>&nbsp;</td>
          <td class="mdname1" valign="top" nowrap> <em>style</em>          </td>
          <td class="md" valign="top">&nbsp;)&nbsp;</td>
          <td class="md" nowrap></td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Sets the way joins between lines are drawn. 
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td></td><td valign=top><em>style</em>&nbsp;</td><td>The manner in which lines are joined together. </td></tr>
  </table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="z160_31" doxytag="GFC::Gdk::GCValues::set_line_style" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> void GFC::Gdk::GCValues::set_line_style           </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top"><a class="el" href="namespaceGFC_1_1Gdk.html#a271">LineStyle</a>&nbsp;</td>
          <td class="mdname1" valign="top" nowrap> <em>style</em>          </td>
          <td class="md" valign="top">&nbsp;)&nbsp;</td>
          <td class="md" nowrap></td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Sets the way dashed lines are drawn. 
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td></td><td valign=top><em>style</em>&nbsp;</td><td>The dash-style for lines. </td></tr>
  </table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="z160_29" doxytag="GFC::Gdk::GCValues::set_line_width" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> void GFC::Gdk::GCValues::set_line_width           </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">int&nbsp;</td>
          <td class="mdname1" valign="top" nowrap> <em>width</em>          </td>
          <td class="md" valign="top">&nbsp;)&nbsp;</td>
          <td class="md" nowrap></td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Sets the line width. 
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td></td><td valign=top><em>width</em>&nbsp;</td><td>The width of lines. </td></tr>
  </table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="z160_11" doxytag="GFC::Gdk::GCValues::set_stipple" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> void GFC::Gdk::GCValues::set_stipple           </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top"><a class="el" href="classGFC_1_1Gdk_1_1Bitmap.html">Bitmap</a> &amp;&nbsp;</td>
          <td class="mdname1" valign="top" nowrap> <em>stipple</em>          </td>
          <td class="md" valign="top">&nbsp;)&nbsp;</td>
          <td class="md" nowrap></td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Set the stipple bitmap for a graphics context. 
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td></td><td valign=top><em>stipple</em>&nbsp;</td><td>The new stipple bitmap.</td></tr>
  </table>
</dl>
<br>
The stipple will only be used if the fill mode is <a class="el" href="namespaceGFC_1_1Gdk.html#a268a93">Gdk::STIPPLED</a> or <a class="el" href="namespaceGFC_1_1Gdk.html#a268a94">Gdk::OPAQUE_STIPPLED</a>.     </td>
  </tr>
</table>
<a class="anchor" name="z160_15" doxytag="GFC::Gdk::GCValues::set_subwindow_mode" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> void GFC::Gdk::GCValues::set_subwindow_mode           </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top"><a class="el" href="namespaceGFC_1_1Gdk.html#a272">SubwindowMode</a>&nbsp;</td>
          <td class="mdname1" valign="top" nowrap> <em>mode</em>          </td>
          <td class="md" valign="top">&nbsp;)&nbsp;</td>
          <td class="md" nowrap></td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Sets how drawing with this graphics context on a window will affect child windows of that window. 
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td></td><td valign=top><em>mode</em>&nbsp;</td><td>The subwindow mode. </td></tr>
  </table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="z160_9" doxytag="GFC::Gdk::GCValues::set_tile" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> void GFC::Gdk::GCValues::set_tile           </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top"><a class="el" href="classGFC_1_1Gdk_1_1Pixmap.html">Pixmap</a> &amp;&nbsp;</td>
          <td class="mdname1" valign="top" nowrap> <em>tile</em>          </td>
          <td class="md" valign="top">&nbsp;)&nbsp;</td>
          <td class="md" nowrap></td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Set a tile pixmap for a graphics context. 
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td></td><td valign=top><em>tile</em>&nbsp;</td><td>The new tile pixmap.</td></tr>
  </table>
</dl>
<br>
This will only be used if the fill mode is <a class="el" href="namespaceGFC_1_1Gdk.html#a268a92">Gdk::TILED</a>.     </td>
  </tr>
</table>
<a class="anchor" name="z160_17" doxytag="GFC::Gdk::GCValues::set_ts_origin" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> void GFC::Gdk::GCValues::set_ts_origin           </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">int&nbsp;</td>
          <td class="mdname" nowrap> <em>x</em>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap>int&nbsp;</td>
          <td class="mdname" nowrap> <em>y</em></td>
        </tr>
        <tr>
          <td></td>
          <td class="md">)&nbsp;</td>
          <td class="md" colspan="2"></td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Set the origin when using tiles or stipples with the graphics context. 
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td></td><td valign=top><em>x</em>&nbsp;</td><td>The X coordinate of the origin. </td></tr>
    <tr><td></td><td valign=top><em>y</em>&nbsp;</td><td>The Y coordinate of the origin.</td></tr>
  </table>
</dl>
<br>
The tile or stipple will be aligned such that the upper left corner of the tile or stipple will coincide with this point.     </td>
  </tr>
</table>
<a class="anchor" name="z160_18" doxytag="GFC::Gdk::GCValues::set_ts_x_origin" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> void GFC::Gdk::GCValues::set_ts_x_origin           </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">int&nbsp;</td>
          <td class="mdname1" valign="top" nowrap> <em>x</em>          </td>
          <td class="md" valign="top">&nbsp;)&nbsp;</td>
          <td class="md" nowrap></td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Set the x coordinate of the origin when using tiles or stipples with the graphics context. 
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td></td><td valign=top><em>x</em>&nbsp;</td><td>The X coordinate of the origin.</td></tr>
  </table>
</dl>
<br>
The tile or stipple will be aligned such that the upper left corner of the tile or stipple will coincide with this x coordinate.     </td>
  </tr>
</table>
<a class="anchor" name="z160_20" doxytag="GFC::Gdk::GCValues::set_ts_y_origin" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> void GFC::Gdk::GCValues::set_ts_y_origin           </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">int&nbsp;</td>
          <td class="mdname1" valign="top" nowrap> <em>y</em>          </td>
          <td class="md" valign="top">&nbsp;)&nbsp;</td>
          <td class="md" nowrap></td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Set the y coordinate of the origin when using tiles or stipples with the graphics context. 
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td></td><td valign=top><em>y</em>&nbsp;</td><td>The Y coordinate of the origin.</td></tr>
  </table>
</dl>
<br>
The tile or stipple will be aligned such that the upper left corner of the tile or stipple will coincide with this y coordinate.     </td>
  </tr>
</table>
<hr>The documentation for this class was generated from the following file:<ul>
<li><a class="el" href="gdk_2gc_8hh-source.html">gdk/gc.hh</a></ul>
<hr size="1"><address style="align: right;"><small>Generated on Tue Aug 24 00:34:36 2004 for GFC-UI by
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border=0 ></a> 1.3.8 </small></address>
</body>
</html>