File: RBEntryView.html

package info (click to toggle)
rhythmbox 3.1-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 43,424 kB
  • ctags: 15,462
  • sloc: ansic: 115,908; sh: 11,821; xml: 5,144; python: 3,777; makefile: 2,438
file content (1859 lines) | stat: -rw-r--r-- 89,597 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Rhythmbox Development Reference Manual: RBEntryView</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="index.html" title="Rhythmbox Development Reference Manual">
<link rel="up" href="ch07.html" title="Widgets">
<link rel="prev" href="rhythmbox-rb-dialog.html" title="rb-dialog">
<link rel="next" href="RBHeader.html" title="RBHeader">
<meta name="generator" content="GTK-Doc V1.21 (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="5"><tr valign="middle">
<td width="100%" align="left" class="shortcuts">
<a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
                  <a href="#RBEntryView.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
                  <a href="#RBEntryView.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_interfaces">  <span class="dim">|</span> 
                  <a href="#RBEntryView.implemented-interfaces" class="shortcut">Implemented Interfaces</a></span><span id="nav_properties">  <span class="dim">|</span> 
                  <a href="#RBEntryView.properties" class="shortcut">Properties</a></span><span id="nav_signals">  <span class="dim">|</span> 
                  <a href="#RBEntryView.signals" class="shortcut">Signals</a></span>
