~walkerlee/totem/pre-interview

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
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>TotemObject</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="index.html" title="Totem Reference Manual">
<link rel="up" href="core-api.html" title="Core API">
<link rel="prev" href="core-api.html" title="Core API">
<link rel="next" href="totem-Interface.html" title="Interface">
<meta name="generator" content="GTK-Doc V1.18.1 (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="core-api.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
<td><a accesskey="u" href="core-api.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">Totem Reference Manual</th>
<td><a accesskey="n" href="totem-Interface.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
</tr>
<tr><td colspan="5" class="shortcuts">
<a href="#TotemObject.synopsis" class="shortcut">Top</a>
                   | 
                  <a href="#TotemObject.description" class="shortcut">Description</a>
                   | 
                  <a href="#TotemObject.object-hierarchy" class="shortcut">Object Hierarchy</a>
                   | 
                  <a href="#TotemObject.implemented-interfaces" class="shortcut">Implemented Interfaces</a>
                   | 
                  <a href="#TotemObject.properties" class="shortcut">Properties</a>
                   | 
                  <a href="#TotemObject.signals" class="shortcut">Signals</a>
</td></tr>
</table>
<div class="refentry">
<a name="TotemObject"></a><div class="titlepage"></div>
<div class="refnamediv"><table width="100%"><tr>
<td valign="top">
<h2><span class="refentrytitle"><a name="TotemObject.top_of_page"></a>TotemObject</span></h2>
<p>TotemObject — main Totem object</p>
</td>
<td valign="top" align="right"></td>
</tr></table></div>
<div class="refsect1">
<a name="TotemObject.stability-level"></a><h2>Stability Level</h2>
Unstable, unless otherwise indicated
</div>
<div class="refsynopsisdiv">
<a name="TotemObject.synopsis"></a><h2>Synopsis</h2>
<pre class="synopsis">
#include &lt;totem.h&gt;

typedef             <a class="link" href="TotemObject.html#Totem" title="Totem">Totem</a>;
                    <a class="link" href="TotemObject.html#TotemObject-struct" title="TotemObject">TotemObject</a>;
