File: GDataYouTubeQuery.html

package info (click to toggle)
libgdata 0.6.4-2%2Bsqueeze1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 8,836 kB
  • ctags: 5,010
  • sloc: ansic: 26,815; sh: 10,319; makefile: 539; xml: 247
file content (1048 lines) | stat: -rw-r--r-- 74,788 bytes parent folder | download
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
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>GDataYouTubeQuery</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="GData Reference Manual">
<link rel="up" href="ch08.html" title="YouTube API">
<link rel="prev" href="GDataYouTubeService.html" title="GDataYouTubeService">
<link rel="next" href="GDataYouTubeVideo.html" title="GDataYouTubeVideo">
<meta name="generator" content="GTK-Doc V1.14 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
<tr valign="middle">
<td><a accesskey="p" href="GDataYouTubeService.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
<td><a accesskey="u" href="ch08.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
<th width="100%" align="center">GData Reference Manual</th>
<td><a accesskey="n" href="GDataYouTubeVideo.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
</tr>
<tr><td colspan="5" class="shortcuts">
<a href="#GDataYouTubeQuery.synopsis" class="shortcut">Top</a>
                   | 
                  <a href="#GDataYouTubeQuery.description" class="shortcut">Description</a>
                   | 
                  <a href="#GDataYouTubeQuery.object-hierarchy" class="shortcut">Object Hierarchy</a>
                   | 
                  <a href="#GDataYouTubeQuery.properties" class="shortcut">Properties</a>
</td></tr>
</table>
<div class="refentry" title="GDataYouTubeQuery">
<a name="GDataYouTubeQuery"></a><div class="titlepage"></div>
<div class="refnamediv"><table width="100%"><tr>
<td valign="top">
<h2><span class="refentrytitle"><a name="GDataYouTubeQuery.top_of_page"></a>GDataYouTubeQuery</span></h2>
<p>GDataYouTubeQuery — GData YouTube query object</p>
</td>
<td valign="top" align="right"></td>
</tr></table></div>
<div class="refsect1" title="Stability Level">
<a name="GDataYouTubeQuery.stability-level"></a><h2>Stability Level</h2>
Unstable, unless otherwise indicated
</div>
<div class="refsynopsisdiv" title="Synopsis">
<a name="GDataYouTubeQuery.synopsis"></a><h2>Synopsis</h2>
<pre class="synopsis">
#include &lt;gdata/services/youtube/gdata-youtube-query.h&gt;

                    <a class="link" href="GDataYouTubeQuery.html#GDataYouTubeQuery-struct" title="GDataYouTubeQuery">GDataYouTubeQuery</a>;
                    <a class="link" href="GDataYouTubeQuery.html#GDataYouTubeQueryClass" title="GDataYouTubeQueryClass">GDataYouTubeQueryClass</a>;