</td>
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
<td><a accesskey="u" href="ch07.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
<td><a accesskey="p" href="rhythmbox-rb-dialog.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
<td><a accesskey="n" href="RBHeader.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
</tr></table>
<div class="refentry">
<a name="RBEntryView"></a><div class="titlepage"></div>
<div class="refnamediv"><table width="100%"><tr>
<td valign="top">
<h2><span class="refentrytitle"><a name="RBEntryView.top_of_page"></a>RBEntryView</span></h2>
<p>RBEntryView — a <a href="http://developer.gnome.org/gtk2/GtkTreeView.html"><span class="type">GtkTreeView</span></a> for displaying track listings</p>
</td>
<td class="gallery_image" valign="top" align="right"></td>
</tr></table></div>
<div class="refsect1">
<a name="RBEntryView.functions"></a><h2>Functions</h2>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="functions_return">
<col class="functions_name">
</colgroup>
<tbody>
<tr>
<td class="function_type">
<a class="link" href="RBEntryView.html" title="RBEntryView"><span class="returnvalue">RBEntryView</span></a> *
</td>
<td class="function_name">
<a class="link" href="RBEntryView.html#rb-entry-view-new" title="rb_entry_view_new ()">rb_entry_view_new</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<a href="http://developer.gnome.org/gtk2/GtkTreeViewColumn.html"><span class="returnvalue">GtkTreeViewColumn</span></a> *
</td>
<td class="function_name">
<a class="link" href="RBEntryView.html#rb-entry-view-get-column" title="rb_entry_view_get_column ()">rb_entry_view_get_column</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="RBEntryView.html#rb-entry-view-append-column" title="rb_entry_view_append_column ()">rb_entry_view_append_column</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="RBEntryView.html#rb-entry-view-append-column-custom" title="rb_entry_view_append_column_custom ()">rb_entry_view_append_column_custom</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="RBEntryView.html#rb-entry-view-insert-column-custom" title="rb_entry_view_insert_column_custom ()">rb_entry_view_insert_column_custom</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="RBEntryView.html#rb-entry-view-set-columns-clickable" title="rb_entry_view_set_columns_clickable ()">rb_entry_view_set_columns_clickable</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="RBEntryView.html#rb-entry-view-set-model" title="rb_entry_view_set_model ()">rb_entry_view_set_model</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="RBEntryView.html#rb-entry-view-set-state" title="rb_entry_view_set_state ()">rb_entry_view_set_state</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
</td>
<td class="function_name">
<a class="link" href="RBEntryView.html#rb-entry-view-have-selection" title="rb_entry_view_have_selection ()">rb_entry_view_have_selection</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
</td>
<td class="function_name">
<a class="link" href="RBEntryView.html#rb-entry-view-have-complete-selection" title="rb_entry_view_have_complete_selection ()">rb_entry_view_have_complete_selection</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
</td>
<td class="function_name">
<a class="link" href="RBEntryView.html#rb-entry-view-get-selected-entries" title="rb_entry_view_get_selected_entries ()">rb_entry_view_get_selected_entries</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="RBEntryView.html#rb-entry-view-select-all" title="rb_entry_view_select_all ()">rb_entry_view_select_all</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="RBEntryView.html#rb-entry-view-select-none" title="rb_entry_view_select_none ()">rb_entry_view_select_none</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="RBEntryView.html#rb-entry-view-select-entry" title="rb_entry_view_select_entry ()">rb_entry_view_select_entry</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
</td>
<td class="function_name">
<a class="link" href="RBEntryView.html#rb-entry-view-get-entry-contained" title="rb_entry_view_get_entry_contained ()">rb_entry_view_get_entry_contained</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
</td>
<td class="function_name">
<a class="link" href="RBEntryView.html#rb-entry-view-get-entry-visible" title="rb_entry_view_get_entry_visible ()">rb_entry_view_get_entry_visible</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="RBEntryView.html#rb-entry-view-scroll-to-entry" title="rb_entry_view_scroll_to_entry ()">rb_entry_view_scroll_to_entry</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="RBEntryView.html#rb-entry-view-enable-drag-source" title="rb_entry_view_enable_drag_source ()">rb_entry_view_enable_drag_source</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="RBEntryView.html#rb-entry-view-get-sorting-order" title="rb_entry_view_get_sorting_order ()">rb_entry_view_get_sorting_order</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="RBEntryView.html#rb-entry-view-set-sorting-order" title="rb_entry_view_set_sorting_order ()">rb_entry_view_set_sorting_order</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">char</span> *
</td>
<td class="function_name">
<a class="link" href="RBEntryView.html#rb-entry-view-get-sorting-type" title="rb_entry_view_get_sorting_type ()">rb_entry_view_get_sorting_type</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="RBEntryView.html#rb-entry-view-set-sorting-type" title="rb_entry_view_set_sorting_type ()">rb_entry_view_set_sorting_type</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="RBEntryView.html#rb-entry-view-set-fixed-column-width" title="rb_entry_view_set_fixed_column_width ()">rb_entry_view_set_fixed_column_width</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="RBEntryView.html#rb-entry-view-set-column-editable" title="rb_entry_view_set_column_editable ()">rb_entry_view_set_column_editable</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">const <span class="returnvalue">char</span> *
</td>
<td class="function_name">
<a class="link" href="RBEntryView.html#rb-entry-view-get-time-date-column-sample" title="rb_entry_view_get_time_date_column_sample ()">rb_entry_view_get_time_date_column_sample</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="RBEntryView.html#rb-entry-view-resort-model" title="rb_entry_view_resort_model ()">rb_entry_view_resort_model</a> <span class="c_punctuation">()</span>
</td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect1">
<a name="RBEntryView.properties"></a><h2>Properties</h2>
<div class="informaltable"><table border="0">
<colgroup>
<col width="150px" class="properties_type">
<col width="300px" class="properties_name">
<col width="200px" class="properties_flags">
</colgroup>
<tbody>
<tr>
<td class="property_type">
<a class="link" href="RhythmDB.html" title="RhythmDB"><span class="type">RhythmDB</span></a> *</td>
<td class="property_name"><a class="link" href="RBEntryView.html#RBEntryView--db" title="The “db” property">db</a></td>
<td class="property_flags">Read / Write / Construct Only</td>
</tr>
<tr>
<td class="property_type"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
<td class="property_name"><a class="link" href="RBEntryView.html#RBEntryView--is-drag-dest" title="The “is-drag-dest” property">is-drag-dest</a></td>
<td class="property_flags">Read / Write / Construct Only</td>
</tr>
<tr>
<td class="property_type"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
<td class="property_name"><a class="link" href="RBEntryView.html#RBEntryView--is-drag-source" title="The “is-drag-source” property">is-drag-source</a></td>
<td class="property_flags">Read / Write / Construct Only</td>
</tr>
<tr>
<td class="property_type">
<a class="link" href="RhythmDBQueryModel.html" title="RhythmDBQueryModel"><span class="type">RhythmDBQueryModel</span></a> *</td>
<td class="property_name"><a class="link" href="RBEntryView.html#RBEntryView--model" title="The “model” property">model</a></td>
<td class="property_flags">Read / Write</td>
</tr>
<tr>
<td class="property_type"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a></td>
<td class="property_name"><a class="link" href="RBEntryView.html#RBEntryView--playing-state" title="The “playing-state” property">playing-state</a></td>
<td class="property_flags">Read / Write</td>
</tr>
<tr>
<td class="property_type">
<a class="link" href="RBShellPlayer.html" title="RBShellPlayer"><span class="type">RBShellPlayer</span></a> *</td>
<td class="property_name"><a class="link" href="RBEntryView.html#RBEntryView--shell-player" title="The “shell-player” property">shell-player</a></td>
<td class="property_flags">Read / Write / Construct Only</td>
</tr>
<tr>
<td class="property_type">
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</td>
<td class="property_name"><a class="link" href="RBEntryView.html#RBEntryView--sort-order" title="The “sort-order” property">sort-order</a></td>
<td class="property_flags">Read / Write</td>
</tr>
<tr>
<td class="property_type"><a href="http://library.gnome.org/devel/gobject/unstable/gobject-Boxed-Types.html#GStrv"><span class="type">GStrv</span></a></td>
<td class="property_name"><a class="link" href="RBEntryView.html#RBEntryView--visible-columns" title="The “visible-columns” property">visible-columns</a></td>
<td class="property_flags">Read / Write</td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect1">
<a name="RBEntryView.signals"></a><h2>Signals</h2>
<div class="informaltable"><table border="0">
<colgroup>
<col width="150px" class="signals_return">
<col width="300px" class="signals_name">
<col width="200px" class="signals_flags">
</colgroup>
<tbody>
<tr>
<td class="signal_type"><span class="returnvalue">void</span></td>
<td class="signal_name"><a class="link" href="RBEntryView.html#RBEntryView-entries-replaced" title="The “entries-replaced” signal">entries-replaced</a></td>
<td class="signal_flags">Run Last</td>
</tr>
<tr>
<td class="signal_type"><span class="returnvalue">void</span></td>
<td class="signal_name"><a class="link" href="RBEntryView.html#RBEntryView-entry-activated" title="The “entry-activated” signal">entry-activated</a></td>
<td class="signal_flags">Run Last</td>
</tr>
<tr>
<td class="signal_type"><span class="returnvalue">void</span></td>
<td class="signal_name"><a class="link" href="RBEntryView.html#RBEntryView-entry-added" title="The “entry-added” signal">entry-added</a></td>
<td class="signal_flags">Run Last</td>
</tr>
<tr>
<td class="signal_type"><span class="returnvalue">void</span></td>
<td class="signal_name"><a class="link" href="RBEntryView.html#RBEntryView-entry-deleted" title="The “entry-deleted” signal">entry-deleted</a></td>
<td class="signal_flags">Run Last</td>
</tr>
<tr>
<td class="signal_type"><span class="returnvalue">void</span></td>
<td class="signal_name"><a class="link" href="RBEntryView.html#RBEntryView-have-selection-changed" title="The “have-selection-changed” signal">have-selection-changed</a></td>
<td class="signal_flags">Run Last</td>
</tr>
<tr>
<td class="signal_type"><span class="returnvalue">void</span></td>
<td class="signal_name"><a class="link" href="RBEntryView.html#RBEntryView-selection-changed" title="The “selection-changed” signal">selection-changed</a></td>
<td class="signal_flags">Run Last</td>
</tr>
<tr>
<td class="signal_type"><span class="returnvalue">void</span></td>
<td class="signal_name"><a class="link" href="RBEntryView.html#RBEntryView-show-popup" title="The “show-popup” signal">show-popup</a></td>
<td class="signal_flags">Run Last</td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect1">
<a name="RBEntryView.other"></a><h2>Types and Values</h2>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="name">
<col class="description">
</colgroup>
<tbody>
<tr>
<td class="datatype_keyword">enum</td>
<td class="function_name"><a class="link" href="RBEntryView.html#RBEntryViewColumn" title="enum RBEntryViewColumn">RBEntryViewColumn</a></td>
</tr>
<tr>
<td class="datatype_keyword">enum</td>
<td class="function_name"><a class="link" href="RBEntryView.html#RBEntryViewState" title="enum RBEntryViewState">RBEntryViewState</a></td>
</tr>
<tr>
<td class="datatype_keyword">struct</td>
<td class="function_name"><a class="link" href="RBEntryView.html#RBEntryView-struct" title="struct RBEntryView">RBEntryView</a></td>
</tr>
<tr>
<td class="datatype_keyword">struct</td>
<td class="function_name"><a class="link" href="RBEntryView.html#RBEntryViewClass" title="struct RBEntryViewClass">RBEntryViewClass</a></td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect1">
<a name="RBEntryView.object-hierarchy"></a><h2>Object Hierarchy</h2>
<pre class="screen">    <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Enumeration-and-Flag-Types.html">GEnum</a>
    <span class="lineart">├──</span> RBEntryViewColumn
    <span class="lineart">╰──</span> RBEntryViewState
    <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
    <span class="lineart">╰──</span> <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GInitiallyUnowned">GInitiallyUnowned</a>
        <span class="lineart">╰──</span> <a href="http://developer.gnome.org/gtk2/GtkWidget.html">GtkWidget</a>
            <span class="lineart">╰──</span> <a href="http://developer.gnome.org/gtk2/GtkContainer.html">GtkContainer</a>
                <span class="lineart">╰──</span> <a href="http://developer.gnome.org/gtk2/GtkBin.html">GtkBin</a>
                    <span class="lineart">╰──</span> <a href="http://developer.gnome.org/gtk2/GtkScrolledWindow.html">GtkScrolledWindow</a>
                        <span class="lineart">╰──</span> RBEntryView