enum                <a class="link" href="TotemObject.html#TotemRemoteCommand" title="enum TotemRemoteCommand">TotemRemoteCommand</a>;
enum                <a class="link" href="TotemObject.html#TotemRemoteSetting" title="enum TotemRemoteSetting">TotemRemoteSetting</a>;
#define             <a class="link" href="TotemObject.html#TOTEM-GSETTINGS-SCHEMA:CAPS" title="TOTEM_GSETTINGS_SCHEMA">TOTEM_GSETTINGS_SCHEMA</a>
<span class="returnvalue">void</span>                <a class="link" href="TotemObject.html#totem-object-plugins-init" title="totem_object_plugins_init ()">totem_object_plugins_init</a>           (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="TotemObject.html#totem-object-plugins-shutdown" title="totem_object_plugins_shutdown ()">totem_object_plugins_shutdown</a>       (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="TotemObject.html#totem-file-opened" title="totem_file_opened ()">totem_file_opened</a>                   (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>,
                                                         <em class="parameter"><code>const <span class="type">char</span> *mrl</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="TotemObject.html#totem-file-closed" title="totem_file_closed ()">totem_file_closed</a>                   (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="TotemObject.html#totem-metadata-updated" title="totem_metadata_updated ()">totem_metadata_updated</a>              (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>,
                                                         <em class="parameter"><code>const <span class="type">char</span> *artist</code></em>,
                                                         <em class="parameter"><code>const <span class="type">char</span> *title</code></em>,
                                                         <em class="parameter"><code>const <span class="type">char</span> *album</code></em>,
                                                         <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> track_num</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="TotemObject.html#totem-object-action-error" title="totem_object_action_error ()">totem_object_action_error</a>           (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>,
                                                         <em class="parameter"><code>const <span class="type">char</span> *title</code></em>,
                                                         <em class="parameter"><code>const <span class="type">char</span> *reason</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="TotemObject.html#totem-object-action-exit" title="totem_object_action_exit ()">totem_object_action_exit</a>            (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="TotemObject.html#totem-object-add-to-playlist-and-play" title="totem_object_add_to_playlist_and_play ()">totem_object_add_to_playlist_and_play</a>
                                                        (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>,
                                                         <em class="parameter"><code>const <span class="type">char</span> *uri</code></em>,
                                                         <em class="parameter"><code>const <span class="type">char</span> *display_name</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="TotemObject.html#totem-object-action-play" title="totem_object_action_play ()">totem_object_action_play</a>            (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="TotemObject.html#totem-object-action-play-pause" title="totem_object_action_play_pause ()">totem_object_action_play_pause</a>      (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="TotemObject.html#totem-action-pause" title="totem_action_pause ()">totem_action_pause</a>                  (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="TotemObject.html#totem-object-action-stop" title="totem_object_action_stop ()">totem_object_action_stop</a>            (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="TotemObject.html#totem-action-fullscreen" title="totem_action_fullscreen ()">totem_action_fullscreen</a>             (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>,
                                                         <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> state</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="TotemObject.html#totem-object-action-fullscreen-toggle" title="totem_object_action_fullscreen_toggle ()">totem_object_action_fullscreen_toggle</a>
                                                        (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="TotemObject.html#totem-object-action-next" title="totem_object_action_next ()">totem_object_action_next</a>            (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="TotemObject.html#totem-object-action-previous" title="totem_object_action_previous ()">totem_object_action_previous</a>        (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="TotemObject.html#totem-action-next-angle" title="totem_action_next_angle ()">totem_action_next_angle</a>             (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>);
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            <a class="link" href="TotemObject.html#totem-object-action-remote-get-setting" title="totem_object_action_remote_get_setting ()">totem_object_action_remote_get_setting</a>
                                                        (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>,
                                                         <em class="parameter"><code><a class="link" href="TotemObject.html#TotemRemoteSetting" title="enum TotemRemoteSetting"><span class="type">TotemRemoteSetting</span></a> setting</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="TotemObject.html#totem-object-action-remote-set-setting" title="totem_object_action_remote_set_setting ()">totem_object_action_remote_set_setting</a>
                                                        (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>,
                                                         <em class="parameter"><code><a class="link" href="TotemObject.html#TotemRemoteSetting" title="enum TotemRemoteSetting"><span class="type">TotemRemoteSetting</span></a> setting</code></em>,
                                                         <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> value</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="TotemObject.html#totem-object-action-seek-time" title="totem_object_action_seek_time ()">totem_object_action_seek_time</a>       (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>,
                                                         <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint64"><span class="type">gint64</span></a> msec</code></em>,
                                                         <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> accurate</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="TotemObject.html#totem-action-seek-relative" title="totem_action_seek_relative ()">totem_action_seek_relative</a>          (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>,
                                                         <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint64"><span class="type">gint64</span></a> offset</code></em>,
                                                         <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> accurate</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="TotemObject.html#totem-object-action-volume" title="totem_object_action_volume ()">totem_object_action_volume</a>          (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>,
                                                         <em class="parameter"><code><span class="type">double</span> volume</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="TotemObject.html#totem-action-volume-relative" title="totem_action_volume_relative ()">totem_action_volume_relative</a>        (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>,
                                                         <em class="parameter"><code><span class="type">double</span> off_pct</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="TotemObject.html#totem-action-volume-toggle-mute" title="totem_action_volume_toggle_mute ()">totem_action_volume_toggle_mute</a>     (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="TotemObject.html#totem-action-toggle-aspect-ratio" title="totem_action_toggle_aspect_ratio ()">totem_action_toggle_aspect_ratio</a>    (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>);
<span class="returnvalue">int</span>                 <a class="link" href="TotemObject.html#totem-action-get-aspect-ratio" title="totem_action_get_aspect_ratio ()">totem_action_get_aspect_ratio</a>       (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="TotemObject.html#totem-action-set-aspect-ratio" title="totem_action_set_aspect_ratio ()">totem_action_set_aspect_ratio</a>       (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>,
                                                         <em class="parameter"><code><span class="type">int</span> ratio</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="TotemObject.html#totem-action-toggle-controls" title="totem_action_toggle_controls ()">totem_action_toggle_controls</a>        (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="TotemObject.html#totem-action-set-scale-ratio" title="totem_action_set_scale_ratio ()">totem_action_set_scale_ratio</a>        (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>,
                                                         <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gfloat"><span class="type">gfloat</span></a> ratio</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="TotemObject.html#totem-action-set-playlist-index" title="totem_action_set_playlist_index ()">totem_action_set_playlist_index</a>     (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>,
                                                         <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> index</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="TotemObject.html#totem-object-action-remote" title="totem_object_action_remote ()">totem_object_action_remote</a>          (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>,
                                                         <em class="parameter"><code><a class="link" href="TotemObject.html#TotemRemoteCommand" title="enum TotemRemoteCommand"><span class="type">TotemRemoteCommand</span></a> cmd</code></em>,
                                                         <em class="parameter"><code>const <span class="type">char</span> *url</code></em>);
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            <a class="link" href="TotemObject.html#totem-is-fullscreen" title="totem_is_fullscreen ()">totem_is_fullscreen</a>                 (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>);
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            <a class="link" href="TotemObject.html#totem-object-is-playing" title="totem_object_is_playing ()">totem_object_is_playing</a>             (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>);
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            <a class="link" href="TotemObject.html#totem-object-is-paused" title="totem_object_is_paused ()">totem_object_is_paused</a>              (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>);
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            <a class="link" href="TotemObject.html#totem-object-is-seekable" title="totem_object_is_seekable ()">totem_object_is_seekable</a>            (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>);
<a href="http://developer.gnome.org/gtk2/GtkWindow.html"><span class="returnvalue">GtkWindow</span></a> *         <a class="link" href="TotemObject.html#totem-object-get-main-window" title="totem_object_get_main_window ()">totem_object_get_main_window</a>        (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>);
<a href="http://developer.gnome.org/gtk2/GtkUIManager.html"><span class="returnvalue">GtkUIManager</span></a> *      <a class="link" href="TotemObject.html#totem-object-get-ui-manager" title="totem_object_get_ui_manager ()">totem_object_get_ui_manager</a>         (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>);
<span class="returnvalue">char</span> *              <a class="link" href="TotemObject.html#totem-object-get-current-mrl" title="totem_object_get_current_mrl ()">totem_object_get_current_mrl</a>        (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>);
<a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *         <a class="link" href="TotemObject.html#totem-object-get-video-widget" title="totem_object_get_video_widget ()">totem_object_get_video_widget</a>       (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>);
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint64"><span class="returnvalue">gint64</span></a>              <a class="link" href="TotemObject.html#totem-get-current-time" title="totem_get_current_time ()">totem_get_current_time</a>              (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="TotemObject.html#totem-object-set-current-subtitle" title="totem_object_set_current_subtitle ()">totem_object_set_current_subtitle</a>   (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>,
                                                         <em class="parameter"><code>const <span class="type">char</span> *subtitle_uri</code></em>);
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>               <a class="link" href="TotemObject.html#totem-object-get-playlist-length" title="totem_object_get_playlist_length ()">totem_object_get_playlist_length</a>    (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>);
<span class="returnvalue">int</span>                 <a class="link" href="TotemObject.html#totem-object-get-playlist-pos" title="totem_object_get_playlist_pos ()">totem_object_get_playlist_pos</a>       (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>);
<span class="returnvalue">char</span> *              <a class="link" href="TotemObject.html#totem-object-get-title-at-playlist-pos" title="totem_object_get_title_at_playlist_pos ()">totem_object_get_title_at_playlist_pos</a>
                                                        (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>,
                                                         <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> playlist_index</code></em>);
<span class="returnvalue">char</span> *              <a class="link" href="TotemObject.html#totem-get-short-title" title="totem_get_short_title ()">totem_get_short_title</a>               (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>);
<span class="returnvalue">double</span>              <a class="link" href="TotemObject.html#totem-object-get-volume" title="totem_object_get_volume ()">totem_object_get_volume</a>             (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>);
<span class="returnvalue">char</span> *              <a class="link" href="TotemObject.html#totem-object-get-version" title="totem_object_get_version ()">totem_object_get_version</a>            (<em class="parameter"><code><span class="type">void</span></code></em>);
<span class="returnvalue">void</span>                <a class="link" href="TotemObject.html#totem-object-add-sidebar-page" title="totem_object_add_sidebar_page ()">totem_object_add_sidebar_page</a>       (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>,
                                                         <em class="parameter"><code>const <span class="type">char</span> *page_id</code></em>,
                                                         <em class="parameter"><code>const <span class="type">char</span> *title</code></em>,
                                                         <em class="parameter"><code><a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="type">GtkWidget</span></a> *main_widget</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="TotemObject.html#totem-object-remove-sidebar-page" title="totem_object_remove_sidebar_page ()">totem_object_remove_sidebar_page</a>    (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>,
                                                         <em class="parameter"><code>const <span class="type">char</span> *page_id</code></em>);
const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * const * <a class="link" href="TotemObject.html#totem-object-get-supported-content-types" title="totem_object_get_supported_content_types ()">totem_object_get_supported_content_types</a>
                                                        (<em class="parameter"><code><span class="type">void</span></code></em>);
const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * const * <a class="link" href="TotemObject.html#totem-object-get-supported-uri-schemes" title="totem_object_get_supported_uri_schemes ()">totem_object_get_supported_uri_schemes</a>
                                                        (<em class="parameter"><code><span class="type">void</span></code></em>);
</pre>
</div>
<div class="refsect1">
<a name="TotemObject.object-hierarchy"></a><h2>Object Hierarchy</h2>
<pre class="synopsis">
  <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
   +----<a href="http://library.gnome.org/devel/gio/unstable/GApplication.html">GApplication</a>
         +----<a href="http://developer.gnome.org/gtk2/GtkApplication.html">GtkApplication</a>
               +----TotemObject
</pre>
</div>
<div class="refsect1">
<a name="TotemObject.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
<p>
TotemObject implements
 <a href="http://library.gnome.org/devel/gio/unstable/GActionGroup.html">GActionGroup</a> and  GActionMap.</p>
</div>
<div class="refsect1">
<a name="TotemObject.properties"></a><h2>Properties</h2>
<pre class="synopsis">
  "<a class="link" href="TotemObject.html#TotemObject--current-content-type" title='The "current-content-type" property'>current-content-type</a>"     <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>*                : Read
  "<a class="link" href="TotemObject.html#TotemObject--current-display-name" title='The "current-display-name" property'>current-display-name</a>"     <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>*                : Read
  "<a class="link" href="TotemObject.html#TotemObject--current-mrl" title='The "current-mrl" property'>current-mrl</a>"              <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>*                : Read
  "<a class="link" href="TotemObject.html#TotemObject--current-time" title='The "current-time" property'>current-time</a>"             <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint64"><span class="type">gint64</span></a>                : Read
  "<a class="link" href="TotemObject.html#TotemObject--fullscreen" title='The "fullscreen" property'>fullscreen</a>"               <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a>              : Read
  "<a class="link" href="TotemObject.html#TotemObject--playing" title='The "playing" property'>playing</a>"                  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a>              : Read
  "<a class="link" href="TotemObject.html#TotemObject--remember-position" title='The "remember-position" property'>remember-position</a>"        <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a>              : Read / Write
  "<a class="link" href="TotemObject.html#TotemObject--seekable" title='The "seekable" property'>seekable</a>"                 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a>              : Read
  "<a class="link" href="TotemObject.html#TotemObject--stream-length" title='The "stream-length" property'>stream-length</a>"            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint64"><span class="type">gint64</span></a>                : Read
</pre>
</div>
<div class="refsect1">
<a name="TotemObject.signals"></a><h2>Signals</h2>
<pre class="synopsis">
  "<a class="link" href="TotemObject.html#TotemObject-file-closed" title='The "file-closed" signal'>file-closed</a>"                                    : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a>
  "<a class="link" href="TotemObject.html#TotemObject-file-has-played" title='The "file-has-played" signal'>file-has-played</a>"                                : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a>
  "<a class="link" href="TotemObject.html#TotemObject-file-opened" title='The "file-opened" signal'>file-opened</a>"                                    : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a>
  "<a class="link" href="TotemObject.html#TotemObject-get-text-subtitle" title='The "get-text-subtitle" signal'>get-text-subtitle</a>"                              : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a>
  "<a class="link" href="TotemObject.html#TotemObject-get-user-agent" title='The "get-user-agent" signal'>get-user-agent</a>"                                 : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a>
  "<a class="link" href="TotemObject.html#TotemObject-metadata-updated" title='The "metadata-updated" signal'>metadata-updated</a>"                               : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a>
</pre>
</div>
<div class="refsect1">
<a name="TotemObject.description"></a><h2>Description</h2>
<p>
<a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> is the core object of Totem; a singleton which controls all Totem's main functions.
</p>
</div>
<div class="refsect1">
<a name="TotemObject.details"></a><h2>Details</h2>
<div class="refsect2">
<a name="Totem"></a><h3>Totem</h3>
<pre class="programlisting">typedef struct _TotemObject Totem;
</pre>
<p>
The <a class="link" href="TotemObject.html#Totem" title="Totem"><span class="type">Totem</span></a> object is a handy synonym for <a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a>, and the two can be used interchangably.
</p>
</div>
<hr>
<div class="refsect2">
<a name="TotemObject-struct"></a><h3>TotemObject</h3>
<pre class="programlisting">typedef struct _TotemObject TotemObject;</pre>
<p>
All the fields in the <a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> structure are private and should never be accessed directly.
</p>
</div>
<hr>
<div class="refsect2">
<a name="TotemRemoteCommand"></a><h3>enum TotemRemoteCommand</h3>
<pre class="programlisting">typedef enum {
	TOTEM_REMOTE_COMMAND_UNKNOWN = 0,
	TOTEM_REMOTE_COMMAND_PLAY,
	TOTEM_REMOTE_COMMAND_PAUSE,
	TOTEM_REMOTE_COMMAND_STOP,
	TOTEM_REMOTE_COMMAND_PLAYPAUSE,
	TOTEM_REMOTE_COMMAND_NEXT,
	TOTEM_REMOTE_COMMAND_PREVIOUS,
	TOTEM_REMOTE_COMMAND_SEEK_FORWARD,
	TOTEM_REMOTE_COMMAND_SEEK_BACKWARD,
	TOTEM_REMOTE_COMMAND_VOLUME_UP,
	TOTEM_REMOTE_COMMAND_VOLUME_DOWN,
	TOTEM_REMOTE_COMMAND_FULLSCREEN,
	TOTEM_REMOTE_COMMAND_QUIT,
	TOTEM_REMOTE_COMMAND_ENQUEUE,
	TOTEM_REMOTE_COMMAND_REPLACE,
	TOTEM_REMOTE_COMMAND_SHOW,
	TOTEM_REMOTE_COMMAND_TOGGLE_CONTROLS,
	TOTEM_REMOTE_COMMAND_UP,
	TOTEM_REMOTE_COMMAND_DOWN,
	TOTEM_REMOTE_COMMAND_LEFT,
	TOTEM_REMOTE_COMMAND_RIGHT,
	TOTEM_REMOTE_COMMAND_SELECT,
	TOTEM_REMOTE_COMMAND_DVD_MENU,
	TOTEM_REMOTE_COMMAND_ZOOM_UP,
	TOTEM_REMOTE_COMMAND_ZOOM_DOWN,
	TOTEM_REMOTE_COMMAND_EJECT,
	TOTEM_REMOTE_COMMAND_PLAY_DVD,
	TOTEM_REMOTE_COMMAND_MUTE,
	TOTEM_REMOTE_COMMAND_TOGGLE_ASPECT
} TotemRemoteCommand;
</pre>
<p>
Represents a command which can be sent to a running Totem instance remotely.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><a name="TOTEM-REMOTE-COMMAND-UNKNOWN:CAPS"></a><span class="term"><code class="literal">TOTEM_REMOTE_COMMAND_UNKNOWN</code></span></p></td>
<td>unknown command
</td>
</tr>
<tr>
<td><p><a name="TOTEM-REMOTE-COMMAND-PLAY:CAPS"></a><span class="term"><code class="literal">TOTEM_REMOTE_COMMAND_PLAY</code></span></p></td>
<td>play the current stream
</td>
</tr>
<tr>
<td><p><a name="TOTEM-REMOTE-COMMAND-PAUSE:CAPS"></a><span class="term"><code class="literal">TOTEM_REMOTE_COMMAND_PAUSE</code></span></p></td>
<td>pause the current stream
</td>
</tr>
<tr>
<td><p><a name="TOTEM-REMOTE-COMMAND-STOP:CAPS"></a><span class="term"><code class="literal">TOTEM_REMOTE_COMMAND_STOP</code></span></p></td>
<td>stop playing the current stream
</td>
</tr>
<tr>
<td><p><a name="TOTEM-REMOTE-COMMAND-PLAYPAUSE:CAPS"></a><span class="term"><code class="literal">TOTEM_REMOTE_COMMAND_PLAYPAUSE</code></span></p></td>
<td>toggle play/pause on the current stream
</td>
</tr>
<tr>
<td><p><a name="TOTEM-REMOTE-COMMAND-NEXT:CAPS"></a><span class="term"><code class="literal">TOTEM_REMOTE_COMMAND_NEXT</code></span></p></td>
<td>play the next playlist item
</td>
</tr>
<tr>
<td><p><a name="TOTEM-REMOTE-COMMAND-PREVIOUS:CAPS"></a><span class="term"><code class="literal">TOTEM_REMOTE_COMMAND_PREVIOUS</code></span></p></td>
<td>play the previous playlist item
</td>
</tr>
<tr>
<td><p><a name="TOTEM-REMOTE-COMMAND-SEEK-FORWARD:CAPS"></a><span class="term"><code class="literal">TOTEM_REMOTE_COMMAND_SEEK_FORWARD</code></span></p></td>
<td>seek forwards in the current stream
</td>
</tr>
<tr>
<td><p><a name="TOTEM-REMOTE-COMMAND-SEEK-BACKWARD:CAPS"></a><span class="term"><code class="literal">TOTEM_REMOTE_COMMAND_SEEK_BACKWARD</code></span></p></td>
<td>seek backwards in the current stream
</td>
</tr>
<tr>
<td><p><a name="TOTEM-REMOTE-COMMAND-VOLUME-UP:CAPS"></a><span class="term"><code class="literal">TOTEM_REMOTE_COMMAND_VOLUME_UP</code></span></p></td>
<td>increase the volume
</td>
</tr>
<tr>
<td><p><a name="TOTEM-REMOTE-COMMAND-VOLUME-DOWN:CAPS"></a><span class="term"><code class="literal">TOTEM_REMOTE_COMMAND_VOLUME_DOWN</code></span></p></td>
<td>decrease the volume
</td>
</tr>
<tr>
<td><p><a name="TOTEM-REMOTE-COMMAND-FULLSCREEN:CAPS"></a><span class="term"><code class="literal">TOTEM_REMOTE_COMMAND_FULLSCREEN</code></span></p></td>
<td>toggle fullscreen mode
</td>
</tr>
<tr>
<td><p><a name="TOTEM-REMOTE-COMMAND-QUIT:CAPS"></a><span class="term"><code class="literal">TOTEM_REMOTE_COMMAND_QUIT</code></span></p></td>
<td>quit the instance of Totem
</td>
</tr>
<tr>
<td><p><a name="TOTEM-REMOTE-COMMAND-ENQUEUE:CAPS"></a><span class="term"><code class="literal">TOTEM_REMOTE_COMMAND_ENQUEUE</code></span></p></td>
<td>enqueue a new playlist item
</td>
</tr>
<tr>
<td><p><a name="TOTEM-REMOTE-COMMAND-REPLACE:CAPS"></a><span class="term"><code class="literal">TOTEM_REMOTE_COMMAND_REPLACE</code></span></p></td>
<td>replace an item in the playlist
</td>
</tr>
<tr>
<td><p><a name="TOTEM-REMOTE-COMMAND-SHOW:CAPS"></a><span class="term"><code class="literal">TOTEM_REMOTE_COMMAND_SHOW</code></span></p></td>
<td>show the Totem instance
</td>
</tr>
<tr>
<td><p><a name="TOTEM-REMOTE-COMMAND-TOGGLE-CONTROLS:CAPS"></a><span class="term"><code class="literal">TOTEM_REMOTE_COMMAND_TOGGLE_CONTROLS</code></span></p></td>
<td>toggle the control visibility
</td>
</tr>
<tr>
<td><p><a name="TOTEM-REMOTE-COMMAND-UP:CAPS"></a><span class="term"><code class="literal">TOTEM_REMOTE_COMMAND_UP</code></span></p></td>
<td>go up (DVD controls)
</td>
</tr>
<tr>
<td><p><a name="TOTEM-REMOTE-COMMAND-DOWN:CAPS"></a><span class="term"><code class="literal">TOTEM_REMOTE_COMMAND_DOWN</code></span></p></td>
<td>go down (DVD controls)
</td>
</tr>
<tr>
<td><p><a name="TOTEM-REMOTE-COMMAND-LEFT:CAPS"></a><span class="term"><code class="literal">TOTEM_REMOTE_COMMAND_LEFT</code></span></p></td>
<td>go left (DVD controls)
</td>
</tr>
<tr>
<td><p><a name="TOTEM-REMOTE-COMMAND-RIGHT:CAPS"></a><span class="term"><code class="literal">TOTEM_REMOTE_COMMAND_RIGHT</code></span></p></td>
<td>go right (DVD controls)
</td>
</tr>
<tr>
<td><p><a name="TOTEM-REMOTE-COMMAND-SELECT:CAPS"></a><span class="term"><code class="literal">TOTEM_REMOTE_COMMAND_SELECT</code></span></p></td>
<td>select the current item (DVD controls)
</td>
</tr>
<tr>
<td><p><a name="TOTEM-REMOTE-COMMAND-DVD-MENU:CAPS"></a><span class="term"><code class="literal">TOTEM_REMOTE_COMMAND_DVD_MENU</code></span></p></td>
<td>go to the DVD menu
</td>
</tr>
<tr>
<td><p><a name="TOTEM-REMOTE-COMMAND-ZOOM-UP:CAPS"></a><span class="term"><code class="literal">TOTEM_REMOTE_COMMAND_ZOOM_UP</code></span></p></td>
<td>increase the zoom level
</td>
</tr>
<tr>
<td><p><a name="TOTEM-REMOTE-COMMAND-ZOOM-DOWN:CAPS"></a><span class="term"><code class="literal">TOTEM_REMOTE_COMMAND_ZOOM_DOWN</code></span></p></td>
<td>decrease the zoom level
</td>
</tr>
<tr>
<td><p><a name="TOTEM-REMOTE-COMMAND-EJECT:CAPS"></a><span class="term"><code class="literal">TOTEM_REMOTE_COMMAND_EJECT</code></span></p></td>
<td>eject the current disc
</td>
</tr>
<tr>
<td><p><a name="TOTEM-REMOTE-COMMAND-PLAY-DVD:CAPS"></a><span class="term"><code class="literal">TOTEM_REMOTE_COMMAND_PLAY_DVD</code></span></p></td>
<td>play a DVD in a drive
</td>
</tr>
<tr>
<td><p><a name="TOTEM-REMOTE-COMMAND-MUTE:CAPS"></a><span class="term"><code class="literal">TOTEM_REMOTE_COMMAND_MUTE</code></span></p></td>
<td>toggle mute
</td>
</tr>
<tr>
<td><p><a name="TOTEM-REMOTE-COMMAND-TOGGLE-ASPECT:CAPS"></a><span class="term"><code class="literal">TOTEM_REMOTE_COMMAND_TOGGLE_ASPECT</code></span></p></td>
<td>toggle the aspect ratio
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="TotemRemoteSetting"></a><h3>enum TotemRemoteSetting</h3>
<pre class="programlisting">typedef enum {
	TOTEM_REMOTE_SETTING_SHUFFLE,
	TOTEM_REMOTE_SETTING_REPEAT
} TotemRemoteSetting;
</pre>
<p>
Represents a boolean setting or preference on a remote Totem instance.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><a name="TOTEM-REMOTE-SETTING-SHUFFLE:CAPS"></a><span class="term"><code class="literal">TOTEM_REMOTE_SETTING_SHUFFLE</code></span></p></td>
<td>whether shuffle is enabled
</td>
</tr>
<tr>
<td><p><a name="TOTEM-REMOTE-SETTING-REPEAT:CAPS"></a><span class="term"><code class="literal">TOTEM_REMOTE_SETTING_REPEAT</code></span></p></td>
<td>whether repeat is enabled
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="TOTEM-GSETTINGS-SCHEMA:CAPS"></a><h3>TOTEM_GSETTINGS_SCHEMA</h3>
<pre class="programlisting">#define TOTEM_GSETTINGS_SCHEMA "org.gnome.totem"
</pre>
<p>
The GSettings schema under which all Totem settings are stored.
</p>
</div>
<hr>
<div class="refsect2">
<a name="totem-object-plugins-init"></a><h3>totem_object_plugins_init ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                totem_object_plugins_init           (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>);</pre>
<p>
Initialises the plugin engine and activates all the
enabled plugins.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody><tr>
<td><p><span class="term"><em class="parameter"><code>totem</code></em> :</span></p></td>
<td>a <a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a>
</td>
</tr></tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="totem-object-plugins-shutdown"></a><h3>totem_object_plugins_shutdown ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                totem_object_plugins_shutdown       (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>);</pre>
<p>
Shuts down the plugin engine and deactivates all the
plugins.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody><tr>
<td><p><span class="term"><em class="parameter"><code>totem</code></em> :</span></p></td>
<td>a <a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a>
</td>
</tr></tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="totem-file-opened"></a><h3>totem_file_opened ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                totem_file_opened                   (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>,
                                                         <em class="parameter"><code>const <span class="type">char</span> *mrl</code></em>);</pre>
<p>
Emits the <a class="link" href="TotemObject.html#TotemObject-file-opened" title='The "file-opened" signal'><span class="type">"file-opened"</span></a> signal on <em class="parameter"><code>totem</code></em>, with the
specified <em class="parameter"><code>mrl</code></em>.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>totem</code></em> :</span></p></td>
<td>a <a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>mrl</code></em> :</span></p></td>
<td>the MRL opened</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="totem-file-closed"></a><h3>totem_file_closed ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                totem_file_closed                   (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>);</pre>
<p>
Emits the <a class="link" href="TotemObject.html#TotemObject-file-closed" title='The "file-closed" signal'><span class="type">"file-closed"</span></a> signal on <em class="parameter"><code>totem</code></em>.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody><tr>
<td><p><span class="term"><em class="parameter"><code>totem</code></em> :</span></p></td>
<td>a <a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a>
</td>
</tr></tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="totem-metadata-updated"></a><h3>totem_metadata_updated ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                totem_metadata_updated              (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>,
                                                         <em class="parameter"><code>const <span class="type">char</span> *artist</code></em>,
                                                         <em class="parameter"><code>const <span class="type">char</span> *title</code></em>,
                                                         <em class="parameter"><code>const <span class="type">char</span> *album</code></em>,
                                                         <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> track_num</code></em>);</pre>
<p>
Emits the <a class="link" href="TotemObject.html#TotemObject-metadata-updated" title='The "metadata-updated" signal'><span class="type">"metadata-updated"</span></a> signal on <em class="parameter"><code>totem</code></em>,
with the specified stream data.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>totem</code></em> :</span></p></td>
<td>a <a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>artist</code></em> :</span></p></td>
<td>the stream's artist, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>title</code></em> :</span></p></td>
<td>the stream's title, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>album</code></em> :</span></p></td>
<td>the stream's album, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>track_num</code></em> :</span></p></td>
<td>the track number of the stream</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="totem-object-action-error"></a><h3>totem_object_action_error ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                totem_object_action_error           (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>,
                                                         <em class="parameter"><code>const <span class="type">char</span> *title</code></em>,
                                                         <em class="parameter"><code>const <span class="type">char</span> *reason</code></em>);</pre>
<p>
Displays a non-blocking error dialog with the
given <em class="parameter"><code>title</code></em> and <em class="parameter"><code>reason</code></em>.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>totem</code></em> :</span></p></td>
<td>a <a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>title</code></em> :</span></p></td>
<td>the error dialog title</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>reason</code></em> :</span></p></td>
<td>the error dialog text</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="totem-object-action-exit"></a><h3>totem_object_action_exit ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                totem_object_action_exit            (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>);</pre>
<p>
Closes Totem.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody><tr>
<td><p><span class="term"><em class="parameter"><code>totem</code></em> :</span></p></td>
<td>a <a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a>
</td>
</tr></tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="totem-object-add-to-playlist-and-play"></a><h3>totem_object_add_to_playlist_and_play ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                totem_object_add_to_playlist_and_play
                                                        (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>,
                                                         <em class="parameter"><code>const <span class="type">char</span> *uri</code></em>,
                                                         <em class="parameter"><code>const <span class="type">char</span> *display_name</code></em>);</pre>
<p>
Add <em class="parameter"><code>uri</code></em> to the playlist and play it immediately.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>totem</code></em> :</span></p></td>
<td>a <a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>uri</code></em> :</span></p></td>
<td>the URI to add to the playlist</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>display_name</code></em> :</span></p></td>
<td>the display name of the URI</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="totem-object-action-play"></a><h3>totem_object_action_play ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                totem_object_action_play            (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>);</pre>
<p>
Plays the current stream. If Totem is already playing, it continues
to play. If the stream cannot be played, and error dialog is displayed.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody><tr>
<td><p><span class="term"><em class="parameter"><code>totem</code></em> :</span></p></td>
<td>a <a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a>
</td>
</tr></tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="totem-object-action-play-pause"></a><h3>totem_object_action_play_pause ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                totem_object_action_play_pause      (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>);</pre>
<p>
Gets the current MRL from the playlist and attempts to play it.
If the stream is already playing, playback is paused.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody><tr>
<td><p><span class="term"><em class="parameter"><code>totem</code></em> :</span></p></td>
<td>a <a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a>
</td>
</tr></tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="totem-action-pause"></a><h3>totem_action_pause ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                totem_action_pause                  (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>);</pre>
<p>
Pauses the current stream. If Totem is already paused, it continues
to be paused.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody><tr>
<td><p><span class="term"><em class="parameter"><code>totem</code></em> :</span></p></td>
<td>a <a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a>
</td>
</tr></tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="totem-object-action-stop"></a><h3>totem_object_action_stop ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                totem_object_action_stop            (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>);</pre>
<p>
Stops the current stream.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody><tr>
<td><p><span class="term"><em class="parameter"><code>totem</code></em> :</span></p></td>
<td>a <a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a>
</td>
</tr></tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="totem-action-fullscreen"></a><h3>totem_action_fullscreen ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                totem_action_fullscreen             (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>,
                                                         <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> state</code></em>);</pre>
<p>
Sets Totem's fullscreen state according to <em class="parameter"><code>state</code></em>.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>totem</code></em> :</span></p></td>
<td>a <a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>state</code></em> :</span></p></td>
<td>
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if Totem should be fullscreened</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="totem-object-action-fullscreen-toggle"></a><h3>totem_object_action_fullscreen_toggle ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                totem_object_action_fullscreen_toggle
                                                        (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>);</pre>
<p>
Toggles Totem's fullscreen state; if Totem is fullscreened, calling
this makes it unfullscreened and vice-versa.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody><tr>
<td><p><span class="term"><em class="parameter"><code>totem</code></em> :</span></p></td>
<td>a <a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a>
</td>
</tr></tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="totem-object-action-next"></a><h3>totem_object_action_next ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                totem_object_action_next            (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>);</pre>
<p>
If a DVD is being played, goes to the next chapter. If a normal stream
is being played, plays the next entry in the playlist.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody><tr>
<td><p><span class="term"><em class="parameter"><code>totem</code></em> :</span></p></td>
<td>a <a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a>
</td>
</tr></tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="totem-object-action-previous"></a><h3>totem_object_action_previous ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                totem_object_action_previous        (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>);</pre>
<p>
If a DVD is being played, goes to the previous chapter. If a normal stream
is being played, goes to the start of the stream if possible. If seeking is
not possible, plays the previous entry in the playlist.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody><tr>
<td><p><span class="term"><em class="parameter"><code>totem</code></em> :</span></p></td>
<td>a <a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a>
</td>
</tr></tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="totem-action-next-angle"></a><h3>totem_action_next_angle ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                totem_action_next_angle             (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>);</pre>
<p>
Switches to the next angle, if watching a DVD. If not watching a DVD, this is a
no-op.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody><tr>
<td><p><span class="term"><em class="parameter"><code>totem</code></em> :</span></p></td>
<td>a <a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a>
</td>
</tr></tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="totem-object-action-remote-get-setting"></a><h3>totem_object_action_remote_get_setting ()</h3>
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            totem_object_action_remote_get_setting
                                                        (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>,
                                                         <em class="parameter"><code><a class="link" href="TotemObject.html#TotemRemoteSetting" title="enum TotemRemoteSetting"><span class="type">TotemRemoteSetting</span></a> setting</code></em>);</pre>
<p>
Returns the value of <em class="parameter"><code>setting</code></em> for this instance of Totem.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>totem</code></em> :</span></p></td>
<td>a <a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>setting</code></em> :</span></p></td>
<td>a <a class="link" href="TotemObject.html#TotemRemoteSetting" title="enum TotemRemoteSetting"><span class="type">TotemRemoteSetting</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the setting is enabled, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="totem-object-action-remote-set-setting"></a><h3>totem_object_action_remote_set_setting ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                totem_object_action_remote_set_setting
                                                        (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>,
                                                         <em class="parameter"><code><a class="link" href="TotemObject.html#TotemRemoteSetting" title="enum TotemRemoteSetting"><span class="type">TotemRemoteSetting</span></a> setting</code></em>,
                                                         <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> value</code></em>);</pre>
<p>
Sets <em class="parameter"><code>setting</code></em> to <em class="parameter"><code>value</code></em> on this instance of Totem.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>totem</code></em> :</span></p></td>
<td>a <a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>setting</code></em> :</span></p></td>
<td>a <a class="link" href="TotemObject.html#TotemRemoteSetting" title="enum TotemRemoteSetting"><span class="type">TotemRemoteSetting</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
<td>the new value for the setting</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="totem-object-action-seek-time"></a><h3>totem_object_action_seek_time ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                totem_object_action_seek_time       (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>,
                                                         <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint64"><span class="type">gint64</span></a> msec</code></em>,
                                                         <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> accurate</code></em>);</pre>
<p>
Seeks to an absolute time in the stream, or displays an
error dialog if that's not possible.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>totem</code></em> :</span></p></td>
<td>a <a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>msec</code></em> :</span></p></td>
<td>the time to seek to</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>accurate</code></em> :</span></p></td>
<td>whether to use accurate seek, an accurate seek might be slower for some formats (see GStreamer docs)</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="totem-action-seek-relative"></a><h3>totem_action_seek_relative ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                totem_action_seek_relative          (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>,
                                                         <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint64"><span class="type">gint64</span></a> offset</code></em>,
                                                         <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> accurate</code></em>);</pre>
<p>
Seeks to an <em class="parameter"><code>offset</code></em> from the current position in the stream,
or displays an error dialog if that's not possible.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>totem</code></em> :</span></p></td>
<td>a <a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>offset</code></em> :</span></p></td>
<td>the time offset to seek to</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>accurate</code></em> :</span></p></td>
<td>whether to use accurate seek, an accurate seek might be slower for some formats (see GStreamer docs)</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="totem-object-action-volume"></a><h3>totem_object_action_volume ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                totem_object_action_volume          (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>,
                                                         <em class="parameter"><code><span class="type">double</span> volume</code></em>);</pre>
<p>
Sets the volume, with <code class="code">1.0</code> being the maximum, and <code class="code">0.0</code> being the minimum level.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>totem</code></em> :</span></p></td>
<td>a <a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>volume</code></em> :</span></p></td>
<td>the new absolute volume value</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="totem-action-volume-relative"></a><h3>totem_action_volume_relative ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                totem_action_volume_relative        (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>,
                                                         <em class="parameter"><code><span class="type">double</span> off_pct</code></em>);</pre>
<p>
Sets the volume relative to its current level, with <code class="code">1.0</code> being the
maximum, and <code class="code">0.0</code> being the minimum level.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>totem</code></em> :</span></p></td>
<td>a <a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>off_pct</code></em> :</span></p></td>
<td>the value by which to increase or decrease the volume</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="totem-action-volume-toggle-mute"></a><h3>totem_action_volume_toggle_mute ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                totem_action_volume_toggle_mute     (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>);</pre>
<p>
Toggles the mute status.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody><tr>
<td><p><span class="term"><em class="parameter"><code>totem</code></em> :</span></p></td>
<td>a <a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a>
</td>
</tr></tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="totem-action-toggle-aspect-ratio"></a><h3>totem_action_toggle_aspect_ratio ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                totem_action_toggle_aspect_ratio    (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>);</pre>
<p>
Toggles the aspect ratio selected in the menu to the
next one in the list.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody><tr>
<td><p><span class="term"><em class="parameter"><code>totem</code></em> :</span></p></td>
<td>a <a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a>
</td>
</tr></tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="totem-action-get-aspect-ratio"></a><h3>totem_action_get_aspect_ratio ()</h3>
<pre class="programlisting"><span class="returnvalue">int</span>                 totem_action_get_aspect_ratio       (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>);</pre>
<p>
Gets the current aspect ratio as defined in <a class="link" href="BaconVideoWidget.html#BvwAspectRatio" title="enum BvwAspectRatio"><span class="type">BvwAspectRatio</span></a>.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>totem</code></em> :</span></p></td>
<td>a <a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>the current aspect ratio</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="totem-action-set-aspect-ratio"></a><h3>totem_action_set_aspect_ratio ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                totem_action_set_aspect_ratio       (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>,
                                                         <em class="parameter"><code><span class="type">int</span> ratio</code></em>);</pre>
<p>
Sets the aspect ratio selected in the menu to <em class="parameter"><code>ratio</code></em>,
as defined in <a class="link" href="BaconVideoWidget.html#BvwAspectRatio" title="enum BvwAspectRatio"><span class="type">BvwAspectRatio</span></a>.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>totem</code></em> :</span></p></td>
<td>a <a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>ratio</code></em> :</span></p></td>
<td>the aspect ratio to use</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="totem-action-toggle-controls"></a><h3>totem_action_toggle_controls ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                totem_action_toggle_controls        (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>);</pre>
<p>
If Totem's not fullscreened, this toggles the state of the "Show Controls"
menu entry, and consequently shows or hides the controls in the UI.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody><tr>
<td><p><span class="term"><em class="parameter"><code>totem</code></em> :</span></p></td>
<td>a <a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a>
</td>
</tr></tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="totem-action-set-scale-ratio"></a><h3>totem_action_set_scale_ratio ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                totem_action_set_scale_ratio        (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>,
                                                         <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gfloat"><span class="type">gfloat</span></a> ratio</code></em>);</pre>
<p>
Sets the video scale ratio, as a float where, for example,
1.0 is 1:1 and 2.0 is 2:1.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>totem</code></em> :</span></p></td>
<td>a <a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>ratio</code></em> :</span></p></td>
<td>the scale ratio to use</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="totem-action-set-playlist-index"></a><h3>totem_action_set_playlist_index ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                totem_action_set_playlist_index     (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>,
                                                         <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> index</code></em>);</pre>
<p>
Sets the <code class="code">0</code>-based playlist index to <em class="parameter"><code>index</code></em>, causing Totem to load and
start playing that playlist entry.
</p>
<p>
If <em class="parameter"><code>index</code></em> is higher than the current length of the playlist, this
has the effect of restarting the current playlist entry.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>totem</code></em> :</span></p></td>
<td>a <a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>index</code></em> :</span></p></td>
<td>the new playlist index</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="totem-object-action-remote"></a><h3>totem_object_action_remote ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                totem_object_action_remote          (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>,
                                                         <em class="parameter"><code><a class="link" href="TotemObject.html#TotemRemoteCommand" title="enum TotemRemoteCommand"><span class="type">TotemRemoteCommand</span></a> cmd</code></em>,
                                                         <em class="parameter"><code>const <span class="type">char</span> *url</code></em>);</pre>
<p>
Executes the specified <em class="parameter"><code>cmd</code></em> on this instance of Totem. If <em class="parameter"><code>cmd</code></em>
is an operation requiring an MRL, <em class="parameter"><code>url</code></em> is required; it can be <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
otherwise.
</p>
<p>
If Totem's fullscreened and the operation is executed correctly,
the controls will appear as if the user had moved the mouse.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>totem</code></em> :</span></p></td>
<td>a <a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>cmd</code></em> :</span></p></td>
<td>a <a class="link" href="TotemObject.html#TotemRemoteCommand" title="enum TotemRemoteCommand"><span class="type">TotemRemoteCommand</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>url</code></em> :</span></p></td>
<td>an MRL to play, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="totem-is-fullscreen"></a><h3>totem_is_fullscreen ()</h3>
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            totem_is_fullscreen                 (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>);</pre>
<p>
Returns <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if Totem is fullscreened.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>totem</code></em> :</span></p></td>
<td>a <a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if Totem is fullscreened</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="totem-object-is-playing"></a><h3>totem_object_is_playing ()</h3>
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            totem_object_is_playing             (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>);</pre>
<p>
Returns <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if Totem is playing a stream.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>totem</code></em> :</span></p></td>
<td>a <a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if Totem is playing a stream</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="totem-object-is-paused"></a><h3>totem_object_is_paused ()</h3>
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            totem_object_is_paused              (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>);</pre>
<p>
Returns <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if playback is paused.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>totem</code></em> :</span></p></td>
<td>a <a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if playback is paused, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="totem-object-is-seekable"></a><h3>totem_object_is_seekable ()</h3>
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            totem_object_is_seekable            (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>);</pre>
<p>
Returns <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the current stream is seekable.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>totem</code></em> :</span></p></td>
<td>a <a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the current stream is seekable</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="totem-object-get-main-window"></a><h3>totem_object_get_main_window ()</h3>
<pre class="programlisting"><a href="http://developer.gnome.org/gtk2/GtkWindow.html"><span class="returnvalue">GtkWindow</span></a> *         totem_object_get_main_window        (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>);</pre>
<p>
Gets Totem's main window and increments its reference count.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>totem</code></em> :</span></p></td>
<td>a <a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>Totem's main window. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="totem-object-get-ui-manager"></a><h3>totem_object_get_ui_manager ()</h3>
<pre class="programlisting"><a href="http://developer.gnome.org/gtk2/GtkUIManager.html"><span class="returnvalue">GtkUIManager</span></a> *      totem_object_get_ui_manager         (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>);</pre>
<p>
Gets Totem's UI manager, but does not change its reference count.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>totem</code></em> :</span></p></td>
<td>a <a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>Totem's UI manager. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="totem-object-get-current-mrl"></a><h3>totem_object_get_current_mrl ()</h3>
<pre class="programlisting"><span class="returnvalue">char</span> *              totem_object_get_current_mrl        (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>);</pre>
<p>
Get the MRL of the current stream, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if nothing's playing.
Free with <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a>.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>totem</code></em> :</span></p></td>
<td>a <a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>a newly-allocated string containing the MRL of the current stream</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="totem-object-get-video-widget"></a><h3>totem_object_get_video_widget ()</h3>
<pre class="programlisting"><a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *         totem_object_get_video_widget       (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>);</pre>
<p>
Gets Totem's video widget and increments its reference count.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>totem</code></em> :</span></p></td>
<td>a <a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>Totem's video widget. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="totem-get-current-time"></a><h3>totem_get_current_time ()</h3>
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint64"><span class="returnvalue">gint64</span></a>              totem_get_current_time              (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>);</pre>
<p>
Gets the current position's time in the stream as a gint64.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>totem</code></em> :</span></p></td>
<td>a <a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>the current position in the stream</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="totem-object-set-current-subtitle"></a><h3>totem_object_set_current_subtitle ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                totem_object_set_current_subtitle   (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>,
                                                         <em class="parameter"><code>const <span class="type">char</span> *subtitle_uri</code></em>);</pre>
<p>
Add the <em class="parameter"><code>subtitle_uri</code></em> subtitle file to the playlist, setting it as the subtitle for the current
playlist entry.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>totem</code></em> :</span></p></td>
<td>a <a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>subtitle_uri</code></em> :</span></p></td>
<td>the URI of the subtitle file to add</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="totem-object-get-playlist-length"></a><h3>totem_object_get_playlist_length ()</h3>
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>               totem_object_get_playlist_length    (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>);</pre>
<p>
Returns the length of the current playlist.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>totem</code></em> :</span></p></td>
<td>a <a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>the playlist length</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="totem-object-get-playlist-pos"></a><h3>totem_object_get_playlist_pos ()</h3>
<pre class="programlisting"><span class="returnvalue">int</span>                 totem_object_get_playlist_pos       (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>);</pre>
<p>
Returns the <code class="code">0</code>-based index of the current entry in the playlist. If
there is no current entry in the playlist, <code class="code">-1</code> is returned.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>totem</code></em> :</span></p></td>
<td>a <a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>the index of the current playlist entry, or <code class="code">-1</code>
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="totem-object-get-title-at-playlist-pos"></a><h3>totem_object_get_title_at_playlist_pos ()</h3>
<pre class="programlisting"><span class="returnvalue">char</span> *              totem_object_get_title_at_playlist_pos
                                                        (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>,
                                                         <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> playlist_index</code></em>);</pre>
<p>
Gets the title of the playlist entry at <em class="parameter"><code>index</code></em>.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>totem</code></em> :</span></p></td>
<td>a <a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>playlist_index</code></em> :</span></p></td>
<td>the <code class="code">0</code>-based entry index</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>the entry title at <em class="parameter"><code>index</code></em>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>; free with <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a>
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="totem-get-short-title"></a><h3>totem_get_short_title ()</h3>
<pre class="programlisting"><span class="returnvalue">char</span> *              totem_get_short_title               (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>);</pre>
<p>
Gets the title of the current entry in the playlist.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>totem</code></em> :</span></p></td>
<td>a <a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>the current entry's title, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>; free with <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a>
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="totem-object-get-volume"></a><h3>totem_object_get_volume ()</h3>
<pre class="programlisting"><span class="returnvalue">double</span>              totem_object_get_volume             (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>);</pre>
<p>
Gets the current volume level, as a value between <code class="code">0.0</code> and <code class="code">1.0</code>.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>totem</code></em> :</span></p></td>
<td>a <a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>the volume level</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="totem-object-get-version"></a><h3>totem_object_get_version ()</h3>
<pre class="programlisting"><span class="returnvalue">char</span> *              totem_object_get_version            (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
<p>
Gets the application name and version (e.g. "Totem 2.28.0").
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody><tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>a newly-allocated string of the name and version of the application</td>
</tr></tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="totem-object-add-sidebar-page"></a><h3>totem_object_add_sidebar_page ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                totem_object_add_sidebar_page       (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>,
                                                         <em class="parameter"><code>const <span class="type">char</span> *page_id</code></em>,
                                                         <em class="parameter"><code>const <span class="type">char</span> *title</code></em>,
                                                         <em class="parameter"><code><a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="type">GtkWidget</span></a> *main_widget</code></em>);</pre>
<p>
Adds a sidebar page to Totem's sidebar with the given <em class="parameter"><code>page_id</code></em>.
<em class="parameter"><code>main_widget</code></em> is added into the page and shown automatically, while
<em class="parameter"><code>title</code></em> is displayed as the page's title in the tab bar.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>totem</code></em> :</span></p></td>
<td>a <a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>page_id</code></em> :</span></p></td>
<td>a string used to identify the page</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>title</code></em> :</span></p></td>
<td>the page's title</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>main_widget</code></em> :</span></p></td>
<td>the main widget for the page</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="totem-object-remove-sidebar-page"></a><h3>totem_object_remove_sidebar_page ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                totem_object_remove_sidebar_page    (<em class="parameter"><code><a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem</code></em>,
                                                         <em class="parameter"><code>const <span class="type">char</span> *page_id</code></em>);</pre>
<p>
Removes the page identified by <em class="parameter"><code>page_id</code></em> from Totem's sidebar.
If <em class="parameter"><code>page_id</code></em> doesn't exist in the sidebar, this function does
nothing.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>totem</code></em> :</span></p></td>
<td>a <a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>page_id</code></em> :</span></p></td>
<td>a string used to identify the page</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="totem-object-get-supported-content-types"></a><h3>totem_object_get_supported_content_types ()</h3>
<pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * const * totem_object_get_supported_content_types
                                                        (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
<p>
Get the full list of file content types which Totem supports playing.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody><tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>a <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>-terminated array of the content types Totem supports. <span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> zero-terminated=1][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
</td>
</tr></tbody>
</table></div>
<p class="since">Since 3.1.5</p>
</div>
<hr>
<div class="refsect2">
<a name="totem-object-get-supported-uri-schemes"></a><h3>totem_object_get_supported_uri_schemes ()</h3>
<pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * const * totem_object_get_supported_uri_schemes
                                                        (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
<p>
Get the full list of URI schemes which Totem supports accessing.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody><tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>a <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>-terminated array of the URI schemes Totem supports. <span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> zero-terminated=1][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
</td>
</tr></tbody>
</table></div>
<p class="since">Since 3.1.5</p>
</div>
</div>
<div class="refsect1">
<a name="TotemObject.property-details"></a><h2>Property Details</h2>
<div class="refsect2">
<a name="TotemObject--current-content-type"></a><h3>The <code class="literal">"current-content-type"</code> property</h3>
<pre class="programlisting">  "current-content-type"     <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>*                : Read</pre>
<p>
The content-type of the current stream.
</p>
<p>Default value: NULL</p>
</div>
<hr>
<div class="refsect2">
<a name="TotemObject--current-display-name"></a><h3>The <code class="literal">"current-display-name"</code> property</h3>
<pre class="programlisting">  "current-display-name"     <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>*                : Read</pre>
<p>
The display name of the current stream.
</p>
<p>Default value: NULL</p>
</div>
<hr>
<div class="refsect2">
<a name="TotemObject--current-mrl"></a><h3>The <code class="literal">"current-mrl"</code> property</h3>
<pre class="programlisting">  "current-mrl"              <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>*                : Read</pre>
<p>
The MRL of the current stream.
</p>
<p>Default value: NULL</p>
</div>
<hr>
<div class="refsect2">
<a name="TotemObject--current-time"></a><h3>The <code class="literal">"current-time"</code> property</h3>
<pre class="programlisting">  "current-time"             <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint64"><span class="type">gint64</span></a>                : Read</pre>
<p>
The player's position (time) in the current stream, in milliseconds.
</p>
<p>Default value: 0</p>
</div>
<hr>
<div class="refsect2">
<a name="TotemObject--fullscreen"></a><h3>The <code class="literal">"fullscreen"</code> property</h3>
<pre class="programlisting">  "fullscreen"               <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a>              : Read</pre>
<p>
If <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, Totem is in fullscreen mode.
</p>
<p>Default value: FALSE</p>
</div>
<hr>
<div class="refsect2">
<a name="TotemObject--playing"></a><h3>The <code class="literal">"playing"</code> property</h3>
<pre class="programlisting">  "playing"                  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a>              : Read</pre>
<p>
If <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, Totem is playing an audio or video file.
</p>
<p>Default value: FALSE</p>
</div>
<hr>
<div class="refsect2">
<a name="TotemObject--remember-position"></a><h3>The <code class="literal">"remember-position"</code> property</h3>
<pre class="programlisting">  "remember-position"        <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a>              : Read / Write</pre>
<p>
If <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, Totem will remember the position it was at last time a given file was opened.
</p>
<p>Default value: FALSE</p>
</div>
<hr>
<div class="refsect2">
<a name="TotemObject--seekable"></a><h3>The <code class="literal">"seekable"</code> property</h3>
<pre class="programlisting">  "seekable"                 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a>              : Read</pre>
<p>
If <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, the current stream is seekable.
</p>
<p>Default value: FALSE</p>
</div>
<hr>
<div class="refsect2">
<a name="TotemObject--stream-length"></a><h3>The <code class="literal">"stream-length"</code> property</h3>
<pre class="programlisting">  "stream-length"            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint64"><span class="type">gint64</span></a>                : Read</pre>
<p>
The length of the current stream, in milliseconds.
</p>
<p>Default value: 0</p>
</div>
</div>
<div class="refsect1">
<a name="TotemObject.signal-details"></a><h2>Signal Details</h2>
<div class="refsect2">
<a name="TotemObject-file-closed"></a><h3>The <code class="literal">"file-closed"</code> signal</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                user_function                      (<a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem,
                                                        <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a>     user_data)      : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a></pre>
<p>
The <a class="link" href="TotemObject.html#TotemObject-file-closed" title='The "file-closed" signal'><span class="type">"file-closed"</span></a> signal is emitted when Totem closes a stream.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>totem</code></em> :</span></p></td>
<td>the <a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> which received the signal</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
<td>user data set when the signal handler was connected.</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="TotemObject-file-has-played"></a><h3>The <code class="literal">"file-has-played"</code> signal</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                user_function                      (<a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem,
                                                        <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>       *mrl,
                                                        <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a>     user_data)      : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a></pre>
<p>
The <a class="link" href="TotemObject.html#TotemObject-file-has-played" title='The "file-has-played" signal'><span class="type">"file-has-played"</span></a> signal is emitted when a new stream has started playing in Totem.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>totem</code></em> :</span></p></td>
<td>the <a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> which received the signal</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>mrl</code></em> :</span></p></td>
<td>the MRL of the opened stream</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
<td>user data set when the signal handler was connected.</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="TotemObject-file-opened"></a><h3>The <code class="literal">"file-opened"</code> signal</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                user_function                      (<a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem,
                                                        <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>       *mrl,
                                                        <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a>     user_data)      : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a></pre>
<p>
The <a class="link" href="TotemObject.html#TotemObject-file-opened" title='The "file-opened" signal'><span class="type">"file-opened"</span></a> signal is emitted when a new stream is opened by Totem.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>totem</code></em> :</span></p></td>
<td>the <a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> which received the signal</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>mrl</code></em> :</span></p></td>
<td>the MRL of the opened stream</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
<td>user data set when the signal handler was connected.</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="TotemObject-get-text-subtitle"></a><h3>The <code class="literal">"get-text-subtitle"</code> signal</h3>
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a>*              user_function                      (<a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem,
                                                        <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>       *mrl,
                                                        <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a>     user_data)      : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a></pre>
<p>
The <a class="link" href="TotemObject.html#TotemObject-get-text-subtitle" title='The "get-text-subtitle" signal'><span class="type">"get-text-subtitle"</span></a> signal is emitted before opening a stream, so that plugins
have the opportunity to detect or download text subtitles for the stream if necessary.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>totem</code></em> :</span></p></td>
<td>the <a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> which received the signal</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>mrl</code></em> :</span></p></td>
<td>the MRL of the opened stream</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
<td>user data set when the signal handler was connected.</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>allocated string representing the URI of the subtitle to use for <em class="parameter"><code>mrl</code></em>
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="TotemObject-get-user-agent"></a><h3>The <code class="literal">"get-user-agent"</code> signal</h3>
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a>*              user_function                      (<a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem,
                                                        <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>       *mrl,
                                                        <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a>     user_data)      : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a></pre>
<p>
The <a class="link" href="TotemObject.html#TotemObject-get-user-agent" title='The "get-user-agent" signal'><span class="type">"get-user-agent"</span></a> signal is emitted before opening a stream, so that plugins
have the opportunity to return the user-agent to be set.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>totem</code></em> :</span></p></td>
<td>the <a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> which received the signal</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>mrl</code></em> :</span></p></td>
<td>the MRL of the opened stream</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
<td>user data set when the signal handler was connected.</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>allocated string representing the user-agent to use for <em class="parameter"><code>mrl</code></em>
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="TotemObject-metadata-updated"></a><h3>The <code class="literal">"metadata-updated"</code> signal</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                user_function                      (<a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> *totem,
                                                        <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>       *artist,
                                                        <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>       *title,
                                                        <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>       *album,
                                                        <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a>        track_number,
                                                        <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a>     user_data)         : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a></pre>
<p>
The <a class="link" href="TotemObject.html#TotemObject-metadata-updated" title='The "metadata-updated" signal'><span class="type">"metadata-updated"</span></a> signal is emitted when the metadata of a stream is updated, typically
when it's being loaded.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>totem</code></em> :</span></p></td>
<td>the <a class="link" href="TotemObject.html" title="TotemObject"><span class="type">TotemObject</span></a> which received the signal</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>artist</code></em> :</span></p></td>
<td>the name of the artist, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>title</code></em> :</span></p></td>
<td>the stream title, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>album</code></em> :</span></p></td>
<td>the name of the stream's album, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>track_number</code></em> :</span></p></td>
<td>the stream's track number</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
<td>user data set when the signal handler was connected.</td>
</tr>
</tbody>
</table></div>
</div>
</div>
</div>
<div class="footer">
<hr>
          Generated by GTK-Doc V1.18.1</div>
</body>
</html>