enum                <a class="link" href="GDataYouTubeQuery.html#GDataYouTubeAge" title="enum GDataYouTubeAge">GDataYouTubeAge</a>;
enum                <a class="link" href="GDataYouTubeQuery.html#GDataYouTubeFormat" title="enum GDataYouTubeFormat">GDataYouTubeFormat</a>;
enum                <a class="link" href="GDataYouTubeQuery.html#GDataYouTubeSafeSearch" title="enum GDataYouTubeSafeSearch">GDataYouTubeSafeSearch</a>;
enum                <a class="link" href="GDataYouTubeQuery.html#GDataYouTubeSortOrder" title="enum GDataYouTubeSortOrder">GDataYouTubeSortOrder</a>;
enum                <a class="link" href="GDataYouTubeQuery.html#GDataYouTubeUploader" title="enum GDataYouTubeUploader">GDataYouTubeUploader</a>;
<a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="returnvalue">GDataYouTubeQuery</span></a> * <a class="link" href="GDataYouTubeQuery.html#gdata-youtube-query-new" title="gdata_youtube_query_new ()">gdata_youtube_query_new</a>             (<em class="parameter"><code>const <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *q</code></em>);
<a class="link" href="GDataYouTubeQuery.html#GDataYouTubeAge" title="enum GDataYouTubeAge"><span class="returnvalue">GDataYouTubeAge</span></a>     <a class="link" href="GDataYouTubeQuery.html#gdata-youtube-query-get-age" title="gdata_youtube_query_get_age ()">gdata_youtube_query_get_age</a>         (<em class="parameter"><code><a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a> *self</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="GDataYouTubeQuery.html#gdata-youtube-query-set-age" title="gdata_youtube_query_set_age ()">gdata_youtube_query_set_age</a>         (<em class="parameter"><code><a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a> *self</code></em>,
                                                         <em class="parameter"><code><a class="link" href="GDataYouTubeQuery.html#GDataYouTubeAge" title="enum GDataYouTubeAge"><span class="type">GDataYouTubeAge</span></a> age</code></em>);
<a class="link" href="GDataYouTubeQuery.html#GDataYouTubeFormat" title="enum GDataYouTubeFormat"><span class="returnvalue">GDataYouTubeFormat</span></a>  <a class="link" href="GDataYouTubeQuery.html#gdata-youtube-query-get-format" title="gdata_youtube_query_get_format ()">gdata_youtube_query_get_format</a>      (<em class="parameter"><code><a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a> *self</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="GDataYouTubeQuery.html#gdata-youtube-query-set-format" title="gdata_youtube_query_set_format ()">gdata_youtube_query_set_format</a>      (<em class="parameter"><code><a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a> *self</code></em>,
                                                         <em class="parameter"><code><a class="link" href="GDataYouTubeQuery.html#GDataYouTubeFormat" title="enum GDataYouTubeFormat"><span class="type">GDataYouTubeFormat</span></a> format</code></em>);
const <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *       <a class="link" href="GDataYouTubeQuery.html#gdata-youtube-query-get-language" title="gdata_youtube_query_get_language ()">gdata_youtube_query_get_language</a>    (<em class="parameter"><code><a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a> *self</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="GDataYouTubeQuery.html#gdata-youtube-query-set-language" title="gdata_youtube_query_set_language ()">gdata_youtube_query_set_language</a>    (<em class="parameter"><code><a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a> *self</code></em>,
                                                         <em class="parameter"><code>const <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *language</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="GDataYouTubeQuery.html#gdata-youtube-query-get-location" title="gdata_youtube_query_get_location ()">gdata_youtube_query_get_location</a>    (<em class="parameter"><code><a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a> *self</code></em>,
                                                         <em class="parameter"><code><a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> *latitude</code></em>,
                                                         <em class="parameter"><code><a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> *longitude</code></em>,
                                                         <em class="parameter"><code><a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> *radius</code></em>,
                                                         <em class="parameter"><code><a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> *has_location</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="GDataYouTubeQuery.html#gdata-youtube-query-set-location" title="gdata_youtube_query_set_location ()">gdata_youtube_query_set_location</a>    (<em class="parameter"><code><a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a> *self</code></em>,
                                                         <em class="parameter"><code><a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> latitude</code></em>,
                                                         <em class="parameter"><code><a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> longitude</code></em>,
                                                         <em class="parameter"><code><a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> radius</code></em>,
                                                         <em class="parameter"><code><a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> has_location</code></em>);
const <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *       <a class="link" href="GDataYouTubeQuery.html#gdata-youtube-query-get-order-by" title="gdata_youtube_query_get_order_by ()">gdata_youtube_query_get_order_by</a>    (<em class="parameter"><code><a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a> *self</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="GDataYouTubeQuery.html#gdata-youtube-query-set-order-by" title="gdata_youtube_query_set_order_by ()">gdata_youtube_query_set_order_by</a>    (<em class="parameter"><code><a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a> *self</code></em>,
                                                         <em class="parameter"><code>const <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *order_by</code></em>);
const <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *       <a class="link" href="GDataYouTubeQuery.html#gdata-youtube-query-get-restriction" title="gdata_youtube_query_get_restriction ()">gdata_youtube_query_get_restriction</a> (<em class="parameter"><code><a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a> *self</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="GDataYouTubeQuery.html#gdata-youtube-query-set-restriction" title="gdata_youtube_query_set_restriction ()">gdata_youtube_query_set_restriction</a> (<em class="parameter"><code><a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a> *self</code></em>,
                                                         <em class="parameter"><code>const <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *restriction</code></em>);
<a class="link" href="GDataYouTubeQuery.html#GDataYouTubeSafeSearch" title="enum GDataYouTubeSafeSearch"><span class="returnvalue">GDataYouTubeSafeSearch</span></a>  <a class="link" href="GDataYouTubeQuery.html#gdata-youtube-query-get-safe-search" title="gdata_youtube_query_get_safe_search ()">gdata_youtube_query_get_safe_search</a>
                                                        (<em class="parameter"><code><a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a> *self</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="GDataYouTubeQuery.html#gdata-youtube-query-set-safe-search" title="gdata_youtube_query_set_safe_search ()">gdata_youtube_query_set_safe_search</a> (<em class="parameter"><code><a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a> *self</code></em>,
                                                         <em class="parameter"><code><a class="link" href="GDataYouTubeQuery.html#GDataYouTubeSafeSearch" title="enum GDataYouTubeSafeSearch"><span class="type">GDataYouTubeSafeSearch</span></a> safe_search</code></em>);
<a class="link" href="GDataYouTubeQuery.html#GDataYouTubeSortOrder" title="enum GDataYouTubeSortOrder"><span class="returnvalue">GDataYouTubeSortOrder</span></a>  <a class="link" href="GDataYouTubeQuery.html#gdata-youtube-query-get-sort-order" title="gdata_youtube_query_get_sort_order ()">gdata_youtube_query_get_sort_order</a>
                                                        (<em class="parameter"><code><a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a> *self</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="GDataYouTubeQuery.html#gdata-youtube-query-set-sort-order" title="gdata_youtube_query_set_sort_order ()">gdata_youtube_query_set_sort_order</a>  (<em class="parameter"><code><a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a> *self</code></em>,
                                                         <em class="parameter"><code><a class="link" href="GDataYouTubeQuery.html#GDataYouTubeSortOrder" title="enum GDataYouTubeSortOrder"><span class="type">GDataYouTubeSortOrder</span></a> sort_order</code></em>);
<a class="link" href="GDataYouTubeQuery.html#GDataYouTubeUploader" title="enum GDataYouTubeUploader"><span class="returnvalue">GDataYouTubeUploader</span></a>  <a class="link" href="GDataYouTubeQuery.html#gdata-youtube-query-get-uploader" title="gdata_youtube_query_get_uploader ()">gdata_youtube_query_get_uploader</a>  (<em class="parameter"><code><a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a> *self</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="GDataYouTubeQuery.html#gdata-youtube-query-set-uploader" title="gdata_youtube_query_set_uploader ()">gdata_youtube_query_set_uploader</a>    (<em class="parameter"><code><a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a> *self</code></em>,
                                                         <em class="parameter"><code><a class="link" href="GDataYouTubeQuery.html#GDataYouTubeUploader" title="enum GDataYouTubeUploader"><span class="type">GDataYouTubeUploader</span></a> uploader</code></em>);
</pre>
</div>
<div class="refsect1" title="Object Hierarchy">
<a name="GDataYouTubeQuery.object-hierarchy"></a><h2>Object Hierarchy</h2>
<pre class="synopsis">
  <a href="/opt/gnome2/build/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject">GObject</a>
   +----<a class="link" href="GDataQuery.html" title="GDataQuery">GDataQuery</a>
         +----GDataYouTubeQuery
</pre>
</div>
<div class="refsect1" title="Properties">
<a name="GDataYouTubeQuery.properties"></a><h2>Properties</h2>
<pre class="synopsis">
  "<a class="link" href="GDataYouTubeQuery.html#GDataYouTubeQuery--age" title='The "age" property'>age</a>"                      <a class="link" href="GDataYouTubeQuery.html#GDataYouTubeAge" title="enum GDataYouTubeAge"><span class="type">GDataYouTubeAge</span></a>       : Read / Write
  "<a class="link" href="GDataYouTubeQuery.html#GDataYouTubeQuery--format" title='The "format" property'>format</a>"                   <a class="link" href="GDataYouTubeQuery.html#GDataYouTubeFormat" title="enum GDataYouTubeFormat"><span class="type">GDataYouTubeFormat</span></a>    : Read / Write
  "<a class="link" href="GDataYouTubeQuery.html#GDataYouTubeQuery--has-location" title='The "has-location" property'>has-location</a>"             <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a>              : Read / Write
  "<a class="link" href="GDataYouTubeQuery.html#GDataYouTubeQuery--language" title='The "language" property'>language</a>"                 <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>*                : Read / Write
  "<a class="link" href="GDataYouTubeQuery.html#GDataYouTubeQuery--latitude" title='The "latitude" property'>latitude</a>"                 <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a>               : Read / Write
  "<a class="link" href="GDataYouTubeQuery.html#GDataYouTubeQuery--location-radius" title='The "location-radius" property'>location-radius</a>"          <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a>               : Read / Write
  "<a class="link" href="GDataYouTubeQuery.html#GDataYouTubeQuery--longitude" title='The "longitude" property'>longitude</a>"                <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a>               : Read / Write
  "<a class="link" href="GDataYouTubeQuery.html#GDataYouTubeQuery--order-by" title='The "order-by" property'>order-by</a>"                 <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>*                : Read / Write
  "<a class="link" href="GDataYouTubeQuery.html#GDataYouTubeQuery--restriction" title='The "restriction" property'>restriction</a>"              <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>*                : Read / Write
  "<a class="link" href="GDataYouTubeQuery.html#GDataYouTubeQuery--safe-search" title='The "safe-search" property'>safe-search</a>"              <a class="link" href="GDataYouTubeQuery.html#GDataYouTubeSafeSearch" title="enum GDataYouTubeSafeSearch"><span class="type">GDataYouTubeSafeSearch</span></a>  : Read / Write
  "<a class="link" href="GDataYouTubeQuery.html#GDataYouTubeQuery--sort-order" title='The "sort-order" property'>sort-order</a>"               <a class="link" href="GDataYouTubeQuery.html#GDataYouTubeSortOrder" title="enum GDataYouTubeSortOrder"><span class="type">GDataYouTubeSortOrder</span></a>  : Read / Write
  "<a class="link" href="GDataYouTubeQuery.html#GDataYouTubeQuery--uploader" title='The "uploader" property'>uploader</a>"                 <a class="link" href="GDataYouTubeQuery.html#GDataYouTubeUploader" title="enum GDataYouTubeUploader"><span class="type">GDataYouTubeUploader</span></a>  : Read / Write
</pre>
</div>
<div class="refsect1" title="Description">
<a name="GDataYouTubeQuery.description"></a><h2>Description</h2>
<p>
<a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a> represents a collection of query parameters specific to the YouTube service, which go above and beyond
those catered for by <a class="link" href="GDataQuery.html" title="GDataQuery"><span class="type">GDataQuery</span></a>.
</p>
<p>
For more information on the custom GData query parameters supported by <a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a>, see the <a class="ulink" href="http://code.google.com/apis/youtube/2.0/reference.html#Custom_parameters" target="_top">online documentation</a>.
</p>
</div>
<div class="refsect1" title="Details">
<a name="GDataYouTubeQuery.details"></a><h2>Details</h2>
<div class="refsect2" title="GDataYouTubeQuery">
<a name="GDataYouTubeQuery-struct"></a><h3>GDataYouTubeQuery</h3>
<pre class="programlisting">typedef struct _GDataYouTubeQuery GDataYouTubeQuery;</pre>
<p>
All the fields in the <a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a> structure are private and should never be accessed directly.
</p>
<p class="since">Since 0.3.0</p>
</div>
<hr>
<div class="refsect2" title="GDataYouTubeQueryClass">
<a name="GDataYouTubeQueryClass"></a><h3>GDataYouTubeQueryClass</h3>
<pre class="programlisting">typedef struct {
} GDataYouTubeQueryClass;
</pre>
<p>
All the fields in the <a class="link" href="GDataYouTubeQuery.html#GDataYouTubeQueryClass" title="GDataYouTubeQueryClass"><span class="type">GDataYouTubeQueryClass</span></a> structure are private and should never be accessed directly.
</p>
<p class="since">Since 0.3.0</p>
</div>
<hr>
<div class="refsect2" title="enum GDataYouTubeAge">
<a name="GDataYouTubeAge"></a><h3>enum GDataYouTubeAge</h3>
<pre class="programlisting">typedef enum {
	GDATA_YOUTUBE_AGE_ALL_TIME = 0,
	GDATA_YOUTUBE_AGE_TODAY,
	GDATA_YOUTUBE_AGE_THIS_WEEK,
	GDATA_YOUTUBE_AGE_THIS_MONTH
} GDataYouTubeAge;
</pre>
<p>
Video ages, allowing queries to be limited to videos uploaded in a recent time period.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><a name="GDATA-YOUTUBE-AGE-ALL-TIME:CAPS"></a><span class="term"><code class="literal">GDATA_YOUTUBE_AGE_ALL_TIME</code></span></p></td>
<td>retrieve all videos, regardless of the date they were uploaded
</td>
</tr>
<tr>
<td><p><a name="GDATA-YOUTUBE-AGE-TODAY:CAPS"></a><span class="term"><code class="literal">GDATA_YOUTUBE_AGE_TODAY</code></span></p></td>
<td>retrieve only videos uploaded in the past day
</td>
</tr>
<tr>
<td><p><a name="GDATA-YOUTUBE-AGE-THIS-WEEK:CAPS"></a><span class="term"><code class="literal">GDATA_YOUTUBE_AGE_THIS_WEEK</code></span></p></td>
<td>retrieve only videos uploaded in the past week
</td>
</tr>
<tr>
<td><p><a name="GDATA-YOUTUBE-AGE-THIS-MONTH:CAPS"></a><span class="term"><code class="literal">GDATA_YOUTUBE_AGE_THIS_MONTH</code></span></p></td>
<td>retrieve only videos uploaded in the past month
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.0</p>
</div>
<hr>
<div class="refsect2" title="enum GDataYouTubeFormat">
<a name="GDataYouTubeFormat"></a><h3>enum GDataYouTubeFormat</h3>
<pre class="programlisting">typedef enum {
	GDATA_YOUTUBE_FORMAT_UNKNOWN = 0,
	GDATA_YOUTUBE_FORMAT_RTSP_H263_AMR = 1,
	GDATA_YOUTUBE_FORMAT_HTTP_SWF = 5,
	GDATA_YOUTUBE_FORMAT_RTSP_MPEG4_AAC = 6
} GDataYouTubeFormat;
</pre>
<p>
Video formats available on YouTube. For more information, see the
<a class="ulink" href="http://code.google.com/apis/youtube/2.0/reference.html#formatsp" target="_top">online documentation</a>.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><a name="GDATA-YOUTUBE-FORMAT-UNKNOWN:CAPS"></a><span class="term"><code class="literal">GDATA_YOUTUBE_FORMAT_UNKNOWN</code></span></p></td>
<td>retrieve videos in all formats when querying the service
</td>
</tr>
<tr>
<td><p><a name="GDATA-YOUTUBE-FORMAT-RTSP-H263-AMR:CAPS"></a><span class="term"><code class="literal">GDATA_YOUTUBE_FORMAT_RTSP_H263_AMR</code></span></p></td>
<td>RTSP streaming URI for mobile video playback; H.263 video (up to 176×144) and AMR audio
</td>
</tr>
<tr>
<td><p><a name="GDATA-YOUTUBE-FORMAT-HTTP-SWF:CAPS"></a><span class="term"><code class="literal">GDATA_YOUTUBE_FORMAT_HTTP_SWF</code></span></p></td>
<td>HTTP URI to the embeddable player (SWF) for this video
</td>
</tr>
<tr>
<td><p><a name="GDATA-YOUTUBE-FORMAT-RTSP-MPEG4-AAC:CAPS"></a><span class="term"><code class="literal">GDATA_YOUTUBE_FORMAT_RTSP_MPEG4_AAC</code></span></p></td>
<td>RTSP streaming URI for mobile video playback; MPEG-4 SP video (up to 176×144) and AAC audio
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.0</p>
</div>
<hr>
<div class="refsect2" title="enum GDataYouTubeSafeSearch">
<a name="GDataYouTubeSafeSearch"></a><h3>enum GDataYouTubeSafeSearch</h3>
<pre class="programlisting">typedef enum {
	GDATA_YOUTUBE_SAFE_SEARCH_NONE = 0,
	GDATA_YOUTUBE_SAFE_SEARCH_MODERATE,
	GDATA_YOUTUBE_SAFE_SEARCH_STRICT
} GDataYouTubeSafeSearch;
</pre>
<p>
Safe search levels for removing restricted entries from query results. For more information, see the
<a class="ulink" href="http://code.google.com/apis/youtube/2.0/reference.html#safeSearchsp" target="_top">online documentation</a>.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><a name="GDATA-YOUTUBE-SAFE-SEARCH-NONE:CAPS"></a><span class="term"><code class="literal">GDATA_YOUTUBE_SAFE_SEARCH_NONE</code></span></p></td>
<td>YouTube will not perform any filtering on the search result set
</td>
</tr>
<tr>
<td><p><a name="GDATA-YOUTUBE-SAFE-SEARCH-MODERATE:CAPS"></a><span class="term"><code class="literal">GDATA_YOUTUBE_SAFE_SEARCH_MODERATE</code></span></p></td>
<td>YouTube will filter some content from search results and, at the least,
will filter content that is restricted in your locale
</td>
</tr>
<tr>
<td><p><a name="GDATA-YOUTUBE-SAFE-SEARCH-STRICT:CAPS"></a><span class="term"><code class="literal">GDATA_YOUTUBE_SAFE_SEARCH_STRICT</code></span></p></td>
<td>YouTube will try to exclude all restricted content from the search result set
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.0</p>
</div>
<hr>
<div class="refsect2" title="enum GDataYouTubeSortOrder">
<a name="GDataYouTubeSortOrder"></a><h3>enum GDataYouTubeSortOrder</h3>
<pre class="programlisting">typedef enum {
	GDATA_YOUTUBE_SORT_NONE = 0,
	GDATA_YOUTUBE_SORT_ASCENDING,
	GDATA_YOUTUBE_SORT_DESCENDING
} GDataYouTubeSortOrder;
</pre>
<p>
Sort orders for the search results from queries. They specify the order of the designated order field.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><a name="GDATA-YOUTUBE-SORT-NONE:CAPS"></a><span class="term"><code class="literal">GDATA_YOUTUBE_SORT_NONE</code></span></p></td>
<td>do not explicitly sort in any sense
</td>
</tr>
<tr>
<td><p><a name="GDATA-YOUTUBE-SORT-ASCENDING:CAPS"></a><span class="term"><code class="literal">GDATA_YOUTUBE_SORT_ASCENDING</code></span></p></td>
<td>sort results in ascending order of the order field
</td>
</tr>
<tr>
<td><p><a name="GDATA-YOUTUBE-SORT-DESCENDING:CAPS"></a><span class="term"><code class="literal">GDATA_YOUTUBE_SORT_DESCENDING</code></span></p></td>
<td>sort results in descending order of the order field
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.0</p>
</div>
<hr>
<div class="refsect2" title="enum GDataYouTubeUploader">
<a name="GDataYouTubeUploader"></a><h3>enum GDataYouTubeUploader</h3>
<pre class="programlisting">typedef enum {
	GDATA_YOUTUBE_UPLOADER_ALL = 0,
	GDATA_YOUTUBE_UPLOADER_PARTNER
} GDataYouTubeUploader;
</pre>
<p>
Video uploaders, allowing queries to be limited to returning videos uploaded by YouTube partners.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><a name="GDATA-YOUTUBE-UPLOADER-ALL:CAPS"></a><span class="term"><code class="literal">GDATA_YOUTUBE_UPLOADER_ALL</code></span></p></td>
<td>retrieve all videos, regardless of who uploaded them
</td>
</tr>
<tr>
<td><p><a name="GDATA-YOUTUBE-UPLOADER-PARTNER:CAPS"></a><span class="term"><code class="literal">GDATA_YOUTUBE_UPLOADER_PARTNER</code></span></p></td>
<td>retrieve only videos uploaded by YouTube partners
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.0</p>
</div>
<hr>
<div class="refsect2" title="gdata_youtube_query_new ()">
<a name="gdata-youtube-query-new"></a><h3>gdata_youtube_query_new ()</h3>
<pre class="programlisting"><a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="returnvalue">GDataYouTubeQuery</span></a> * gdata_youtube_query_new             (<em class="parameter"><code>const <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *q</code></em>);</pre>
<p>
Creates a new <a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a> with its <a class="link" href="GDataQuery.html#GDataQuery--q" title='The "q" property'><span class="type">"q"</span></a> property set to <em class="parameter"><code>q</code></em>.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>q</code></em> :</span></p></td>
<td>a query string
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> a new <a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a>

</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.0</p>
</div>
<hr>
<div class="refsect2" title="gdata_youtube_query_get_age ()">
<a name="gdata-youtube-query-get-age"></a><h3>gdata_youtube_query_get_age ()</h3>
<pre class="programlisting"><a class="link" href="GDataYouTubeQuery.html#GDataYouTubeAge" title="enum GDataYouTubeAge"><span class="returnvalue">GDataYouTubeAge</span></a>     gdata_youtube_query_get_age         (<em class="parameter"><code><a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a> *self</code></em>);</pre>
<p>
Gets the <a class="link" href="GDataYouTubeQuery.html#GDataYouTubeQuery--age" title='The "age" property'><span class="type">"age"</span></a> property.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>self</code></em> :</span></p></td>
<td>a <a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> the age property

</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.0</p>
</div>
<hr>
<div class="refsect2" title="gdata_youtube_query_set_age ()">
<a name="gdata-youtube-query-set-age"></a><h3>gdata_youtube_query_set_age ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                gdata_youtube_query_set_age         (<em class="parameter"><code><a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a> *self</code></em>,
                                                         <em class="parameter"><code><a class="link" href="GDataYouTubeQuery.html#GDataYouTubeAge" title="enum GDataYouTubeAge"><span class="type">GDataYouTubeAge</span></a> age</code></em>);</pre>
<p>
Sets the <a class="link" href="GDataYouTubeQuery.html#GDataYouTubeQuery--age" title='The "age" property'><span class="type">"age"</span></a> property of the <a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a> to <em class="parameter"><code>age</code></em>.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>self</code></em> :</span></p></td>
<td>a <a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>age</code></em> :</span></p></td>
<td>the new age
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.0</p>
</div>
<hr>
<div class="refsect2" title="gdata_youtube_query_get_format ()">
<a name="gdata-youtube-query-get-format"></a><h3>gdata_youtube_query_get_format ()</h3>
<pre class="programlisting"><a class="link" href="GDataYouTubeQuery.html#GDataYouTubeFormat" title="enum GDataYouTubeFormat"><span class="returnvalue">GDataYouTubeFormat</span></a>  gdata_youtube_query_get_format      (<em class="parameter"><code><a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a> *self</code></em>);</pre>
<p>
Gets the <a class="link" href="GDataYouTubeQuery.html#GDataYouTubeQuery--format" title='The "format" property'><span class="type">"format"</span></a> property.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>self</code></em> :</span></p></td>
<td>a <a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> the format property

</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.0</p>
</div>
<hr>
<div class="refsect2" title="gdata_youtube_query_set_format ()">
<a name="gdata-youtube-query-set-format"></a><h3>gdata_youtube_query_set_format ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                gdata_youtube_query_set_format      (<em class="parameter"><code><a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a> *self</code></em>,
                                                         <em class="parameter"><code><a class="link" href="GDataYouTubeQuery.html#GDataYouTubeFormat" title="enum GDataYouTubeFormat"><span class="type">GDataYouTubeFormat</span></a> format</code></em>);</pre>
<p>
Sets the <a class="link" href="GDataYouTubeQuery.html#GDataYouTubeQuery--format" title='The "format" property'><span class="type">"format"</span></a> property of the <a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a> to <em class="parameter"><code>format</code></em>.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>self</code></em> :</span></p></td>
<td>a <a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>format</code></em> :</span></p></td>
<td>the requested video format
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.0</p>
</div>
<hr>
<div class="refsect2" title="gdata_youtube_query_get_language ()">
<a name="gdata-youtube-query-get-language"></a><h3>gdata_youtube_query_get_language ()</h3>
<pre class="programlisting">const <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *       gdata_youtube_query_get_language    (<em class="parameter"><code><a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a> *self</code></em>);</pre>
<p>
Gets the <a class="link" href="GDataYouTubeQuery.html#GDataYouTubeQuery--language" title='The "language" property'><span class="type">"language"</span></a> property.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>self</code></em> :</span></p></td>
<td>a <a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> the language property, or <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if it is unset

</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.0</p>
</div>
<hr>
<div class="refsect2" title="gdata_youtube_query_set_language ()">
<a name="gdata-youtube-query-set-language"></a><h3>gdata_youtube_query_set_language ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                gdata_youtube_query_set_language    (<em class="parameter"><code><a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a> *self</code></em>,
                                                         <em class="parameter"><code>const <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *language</code></em>);</pre>
<p>
Sets the <a class="link" href="GDataYouTubeQuery.html#GDataYouTubeQuery--language" title='The "language" property'><span class="type">"language"</span></a> property of the <a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a> to the new language, <em class="parameter"><code>language</code></em>.
</p>
<p>
Set <em class="parameter"><code>language</code></em> to <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to unset the property in the query URI.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>self</code></em> :</span></p></td>
<td>a <a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>language</code></em> :</span></p></td>
<td>a new language name, or <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.0</p>
</div>
<hr>
<div class="refsect2" title="gdata_youtube_query_get_location ()">
<a name="gdata-youtube-query-get-location"></a><h3>gdata_youtube_query_get_location ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                gdata_youtube_query_get_location    (<em class="parameter"><code><a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a> *self</code></em>,
                                                         <em class="parameter"><code><a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> *latitude</code></em>,
                                                         <em class="parameter"><code><a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> *longitude</code></em>,
                                                         <em class="parameter"><code><a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> *radius</code></em>,
                                                         <em class="parameter"><code><a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> *has_location</code></em>);</pre>
<p>
Gets the location-based properties of the <a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a>: <a class="link" href="GDataYouTubeQuery.html#GDataYouTubeQuery--latitude" title='The "latitude" property'><span class="type">"latitude"</span></a>, <a class="link" href="GDataYouTubeQuery.html#GDataYouTubeQuery--longitude" title='The "longitude" property'><span class="type">"longitude"</span></a>,
<a class="link" href="GDataYouTubeQuery.html#GDataYouTubeQuery--location-radius" title='The "location-radius" property'><span class="type">"location-radius"</span></a> and <a class="link" href="GDataYouTubeQuery.html#GDataYouTubeQuery--has-location" title='The "has-location" property'><span class="type">"has-location"</span></a>.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>self</code></em> :</span></p></td>
<td>a <a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>latitude</code></em> :</span></p></td>
<td>a location in which to return the latitude, or <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>longitude</code></em> :</span></p></td>
<td>a location in which to return the longitude, or <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>radius</code></em> :</span></p></td>
<td>a location in which to return the location radius, or <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>has_location</code></em> :</span></p></td>
<td>a location in which to return <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the query is searching for videos with a specific location, <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise, or <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.0</p>
</div>
<hr>
<div class="refsect2" title="gdata_youtube_query_set_location ()">
<a name="gdata-youtube-query-set-location"></a><h3>gdata_youtube_query_set_location ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                gdata_youtube_query_set_location    (<em class="parameter"><code><a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a> *self</code></em>,
                                                         <em class="parameter"><code><a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> latitude</code></em>,
                                                         <em class="parameter"><code><a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> longitude</code></em>,
                                                         <em class="parameter"><code><a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> radius</code></em>,
                                                         <em class="parameter"><code><a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> has_location</code></em>);</pre>
<p>
Sets the location-based properties of the <a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a>: <a class="link" href="GDataYouTubeQuery.html#GDataYouTubeQuery--latitude" title='The "latitude" property'><span class="type">"latitude"</span></a>, <a class="link" href="GDataYouTubeQuery.html#GDataYouTubeQuery--longitude" title='The "longitude" property'><span class="type">"longitude"</span></a>,
<a class="link" href="GDataYouTubeQuery.html#GDataYouTubeQuery--location-radius" title='The "location-radius" property'><span class="type">"location-radius"</span></a> and <a class="link" href="GDataYouTubeQuery.html#GDataYouTubeQuery--has-location" title='The "has-location" property'><span class="type">"has-location"</span></a>.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>self</code></em> :</span></p></td>
<td>a <a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>latitude</code></em> :</span></p></td>
<td>the new latitude, or <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Limits-of-Basic-Types.html#G-MAXDOUBLE:CAPS"><code class="literal">G_MAXDOUBLE</code></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>longitude</code></em> :</span></p></td>
<td>the new longitude, or <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Limits-of-Basic-Types.html#G-MAXDOUBLE:CAPS"><code class="literal">G_MAXDOUBLE</code></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>radius</code></em> :</span></p></td>
<td>the new location radius, or <code class="code">0</code>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>has_location</code></em> :</span></p></td>
<td>
<a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the query is for videos with a specific location, <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.0</p>
</div>
<hr>
<div class="refsect2" title="gdata_youtube_query_get_order_by ()">
<a name="gdata-youtube-query-get-order-by"></a><h3>gdata_youtube_query_get_order_by ()</h3>
<pre class="programlisting">const <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *       gdata_youtube_query_get_order_by    (<em class="parameter"><code><a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a> *self</code></em>);</pre>
<p>
Gets the <a class="link" href="GDataYouTubeQuery.html#GDataYouTubeQuery--order-by" title='The "order-by" property'><span class="type">"order-by"</span></a> property.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>self</code></em> :</span></p></td>
<td>a <a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> the order by property, or <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if it is unset

</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.0</p>
</div>
<hr>
<div class="refsect2" title="gdata_youtube_query_set_order_by ()">
<a name="gdata-youtube-query-set-order-by"></a><h3>gdata_youtube_query_set_order_by ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                gdata_youtube_query_set_order_by    (<em class="parameter"><code><a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a> *self</code></em>,
                                                         <em class="parameter"><code>const <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *order_by</code></em>);</pre>
<p>
Sets the <a class="link" href="GDataYouTubeQuery.html#GDataYouTubeQuery--order-by" title='The "order-by" property'><span class="type">"order-by"</span></a> property of the <a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a> to the new order by string, <em class="parameter"><code>order_by</code></em>.
</p>
<p>
Set <em class="parameter"><code>order_by</code></em> to <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to unset the property in the query URI.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>self</code></em> :</span></p></td>
<td>a <a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>order_by</code></em> :</span></p></td>
<td>a new order by string, or <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.0</p>
</div>
<hr>
<div class="refsect2" title="gdata_youtube_query_get_restriction ()">
<a name="gdata-youtube-query-get-restriction"></a><h3>gdata_youtube_query_get_restriction ()</h3>
<pre class="programlisting">const <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *       gdata_youtube_query_get_restriction (<em class="parameter"><code><a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a> *self</code></em>);</pre>
<p>
Gets the <a class="link" href="GDataYouTubeQuery.html#GDataYouTubeQuery--restriction" title='The "restriction" property'><span class="type">"restriction"</span></a> property.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>self</code></em> :</span></p></td>
<td>a <a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> the restriction property, or <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if it is unset

</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.0</p>
</div>
<hr>
<div class="refsect2" title="gdata_youtube_query_set_restriction ()">
<a name="gdata-youtube-query-set-restriction"></a><h3>gdata_youtube_query_set_restriction ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                gdata_youtube_query_set_restriction (<em class="parameter"><code><a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a> *self</code></em>,
                                                         <em class="parameter"><code>const <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *restriction</code></em>);</pre>
<p>
Sets the <a class="link" href="GDataYouTubeQuery.html#GDataYouTubeQuery--restriction" title='The "restriction" property'><span class="type">"restriction"</span></a> property of the <a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a> to the new restriction string, <em class="parameter"><code>restriction</code></em>.
</p>
<p>
Set <em class="parameter"><code>restriction</code></em> to <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to unset the property in the query URI.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>self</code></em> :</span></p></td>
<td>a <a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>restriction</code></em> :</span></p></td>
<td>a new restriction string, or <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.0</p>
</div>
<hr>
<div class="refsect2" title="gdata_youtube_query_get_safe_search ()">
<a name="gdata-youtube-query-get-safe-search"></a><h3>gdata_youtube_query_get_safe_search ()</h3>
<pre class="programlisting"><a class="link" href="GDataYouTubeQuery.html#GDataYouTubeSafeSearch" title="enum GDataYouTubeSafeSearch"><span class="returnvalue">GDataYouTubeSafeSearch</span></a>  gdata_youtube_query_get_safe_search
                                                        (<em class="parameter"><code><a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a> *self</code></em>);</pre>
<p>
Gets the <a class="link" href="GDataYouTubeQuery.html#GDataYouTubeQuery--safe-search" title='The "safe-search" property'><span class="type">"safe-search"</span></a> property.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>self</code></em> :</span></p></td>
<td>a <a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> the safe search property

</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.0</p>
</div>
<hr>
<div class="refsect2" title="gdata_youtube_query_set_safe_search ()">
<a name="gdata-youtube-query-set-safe-search"></a><h3>gdata_youtube_query_set_safe_search ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                gdata_youtube_query_set_safe_search (<em class="parameter"><code><a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a> *self</code></em>,
                                                         <em class="parameter"><code><a class="link" href="GDataYouTubeQuery.html#GDataYouTubeSafeSearch" title="enum GDataYouTubeSafeSearch"><span class="type">GDataYouTubeSafeSearch</span></a> safe_search</code></em>);</pre>
<p>
Sets the <a class="link" href="GDataYouTubeQuery.html#GDataYouTubeQuery--safe-search" title='The "safe-search" property'><span class="type">"safe-search"</span></a> property of the <a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a> to <em class="parameter"><code>safe_search</code></em>.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>self</code></em> :</span></p></td>
<td>a <a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>safe_search</code></em> :</span></p></td>
<td>a new safe search level
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.0</p>
</div>
<hr>
<div class="refsect2" title="gdata_youtube_query_get_sort_order ()">
<a name="gdata-youtube-query-get-sort-order"></a><h3>gdata_youtube_query_get_sort_order ()</h3>
<pre class="programlisting"><a class="link" href="GDataYouTubeQuery.html#GDataYouTubeSortOrder" title="enum GDataYouTubeSortOrder"><span class="returnvalue">GDataYouTubeSortOrder</span></a>  gdata_youtube_query_get_sort_order
                                                        (<em class="parameter"><code><a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a> *self</code></em>);</pre>
<p>
Gets the <a class="link" href="GDataYouTubeQuery.html#GDataYouTubeQuery--sort-order" title='The "sort-order" property'><span class="type">"sort-order"</span></a> property.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>self</code></em> :</span></p></td>
<td>a <a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> the sort order property

</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.0</p>
</div>
<hr>
<div class="refsect2" title="gdata_youtube_query_set_sort_order ()">
<a name="gdata-youtube-query-set-sort-order"></a><h3>gdata_youtube_query_set_sort_order ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                gdata_youtube_query_set_sort_order  (<em class="parameter"><code><a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a> *self</code></em>,
                                                         <em class="parameter"><code><a class="link" href="GDataYouTubeQuery.html#GDataYouTubeSortOrder" title="enum GDataYouTubeSortOrder"><span class="type">GDataYouTubeSortOrder</span></a> sort_order</code></em>);</pre>
<p>
Sets the <a class="link" href="GDataYouTubeQuery.html#GDataYouTubeQuery--sort-order" title='The "sort-order" property'><span class="type">"sort-order"</span></a> property of the <a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a> to <em class="parameter"><code>sort_order</code></em>.
</p>
<p>
Set <em class="parameter"><code>sort_order</code></em> to <a class="link" href="GDataYouTubeQuery.html#GDATA-YOUTUBE-SORT-NONE:CAPS"><code class="literal">GDATA_YOUTUBE_SORT_NONE</code></a> to unset the property in the query URI.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>self</code></em> :</span></p></td>
<td>a <a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>sort_order</code></em> :</span></p></td>
<td>the new sort order
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.0</p>
</div>
<hr>
<div class="refsect2" title="gdata_youtube_query_get_uploader ()">
<a name="gdata-youtube-query-get-uploader"></a><h3>gdata_youtube_query_get_uploader ()</h3>
<pre class="programlisting"><a class="link" href="GDataYouTubeQuery.html#GDataYouTubeUploader" title="enum GDataYouTubeUploader"><span class="returnvalue">GDataYouTubeUploader</span></a>  gdata_youtube_query_get_uploader  (<em class="parameter"><code><a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a> *self</code></em>);</pre>
<p>
Gets the <a class="link" href="GDataYouTubeQuery.html#GDataYouTubeQuery--uploader" title='The "uploader" property'><span class="type">"uploader"</span></a> property.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>self</code></em> :</span></p></td>
<td>a <a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> the uploader property

</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.0</p>
</div>
<hr>
<div class="refsect2" title="gdata_youtube_query_set_uploader ()">
<a name="gdata-youtube-query-set-uploader"></a><h3>gdata_youtube_query_set_uploader ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                gdata_youtube_query_set_uploader    (<em class="parameter"><code><a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a> *self</code></em>,
                                                         <em class="parameter"><code><a class="link" href="GDataYouTubeQuery.html#GDataYouTubeUploader" title="enum GDataYouTubeUploader"><span class="type">GDataYouTubeUploader</span></a> uploader</code></em>);</pre>
<p>
Sets the <a class="link" href="GDataYouTubeQuery.html#GDataYouTubeQuery--uploader" title='The "uploader" property'><span class="type">"uploader"</span></a> property of the <a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a> to <em class="parameter"><code>uploader</code></em>.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>self</code></em> :</span></p></td>
<td>a <a class="link" href="GDataYouTubeQuery.html" title="GDataYouTubeQuery"><span class="type">GDataYouTubeQuery</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>uploader</code></em> :</span></p></td>
<td>the new uploader
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 0.3.0</p>
</div>
</div>
<div class="refsect1" title="Property Details">
<a name="GDataYouTubeQuery.property-details"></a><h2>Property Details</h2>
<div class="refsect2" title='The "age" property'>
<a name="GDataYouTubeQuery--age"></a><h3>The <code class="literal">"age"</code> property</h3>
<pre class="programlisting">  "age"                      <a class="link" href="GDataYouTubeQuery.html#GDataYouTubeAge" title="enum GDataYouTubeAge"><span class="type">GDataYouTubeAge</span></a>       : Read / Write</pre>
<p>
Restricts the search to videos uploaded within the specified time period. To retrieve videos irrespective of their
age, set the property to <a class="link" href="GDataYouTubeQuery.html#GDATA-YOUTUBE-AGE-ALL-TIME:CAPS"><code class="literal">GDATA_YOUTUBE_AGE_ALL_TIME</code></a>.
</p>
<p>Default value: GDATA_YOUTUBE_AGE_ALL_TIME</p>
<p class="since">Since 0.3.0</p>
</div>
<hr>
<div class="refsect2" title='The "format" property'>
<a name="GDataYouTubeQuery--format"></a><h3>The <code class="literal">"format"</code> property</h3>
<pre class="programlisting">  "format"                   <a class="link" href="GDataYouTubeQuery.html#GDataYouTubeFormat" title="enum GDataYouTubeFormat"><span class="type">GDataYouTubeFormat</span></a>    : Read / Write</pre>
<p>
Specifies that videos must be available in a particular video format. Use <a class="link" href="GDataYouTubeQuery.html#GDATA-YOUTUBE-FORMAT-UNKNOWN:CAPS"><code class="literal">GDATA_YOUTUBE_FORMAT_UNKNOWN</code></a> to
retrieve videos irrespective of their format availability.
</p>
<p>Default value: GDATA_YOUTUBE_FORMAT_UNKNOWN</p>
<p class="since">Since 0.3.0</p>
</div>
<hr>
<div class="refsect2" title='The "has-location" property'>
<a name="GDataYouTubeQuery--has-location"></a><h3>The <code class="literal">"has-location"</code> property</h3>
<pre class="programlisting">  "has-location"             <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a>              : Read / Write</pre>
<p>
Whether to restrict search results to videos with specific coordinates associated with them. If used with a given
<a class="link" href="GDataYouTubeQuery.html#GDataYouTubeQuery--latitude" title='The "latitude" property'><span class="type">"latitude"</span></a> and <a class="link" href="GDataYouTubeQuery.html#GDataYouTubeQuery--longitude" title='The "longitude" property'><span class="type">"longitude"</span></a>, only videos with specific coordinates (not those with merely
a descriptive address) will be returned. If used without a latitude and longitude set, only videos with specific coordinates
(regardless of those coordinates) will be returned.
</p>
<p>
For more information, see the documentation for <a class="link" href="GDataYouTubeQuery.html#GDataYouTubeQuery--latitude" title='The "latitude" property'><span class="type">"latitude"</span></a>.
</p>
<p>Default value: FALSE</p>
<p class="since">Since 0.3.0</p>
</div>
<hr>
<div class="refsect2" title='The "language" property'>
<a name="GDataYouTubeQuery--language"></a><h3>The <code class="literal">"language"</code> property</h3>
<pre class="programlisting">  "language"                 <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>*                : Read / Write</pre>
<p>
Restricts the search to videos that have a title, description or keywords in a specified language. The language code should
be a two-letter ISO 639-1 code; or you can use <code class="literal">zh-Hans</code> for simplified Chinese and <code class="literal">zh-Hant</code>
for traditional Chinese.
</p>
<p>
For more information, see the <a class="ulink" href="http://code.google.com/apis/youtube/2.0/reference.html#lrsp" target="_top">online documentation</a>.
</p>
<p>Default value: NULL</p>
<p class="since">Since 0.3.0</p>
</div>
<hr>
<div class="refsect2" title='The "latitude" property'>
<a name="GDataYouTubeQuery--latitude"></a><h3>The <code class="literal">"latitude"</code> property</h3>
<pre class="programlisting">  "latitude"                 <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a>               : Read / Write</pre>
<p>
The latitude of a particular location of which videos should be found. This should be used in conjunction with
<a class="link" href="GDataYouTubeQuery.html#GDataYouTubeQuery--longitude" title='The "longitude" property'><span class="type">"longitude"</span></a>; if either property is outside the valid range, neither will be used. Valid latitudes
are between <code class="code">-90</code> and <code class="code">90</code>0 degrees; any values of this property outside that range
will unset the property in the query URI.
</p>
<p>
If <a class="link" href="GDataYouTubeQuery.html#GDataYouTubeQuery--location-radius" title='The "location-radius" property'><span class="type">"location-radius"</span></a> is a non-<code class="code">0</code> value, this will define a circle from which videos should be
found.
</p>
<p>
If <a class="link" href="GDataYouTubeQuery.html#GDataYouTubeQuery--has-location" title='The "has-location" property'><span class="type">"has-location"</span></a> is <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, only videos which are associated with specific coordinates in the search
circle will be returned. Otherwise, videos which have a relevant descriptive address (but no specific coordinates) will
also be returned.
</p>
<p>
For more information, see the <a class="ulink" href="http://code.google.com/apis/youtube/2.0/reference.html#locationsp" target="_top">online documentation</a>.
</p>
<p>Default value: 0</p>
<p class="since">Since 0.3.0</p>
</div>
<hr>
<div class="refsect2" title='The "location-radius" property'>
<a name="GDataYouTubeQuery--location-radius"></a><h3>The <code class="literal">"location-radius"</code> property</h3>
<pre class="programlisting">  "location-radius"          <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a>               : Read / Write</pre>
<p>
The radius, in metres, of a circle from within which videos should be returned. The circle is centred on the latitude and
longitude given in <a class="link" href="GDataYouTubeQuery.html#GDataYouTubeQuery--latitude" title='The "latitude" property'><span class="type">"latitude"</span></a> and <a class="link" href="GDataYouTubeQuery.html#GDataYouTubeQuery--longitude" title='The "longitude" property'><span class="type">"longitude"</span></a>.
</p>
<p>
Set this property to <code class="code">0</code> to search for specific coordinates, rather than within a given radius.
</p>
<p>
For more information, see the documentation for <a class="link" href="GDataYouTubeQuery.html#GDataYouTubeQuery--latitude" title='The "latitude" property'><span class="type">"latitude"</span></a>.
</p>
<p>Allowed values: &gt;= 0</p>
<p>Default value: 0</p>
<p class="since">Since 0.3.0</p>
</div>
<hr>
<div class="refsect2" title='The "longitude" property'>
<a name="GDataYouTubeQuery--longitude"></a><h3>The <code class="literal">"longitude"</code> property</h3>
<pre class="programlisting">  "longitude"                <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a>               : Read / Write</pre>
<p>
The longitude of a particular location of which videos should be found. This should be used in conjunction with
<a class="link" href="GDataYouTubeQuery.html#GDataYouTubeQuery--latitude" title='The "latitude" property'><span class="type">"latitude"</span></a>; if either property is outside the valid range, neither will be used. Valid longitudes
are between <code class="code">-180</code> and <code class="code">180</code> degrees; any values of this property outside that
range will unset the property in the query URI.
</p>
<p>
For more information, see the documentation for <a class="link" href="GDataYouTubeQuery.html#GDataYouTubeQuery--latitude" title='The "latitude" property'><span class="type">"latitude"</span></a>.
</p>
<p>Default value: 0</p>
<p class="since">Since 0.3.0</p>
</div>
<hr>
<div class="refsect2" title='The "order-by" property'>
<a name="GDataYouTubeQuery--order-by"></a><h3>The <code class="literal">"order-by"</code> property</h3>
<pre class="programlisting">  "order-by"                 <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>*                : Read / Write</pre>
<p>
Specifies the order of entries in a feed. Supported values are <code class="literal">relevance</code>,
<code class="literal">published</code>, <code class="literal">viewCount</code> and <code class="literal">rating</code>.
</p>
<p>
Additionally, results most relevant to a specific language can be returned by setting the property
to <code class="literal">relevance_lang_<em class="replaceable"><code>languageCode</code></em></code>, where
<em class="replaceable"><code>languageCode</code></em> is an ISO 639-1 language code, as used in <a class="link" href="GDataYouTubeQuery.html#GDataYouTubeQuery--language" title='The "language" property'><span class="type">"language"</span></a>.
</p>
<p>
For more information, see the <a class="ulink" href="http://code.google.com/apis/youtube/2.0/reference.html#orderbysp" target="_top">online documentation</a>.
</p>
<p>Default value: NULL</p>
<p class="since">Since 0.3.0</p>
</div>
<hr>
<div class="refsect2" title='The "restriction" property'>
<a name="GDataYouTubeQuery--restriction"></a><h3>The <code class="literal">"restriction"</code> property</h3>
<pre class="programlisting">  "restriction"              <a href="/opt/gnome2/build/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>*                : Read / Write</pre>
<p>
The IP address that should be used to filter videos playable only in specific countries. This should be the
IP address of the client, if different to the IP address in use by the library. Alternatively, it can be an ISO 3166
two-letter country code.
</p>
<p>
For more information, see the <a class="ulink" href="http://code.google.com/apis/youtube/2.0/reference.html#restrictionsp" target="_top">online documentation</a>.
</p>
<p>Default value: NULL</p>
<p class="since">Since 0.3.0</p>
</div>
<hr>
<div class="refsect2" title='The "safe-search" property'>
<a name="GDataYouTubeQuery--safe-search"></a><h3>The <code class="literal">"safe-search"</code> property</h3>
<pre class="programlisting">  "safe-search"              <a class="link" href="GDataYouTubeQuery.html#GDataYouTubeSafeSearch" title="enum GDataYouTubeSafeSearch"><span class="type">GDataYouTubeSafeSearch</span></a>  : Read / Write</pre>
<p>
Whether the search results should include restricted content as well as standard content.
</p>
<p>
For more information, see the <a class="ulink" href="http://code.google.com/apis/youtube/2.0/reference.html#safeSearchsp" target="_top">online documentation</a>.
</p>
<p>Default value: GDATA_YOUTUBE_SAFE_SEARCH_MODERATE</p>
<p class="since">Since 0.3.0</p>
</div>
<hr>
<div class="refsect2" title='The "sort-order" property'>
<a name="GDataYouTubeQuery--sort-order"></a><h3>The <code class="literal">"sort-order"</code> property</h3>
<pre class="programlisting">  "sort-order"               <a class="link" href="GDataYouTubeQuery.html#GDataYouTubeSortOrder" title="enum GDataYouTubeSortOrder"><span class="type">GDataYouTubeSortOrder</span></a>  : Read / Write</pre>
<p>
Specifies the direction of sorting. To use the default sort order, set the property to <a class="link" href="GDataYouTubeQuery.html#GDATA-YOUTUBE-SORT-NONE:CAPS"><code class="literal">GDATA_YOUTUBE_SORT_NONE</code></a>.
</p>
<p>Default value: GDATA_YOUTUBE_SORT_NONE</p>
<p class="since">Since 0.3.0</p>
</div>
<hr>
<div class="refsect2" title='The "uploader" property'>
<a name="GDataYouTubeQuery--uploader"></a><h3>The <code class="literal">"uploader"</code> property</h3>
<pre class="programlisting">  "uploader"                 <a class="link" href="GDataYouTubeQuery.html#GDataYouTubeUploader" title="enum GDataYouTubeUploader"><span class="type">GDataYouTubeUploader</span></a>  : Read / Write</pre>
<p>
Restricts the search to videos from the specified type of uploader. Currently, this can only be used to restrict
searches to videos from YouTube partners.
</p>
<p>Default value: GDATA_YOUTUBE_UPLOADER_ALL</p>
<p class="since">Since 0.3.0</p>
</div>
</div>
</div>
<div class="footer">
<hr>
          Generated by GTK-Doc V1.14</div>
</body>
</html>