</pre>
</div>
<div class="refsect1">
<a name="RBEntryView.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
<p>
RBEntryView implements
 <a href="/usr/share/gtk-doc/html/atk/AtkObject.html#AtkImplementorIface">AtkImplementorIface</a> and  <a href="http://developer.gnome.org/gtk2/GtkBuildable.html">GtkBuildable</a>.</p>
</div>
<div class="refsect1">
<a name="RBEntryView.description"></a><h2>Description</h2>
<p>This class provides a predefined set of columns for displaying the
common set of <span class="type">RhythmDBEntry</span> properties, but also allows custom columns
to be appended.  The 'playing' column is always created as the first
column in the tree view, displaying a playing or paused image next to
the currently playing entry, and also an error image next to entries for
which a playback error message has been set.  Clicking on the error
image opens a dialog displaying the full message.</p>
<p>All columns added to entry view columns should be expandable, or have a fixed
minimum width set.  Otherwise, the tree view must measure the contents of each
row to assign sizes, which is very slow for large track lists.  All the predefined
column types handle this correctly.</p>
</div>
<div class="refsect1">
<a name="RBEntryView.functions_details"></a><h2>Functions</h2>
<div class="refsect2">
<a name="rb-entry-view-new"></a><h3>rb_entry_view_new ()</h3>
<pre class="programlisting"><a class="link" href="RBEntryView.html" title="RBEntryView"><span class="returnvalue">RBEntryView</span></a> *
rb_entry_view_new (<em class="parameter"><code><a class="link" href="RhythmDB.html" title="RhythmDB"><span class="type">RhythmDB</span></a> *db</code></em>,
                   <em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *shell_player</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> is_drag_source</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> is_drag_dest</code></em>);</pre>
<p>Creates a new entry view.  If it makes sense to allow the user to drag entries
from this entry view to other sources, <em class="parameter"><code>is_drag_source</code></em>
 should be TRUE.  If it
makes sense to allow the user to drag entries from other sources to this view,
<em class="parameter"><code>is_drag_dest</code></em>
 should be TRUE.  Drag and drop in this sense is used for two purposes:
to transfer tracks between the filesystem and removable devices, and to add tracks
to playlists.</p>
<div class="refsect3">
<a name="id-1.8.5.10.2.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>db</p></td>
<td class="parameter_description"><p>the <a class="link" href="RhythmDB.html" title="RhythmDB"><span class="type">RhythmDB</span></a> instance</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>shell_player</p></td>
<td class="parameter_description"><p>the <a class="link" href="RBShellPlayer.html" title="RBShellPlayer"><span class="type">RBShellPlayer</span></a> instance</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>is_drag_source</p></td>
<td class="parameter_description"><p>if TRUE, the view should act as a drag and drop data source</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>is_drag_dest</p></td>
<td class="parameter_description"><p>if TRUE, the view should act as a drag and drop destination</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.8.5.10.2.6"></a><h4>Returns</h4>
<p> the new entry view</p>
<p></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="rb-entry-view-get-column"></a><h3>rb_entry_view_get_column ()</h3>
<pre class="programlisting"><a href="http://developer.gnome.org/gtk2/GtkTreeViewColumn.html"><span class="returnvalue">GtkTreeViewColumn</span></a> *
rb_entry_view_get_column (<em class="parameter"><code><a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a> *view</code></em>,
                          <em class="parameter"><code><a class="link" href="RBEntryView.html#RBEntryViewColumn" title="enum RBEntryViewColumn"><span class="type">RBEntryViewColumn</span></a> coltype</code></em>);</pre>
<p>Retrieves a predefined column from the entry view.  This can be used
to insert additional cell renderers into the column.</p>
<div class="refsect3">
<a name="id-1.8.5.10.3.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>view</p></td>
<td class="parameter_description"><p>a <a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>coltype</p></td>
<td class="parameter_description"><p>type of column to retrieve</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.8.5.10.3.6"></a><h4>Returns</h4>
<p> a <a href="http://developer.gnome.org/gtk2/GtkTreeViewColumn.html"><span class="type">GtkTreeViewColumn</span></a> instance, or NULL. </p>
<p><span class="annotation">[<a href="http://foldoc.org/transfer%20none"><span class="acronym">transfer none</span></a>]</span></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="rb-entry-view-append-column"></a><h3>rb_entry_view_append_column ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
rb_entry_view_append_column (<em class="parameter"><code><a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a> *view</code></em>,
                             <em class="parameter"><code><a class="link" href="RBEntryView.html#RBEntryViewColumn" title="enum RBEntryViewColumn"><span class="type">RBEntryViewColumn</span></a> coltype</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> always_visible</code></em>);</pre>
<p>Appends a predefined column type to the set of columns already present
in the entry view.  If <em class="parameter"><code>always_visible</code></em>
 is TRUE, the column will ignore
the user's coulmn visibility settings and will always be visible.
This should only be used when it is vital for the purpose of the 
source that the column be visible.</p>
<div class="refsect3">
<a name="id-1.8.5.10.4.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>view</p></td>
<td class="parameter_description"><p>a <a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>coltype</p></td>
<td class="parameter_description"><p>type of column to append</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>always_visible</p></td>
<td class="parameter_description"><p>if TRUE, ignore the user's column visibility settings</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
</div>
<hr>
<div class="refsect2">
<a name="rb-entry-view-append-column-custom"></a><h3>rb_entry_view_append_column_custom ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
rb_entry_view_append_column_custom (<em class="parameter"><code><a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a> *view</code></em>,
                                    <em class="parameter"><code><a href="http://developer.gnome.org/gtk2/GtkTreeViewColumn.html"><span class="type">GtkTreeViewColumn</span></a> *column</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> *key</code></em>,
                                    <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GCompareDataFunc"><span class="type">GCompareDataFunc</span></a> sort_func</code></em>,
                                    <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>,
                                    <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Datasets.html#GDestroyNotify"><span class="type">GDestroyNotify</span></a> data_destroy</code></em>);</pre>
<p>Appends a custom column to the entry view.</p>
<div class="refsect3">
<a name="id-1.8.5.10.5.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>view</p></td>
<td class="parameter_description"><p>a <a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>column</p></td>
<td class="parameter_description"><p> a <a href="http://developer.gnome.org/gtk2/GtkTreeViewColumn.html"><span class="type">GtkTreeViewColumn</span></a> to append. </p></td>
<td class="parameter_annotations"><span class="annotation">[<a href="http://foldoc.org/transfer%20full"><span class="acronym">transfer full</span></a>]</span></td>
</tr>
<tr>
<td class="parameter_name"><p>title</p></td>
<td class="parameter_description"><p>title for the column (translated)</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>key</p></td>
<td class="parameter_description"><p>sort key for the column (not translated)</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>sort_func</p></td>
<td class="parameter_description"><p>comparison function to use for sorting on the column</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>data</p></td>
<td class="parameter_description"><p> data to pass to the sort function. </p></td>
<td class="parameter_annotations"><span class="annotation">[<a href="http://foldoc.org/closure"><span class="acronym">closure</span></a>][<a href="http://foldoc.org/scope%20notified"><span class="acronym">scope notified</span></a>]</span></td>
</tr>
<tr>
<td class="parameter_name"><p>data_destroy</p></td>
<td class="parameter_description"><p>function to use to destroy the sort data</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
</div>
<hr>
<div class="refsect2">
<a name="rb-entry-view-insert-column-custom"></a><h3>rb_entry_view_insert_column_custom ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
rb_entry_view_insert_column_custom (<em class="parameter"><code><a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a> *view</code></em>,
                                    <em class="parameter"><code><a href="http://developer.gnome.org/gtk2/GtkTreeViewColumn.html"><span class="type">GtkTreeViewColumn</span></a> *column</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> *key</code></em>,
                                    <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GCompareDataFunc"><span class="type">GCompareDataFunc</span></a> sort_func</code></em>,
                                    <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>,
                                    <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Datasets.html#GDestroyNotify"><span class="type">GDestroyNotify</span></a> data_destroy</code></em>,
                                    <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> position</code></em>);</pre>
<p>Inserts a custom column at the specified position.</p>
<div class="refsect3">
<a name="id-1.8.5.10.6.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>view</p></td>
<td class="parameter_description"><p>a <a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>column</p></td>
<td class="parameter_description"><p> a <a href="http://developer.gnome.org/gtk2/GtkTreeViewColumn.html"><span class="type">GtkTreeViewColumn</span></a> to append. </p></td>
<td class="parameter_annotations"><span class="annotation">[<a href="http://foldoc.org/transfer%20full"><span class="acronym">transfer full</span></a>]</span></td>
</tr>
<tr>
<td class="parameter_name"><p>title</p></td>
<td class="parameter_description"><p>title for the column (translated)</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>key</p></td>
<td class="parameter_description"><p>sort key for the column (not translated)</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>sort_func</p></td>
<td class="parameter_description"><p>comparison function to use for sorting on the column</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>data</p></td>
<td class="parameter_description"><p> data to pass to the sort function. </p></td>
<td class="parameter_annotations"><span class="annotation">[<a href="http://foldoc.org/closure"><span class="acronym">closure</span></a>][<a href="http://foldoc.org/scope%20notified"><span class="acronym">scope notified</span></a>]</span></td>
</tr>
<tr>
<td class="parameter_name"><p>data_destroy</p></td>
<td class="parameter_description"><p>function to use to destroy the sort data</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>position</p></td>
<td class="parameter_description"><p>position at which to insert the column (-1 to insert at the end)</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
</div>
<hr>
<div class="refsect2">
<a name="rb-entry-view-set-columns-clickable"></a><h3>rb_entry_view_set_columns_clickable ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
rb_entry_view_set_columns_clickable (<em class="parameter"><code><a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a> *view</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> clickable</code></em>);</pre>
<p>Makes the headers for sortable columns (those for which a sort function was
provided) clickable, so the user can set the sort order.</p>
<div class="refsect3">
<a name="id-1.8.5.10.7.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>view</p></td>
<td class="parameter_description"><p>a <a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>clickable</p></td>
<td class="parameter_description"><p>if TRUE, sortable columns will be made clickable</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
</div>
<hr>
<div class="refsect2">
<a name="rb-entry-view-set-model"></a><h3>rb_entry_view_set_model ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
rb_entry_view_set_model (<em class="parameter"><code><a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a> *view</code></em>,
                         <em class="parameter"><code><a class="link" href="RhythmDBQueryModel.html" title="RhythmDBQueryModel"><span class="type">RhythmDBQueryModel</span></a> *model</code></em>);</pre>
<p>Replaces the model backing the entry view.</p>
<div class="refsect3">
<a name="id-1.8.5.10.8.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>view</p></td>
<td class="parameter_description"><p>the <a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>model</p></td>
<td class="parameter_description"><p>the new <a class="link" href="RhythmDBQueryModel.html" title="RhythmDBQueryModel"><span class="type">RhythmDBQueryModel</span></a> to use for the view</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
</div>
<hr>
<div class="refsect2">
<a name="rb-entry-view-set-state"></a><h3>rb_entry_view_set_state ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
rb_entry_view_set_state (<em class="parameter"><code><a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a> *view</code></em>,
                         <em class="parameter"><code><a class="link" href="RBEntryView.html#RBEntryViewState" title="enum RBEntryViewState"><span class="type">RBEntryViewState</span></a> state</code></em>);</pre>
<p>Sets the icon to be drawn in the 'playing' column next to the
current playing entry.  RB_ENTRY_VIEW_PLAYING and RB_ENTRY_VIEW_PAUSED
should be used when the source containing the entry view is playing,
and RB_ENTRY_VIEW_NOT_PLAYING otherwise.</p>
<div class="refsect3">
<a name="id-1.8.5.10.9.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>view</p></td>
<td class="parameter_description"><p>a <a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>state</p></td>
<td class="parameter_description"><p>the new playing entry state</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
</div>
<hr>
<div class="refsect2">
<a name="rb-entry-view-have-selection"></a><h3>rb_entry_view_have_selection ()</h3>
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
rb_entry_view_have_selection (<em class="parameter"><code><a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a> *view</code></em>);</pre>
<p>Determines whether there is an active selection in the view.</p>
<div class="refsect3">
<a name="id-1.8.5.10.10.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody><tr>
<td class="parameter_name"><p>view</p></td>
<td class="parameter_description"><p>a <a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr></tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.8.5.10.10.6"></a><h4>Returns</h4>
<p> TRUE if one or more rows are selected</p>
<p></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="rb-entry-view-have-complete-selection"></a><h3>rb_entry_view_have_complete_selection ()</h3>
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
rb_entry_view_have_complete_selection (<em class="parameter"><code><a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a> *view</code></em>);</pre>
<p>Determines whether all entries in the view are selected.</p>
<div class="refsect3">
<a name="id-1.8.5.10.11.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody><tr>
<td class="parameter_name"><p>view</p></td>
<td class="parameter_description"><p>a <a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr></tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.8.5.10.11.6"></a><h4>Returns</h4>
<p> TRUE if all rows in the view are selected</p>
<p></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="rb-entry-view-get-selected-entries"></a><h3>rb_entry_view_get_selected_entries ()</h3>
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
rb_entry_view_get_selected_entries (<em class="parameter"><code><a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a> *view</code></em>);</pre>
<p>Gathers the selected entries from the view.</p>
<div class="refsect3">
<a name="id-1.8.5.10.12.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody><tr>
<td class="parameter_name"><p>view</p></td>
<td class="parameter_description"><p>a <a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr></tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.8.5.10.12.6"></a><h4>Returns</h4>
<p> a <a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="type">GList</span></a> of
selected entries in the view. </p>
<p><span class="annotation">[<a href="http://foldoc.org/element-type"><span class="acronym">element-type</span></a> RhythmDBEntry][<a href="http://foldoc.org/transfer%20full"><span class="acronym">transfer full</span></a>]</span></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="rb-entry-view-select-all"></a><h3>rb_entry_view_select_all ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
rb_entry_view_select_all (<em class="parameter"><code><a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a> *view</code></em>);</pre>
<p>Selects all rows in the view</p>
<div class="refsect3">
<a name="id-1.8.5.10.13.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody><tr>
<td class="parameter_name"><p>view</p></td>
<td class="parameter_description"><p>a <a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr></tbody>
</table></div>
</div>
</div>
<hr>
<div class="refsect2">
<a name="rb-entry-view-select-none"></a><h3>rb_entry_view_select_none ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
rb_entry_view_select_none (<em class="parameter"><code><a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a> *view</code></em>);</pre>
<p>Deselects all rows in the view.</p>
<div class="refsect3">
<a name="id-1.8.5.10.14.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody><tr>
<td class="parameter_name"><p>view</p></td>
<td class="parameter_description"><p>a <a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr></tbody>
</table></div>
</div>
</div>
<hr>
<div class="refsect2">
<a name="rb-entry-view-select-entry"></a><h3>rb_entry_view_select_entry ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
rb_entry_view_select_entry (<em class="parameter"><code><a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a> *view</code></em>,
                            <em class="parameter"><code><span class="type">RhythmDBEntry</span> *entry</code></em>);</pre>
<p>If the specified entry is present in the view, it is added
to the selection.</p>
<div class="refsect3">
<a name="id-1.8.5.10.15.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>view</p></td>
<td class="parameter_description"><p>a <a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>entry</p></td>
<td class="parameter_description"><p>a <span class="type">RhythmDBEntry</span> to select</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
</div>
<hr>
<div class="refsect2">
<a name="rb-entry-view-get-entry-contained"></a><h3>rb_entry_view_get_entry_contained ()</h3>
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
rb_entry_view_get_entry_contained (<em class="parameter"><code><a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a> *view</code></em>,
                                   <em class="parameter"><code><span class="type">RhythmDBEntry</span> *entry</code></em>);</pre>
<p>Determines whether a specified entry is present in the view.</p>
<div class="refsect3">
<a name="id-1.8.5.10.16.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>view</p></td>
<td class="parameter_description"><p>a <a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>entry</p></td>
<td class="parameter_description"><p>a <span class="type">RhythmDBEntry</span> to check</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.8.5.10.16.6"></a><h4>Returns</h4>
<p> TRUE if the entry is present in the view</p>
<p></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="rb-entry-view-get-entry-visible"></a><h3>rb_entry_view_get_entry_visible ()</h3>
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
rb_entry_view_get_entry_visible (<em class="parameter"><code><a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a> *view</code></em>,
                                 <em class="parameter"><code><span class="type">RhythmDBEntry</span> *entry</code></em>);</pre>
<p>Determines whether a specified entry is present in the view
and is currently visible.</p>
<div class="refsect3">
<a name="id-1.8.5.10.17.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>view</p></td>
<td class="parameter_description"><p>a <a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>entry</p></td>
<td class="parameter_description"><p>a <span class="type">RhythmDBEntry</span> to check</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.8.5.10.17.6"></a><h4>Returns</h4>
<p> TRUE if the entry is visible</p>
<p></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="rb-entry-view-scroll-to-entry"></a><h3>rb_entry_view_scroll_to_entry ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
rb_entry_view_scroll_to_entry (<em class="parameter"><code><a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a> *view</code></em>,
                               <em class="parameter"><code><span class="type">RhythmDBEntry</span> *entry</code></em>);</pre>
<p>If the specified entry is present in the view, the view will be
scrolled so that the entry is visible.</p>
<div class="refsect3">
<a name="id-1.8.5.10.18.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>view</p></td>
<td class="parameter_description"><p>a <a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>entry</p></td>
<td class="parameter_description"><p>a <span class="type">RhythmDBEntry</span> to scroll to</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
</div>
<hr>
<div class="refsect2">
<a name="rb-entry-view-enable-drag-source"></a><h3>rb_entry_view_enable_drag_source ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
rb_entry_view_enable_drag_source (<em class="parameter"><code><a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a> *view</code></em>,
                                  <em class="parameter"><code>const <a href="http://developer.gnome.org/gtk2/gtk3-Selections.html#GtkTargetEntry"><span class="type">GtkTargetEntry</span></a> *targets</code></em>,
                                  <em class="parameter"><code><span class="type">int</span> n_targets</code></em>);</pre>
<p>Enables the entry view to act as a data source for drag an drop operations,
using a specified set of data targets.</p>
<div class="refsect3">
<a name="id-1.8.5.10.19.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>view</p></td>
<td class="parameter_description"><p>a <a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>targets</p></td>
<td class="parameter_description"><p>an array of <a href="http://developer.gnome.org/gtk2/gtk3-Selections.html#GtkTargetEntry"><span class="type">GtkTargetEntry</span></a> structures defining the drag data targets</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>n_targets</p></td>
<td class="parameter_description"><p>the number of entries in the target array</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
</div>
<hr>
<div class="refsect2">
<a name="rb-entry-view-get-sorting-order"></a><h3>rb_entry_view_get_sorting_order ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
rb_entry_view_get_sorting_order (<em class="parameter"><code><a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a> *view</code></em>,
                                 <em class="parameter"><code><span class="type">char</span> **column_name</code></em>,
                                 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *sort_order</code></em>);</pre>
<p>Retrieves the sort settings for the view.</p>
<div class="refsect3">
<a name="id-1.8.5.10.20.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>view</p></td>
<td class="parameter_description"><p>a <a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>column_name</p></td>
<td class="parameter_description"><p> returns the sort column name. </p></td>
<td class="parameter_annotations"><span class="annotation">[<a href="http://foldoc.org/out%20callee-allocates"><span class="acronym">out callee-allocates</span></a>][<a href="http://foldoc.org/allow-none"><span class="acronym">allow-none</span></a>][<a href="http://foldoc.org/transfer%20full"><span class="acronym">transfer full</span></a>]</span></td>
</tr>
<tr>
<td class="parameter_name"><p>sort_order</p></td>
<td class="parameter_description"><p> returns the sort ordering as a <a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkSortType"><span class="type">GtkSortType</span></a> value. </p></td>
<td class="parameter_annotations"><span class="annotation">[<a href="http://foldoc.org/out"><span class="acronym">out</span></a>][<a href="http://foldoc.org/allow-none"><span class="acronym">allow-none</span></a>]</span></td>
</tr>
</tbody>
</table></div>
</div>
</div>
<hr>
<div class="refsect2">
<a name="rb-entry-view-set-sorting-order"></a><h3>rb_entry_view_set_sorting_order ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
rb_entry_view_set_sorting_order (<em class="parameter"><code><a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a> *view</code></em>,
                                 <em class="parameter"><code>const <span class="type">char</span> *column_name</code></em>,
                                 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> sort_order</code></em>);</pre>
<p>Sets the sort order for the entry view.</p>
<div class="refsect3">
<a name="id-1.8.5.10.21.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>view</p></td>
<td class="parameter_description"><p>a <a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>column_name</p></td>
<td class="parameter_description"><p>name of the column to sort on</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>sort_order</p></td>
<td class="parameter_description"><p>order to sort in, as a <a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkSortType"><span class="type">GtkSortType</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
</div>
<hr>
<div class="refsect2">
<a name="rb-entry-view-get-sorting-type"></a><h3>rb_entry_view_get_sorting_type ()</h3>
<pre class="programlisting"><span class="returnvalue">char</span> *
rb_entry_view_get_sorting_type (<em class="parameter"><code><a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a> *view</code></em>);</pre>
<p>Constructs a string that describes the sort settings for the entry view.
This consists of a column name and an order ('ascending' or 'descending')
separated by a comma.</p>
<div class="refsect3">
<a name="id-1.8.5.10.22.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody><tr>
<td class="parameter_name"><p>view</p></td>
<td class="parameter_description"><p>an <a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr></tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.8.5.10.22.6"></a><h4>Returns</h4>
<p> sort order description. </p>
<p><span class="annotation">[<a href="http://foldoc.org/transfer%20full"><span class="acronym">transfer full</span></a>]</span></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="rb-entry-view-set-sorting-type"></a><h3>rb_entry_view_set_sorting_type ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
rb_entry_view_set_sorting_type (<em class="parameter"><code><a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a> *view</code></em>,
                                <em class="parameter"><code>const <span class="type">char</span> *sorttype</code></em>);</pre>
<p>Changes the sort order for the entry view.  The sort order
description must be a column name, followed by a comma, followed
by an order description ('ascending' or 'descending').</p>
<div class="refsect3">
<a name="id-1.8.5.10.23.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>view</p></td>
<td class="parameter_description"><p>a <a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>sorttype</p></td>
<td class="parameter_description"><p>sort order description</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
</div>
<hr>
<div class="refsect2">
<a name="rb-entry-view-set-fixed-column-width"></a><h3>rb_entry_view_set_fixed_column_width ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
rb_entry_view_set_fixed_column_width (<em class="parameter"><code><a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a> *view</code></em>,
                                      <em class="parameter"><code><a href="http://developer.gnome.org/gtk2/GtkTreeViewColumn.html"><span class="type">GtkTreeViewColumn</span></a> *column</code></em>,
                                      <em class="parameter"><code><a href="http://developer.gnome.org/gtk2/GtkCellRenderer.html"><span class="type">GtkCellRenderer</span></a> *renderer</code></em>,
                                      <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> **strings</code></em>);</pre>
<p>Helper function for calling <em class="parameter"><code>rb_set_tree_view_column_fixed_width</code></em>
 on
a column.  This is important for performance reasons, as having the
tree view measure the strings in each of 20000 rows is very slow.</p>
<div class="refsect3">
<a name="id-1.8.5.10.24.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>view</p></td>
<td class="parameter_description"><p>a <a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>column</p></td>
<td class="parameter_description"><p>the column to set the width for</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>renderer</p></td>
<td class="parameter_description"><p>a temporary cell renderer to use</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>strings</p></td>
<td class="parameter_description"><p> a NULL-terminated array of strings that will be displayed in the column. </p></td>
<td class="parameter_annotations"><span class="annotation">[<a href="http://foldoc.org/array"><span class="acronym">array</span></a> zero-terminated=1]</span></td>
</tr>
</tbody>
</table></div>
</div>
</div>
<hr>
<div class="refsect2">
<a name="rb-entry-view-set-column-editable"></a><h3>rb_entry_view_set_column_editable ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
rb_entry_view_set_column_editable (<em class="parameter"><code><a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a> *view</code></em>,
                                   <em class="parameter"><code><a class="link" href="RBEntryView.html#RBEntryViewColumn" title="enum RBEntryViewColumn"><span class="type">RBEntryViewColumn</span></a> column</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> editable</code></em>);</pre>
<p>Enables in-place editing of the values in a column.
The underlying <code class="literal">RhythmDBEntry</code> is updated when editing is complete.</p>
<div class="refsect3">
<a name="id-1.8.5.10.25.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>view</p></td>
<td class="parameter_description"><p>a <a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>column</p></td>
<td class="parameter_description"><p>a <a class="link" href="RBEntryView.html#RBEntryViewColumn" title="enum RBEntryViewColumn"><span class="type">RBEntryViewColumn</span></a> to update</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>editable</p></td>
<td class="parameter_description"><p><a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to make the column editable, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
</div>
<hr>
<div class="refsect2">
<a name="rb-entry-view-get-time-date-column-sample"></a><h3>rb_entry_view_get_time_date_column_sample ()</h3>
<pre class="programlisting">const <span class="returnvalue">char</span> *
rb_entry_view_get_time_date_column_sample
                               (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
<p>Returns a sample string for use in columns displaying times
and dates in 'friendly' form (see <em class="parameter"><code>rb_utf_friendly_time</code></em>
).
For use with <em class="parameter"><code>rb_entry_view_set_fixed_column_width</code></em>
.</p>
<div class="refsect3">
<a name="id-1.8.5.10.26.5"></a><h4>Returns</h4>
<p> sample date string</p>
<p></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="rb-entry-view-resort-model"></a><h3>rb_entry_view_resort_model ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
rb_entry_view_resort_model (<em class="parameter"><code><a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a> *view</code></em>);</pre>
<p>Resorts the entries in the entry view.  Mostly to be used
when a new model is associated with the view.</p>
<div class="refsect3">
<a name="id-1.8.5.10.27.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody><tr>
<td class="parameter_name"><p>view</p></td>
<td class="parameter_description"><p>a <a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a> to resort</p></td>
<td class="parameter_annotations"> </td>
</tr></tbody>
</table></div>
</div>
</div>
</div>
<div class="refsect1">
<a name="RBEntryView.other_details"></a><h2>Types and Values</h2>
<div class="refsect2">
<a name="RBEntryViewColumn"></a><h3>enum RBEntryViewColumn</h3>
<p>Predefined column types to use in <a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a>s.  Use
<a class="link" href="RBEntryView.html#rb-entry-view-append-column" title="rb_entry_view_append_column ()"><span class="type">rb_entry_view_append_column</span></a> to add these to an entry view.
The predefined column names map directly to the <span class="type">RhythmDBEntry</span> properties
the columns display.</p>
<div class="refsect3">
<a name="id-1.8.5.11.2.4"></a><h4>Members</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="300px" class="enum_members_name">
<col class="enum_members_description">
<col width="200px" class="enum_members_annotations">
</colgroup>
<tbody>
<tr>
<td class="enum_member_name"><p><a name="RB-ENTRY-VIEW-COL-TRACK-NUMBER:CAPS"></a>RB_ENTRY_VIEW_COL_TRACK_NUMBER</p></td>
<td class="enum_member_description">
<p>the track number column</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="RB-ENTRY-VIEW-COL-TITLE:CAPS"></a>RB_ENTRY_VIEW_COL_TITLE</p></td>
<td class="enum_member_description">
<p>the title column</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="RB-ENTRY-VIEW-COL-ARTIST:CAPS"></a>RB_ENTRY_VIEW_COL_ARTIST</p></td>
<td class="enum_member_description">
<p>the artist column</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="RB-ENTRY-VIEW-COL-ALBUM:CAPS"></a>RB_ENTRY_VIEW_COL_ALBUM</p></td>
<td class="enum_member_description">
<p>the album column</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="RB-ENTRY-VIEW-COL-GENRE:CAPS"></a>RB_ENTRY_VIEW_COL_GENRE</p></td>
<td class="enum_member_description">
<p>the genre column</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="RB-ENTRY-VIEW-COL-COMMENT:CAPS"></a>RB_ENTRY_VIEW_COL_COMMENT</p></td>
<td class="enum_member_description">
<p>the comment column</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="RB-ENTRY-VIEW-COL-DURATION:CAPS"></a>RB_ENTRY_VIEW_COL_DURATION</p></td>
<td class="enum_member_description">
<p>the duration column</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="RB-ENTRY-VIEW-COL-QUALITY:CAPS"></a>RB_ENTRY_VIEW_COL_QUALITY</p></td>
<td class="enum_member_description">
<p>the quality (bitrate) column</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="RB-ENTRY-VIEW-COL-RATING:CAPS"></a>RB_ENTRY_VIEW_COL_RATING</p></td>
<td class="enum_member_description">
<p>the rating column</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="RB-ENTRY-VIEW-COL-PLAY-COUNT:CAPS"></a>RB_ENTRY_VIEW_COL_PLAY_COUNT</p></td>
<td class="enum_member_description">
<p>the play count column</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="RB-ENTRY-VIEW-COL-YEAR:CAPS"></a>RB_ENTRY_VIEW_COL_YEAR</p></td>
<td class="enum_member_description">
<p>the year (release date) column</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="RB-ENTRY-VIEW-COL-LAST-PLAYED:CAPS"></a>RB_ENTRY_VIEW_COL_LAST_PLAYED</p></td>
<td class="enum_member_description">
<p>the last played time column</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="RB-ENTRY-VIEW-COL-FIRST-SEEN:CAPS"></a>RB_ENTRY_VIEW_COL_FIRST_SEEN</p></td>
<td class="enum_member_description">
<p>the first seen (imported) column</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="RB-ENTRY-VIEW-COL-LAST-SEEN:CAPS"></a>RB_ENTRY_VIEW_COL_LAST_SEEN</p></td>
<td class="enum_member_description">
<p>the last seen column</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="RB-ENTRY-VIEW-COL-LOCATION:CAPS"></a>RB_ENTRY_VIEW_COL_LOCATION</p></td>
<td class="enum_member_description">
<p>the location column</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="RB-ENTRY-VIEW-COL-BPM:CAPS"></a>RB_ENTRY_VIEW_COL_BPM</p></td>
<td class="enum_member_description">
<p>the BPM column</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="RB-ENTRY-VIEW-COL-ERROR:CAPS"></a>RB_ENTRY_VIEW_COL_ERROR</p></td>
<td class="enum_member_description">
<p>the error column</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="RB-ENTRY-VIEW-COL-COMPOSER:CAPS"></a>RB_ENTRY_VIEW_COL_COMPOSER</p></td>
<td class="enum_member_description">
<p>the composer column</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
</div>
<hr>
<div class="refsect2">
<a name="RBEntryViewState"></a><h3>enum RBEntryViewState</h3>
<p>
</p>
<div class="refsect3">
<a name="id-1.8.5.11.3.4"></a><h4>Members</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="300px" class="enum_members_name">
<col class="enum_members_description">
<col width="200px" class="enum_members_annotations">
</colgroup>
<tbody>
<tr>
<td class="enum_member_name"><p><a name="RB-ENTRY-VIEW-NOT-PLAYING:CAPS"></a>RB_ENTRY_VIEW_NOT_PLAYING</p></td>
<td class="enum_member_description"> </td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="RB-ENTRY-VIEW-PLAYING:CAPS"></a>RB_ENTRY_VIEW_PLAYING</p></td>
<td class="enum_member_description"> </td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="RB-ENTRY-VIEW-PAUSED:CAPS"></a>RB_ENTRY_VIEW_PAUSED</p></td>
<td class="enum_member_description"> </td>
<td class="enum_member_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
</div>
<hr>
<div class="refsect2">
<a name="RBEntryView-struct"></a><h3>struct RBEntryView</h3>
<pre class="programlisting">struct RBEntryView;</pre>
<p>
</p>
</div>
<hr>
<div class="refsect2">
<a name="RBEntryViewClass"></a><h3>struct RBEntryViewClass</h3>
<pre class="programlisting">struct RBEntryViewClass {
	GtkScrolledWindowClass parent;

	void (*entry_added)		(RBEntryView *view, RhythmDBEntry *entry);
	void (*entry_deleted)		(RBEntryView *view, RhythmDBEntry *entry);
	void (*entries_replaced) (RBEntryView *view);

	void (*entry_activated)         (RBEntryView *view, RhythmDBEntry *entry);

	void (*have_selection_changed) (RBEntryView *view, gboolean have_selection);
	void (*selection_changed)       (RBEntryView *view);

	void (*show_popup)             (RBEntryView *view, gboolean over_entry);
};
</pre>
<p>
</p>
</div>
</div>
<div class="refsect1">
<a name="RBEntryView.property-details"></a><h2>Property Details</h2>
<div class="refsect2">
<a name="RBEntryView--db"></a><h3>The <code class="literal">“db”</code> property</h3>
<pre class="programlisting">  “db”                       <a class="link" href="RhythmDB.html" title="RhythmDB"><span class="type">RhythmDB</span></a> *</pre>
<p><a class="link" href="RhythmDB.html" title="RhythmDB"><span class="type">RhythmDB</span></a> instance</p>
<p>Flags: Read / Write / Construct Only</p>
</div>
<hr>
<div class="refsect2">
<a name="RBEntryView--is-drag-dest"></a><h3>The <code class="literal">“is-drag-dest”</code> property</h3>
<pre class="programlisting">  “is-drag-dest”             <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
<p>If TRUE, the view acts as a destination for drag and drop operations.</p>
<p>Flags: Read / Write / Construct Only</p>
<p>Default value: FALSE</p>
</div>
<hr>
<div class="refsect2">
<a name="RBEntryView--is-drag-source"></a><h3>The <code class="literal">“is-drag-source”</code> property</h3>
<pre class="programlisting">  “is-drag-source”           <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
<p>If TRUE, the view acts as a data source for drag and drop operations.</p>
<p>Flags: Read / Write / Construct Only</p>
<p>Default value: FALSE</p>
</div>
<hr>
<div class="refsect2">
<a name="RBEntryView--model"></a><h3>The <code class="literal">“model”</code> property</h3>
<pre class="programlisting">  “model”                    <a class="link" href="RhythmDBQueryModel.html" title="RhythmDBQueryModel"><span class="type">RhythmDBQueryModel</span></a> *</pre>
<p>The <a class="link" href="RhythmDBQueryModel.html" title="RhythmDBQueryModel"><span class="type">RhythmDBQueryModel</span></a> backing the view</p>
<p>Flags: Read / Write</p>
</div>
<hr>
<div class="refsect2">
<a name="RBEntryView--playing-state"></a><h3>The <code class="literal">“playing-state”</code> property</h3>
<pre class="programlisting">  “playing-state”            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a></pre>
<p>Determines the icon to show in the 'playing' column next to the current
playing entry.</p>
<p>Flags: Read / Write</p>
<p>Allowed values: [0,2]</p>
<p>Default value: 0</p>
</div>
<hr>
<div class="refsect2">
<a name="RBEntryView--shell-player"></a><h3>The <code class="literal">“shell-player”</code> property</h3>
<pre class="programlisting">  “shell-player”             <a class="link" href="RBShellPlayer.html" title="RBShellPlayer"><span class="type">RBShellPlayer</span></a> *</pre>
<p><a class="link" href="RBShellPlayer.html" title="RBShellPlayer"><span class="type">RBShellPlayer</span></a> instance</p>
<p>Flags: Read / Write / Construct Only</p>
</div>
<hr>
<div class="refsect2">
<a name="RBEntryView--sort-order"></a><h3>The <code class="literal">“sort-order”</code> property</h3>
<pre class="programlisting">  “sort-order”               <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</pre>
<p>The sort order for the track listing.</p>
<p>Flags: Read / Write</p>
<p>Default value: NULL</p>
</div>
<hr>
<div class="refsect2">
<a name="RBEntryView--visible-columns"></a><h3>The <code class="literal">“visible-columns”</code> property</h3>
<pre class="programlisting">  “visible-columns”          <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Boxed-Types.html#GStrv"><span class="type">GStrv</span></a></pre>
<p>An array containing the names of the visible columns.</p>
<p>Flags: Read / Write</p>
</div>
</div>
<div class="refsect1">
<a name="RBEntryView.signal-details"></a><h2>Signal Details</h2>
<div class="refsect2">
<a name="RBEntryView-entries-replaced"></a><h3>The <code class="literal">“entries-replaced”</code> signal</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
user_function (<a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a> *view,
               <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a>     user_data)</pre>
<p>Emitted when the model backing the entry view is replaced.</p>
<div class="refsect3">
<a name="id-1.8.5.13.2.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>view</p></td>
<td class="parameter_description"><p>the <a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>user_data</p></td>
<td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p>Flags: Run Last</p>
</div>
<hr>
<div class="refsect2">
<a name="RBEntryView-entry-activated"></a><h3>The <code class="literal">“entry-activated”</code> signal</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
user_function (<a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a>   *view,
               <span class="type">RhythmDBEntry</span> *entry,
               <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a>       user_data)</pre>
<p>Emitted when an entry in the view is activated (by double clicking
or by various key presses)</p>
<div class="refsect3">
<a name="id-1.8.5.13.3.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>view</p></td>
<td class="parameter_description"><p>the <a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>entry</p></td>
<td class="parameter_description"><p>the <span class="type">RhythmDBEntry</span> that was activated</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>user_data</p></td>
<td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p>Flags: Run Last</p>
</div>
<hr>
<div class="refsect2">
<a name="RBEntryView-entry-added"></a><h3>The <code class="literal">“entry-added”</code> signal</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
user_function (<a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a>   *view,
               <span class="type">RhythmDBEntry</span> *entry,
               <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a>       user_data)</pre>
<p>Emitted when an entry is added to the view</p>
<div class="refsect3">
<a name="id-1.8.5.13.4.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>view</p></td>
<td class="parameter_description"><p>the <a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>entry</p></td>
<td class="parameter_description"><p>the <span class="type">RhythmDBEntry</span> that was added</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>user_data</p></td>
<td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p>Flags: Run Last</p>
</div>
<hr>
<div class="refsect2">
<a name="RBEntryView-entry-deleted"></a><h3>The <code class="literal">“entry-deleted”</code> signal</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
user_function (<a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a>   *view,
               <span class="type">RhythmDBEntry</span> *entry,
               <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a>       user_data)</pre>
<p>Emitted when an entry has been removed from the view</p>
<div class="refsect3">
<a name="id-1.8.5.13.5.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>view</p></td>
<td class="parameter_description"><p>the <a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>entry</p></td>
<td class="parameter_description"><p>the <span class="type">RhythmDBEntry</span> that was removed</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>user_data</p></td>
<td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p>Flags: Run Last</p>
</div>
<hr>
<div class="refsect2">
<a name="RBEntryView-have-selection-changed"></a><h3>The <code class="literal">“have-selection-changed”</code> signal</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
user_function (<a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a> *view,
               <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a>     have_selection,
               <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a>     user_data)</pre>
<p>Emitted when the user first selects a row, or when no rows are selected
any more.</p>
<div class="refsect3">
<a name="id-1.8.5.13.6.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>view</p></td>
<td class="parameter_description"><p>the <a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>have_selection</p></td>
<td class="parameter_description"><p>TRUE if one or more rows are selected</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>user_data</p></td>
<td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p>Flags: Run Last</p>
</div>
<hr>
<div class="refsect2">
<a name="RBEntryView-selection-changed"></a><h3>The <code class="literal">“selection-changed”</code> signal</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
user_function (<a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a> *view,
               <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a>     user_data)</pre>
<p>Emitted when the set of selected entries changes</p>
<div class="refsect3">
<a name="id-1.8.5.13.7.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>view</p></td>
<td class="parameter_description"><p>the <a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>user_data</p></td>
<td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p>Flags: Run Last</p>
</div>
<hr>
<div class="refsect2">
<a name="RBEntryView-show-popup"></a><h3>The <code class="literal">“show-popup”</code> signal</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
user_function (<a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a> *view,
               <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a>     over_entry,
               <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a>     user_data)</pre>
<p>Emitted when the user performs an action that should result in a
popup menu appearing.  If the action was a mouse button click,

over_entry is FALSE if the mouse pointer was in the blank space after
the last row in the view.  If the action was a key press, over_entry
is FALSE if no rows in the view are selected.</p>
<div class="refsect3">
<a name="id-1.8.5.13.8.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>view</p></td>
<td class="parameter_description"><p>the <a class="link" href="RBEntryView.html" title="RBEntryView"><span class="type">RBEntryView</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>over_entry</p></td>
<td class="parameter_description"><p>if TRUE, the popup request was made while pointing
at an entry in the view</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>user_data</p></td>
<td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p>Flags: Run Last</p>
</div>
</div>
</div>
<div class="footer">
<hr>
          Generated by GTK-Doc V1.21</div>
</body>
</html>