File: classGnome_1_1Gda_1_1DataProxy.html

package info (click to toggle)
libgdamm5.0 4.99.11-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, trixie
  • size: 14,456 kB
  • sloc: xml: 14,627; sh: 11,255; cpp: 963; perl: 236; makefile: 90
file content (1891 lines) | stat: -rw-r--r-- 202,812 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.9.1"/>
<title>libgdamm: Gnome::Gda::DataProxy Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
 <tbody>
 <tr style="height: 56px;">
  <td style="padding-left: 0.5em;">
   <div id="projectname">libgdamm
   &#160;<span id="projectnumber">4.99.11</span>
   </div>
  </td>
 </tr>
 </tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.9.1 -->
  <div id="navrow1" class="tabs">
    <ul class="tablist">
      <li><a href="index.html"><span>Main&#160;Page</span></a></li>
      <li><a href="pages.html"><span>Related&#160;Pages</span></a></li>
      <li><a href="modules.html"><span>Modules</span></a></li>
      <li><a href="namespaces.html"><span>Namespaces</span></a></li>
      <li class="current"><a href="annotated.html"><span>Classes</span></a></li>
    </ul>
  </div>
  <div id="navrow2" class="tabs2">
    <ul class="tablist">
      <li><a href="annotated.html"><span>Class&#160;List</span></a></li>
      <li><a href="classes.html"><span>Class&#160;Index</span></a></li>
      <li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
      <li><a href="functions.html"><span>Class&#160;Members</span></a></li>
    </ul>
  </div>
<div id="nav-path" class="navpath">
  <ul>
<li class="navelem"><a class="el" href="namespaceGnome.html">Gnome</a></li><li class="navelem"><a class="el" href="namespaceGnome_1_1Gda.html">Gda</a></li><li class="navelem"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html">DataProxy</a></li>  </ul>
</div>
</div><!-- top -->
<div class="header">
  <div class="summary">
<a href="#pub-methods">Public Member Functions</a> &#124;
<a href="#pub-static-methods">Static Public Member Functions</a> &#124;
<a href="#pro-methods">Protected Member Functions</a> &#124;
<a href="#related">Related Functions</a> &#124;
<a href="classGnome_1_1Gda_1_1DataProxy-members.html">List of all members</a>  </div>
  <div class="headertitle">
<div class="title">Gnome::Gda::DataProxy Class Reference<div class="ingroups"><a class="el" href="group__DataModels.html">Data Models</a></div></div>  </div>
</div><!--header-->
<div class="contents">

<p>Proxy to hold modifications for any <a class="el" href="classGnome_1_1Gda_1_1DataModel.html" title="Abstract DataModel (Base class for all DataModels). ">DataModel</a>, providing the <a class="el" href="classGnome_1_1Gda_1_1DataModel.html" title="Abstract DataModel (Base class for all DataModels). ">DataModel</a> interface itself.  
 <a href="classGnome_1_1Gda_1_1DataProxy.html#details">More...</a></p>
<div class="dynheader">
Inheritance diagram for Gnome::Gda::DataProxy:</div>
<div class="dyncontent">
<div class="center"><img src="classGnome_1_1Gda_1_1DataProxy__inherit__graph.png" border="0" usemap="#Gnome_1_1Gda_1_1DataProxy_inherit__map" alt="Inheritance graph"/></div>
<map name="Gnome_1_1Gda_1_1DataProxy_inherit__map" id="Gnome_1_1Gda_1_1DataProxy_inherit__map">
<area shape="rect" id="node2" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html" title="Glib::Object" alt="" coords="5,229,95,256"/><area shape="rect" id="node3" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html" title="Glib::ObjectBase" alt="" coords="49,80,168,107"/><area shape="rect" id="node6" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html" title="Glib::Interface" alt="" coords="133,155,236,181"/><area shape="rect" id="node4" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html" title="sigc::trackable" alt="" coords="57,5,161,32"/><area shape="rect" id="node5" href="classGnome_1_1Gda_1_1DataModel.html" title="Abstract DataModel (Base class for all DataModels). " alt="" coords="119,229,282,256"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<div class="dynheader">
Collaboration diagram for Gnome::Gda::DataProxy:</div>
<div class="dyncontent">
<div class="center"><img src="classGnome_1_1Gda_1_1DataProxy__coll__graph.png" border="0" usemap="#Gnome_1_1Gda_1_1DataProxy_coll__map" alt="Collaboration graph"/></div>
<map name="Gnome_1_1Gda_1_1DataProxy_coll__map" id="Gnome_1_1Gda_1_1DataProxy_coll__map">
<area shape="rect" id="node2" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html" title="Glib::Object" alt="" coords="5,229,95,256"/><area shape="rect" id="node3" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html" title="Glib::ObjectBase" alt="" coords="49,80,168,107"/><area shape="rect" id="node6" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html" title="Glib::Interface" alt="" coords="133,155,236,181"/><area shape="rect" id="node4" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html" title="sigc::trackable" alt="" coords="57,5,161,32"/><area shape="rect" id="node5" href="classGnome_1_1Gda_1_1DataModel.html" title="Abstract DataModel (Base class for all DataModels). " alt="" coords="119,229,282,256"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr class="memitem:a88869ea56de5982a219dd1036460a2f4"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#a88869ea56de5982a219dd1036460a2f4">DataProxy</a> (<a class="el" href="classGnome_1_1Gda_1_1DataProxy.html">DataProxy</a>&amp;&amp; src) noexcept</td></tr>
<tr class="separator:a88869ea56de5982a219dd1036460a2f4"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a72009c96a749c0ef27d1488a25e3816b"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html">DataProxy</a>&amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#a72009c96a749c0ef27d1488a25e3816b">operator=</a> (<a class="el" href="classGnome_1_1Gda_1_1DataProxy.html">DataProxy</a>&amp;&amp; src) noexcept</td></tr>
<tr class="separator:a72009c96a749c0ef27d1488a25e3816b"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a144479c7506c3acafad2c3d0d62a21ed"><td class="memItemLeft" align="right" valign="top">virtual&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#a144479c7506c3acafad2c3d0d62a21ed">~DataProxy</a> () noexcept</td></tr>
<tr class="separator:a144479c7506c3acafad2c3d0d62a21ed"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a20ff1348fc0013fb9c33c82d7d494401"><td class="memItemLeft" align="right" valign="top">GdaDataProxy*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#a20ff1348fc0013fb9c33c82d7d494401">gobj</a> ()</td></tr>
<tr class="memdesc:a20ff1348fc0013fb9c33c82d7d494401"><td class="mdescLeft">&#160;</td><td class="mdescRight">Provides access to the underlying C GObject.  <a href="#a20ff1348fc0013fb9c33c82d7d494401">More...</a><br /></td></tr>
<tr class="separator:a20ff1348fc0013fb9c33c82d7d494401"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a596dbec3180a1f066831130ae85a06dc"><td class="memItemLeft" align="right" valign="top">const GdaDataProxy*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#a596dbec3180a1f066831130ae85a06dc">gobj</a> () const </td></tr>
<tr class="memdesc:a596dbec3180a1f066831130ae85a06dc"><td class="mdescLeft">&#160;</td><td class="mdescRight">Provides access to the underlying C GObject.  <a href="#a596dbec3180a1f066831130ae85a06dc">More...</a><br /></td></tr>
<tr class="separator:a596dbec3180a1f066831130ae85a06dc"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a13a9f1ff550fdc9d56d56326b3c4d913"><td class="memItemLeft" align="right" valign="top">GdaDataProxy*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#a13a9f1ff550fdc9d56d56326b3c4d913">gobj_copy</a> ()</td></tr>
<tr class="memdesc:a13a9f1ff550fdc9d56d56326b3c4d913"><td class="mdescLeft">&#160;</td><td class="mdescRight">Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs.  <a href="#a13a9f1ff550fdc9d56d56326b3c4d913">More...</a><br /></td></tr>
<tr class="separator:a13a9f1ff550fdc9d56d56326b3c4d913"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5d074bd6e3c57274050f74c9b96005a3"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGnome_1_1Gda_1_1DataModel.html">DataModel</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#a5d074bd6e3c57274050f74c9b96005a3">get_proxied_model</a> ()</td></tr>
<tr class="memdesc:a5d074bd6e3c57274050f74c9b96005a3"><td class="mdescLeft">&#160;</td><td class="mdescRight">Fetch the <a class="el" href="classGnome_1_1Gda_1_1DataModel.html" title="Abstract DataModel (Base class for all DataModels). ">Gda::DataModel</a> which <em>proxy</em> does proxy.  <a href="#a5d074bd6e3c57274050f74c9b96005a3">More...</a><br /></td></tr>
<tr class="separator:a5d074bd6e3c57274050f74c9b96005a3"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa014abf27a434c4389ce43caf1d166ad"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; const <a class="el" href="classGnome_1_1Gda_1_1DataModel.html">DataModel</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#aa014abf27a434c4389ce43caf1d166ad">get_proxied_model</a> () const </td></tr>
<tr class="memdesc:aa014abf27a434c4389ce43caf1d166ad"><td class="mdescLeft">&#160;</td><td class="mdescRight">Fetch the <a class="el" href="classGnome_1_1Gda_1_1DataModel.html" title="Abstract DataModel (Base class for all DataModels). ">Gda::DataModel</a> which <em>proxy</em> does proxy.  <a href="#aa014abf27a434c4389ce43caf1d166ad">More...</a><br /></td></tr>
<tr class="separator:aa014abf27a434c4389ce43caf1d166ad"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab08280878e7a001ddca503f11cd14c32"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#ab08280878e7a001ddca503f11cd14c32">get_proxied_model_n_cols</a> () const </td></tr>
<tr class="memdesc:ab08280878e7a001ddca503f11cd14c32"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the number of columns in the proxied data model.  <a href="#ab08280878e7a001ddca503f11cd14c32">More...</a><br /></td></tr>
<tr class="separator:ab08280878e7a001ddca503f11cd14c32"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa87b3e19bc5995a249719a09068d9d8d"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#aa87b3e19bc5995a249719a09068d9d8d">get_proxied_model_n_rows</a> () const </td></tr>
<tr class="memdesc:aa87b3e19bc5995a249719a09068d9d8d"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the number of rows in the proxied data model.  <a href="#aa87b3e19bc5995a249719a09068d9d8d">More...</a><br /></td></tr>
<tr class="separator:aa87b3e19bc5995a249719a09068d9d8d"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a968cd04871fb3c21948f3798a5848b8e"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#a968cd04871fb3c21948f3798a5848b8e">is_read_only</a> () const </td></tr>
<tr class="separator:a968cd04871fb3c21948f3798a5848b8e"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8bed3e92e6daa3cabcafb66beacae73b"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGnome_1_1Gda_1_1DataModel.html#a0ed66299310af38e618f740a79fc3c52">ValueVector</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#a8bed3e92e6daa3cabcafb66beacae73b">get_values</a> (int proxy_row, const <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a00965.html">std::vector</a>&lt; int &gt;&amp; cols_index) const </td></tr>
<tr class="memdesc:a8bed3e92e6daa3cabcafb66beacae73b"><td class="mdescLeft">&#160;</td><td class="mdescRight">Retrieve a whole list of values from the <em>proxy</em> data model.  <a href="#a8bed3e92e6daa3cabcafb66beacae73b">More...</a><br /></td></tr>
<tr class="separator:a8bed3e92e6daa3cabcafb66beacae73b"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3b597666c13ba06b2fc0c66a5e709d36"><td class="memItemLeft" align="right" valign="top"><a class="el" href="namespaceGnome_1_1Gda.html#a9f6ae7fb1f39a3e8f221f95151e89e28">ValueAttribute</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#a3b597666c13ba06b2fc0c66a5e709d36">get_value_attributes</a> (int proxy_row, int col) const </td></tr>
<tr class="memdesc:a3b597666c13ba06b2fc0c66a5e709d36"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the attributes of the value stored at (proxy_row, col) in <em>proxy</em>, which is an ORed value of <a class="el" href="namespaceGnome_1_1Gda.html#a9f6ae7fb1f39a3e8f221f95151e89e28">Gda::ValueAttribute</a> flags.  <a href="#a3b597666c13ba06b2fc0c66a5e709d36">More...</a><br /></td></tr>
<tr class="separator:a3b597666c13ba06b2fc0c66a5e709d36"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af6cb66b0b79c7401417f1ec8f1379285"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#af6cb66b0b79c7401417f1ec8f1379285">alter_value_attributes</a> (int proxy_row, int col, <a class="el" href="namespaceGnome_1_1Gda.html#a9f6ae7fb1f39a3e8f221f95151e89e28">ValueAttribute</a> alter_flags)</td></tr>
<tr class="memdesc:af6cb66b0b79c7401417f1ec8f1379285"><td class="mdescLeft">&#160;</td><td class="mdescRight">Alters the attributes of the value stored at (proxy_row, col) in <em>proxy</em>.  <a href="#af6cb66b0b79c7401417f1ec8f1379285">More...</a><br /></td></tr>
<tr class="separator:af6cb66b0b79c7401417f1ec8f1379285"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aff1c2ef56b16ec4fc9709ebb2d3c9c5f"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#aff1c2ef56b16ec4fc9709ebb2d3c9c5f">get_proxied_model_row</a> (int proxy_row) const </td></tr>
<tr class="memdesc:aff1c2ef56b16ec4fc9709ebb2d3c9c5f"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the <em>proxy's</em> proxied model row corresponding to <em>proxy_row</em>.  <a href="#aff1c2ef56b16ec4fc9709ebb2d3c9c5f">More...</a><br /></td></tr>
<tr class="separator:aff1c2ef56b16ec4fc9709ebb2d3c9c5f"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0a02bfb027d48ff4578a6edf0f4fea22"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#a0a02bfb027d48ff4578a6edf0f4fea22">erase</a> (int proxy_row)</td></tr>
<tr class="memdesc:a0a02bfb027d48ff4578a6edf0f4fea22"><td class="mdescLeft">&#160;</td><td class="mdescRight">Marks the row <em>proxy_row</em> to be deleted.  <a href="#a0a02bfb027d48ff4578a6edf0f4fea22">More...</a><br /></td></tr>
<tr class="separator:a0a02bfb027d48ff4578a6edf0f4fea22"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa924b89d8c77a82af926eed675cf0919"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#aa924b89d8c77a82af926eed675cf0919">unerase</a> (int proxy_row)</td></tr>
<tr class="memdesc:aa924b89d8c77a82af926eed675cf0919"><td class="mdescLeft">&#160;</td><td class="mdescRight">Remove the "to be deleted" mark at the row <em>proxy_row</em>, if it existed.  <a href="#aa924b89d8c77a82af926eed675cf0919">More...</a><br /></td></tr>
<tr class="separator:aa924b89d8c77a82af926eed675cf0919"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2bdadcc3f5f66d2edb191fe211403bbb"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#a2bdadcc3f5f66d2edb191fe211403bbb">row_is_deleted</a> (int proxy_row) const </td></tr>
<tr class="memdesc:a2bdadcc3f5f66d2edb191fe211403bbb"><td class="mdescLeft">&#160;</td><td class="mdescRight">Tells if the row number <em>proxy_row</em> is marked to be deleted.  <a href="#a2bdadcc3f5f66d2edb191fe211403bbb">More...</a><br /></td></tr>
<tr class="separator:a2bdadcc3f5f66d2edb191fe211403bbb"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a779cd3b00bfc8b0126a62dbfac1ec857"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#a779cd3b00bfc8b0126a62dbfac1ec857">row_is_inserted</a> (int proxy_row) const </td></tr>
<tr class="memdesc:a779cd3b00bfc8b0126a62dbfac1ec857"><td class="mdescLeft">&#160;</td><td class="mdescRight">Tells if the row number <em>proxy_row</em> is a row which has been inserted in <em>proxy</em> (and is thus not in the proxied data model).  <a href="#a779cd3b00bfc8b0126a62dbfac1ec857">More...</a><br /></td></tr>
<tr class="separator:a779cd3b00bfc8b0126a62dbfac1ec857"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:abe2edadb419b26915650e77e07489a0f"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#abe2edadb419b26915650e77e07489a0f">cancel_row_changes</a> (int proxy_row, int col)</td></tr>
<tr class="memdesc:abe2edadb419b26915650e77e07489a0f"><td class="mdescLeft">&#160;</td><td class="mdescRight">Resets data at the corresponding row and column.  <a href="#abe2edadb419b26915650e77e07489a0f">More...</a><br /></td></tr>
<tr class="separator:abe2edadb419b26915650e77e07489a0f"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab8583dac60b58bf33d063c92f6d99474"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#ab8583dac60b58bf33d063c92f6d99474">apply_row_changes</a> (int proxy_row)</td></tr>
<tr class="memdesc:ab8583dac60b58bf33d063c92f6d99474"><td class="mdescLeft">&#160;</td><td class="mdescRight">Commits the modified data in the proxy back into the <a class="el" href="classGnome_1_1Gda_1_1DataModel.html" title="Abstract DataModel (Base class for all DataModels). ">Gda::DataModel</a>.  <a href="#ab8583dac60b58bf33d063c92f6d99474">More...</a><br /></td></tr>
<tr class="separator:ab8583dac60b58bf33d063c92f6d99474"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6a5ec8f0ff423656d3eb90a79748382d"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#a6a5ec8f0ff423656d3eb90a79748382d">has_changed</a> () const </td></tr>
<tr class="memdesc:a6a5ec8f0ff423656d3eb90a79748382d"><td class="mdescLeft">&#160;</td><td class="mdescRight">Tells if <em>proxy</em> contains any modifications not applied to the proxied data model.  <a href="#a6a5ec8f0ff423656d3eb90a79748382d">More...</a><br /></td></tr>
<tr class="separator:a6a5ec8f0ff423656d3eb90a79748382d"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8d36c248041ba85d221bdd9d4a2e7d08"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#a8d36c248041ba85d221bdd9d4a2e7d08">row_has_changed</a> (int proxy_row) const </td></tr>
<tr class="memdesc:a8d36c248041ba85d221bdd9d4a2e7d08"><td class="mdescLeft">&#160;</td><td class="mdescRight">Tells if the row number <em>proxy_row</em> has changed.  <a href="#a8d36c248041ba85d221bdd9d4a2e7d08">More...</a><br /></td></tr>
<tr class="separator:a8d36c248041ba85d221bdd9d4a2e7d08"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6355be309052503450a8c0cc710860b7"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#a6355be309052503450a8c0cc710860b7">get_n_new_rows</a> () const </td></tr>
<tr class="memdesc:a6355be309052503450a8c0cc710860b7"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the number of rows which have been added to <em>proxy</em> and which are not part of the proxied data model.  <a href="#a6355be309052503450a8c0cc710860b7">More...</a><br /></td></tr>
<tr class="separator:a6355be309052503450a8c0cc710860b7"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a77c6ccd92246e4efb6be1b246460bc36"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#a77c6ccd92246e4efb6be1b246460bc36">get_n_modified_rows</a> () const </td></tr>
<tr class="memdesc:a77c6ccd92246e4efb6be1b246460bc36"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the number of rows which have been modified in the proxy (the sum of rows existing in the proxied data model which have been modified, and new rows).  <a href="#a77c6ccd92246e4efb6be1b246460bc36">More...</a><br /></td></tr>
<tr class="separator:a77c6ccd92246e4efb6be1b246460bc36"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a519edc04a930dda39ece993319beeb05"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#a519edc04a930dda39ece993319beeb05">set_sample_size</a> (int sample_size)</td></tr>
<tr class="memdesc:a519edc04a930dda39ece993319beeb05"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the size of each chunk of data to display: the maximum number of rows which can be "displayed" at a time (the maximum number of rows which <em>proxy</em> pretends to have).  <a href="#a519edc04a930dda39ece993319beeb05">More...</a><br /></td></tr>
<tr class="separator:a519edc04a930dda39ece993319beeb05"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a11cb9f691247736f5ed69d108cd27492"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#a11cb9f691247736f5ed69d108cd27492">get_sample_size</a> () const </td></tr>
<tr class="memdesc:a11cb9f691247736f5ed69d108cd27492"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the size of each chunk of data displayed at a time.  <a href="#a11cb9f691247736f5ed69d108cd27492">More...</a><br /></td></tr>
<tr class="separator:a11cb9f691247736f5ed69d108cd27492"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:acaa0f674714646ca31d6ec57aab078ae"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#acaa0f674714646ca31d6ec57aab078ae">set_sample_start</a> (int sample_start)</td></tr>
<tr class="memdesc:acaa0f674714646ca31d6ec57aab078ae"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the number of the first row to be available in <em>proxy</em> (in reference to the proxied data model)  <a href="#acaa0f674714646ca31d6ec57aab078ae">More...</a><br /></td></tr>
<tr class="separator:acaa0f674714646ca31d6ec57aab078ae"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9d9e4f0c62cd82886a5a33264816dd2e"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#a9d9e4f0c62cd82886a5a33264816dd2e">get_sample_start</a> () const </td></tr>
<tr class="memdesc:a9d9e4f0c62cd82886a5a33264816dd2e"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the number of the first row to be available in <em>proxy</em> (in reference to the proxied data model)  <a href="#a9d9e4f0c62cd82886a5a33264816dd2e">More...</a><br /></td></tr>
<tr class="separator:a9d9e4f0c62cd82886a5a33264816dd2e"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af9094f0b09ab12567c9aebd3e80369d4"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#af9094f0b09ab12567c9aebd3e80369d4">get_sample_end</a> () const </td></tr>
<tr class="memdesc:af9094f0b09ab12567c9aebd3e80369d4"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the number of the last row to be available in <em>proxy</em> (in reference to the proxied data model)  <a href="#af9094f0b09ab12567c9aebd3e80369d4">More...</a><br /></td></tr>
<tr class="separator:af9094f0b09ab12567c9aebd3e80369d4"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:acd2cf6caca93fe6e871a9f2a5940aabd"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#acd2cf6caca93fe6e871a9f2a5940aabd">apply_all_changes</a> ()</td></tr>
<tr class="memdesc:acd2cf6caca93fe6e871a9f2a5940aabd"><td class="mdescLeft">&#160;</td><td class="mdescRight">Apply all the changes stored in the proxy to the proxied data model.  <a href="#acd2cf6caca93fe6e871a9f2a5940aabd">More...</a><br /></td></tr>
<tr class="separator:acd2cf6caca93fe6e871a9f2a5940aabd"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1878e859aa43f71018aa4eb9c7cd9de2"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#a1878e859aa43f71018aa4eb9c7cd9de2">cancel_all_changes</a> ()</td></tr>
<tr class="memdesc:a1878e859aa43f71018aa4eb9c7cd9de2"><td class="mdescLeft">&#160;</td><td class="mdescRight">Cancel all the changes stored in the proxy (the <em>proxy</em> will be reset to its state as it was just after creation).  <a href="#a1878e859aa43f71018aa4eb9c7cd9de2">More...</a><br /></td></tr>
<tr class="separator:a1878e859aa43f71018aa4eb9c7cd9de2"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af4b50dc08b41895f5b01f2818e458396"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#af4b50dc08b41895f5b01f2818e458396">get_filtered_n_rows</a> ()</td></tr>
<tr class="memdesc:af4b50dc08b41895f5b01f2818e458396"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the total number of filtered rows in <em>proxy</em> if a filter has been applied.  <a href="#af4b50dc08b41895f5b01f2818e458396">More...</a><br /></td></tr>
<tr class="separator:af4b50dc08b41895f5b01f2818e458396"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae5ea4f7fd12b2ce693f111bcc1950801"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#ae5ea4f7fd12b2ce693f111bcc1950801">get_filter_expr</a> ()</td></tr>
<tr class="memdesc:ae5ea4f7fd12b2ce693f111bcc1950801"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the current filter expression used by <em>proxy</em>.  <a href="#ae5ea4f7fd12b2ce693f111bcc1950801">More...</a><br /></td></tr>
<tr class="separator:ae5ea4f7fd12b2ce693f111bcc1950801"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aaae882af4ed8f3f658094d19379bd379"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#aaae882af4ed8f3f658094d19379bd379">get_filter_expr</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; filter_expr)</td></tr>
<tr class="memdesc:aaae882af4ed8f3f658094d19379bd379"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets a filter among the rows presented by <em>proxy</em>.  <a href="#aaae882af4ed8f3f658094d19379bd379">More...</a><br /></td></tr>
<tr class="separator:aaae882af4ed8f3f658094d19379bd379"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac3b6ccfc2b86577326036510ed7286bc"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#ac3b6ccfc2b86577326036510ed7286bc">set_ordering_column</a> (int col)</td></tr>
<tr class="memdesc:ac3b6ccfc2b86577326036510ed7286bc"><td class="mdescLeft">&#160;</td><td class="mdescRight">Orders by the <em>col</em> column.  <a href="#ac3b6ccfc2b86577326036510ed7286bc">More...</a><br /></td></tr>
<tr class="separator:ac3b6ccfc2b86577326036510ed7286bc"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac4490c795536742bf000b2463c244d13"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>&lt; <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGnome_1_1Gda_1_1DataModel.html">DataModel</a> &gt; &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#ac4490c795536742bf000b2463c244d13">property_model</a> ()</td></tr>
<tr class="memdesc:ac4490c795536742bf000b2463c244d13"><td class="mdescLeft">&#160;</td><td class="mdescRight">Proxied data model.  <a href="#ac4490c795536742bf000b2463c244d13">More...</a><br /></td></tr>
<tr class="separator:ac4490c795536742bf000b2463c244d13"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a976598ba4890cfa99d412d6ec7c97e44"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>&lt; <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGnome_1_1Gda_1_1DataModel.html">DataModel</a> &gt; &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#a976598ba4890cfa99d412d6ec7c97e44">property_model</a> () const </td></tr>
<tr class="memdesc:a976598ba4890cfa99d412d6ec7c97e44"><td class="mdescLeft">&#160;</td><td class="mdescRight">Proxied data model.  <a href="#a976598ba4890cfa99d412d6ec7c97e44">More...</a><br /></td></tr>
<tr class="separator:a976598ba4890cfa99d412d6ec7c97e44"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a794414f493075acc7890cda621b1c44a"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#a794414f493075acc7890cda621b1c44a">property_prepend_null_entry</a> ()</td></tr>
<tr class="memdesc:a794414f493075acc7890cda621b1c44a"><td class="mdescLeft">&#160;</td><td class="mdescRight">Tells if a row composed of NULL values is inserted as the proxy's first row.  <a href="#a794414f493075acc7890cda621b1c44a">More...</a><br /></td></tr>
<tr class="separator:a794414f493075acc7890cda621b1c44a"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac554ad7f147bd7c95b7e0a6eec00542e"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#ac554ad7f147bd7c95b7e0a6eec00542e">property_prepend_null_entry</a> () const </td></tr>
<tr class="memdesc:ac554ad7f147bd7c95b7e0a6eec00542e"><td class="mdescLeft">&#160;</td><td class="mdescRight">Tells if a row composed of NULL values is inserted as the proxy's first row.  <a href="#ac554ad7f147bd7c95b7e0a6eec00542e">More...</a><br /></td></tr>
<tr class="separator:ac554ad7f147bd7c95b7e0a6eec00542e"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a03c84472e422e8854245aa11a830e7e4"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#a03c84472e422e8854245aa11a830e7e4">property_defer_sync</a> ()</td></tr>
<tr class="memdesc:a03c84472e422e8854245aa11a830e7e4"><td class="mdescLeft">&#160;</td><td class="mdescRight">Tells if changes to the sample of rows displayed is done in background in several steps or if it's done in one step.  <a href="#a03c84472e422e8854245aa11a830e7e4">More...</a><br /></td></tr>
<tr class="separator:a03c84472e422e8854245aa11a830e7e4"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aafd9861e707d9d19e7128143c95f9437"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#aafd9861e707d9d19e7128143c95f9437">property_defer_sync</a> () const </td></tr>
<tr class="memdesc:aafd9861e707d9d19e7128143c95f9437"><td class="mdescLeft">&#160;</td><td class="mdescRight">Tells if changes to the sample of rows displayed is done in background in several steps or if it's done in one step.  <a href="#aafd9861e707d9d19e7128143c95f9437">More...</a><br /></td></tr>
<tr class="separator:aafd9861e707d9d19e7128143c95f9437"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a53ce5c480efb506ccb402a360a9c5702"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>&lt; int &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#a53ce5c480efb506ccb402a360a9c5702">property_sample_size</a> ()</td></tr>
<tr class="memdesc:a53ce5c480efb506ccb402a360a9c5702"><td class="mdescLeft">&#160;</td><td class="mdescRight">Number of rows which the proxy will contain at any time, like a sliding window on the proxied data model.  <a href="#a53ce5c480efb506ccb402a360a9c5702">More...</a><br /></td></tr>
<tr class="separator:a53ce5c480efb506ccb402a360a9c5702"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae6b1e10111ff879945b6a905ed64abbc"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>&lt; int &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#ae6b1e10111ff879945b6a905ed64abbc">property_sample_size</a> () const </td></tr>
<tr class="memdesc:ae6b1e10111ff879945b6a905ed64abbc"><td class="mdescLeft">&#160;</td><td class="mdescRight">Number of rows which the proxy will contain at any time, like a sliding window on the proxied data model.  <a href="#ae6b1e10111ff879945b6a905ed64abbc">More...</a><br /></td></tr>
<tr class="separator:ae6b1e10111ff879945b6a905ed64abbc"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9c6b2591ccb7c86a91dd5154507dc187"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy2.html">Glib::SignalProxy2</a>&lt; void, int, bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#a9c6b2591ccb7c86a91dd5154507dc187">signal_row_delete_changed</a> ()</td></tr>
<tr class="separator:a9c6b2591ccb7c86a91dd5154507dc187"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a36cfa77d1b108d99093e1a605df4348c"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy2.html">Glib::SignalProxy2</a>&lt; void, int, int &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#a36cfa77d1b108d99093e1a605df4348c">signal_sample_changed</a> ()</td></tr>
<tr class="separator:a36cfa77d1b108d99093e1a605df4348c"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac6d3e410ebae7cb6f90064eeaf7a2efa"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy1.html">Glib::SignalProxy1</a>&lt; void, int &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#ac6d3e410ebae7cb6f90064eeaf7a2efa">signal_sample_size_changed</a> ()</td></tr>
<tr class="separator:ac6d3e410ebae7cb6f90064eeaf7a2efa"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a324cff8212f3dbeb9504e97636dd39dd"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy0.html">Glib::SignalProxy0</a>&lt; void &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#a324cff8212f3dbeb9504e97636dd39dd">signal_filter_changed</a> ()</td></tr>
<tr class="separator:a324cff8212f3dbeb9504e97636dd39dd"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aedd0dc6781a74ca9c6e9f43d4faa84db"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy2.html">Glib::SignalProxy2</a>&lt; <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Error.html">Glib::Error</a>, int, int &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#aedd0dc6781a74ca9c6e9f43d4faa84db">signal_validate_row_changes</a> ()</td></tr>
<tr class="separator:aedd0dc6781a74ca9c6e9f43d4faa84db"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3bc587aa8ea4513c30fe70847337b4a0"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy2.html">Glib::SignalProxy2</a>&lt; void, int, int &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#a3bc587aa8ea4513c30fe70847337b4a0">signal_row_changes_applied</a> ()</td></tr>
<tr class="separator:a3bc587aa8ea4513c30fe70847337b4a0"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_methods_classGlib_1_1Object"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classGlib_1_1Object')"><img src="closed.png" alt="-"/>&#160;Public Member Functions inherited from <a class="el" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html">Glib::Object</a></td></tr>
<tr class="memitem:a0127f43140e01d6a6731d42f9419be27 inherit pub_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#a0127f43140e01d6a6731d42f9419be27">Object</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html">Object</a> &amp;)=delete</td></tr>
<tr class="separator:a0127f43140e01d6a6731d42f9419be27 inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7081561a5684709718fdf8c1875c56c0 inherit pub_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html">Object</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#a7081561a5684709718fdf8c1875c56c0">operator=</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html">Object</a> &amp;)=delete</td></tr>
<tr class="separator:a7081561a5684709718fdf8c1875c56c0 inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a473ee068b40d5c949cee2c721d720c9a inherit pub_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#a473ee068b40d5c949cee2c721d720c9a">Object</a> (<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html">Object</a> &amp;&amp;src) noexcept</td></tr>
<tr class="separator:a473ee068b40d5c949cee2c721d720c9a inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2855131d475e54294dc34573f12ca9a0 inherit pub_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html">Object</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#a2855131d475e54294dc34573f12ca9a0">operator=</a> (<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html">Object</a> &amp;&amp;src) noexcept</td></tr>
<tr class="separator:a2855131d475e54294dc34573f12ca9a0 inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0e6581bcbcc6197cca07df24bb91c492 inherit pub_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">void *&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#a0e6581bcbcc6197cca07df24bb91c492">get_data</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1QueryQuark.html">QueryQuark</a> &amp;key)</td></tr>
<tr class="separator:a0e6581bcbcc6197cca07df24bb91c492 inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:afff7a375a862f3f899daaa99710122fa inherit pub_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#afff7a375a862f3f899daaa99710122fa">set_data</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Quark.html">Quark</a> &amp;key, void *data)</td></tr>
<tr class="separator:afff7a375a862f3f899daaa99710122fa inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1febe3bae2dd71756e98e523cd33c1b4 inherit pub_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#a1febe3bae2dd71756e98e523cd33c1b4">set_data</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Quark.html">Quark</a> &amp;key, void *data, <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#ace6b5aedc84260604ba591df58f45b2e">DestroyNotify</a> notify)</td></tr>
<tr class="separator:a1febe3bae2dd71756e98e523cd33c1b4 inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aada5b50844bda7ee02bed0ae2a715c00 inherit pub_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#aada5b50844bda7ee02bed0ae2a715c00">remove_data</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1QueryQuark.html">QueryQuark</a> &amp;quark)</td></tr>
<tr class="separator:aada5b50844bda7ee02bed0ae2a715c00 inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab454f71bd74403b0cc46d3cbbedd6b0e inherit pub_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">void *&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#ab454f71bd74403b0cc46d3cbbedd6b0e">steal_data</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1QueryQuark.html">QueryQuark</a> &amp;quark)</td></tr>
<tr class="separator:ab454f71bd74403b0cc46d3cbbedd6b0e inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae4dea9a8dc611d6e4400a5b6a3cb4e7f inherit pub_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html">Glib::Object</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#ae4dea9a8dc611d6e4400a5b6a3cb4e7f">wrap</a> (GObject *object, bool take_copy=false)</td></tr>
<tr class="separator:ae4dea9a8dc611d6e4400a5b6a3cb4e7f inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_methods_classGlib_1_1ObjectBase"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classGlib_1_1ObjectBase')"><img src="closed.png" alt="-"/>&#160;Public Member Functions inherited from <a class="el" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">Glib::ObjectBase</a></td></tr>
<tr class="memitem:aaf0e140e7192dcecddd9f57c46825434 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#aaf0e140e7192dcecddd9f57c46825434">ObjectBase</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">ObjectBase</a> &amp;)=delete</td></tr>
<tr class="separator:aaf0e140e7192dcecddd9f57c46825434 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a15f8834a320eac98dc1c1b8a9a2fd4c1 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">ObjectBase</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a15f8834a320eac98dc1c1b8a9a2fd4c1">operator=</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">ObjectBase</a> &amp;)=delete</td></tr>
<tr class="separator:a15f8834a320eac98dc1c1b8a9a2fd4c1 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aab599d3eec4b4a9ddc95ccdc6100053d inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#aab599d3eec4b4a9ddc95ccdc6100053d">set_property_value</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;property_name, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ValueBase.html">Glib::ValueBase</a> &amp;value)</td></tr>
<tr class="separator:aab599d3eec4b4a9ddc95ccdc6100053d inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5e30750441b92f0246c9d4ece95fc8a0 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a5e30750441b92f0246c9d4ece95fc8a0">get_property_value</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;property_name, <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ValueBase.html">Glib::ValueBase</a> &amp;value) const </td></tr>
<tr class="separator:a5e30750441b92f0246c9d4ece95fc8a0 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad37844f7ea2c0091a22d011e04c48820 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#ad37844f7ea2c0091a22d011e04c48820">set_property</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;property_name, const PropertyType &amp;value)</td></tr>
<tr class="separator:ad37844f7ea2c0091a22d011e04c48820 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5f894c9c36ad391fdc85552af67a8530 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a5f894c9c36ad391fdc85552af67a8530">get_property</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;property_name, PropertyType &amp;value) const </td></tr>
<tr class="separator:a5f894c9c36ad391fdc85552af67a8530 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:adc6c1e8f094275114d6e2c3ef3a33f98 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#adc6c1e8f094275114d6e2c3ef3a33f98">connect_property_changed</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;property_name, const <a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/classsigc_1_1slot.html">sigc::slot</a>&lt; void &gt; &amp;slot)</td></tr>
<tr class="separator:adc6c1e8f094275114d6e2c3ef3a33f98 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a896d7773c00bd2dcd310c861282ee8d1 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1connection.html">sigc::connection</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a896d7773c00bd2dcd310c861282ee8d1">connect_property_changed_with_return</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;property_name, const <a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/classsigc_1_1slot.html">sigc::slot</a>&lt; void &gt; &amp;slot)</td></tr>
<tr class="separator:a896d7773c00bd2dcd310c861282ee8d1 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6e9e13b75f116c20212d318204ce8ea3 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a6e9e13b75f116c20212d318204ce8ea3">freeze_notify</a> ()</td></tr>
<tr class="separator:a6e9e13b75f116c20212d318204ce8ea3 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1bd8ea7bd8c4084ade6b3c27dddf06a4 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a1bd8ea7bd8c4084ade6b3c27dddf06a4">thaw_notify</a> ()</td></tr>
<tr class="separator:a1bd8ea7bd8c4084ade6b3c27dddf06a4 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a896a8a5db20043ea82956e3ef4b9c4ae inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a896a8a5db20043ea82956e3ef4b9c4ae">reference</a> () const </td></tr>
<tr class="separator:a896a8a5db20043ea82956e3ef4b9c4ae inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3234b8ffb2a35b927e2978c8f3bfbfe3 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a3234b8ffb2a35b927e2978c8f3bfbfe3">unreference</a> () const </td></tr>
<tr class="separator:a3234b8ffb2a35b927e2978c8f3bfbfe3 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4c6efc18be8cb9c56e58fc0bd20fafbe inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">GObject *&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a4c6efc18be8cb9c56e58fc0bd20fafbe">gobj</a> ()</td></tr>
<tr class="separator:a4c6efc18be8cb9c56e58fc0bd20fafbe inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a778a94181132976bbfb0519793f3b32e inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">const GObject *&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a778a94181132976bbfb0519793f3b32e">gobj</a> () const </td></tr>
<tr class="separator:a778a94181132976bbfb0519793f3b32e inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9b2a5eb93102f1849e5419016e22a15f inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">GObject *&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a9b2a5eb93102f1849e5419016e22a15f">gobj_copy</a> () const </td></tr>
<tr class="separator:a9b2a5eb93102f1849e5419016e22a15f inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_methods_structsigc_1_1trackable"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_structsigc_1_1trackable')"><img src="closed.png" alt="-"/>&#160;Public Member Functions inherited from <a class="el" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html">sigc::trackable</a></td></tr>
<tr class="memitem:a09f5b2fe24c2ac1da8322ed0ea1553ea inherit pub_methods_structsigc_1_1trackable"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#a09f5b2fe24c2ac1da8322ed0ea1553ea">trackable</a> ()</td></tr>
<tr class="separator:a09f5b2fe24c2ac1da8322ed0ea1553ea inherit pub_methods_structsigc_1_1trackable"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7efefbcab4645648a366da3439242198 inherit pub_methods_structsigc_1_1trackable"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#a7efefbcab4645648a366da3439242198">trackable</a> (const <a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html">trackable</a> &amp;src)</td></tr>
<tr class="separator:a7efefbcab4645648a366da3439242198 inherit pub_methods_structsigc_1_1trackable"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9a6ff5a4d7c51cede2117525f470f96a inherit pub_methods_structsigc_1_1trackable"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#a9a6ff5a4d7c51cede2117525f470f96a">trackable</a> (<a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html">trackable</a> &amp;&amp;src) noexcept</td></tr>
<tr class="separator:a9a6ff5a4d7c51cede2117525f470f96a inherit pub_methods_structsigc_1_1trackable"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a75587da09e30031db7a2519843f1f4fb inherit pub_methods_structsigc_1_1trackable"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#a75587da09e30031db7a2519843f1f4fb">~trackable</a> ()</td></tr>
<tr class="separator:a75587da09e30031db7a2519843f1f4fb inherit pub_methods_structsigc_1_1trackable"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab14931670837728e49bb5ca88fb16db5 inherit pub_methods_structsigc_1_1trackable"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#ab14931670837728e49bb5ca88fb16db5">add_destroy_notify_callback</a> (void *data, <a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#a3338954d7565534bd945290b798e13ed">func_destroy_notify</a> func) const </td></tr>
<tr class="separator:ab14931670837728e49bb5ca88fb16db5 inherit pub_methods_structsigc_1_1trackable"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af2e23cfe7adc1ca844a3350bbac557cb inherit pub_methods_structsigc_1_1trackable"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#af2e23cfe7adc1ca844a3350bbac557cb">notify_callbacks</a> ()</td></tr>
<tr class="separator:af2e23cfe7adc1ca844a3350bbac557cb inherit pub_methods_structsigc_1_1trackable"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7494fbad23a65932ff1457d00d4edaf5 inherit pub_methods_structsigc_1_1trackable"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html">trackable</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#a7494fbad23a65932ff1457d00d4edaf5">operator=</a> (const <a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html">trackable</a> &amp;src)</td></tr>
<tr class="separator:a7494fbad23a65932ff1457d00d4edaf5 inherit pub_methods_structsigc_1_1trackable"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a400b5799372238211a4437844d923a4e inherit pub_methods_structsigc_1_1trackable"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html">trackable</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#a400b5799372238211a4437844d923a4e">operator=</a> (<a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html">trackable</a> &amp;&amp;src) noexcept</td></tr>
<tr class="separator:a400b5799372238211a4437844d923a4e inherit pub_methods_structsigc_1_1trackable"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8b9dffa8a50ff13ba33e6c7f10468e2b inherit pub_methods_structsigc_1_1trackable"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#a8b9dffa8a50ff13ba33e6c7f10468e2b">remove_destroy_notify_callback</a> (void *data) const </td></tr>
<tr class="separator:a8b9dffa8a50ff13ba33e6c7f10468e2b inherit pub_methods_structsigc_1_1trackable"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_methods_classGnome_1_1Gda_1_1DataModel"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classGnome_1_1Gda_1_1DataModel')"><img src="closed.png" alt="-"/>&#160;Public Member Functions inherited from <a class="el" href="classGnome_1_1Gda_1_1DataModel.html">Gnome::Gda::DataModel</a></td></tr>
<tr class="memitem:ae68ec32532889364949d909fba7eaac4 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataModel.html#ae68ec32532889364949d909fba7eaac4">DataModel</a> (<a class="el" href="classGnome_1_1Gda_1_1DataModel.html">DataModel</a>&amp;&amp; src) noexcept</td></tr>
<tr class="separator:ae68ec32532889364949d909fba7eaac4 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a06813e4bc6e63bc51d2e8704b737d641 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGnome_1_1Gda_1_1DataModel.html">DataModel</a>&amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataModel.html#a06813e4bc6e63bc51d2e8704b737d641">operator=</a> (<a class="el" href="classGnome_1_1Gda_1_1DataModel.html">DataModel</a>&amp;&amp; src) noexcept</td></tr>
<tr class="separator:a06813e4bc6e63bc51d2e8704b737d641 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3be680f62b74257c13ef383ba3527127 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memItemLeft" align="right" valign="top">virtual&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataModel.html#a3be680f62b74257c13ef383ba3527127">~DataModel</a> () noexcept</td></tr>
<tr class="separator:a3be680f62b74257c13ef383ba3527127 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a63b551e8308d050dbd5ab8964b405e76 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memItemLeft" align="right" valign="top">GdaDataModel*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataModel.html#a63b551e8308d050dbd5ab8964b405e76">gobj</a> ()</td></tr>
<tr class="memdesc:a63b551e8308d050dbd5ab8964b405e76 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="mdescLeft">&#160;</td><td class="mdescRight">Provides access to the underlying C GObject.  <a href="#a63b551e8308d050dbd5ab8964b405e76">More...</a><br /></td></tr>
<tr class="separator:a63b551e8308d050dbd5ab8964b405e76 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af06bc95c0e33adf8a3faca1870190a7f inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memItemLeft" align="right" valign="top">const GdaDataModel*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataModel.html#af06bc95c0e33adf8a3faca1870190a7f">gobj</a> () const </td></tr>
<tr class="memdesc:af06bc95c0e33adf8a3faca1870190a7f inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="mdescLeft">&#160;</td><td class="mdescRight">Provides access to the underlying C GObject.  <a href="#af06bc95c0e33adf8a3faca1870190a7f">More...</a><br /></td></tr>
<tr class="separator:af06bc95c0e33adf8a3faca1870190a7f inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a11c039a2fa5ea9cd4f8044d2cf86d22f inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataModel.html#a11c039a2fa5ea9cd4f8044d2cf86d22f">freeze</a> ()</td></tr>
<tr class="memdesc:a11c039a2fa5ea9cd4f8044d2cf86d22f inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="mdescLeft">&#160;</td><td class="mdescRight">Disables notifications of changes on the given data model.  <a href="#a11c039a2fa5ea9cd4f8044d2cf86d22f">More...</a><br /></td></tr>
<tr class="separator:a11c039a2fa5ea9cd4f8044d2cf86d22f inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa610f9a23f26d46f68b55b82900c9690 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataModel.html#aa610f9a23f26d46f68b55b82900c9690">thaw</a> ()</td></tr>
<tr class="memdesc:aa610f9a23f26d46f68b55b82900c9690 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="mdescLeft">&#160;</td><td class="mdescRight">Re-enables notifications of changes on the given data model.  <a href="#aa610f9a23f26d46f68b55b82900c9690">More...</a><br /></td></tr>
<tr class="separator:aa610f9a23f26d46f68b55b82900c9690 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac8ad2bf2c65705a519f694e73bedb2c0 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataModel.html#ac8ad2bf2c65705a519f694e73bedb2c0">get_n_rows</a> () const </td></tr>
<tr class="separator:ac8ad2bf2c65705a519f694e73bedb2c0 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aea9c67a76a5faaed039bb8dd2cd83558 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataModel.html#aea9c67a76a5faaed039bb8dd2cd83558">get_n_columns</a> () const </td></tr>
<tr class="separator:aea9c67a76a5faaed039bb8dd2cd83558 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6742d4e92d04feb6654fca60edbfa574 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataModel.html#a6742d4e92d04feb6654fca60edbfa574">get_column_index</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; name)</td></tr>
<tr class="memdesc:a6742d4e92d04feb6654fca60edbfa574 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the index of the first column named <em>name</em> in <em>model</em>.  <a href="#a6742d4e92d04feb6654fca60edbfa574">More...</a><br /></td></tr>
<tr class="separator:a6742d4e92d04feb6654fca60edbfa574 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae76fe532b9fb3c54268267b7579b0efb inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGnome_1_1Gda_1_1Column.html">Column</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataModel.html#ae76fe532b9fb3c54268267b7579b0efb">describe_column</a> (int col)</td></tr>
<tr class="memdesc:ae76fe532b9fb3c54268267b7579b0efb inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="mdescLeft">&#160;</td><td class="mdescRight">Queries the underlying data model implementation for a description of a given column.  <a href="#ae76fe532b9fb3c54268267b7579b0efb">More...</a><br /></td></tr>
<tr class="separator:ae76fe532b9fb3c54268267b7579b0efb inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad27b76cbdcf00ea3a8de30c0279cf9b8 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; const <a class="el" href="classGnome_1_1Gda_1_1Column.html">Column</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataModel.html#ad27b76cbdcf00ea3a8de30c0279cf9b8">describe_column</a> (int col) const </td></tr>
<tr class="memdesc:ad27b76cbdcf00ea3a8de30c0279cf9b8 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="mdescLeft">&#160;</td><td class="mdescRight">Queries the underlying data model implementation for a description of a given column.  <a href="#ad27b76cbdcf00ea3a8de30c0279cf9b8">More...</a><br /></td></tr>
<tr class="separator:ad27b76cbdcf00ea3a8de30c0279cf9b8 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:afe012ee84ae4955dd48f2116075dff88 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataModel.html#afe012ee84ae4955dd48f2116075dff88">get_column_title</a> (int col) const </td></tr>
<tr class="separator:afe012ee84ae4955dd48f2116075dff88 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad309e4134cbdda6f79691b43e16e5eb5 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataModel.html#ad309e4134cbdda6f79691b43e16e5eb5">set_column_title</a> (int col, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; title)</td></tr>
<tr class="memdesc:ad309e4134cbdda6f79691b43e16e5eb5 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the <em>title</em> of the given <em>col</em> in <em>model</em>.  <a href="#ad309e4134cbdda6f79691b43e16e5eb5">More...</a><br /></td></tr>
<tr class="separator:ad309e4134cbdda6f79691b43e16e5eb5 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a22c393b9d930fb82bd49e49b556fc9e5 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGnome_1_1Gda_1_1Value.html">Value</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataModel.html#a22c393b9d930fb82bd49e49b556fc9e5">get_value_at</a> (int col, int row) const </td></tr>
<tr class="memdesc:a22c393b9d930fb82bd49e49b556fc9e5 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="mdescLeft">&#160;</td><td class="mdescRight">Retrieves the data stored in the given position (identified by the <em>col</em> and <em>row</em> parameters) on a data model.  <a href="#a22c393b9d930fb82bd49e49b556fc9e5">More...</a><br /></td></tr>
<tr class="separator:a22c393b9d930fb82bd49e49b556fc9e5 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac2f1ab1b5f23b38d86c19cd9acd98dec inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGnome_1_1Gda_1_1Value.html">Value</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataModel.html#ac2f1ab1b5f23b38d86c19cd9acd98dec">get_typed_value_at</a> (int col, int row, GType expected_type, bool nullok) const </td></tr>
<tr class="memdesc:ac2f1ab1b5f23b38d86c19cd9acd98dec inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="mdescLeft">&#160;</td><td class="mdescRight">Upon errors <code>0</code> will be returned and <em>error</em> will be assigned a Error from the Gda::DATA_MODEL_ERROR domain.  <a href="#ac2f1ab1b5f23b38d86c19cd9acd98dec">More...</a><br /></td></tr>
<tr class="separator:ac2f1ab1b5f23b38d86c19cd9acd98dec inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3239a79e5adf78a91d5e50cd5af4f511 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memItemLeft" align="right" valign="top"><a class="el" href="namespaceGnome_1_1Gda.html#a9f6ae7fb1f39a3e8f221f95151e89e28">ValueAttribute</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataModel.html#a3239a79e5adf78a91d5e50cd5af4f511">get_attributes_at</a> (int col, int row)</td></tr>
<tr class="memdesc:a3239a79e5adf78a91d5e50cd5af4f511 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the attributes of the value stored at (row, col) in <em>model</em>, which is an ORed value of <a class="el" href="namespaceGnome_1_1Gda.html#a9f6ae7fb1f39a3e8f221f95151e89e28">Gda::ValueAttribute</a> flags.  <a href="#a3239a79e5adf78a91d5e50cd5af4f511">More...</a><br /></td></tr>
<tr class="separator:a3239a79e5adf78a91d5e50cd5af4f511 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af49b02014c4bd22bd4028b2f253767a4 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGnome_1_1Gda_1_1DataModelIter.html">DataModelIter</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataModel.html#af49b02014c4bd22bd4028b2f253767a4">create_iter</a> ()</td></tr>
<tr class="memdesc:af49b02014c4bd22bd4028b2f253767a4 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="mdescLeft">&#160;</td><td class="mdescRight">Creates a new iterator object <a class="el" href="classGnome_1_1Gda_1_1DataModelIter.html" title="Data model iterator. ">Gda::DataModelIter</a> object which can be used to iterate through rows in <em>model</em>.  <a href="#af49b02014c4bd22bd4028b2f253767a4">More...</a><br /></td></tr>
<tr class="separator:af49b02014c4bd22bd4028b2f253767a4 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4c7d98e434b2ed8b86432203fd831f3f inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataModel.html#a4c7d98e434b2ed8b86432203fd831f3f">set_value_at</a> (int col, int row, const <a class="el" href="classGnome_1_1Gda_1_1Value.html">Value</a>&amp; value)</td></tr>
<tr class="memdesc:a4c7d98e434b2ed8b86432203fd831f3f inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="mdescLeft">&#160;</td><td class="mdescRight">Modifies a value in <em>model</em>, at ( <em>col</em>, <em>row</em>).  <a href="#a4c7d98e434b2ed8b86432203fd831f3f">More...</a><br /></td></tr>
<tr class="separator:a4c7d98e434b2ed8b86432203fd831f3f inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a09480d7887a0e22de33edb65970bd07e inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataModel.html#a09480d7887a0e22de33edb65970bd07e">set_values</a> (int row, const <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a00965.html">std::vector</a>&lt; <a class="el" href="classGnome_1_1Gda_1_1Value.html">Value</a> &gt;&amp; values)</td></tr>
<tr class="memdesc:a09480d7887a0e22de33edb65970bd07e inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="mdescLeft">&#160;</td><td class="mdescRight">In a similar way to <a class="el" href="classGnome_1_1Gda_1_1DataModel.html#a4c7d98e434b2ed8b86432203fd831f3f" title="Modifies a value in model, at ( col, row). ">set_value_at()</a>, this method modifies a data model's contents by setting several values at once.  <a href="#a09480d7887a0e22de33edb65970bd07e">More...</a><br /></td></tr>
<tr class="separator:a09480d7887a0e22de33edb65970bd07e inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a30163bf2913a2d188dbc2c17e3d47eb9 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__libgdammEnums.html#gafa7c1a4a6efb9ca4d60dbddecc940126">DataModelAccessFlags</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataModel.html#a30163bf2913a2d188dbc2c17e3d47eb9">get_access_flags</a> () const </td></tr>
<tr class="memdesc:a30163bf2913a2d188dbc2c17e3d47eb9 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the attributes of <em>model</em> such as how to access the data it contains if it's modifiable, etc.  <a href="#a30163bf2913a2d188dbc2c17e3d47eb9">More...</a><br /></td></tr>
<tr class="separator:a30163bf2913a2d188dbc2c17e3d47eb9 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7b78ccf18054d8f0e57d0582ee2faf72 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataModel.html#a7b78ccf18054d8f0e57d0582ee2faf72">append_values</a> (const <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a00965.html">std::vector</a>&lt; <a class="el" href="classGnome_1_1Gda_1_1Value.html">Value</a> &gt;&amp; values)</td></tr>
<tr class="memdesc:a7b78ccf18054d8f0e57d0582ee2faf72 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="mdescLeft">&#160;</td><td class="mdescRight">Appends a row to the given data model.  <a href="#a7b78ccf18054d8f0e57d0582ee2faf72">More...</a><br /></td></tr>
<tr class="separator:a7b78ccf18054d8f0e57d0582ee2faf72 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aef126649a1d5931d4fce85510d8e8097 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataModel.html#aef126649a1d5931d4fce85510d8e8097">append_row</a> ()</td></tr>
<tr class="memdesc:aef126649a1d5931d4fce85510d8e8097 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="mdescLeft">&#160;</td><td class="mdescRight">Appends a row to the data model (the new row will possibly have <code>0</code> values for all columns, or some other values depending on the data model implementation)  <a href="#aef126649a1d5931d4fce85510d8e8097">More...</a><br /></td></tr>
<tr class="separator:aef126649a1d5931d4fce85510d8e8097 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a271239b1bbf8e95beae98c8b07983e40 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataModel.html#a271239b1bbf8e95beae98c8b07983e40">remove_row</a> (int row)</td></tr>
<tr class="memdesc:a271239b1bbf8e95beae98c8b07983e40 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="mdescLeft">&#160;</td><td class="mdescRight">Removes a row from the data model.  <a href="#a271239b1bbf8e95beae98c8b07983e40">More...</a><br /></td></tr>
<tr class="separator:a271239b1bbf8e95beae98c8b07983e40 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1982d7bf667e13abec894b5066ff22c8 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataModel.html#a1982d7bf667e13abec894b5066ff22c8">get_row_from_values</a> (const <a class="el" href="classGnome_1_1Gda_1_1DataModel.html#a0ed66299310af38e618f740a79fc3c52">ValueVector</a>&amp; values, const <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a00965.html">std::vector</a>&lt; int &gt;&amp; cols_index)</td></tr>
<tr class="memdesc:a1982d7bf667e13abec894b5066ff22c8 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the first row where all the values in <em>values</em> at the columns identified at <em>cols_index</em> match.  <a href="#a1982d7bf667e13abec894b5066ff22c8">More...</a><br /></td></tr>
<tr class="separator:a1982d7bf667e13abec894b5066ff22c8 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5d56e9975dd2afbd56e428ddd5924811 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataModel.html#a5d56e9975dd2afbd56e428ddd5924811">send_hint</a> (<a class="el" href="group__libgdammEnums.html#gab6a206a09f087871d4b2f11c2dc7d801">DataModelHint</a> hint, const <a class="el" href="classGnome_1_1Gda_1_1Value.html">Value</a>&amp; hint_value)</td></tr>
<tr class="memdesc:a5d56e9975dd2afbd56e428ddd5924811 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sends a hint to the data model.  <a href="#a5d56e9975dd2afbd56e428ddd5924811">More...</a><br /></td></tr>
<tr class="separator:a5d56e9975dd2afbd56e428ddd5924811 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac58569714b865768a09f01855c6c0aac inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataModel.html#ac58569714b865768a09f01855c6c0aac">export_to_string</a> (<a class="el" href="group__libgdammEnums.html#ga16f02cba372bf9920461c7132e63b7f1">DataModelIOFormat</a> format, const <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a00965.html">std::vector</a>&lt; int &gt;&amp; cols, const <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a00965.html">std::vector</a>&lt; int &gt;&amp; rows, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGnome_1_1Gda_1_1Set.html">Set</a> &gt;&amp; options)</td></tr>
<tr class="memdesc:ac58569714b865768a09f01855c6c0aac inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="mdescLeft">&#160;</td><td class="mdescRight">Exports data contained in <em>model</em> to the a string; the format is specified using the <em>format</em> argument.  <a href="#ac58569714b865768a09f01855c6c0aac">More...</a><br /></td></tr>
<tr class="separator:ac58569714b865768a09f01855c6c0aac inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7e3745ce4bf9a09cd6423bae862bb7d6 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataModel.html#a7e3745ce4bf9a09cd6423bae862bb7d6">export_to_file</a> (<a class="el" href="group__libgdammEnums.html#ga16f02cba372bf9920461c7132e63b7f1">DataModelIOFormat</a> format, const <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a>&amp; file, const <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a00965.html">std::vector</a>&lt; int &gt;&amp; cols, const <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a00965.html">std::vector</a>&lt; int &gt;&amp; rows, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGnome_1_1Gda_1_1Set.html">Set</a> &gt;&amp; options)</td></tr>
<tr class="memdesc:a7e3745ce4bf9a09cd6423bae862bb7d6 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="mdescLeft">&#160;</td><td class="mdescRight">Exports data contained in <em>model</em> to the <em>file</em>; the format is specified using the <em>format</em> argument.  <a href="#a7e3745ce4bf9a09cd6423bae862bb7d6">More...</a><br /></td></tr>
<tr class="separator:a7e3745ce4bf9a09cd6423bae862bb7d6 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a527391220808d06de95a4bcc82fdaece inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataModel.html#a527391220808d06de95a4bcc82fdaece">import_from_model</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGnome_1_1Gda_1_1DataModel.html">DataModel</a> &gt;&amp; from, bool overwrite, GHashTable* cols_trans)</td></tr>
<tr class="memdesc:a527391220808d06de95a4bcc82fdaece inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="mdescLeft">&#160;</td><td class="mdescRight">Copy the contents of the <em>from</em> data model to the <em>to</em> data model.  <a href="#a527391220808d06de95a4bcc82fdaece">More...</a><br /></td></tr>
<tr class="separator:a527391220808d06de95a4bcc82fdaece inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a35908c612ea914b67092803c5e031d5d inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataModel.html#a35908c612ea914b67092803c5e031d5d">import_from_string</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp;<a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">string</a>, GHashTable* cols_trans, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; const <a class="el" href="classGnome_1_1Gda_1_1Set.html">Set</a> &gt;&amp; options)</td></tr>
<tr class="memdesc:a35908c612ea914b67092803c5e031d5d inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="mdescLeft">&#160;</td><td class="mdescRight">Loads the data from <em>string</em> into <em>model</em>.  <a href="#a35908c612ea914b67092803c5e031d5d">More...</a><br /></td></tr>
<tr class="separator:a35908c612ea914b67092803c5e031d5d inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a256e6190230540c7df13b4e3a96228cd inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataModel.html#a256e6190230540c7df13b4e3a96228cd">import_from_file</a> (const <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a>&amp; file, GHashTable* cols_trans, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; const <a class="el" href="classGnome_1_1Gda_1_1Set.html">Set</a> &gt;&amp; options)</td></tr>
<tr class="memdesc:a256e6190230540c7df13b4e3a96228cd inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="mdescLeft">&#160;</td><td class="mdescRight">Imports data contained in the <em>file</em> file into <em>model</em>; the format is detected.  <a href="#a256e6190230540c7df13b4e3a96228cd">More...</a><br /></td></tr>
<tr class="separator:a256e6190230540c7df13b4e3a96228cd inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a381a83e8218d843081da518daf94497d inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataModel.html#a381a83e8218d843081da518daf94497d">dump</a> (FILE* to_stream) const </td></tr>
<tr class="memdesc:a381a83e8218d843081da518daf94497d inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="mdescLeft">&#160;</td><td class="mdescRight">Dumps a textual representation of the <em>model</em> to the <em>to_stream</em> stream.  <a href="#a381a83e8218d843081da518daf94497d">More...</a><br /></td></tr>
<tr class="separator:a381a83e8218d843081da518daf94497d inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7f67c8bbaea464d0657daa7949b7dcaa inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataModel.html#a7f67c8bbaea464d0657daa7949b7dcaa">dump_as_string</a> () const </td></tr>
<tr class="memdesc:a7f67c8bbaea464d0657daa7949b7dcaa inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="mdescLeft">&#160;</td><td class="mdescRight">Dumps a textual representation of the <em>model</em> into a new string.  <a href="#a7f67c8bbaea464d0657daa7949b7dcaa">More...</a><br /></td></tr>
<tr class="separator:a7f67c8bbaea464d0657daa7949b7dcaa inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5189e38369673f930661f82fb0b9bbb7 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataModel.html#a5189e38369673f930661f82fb0b9bbb7">set_column_name</a> (int col, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; name)</td></tr>
<tr class="memdesc:a5189e38369673f930661f82fb0b9bbb7 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the <em>name</em> of the given <em>col</em> in <em>model</em>, and if its title is not set, also sets the title to <em>name</em>.  <a href="#a5189e38369673f930661f82fb0b9bbb7">More...</a><br /></td></tr>
<tr class="separator:a5189e38369673f930661f82fb0b9bbb7 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a099347884213f17caa9151e91bea5232 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataModel.html#a099347884213f17caa9151e91bea5232">get_column_name</a> (int col) const </td></tr>
<tr class="separator:a099347884213f17caa9151e91bea5232 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8c1e9aa7e1a0267f6e3b6714c36f0337 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataModel.html#a8c1e9aa7e1a0267f6e3b6714c36f0337">iter_move_next_default</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGnome_1_1Gda_1_1DataModelIter.html">DataModelIter</a> &gt;&amp; iter)</td></tr>
<tr class="separator:a8c1e9aa7e1a0267f6e3b6714c36f0337 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1a8387543316f769d39295863ef0cb86 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataModel.html#a1a8387543316f769d39295863ef0cb86">iter_move_prev_default</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGnome_1_1Gda_1_1DataModelIter.html">DataModelIter</a> &gt;&amp; iter)</td></tr>
<tr class="separator:a1a8387543316f769d39295863ef0cb86 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a787e37ef95ef475a6c953409fff4004b inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataModel.html#a787e37ef95ef475a6c953409fff4004b">iter_move_to_row_default</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGnome_1_1Gda_1_1DataModelIter.html">DataModelIter</a> &gt;&amp; iter, int row)</td></tr>
<tr class="separator:a787e37ef95ef475a6c953409fff4004b inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a44d1fef2b89bb777e8920627187167a4 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy1.html">Glib::SignalProxy1</a>&lt; void, int &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataModel.html#a44d1fef2b89bb777e8920627187167a4">signal_row_inserted</a> ()</td></tr>
<tr class="separator:a44d1fef2b89bb777e8920627187167a4 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:acc7b871c4f55e6092790e03283bcf43d inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy1.html">Glib::SignalProxy1</a>&lt; void, int &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataModel.html#acc7b871c4f55e6092790e03283bcf43d">signal_row_updated</a> ()</td></tr>
<tr class="separator:acc7b871c4f55e6092790e03283bcf43d inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9bec8ba89312927f9751724ec8fab8e8 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy1.html">Glib::SignalProxy1</a>&lt; void, int &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataModel.html#a9bec8ba89312927f9751724ec8fab8e8">signal_row_removed</a> ()</td></tr>
<tr class="separator:a9bec8ba89312927f9751724ec8fab8e8 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:abf4a9efb6bffd0f90da482f24c59f798 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy0.html">Glib::SignalProxy0</a>&lt; void &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataModel.html#abf4a9efb6bffd0f90da482f24c59f798">signal_reset</a> ()</td></tr>
<tr class="separator:abf4a9efb6bffd0f90da482f24c59f798 inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a210be11722e9abae805889a90a1d969c inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy0.html">Glib::SignalProxy0</a>&lt; void &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataModel.html#a210be11722e9abae805889a90a1d969c">signal_changed</a> ()</td></tr>
<tr class="separator:a210be11722e9abae805889a90a1d969c inherit pub_methods_classGnome_1_1Gda_1_1DataModel"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_methods_classGlib_1_1Interface"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classGlib_1_1Interface')"><img src="closed.png" alt="-"/>&#160;Public Member Functions inherited from <a class="el" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html">Glib::Interface</a></td></tr>
<tr class="memitem:a3ab20f29c40967352d1bf2d88bfe11e5 inherit pub_methods_classGlib_1_1Interface"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html#a3ab20f29c40967352d1bf2d88bfe11e5">Interface</a> ()</td></tr>
<tr class="separator:a3ab20f29c40967352d1bf2d88bfe11e5 inherit pub_methods_classGlib_1_1Interface"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a83337dc270f966539b9f46804460ab75 inherit pub_methods_classGlib_1_1Interface"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html#a83337dc270f966539b9f46804460ab75">Interface</a> (<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html">Interface</a> &amp;&amp;src) noexcept</td></tr>
<tr class="separator:a83337dc270f966539b9f46804460ab75 inherit pub_methods_classGlib_1_1Interface"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a411d66c7467e749dbb2c4b31c4d518b5 inherit pub_methods_classGlib_1_1Interface"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html">Interface</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html#a411d66c7467e749dbb2c4b31c4d518b5">operator=</a> (<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html">Interface</a> &amp;&amp;src) noexcept</td></tr>
<tr class="separator:a411d66c7467e749dbb2c4b31c4d518b5 inherit pub_methods_classGlib_1_1Interface"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae05bf6a4ce0f0992c2ad01429d13f9f7 inherit pub_methods_classGlib_1_1Interface"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html#ae05bf6a4ce0f0992c2ad01429d13f9f7">Interface</a> (const Glib::Interface_Class &amp;interface_class)</td></tr>
<tr class="separator:ae05bf6a4ce0f0992c2ad01429d13f9f7 inherit pub_methods_classGlib_1_1Interface"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a00253b22a76f751f1627865451cbc404 inherit pub_methods_classGlib_1_1Interface"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html#a00253b22a76f751f1627865451cbc404">Interface</a> (GObject *castitem)</td></tr>
<tr class="separator:a00253b22a76f751f1627865451cbc404 inherit pub_methods_classGlib_1_1Interface"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a65381d7993021746f023477ca8e76f34 inherit pub_methods_classGlib_1_1Interface"><td class="memItemLeft" align="right" valign="top">virtual&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html#a65381d7993021746f023477ca8e76f34">~Interface</a> () noexcept</td></tr>
<tr class="separator:a65381d7993021746f023477ca8e76f34 inherit pub_methods_classGlib_1_1Interface"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4bb27d294728f34452be66b4ec4cd757 inherit pub_methods_classGlib_1_1Interface"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html#a4bb27d294728f34452be66b4ec4cd757">Interface</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html">Interface</a> &amp;)=delete</td></tr>
<tr class="separator:a4bb27d294728f34452be66b4ec4cd757 inherit pub_methods_classGlib_1_1Interface"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:acf322f95cef17aa4cc232d8ef25f2b42 inherit pub_methods_classGlib_1_1Interface"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html">Interface</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html#acf322f95cef17aa4cc232d8ef25f2b42">operator=</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html">Interface</a> &amp;)=delete</td></tr>
<tr class="separator:acf322f95cef17aa4cc232d8ef25f2b42 inherit pub_methods_classGlib_1_1Interface"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a969e9396f75132a9577428f4fa932d42 inherit pub_methods_classGlib_1_1Interface"><td class="memItemLeft" align="right" valign="top">GObject *&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html#a969e9396f75132a9577428f4fa932d42">gobj</a> ()</td></tr>
<tr class="separator:a969e9396f75132a9577428f4fa932d42 inherit pub_methods_classGlib_1_1Interface"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a70a443071a69d3372c2cdd7128a91ed1 inherit pub_methods_classGlib_1_1Interface"><td class="memItemLeft" align="right" valign="top">const GObject *&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html#a70a443071a69d3372c2cdd7128a91ed1">gobj</a> () const </td></tr>
<tr class="separator:a70a443071a69d3372c2cdd7128a91ed1 inherit pub_methods_classGlib_1_1Interface"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-static-methods"></a>
Static Public Member Functions</h2></td></tr>
<tr class="memitem:a1df68f63738799363c557f8a5366c6f5"><td class="memItemLeft" align="right" valign="top">static GType&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#a1df68f63738799363c557f8a5366c6f5">get_type</a> ()</td></tr>
<tr class="memdesc:a1df68f63738799363c557f8a5366c6f5"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the GType for this class, for use with the underlying GObject type system.  <a href="#a1df68f63738799363c557f8a5366c6f5">More...</a><br /></td></tr>
<tr class="separator:a1df68f63738799363c557f8a5366c6f5"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad5a5f8ac4afede919da02580b4081aa3"><td class="memItemLeft" align="right" valign="top">static <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGnome_1_1Gda_1_1DataProxy.html">DataProxy</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#ad5a5f8ac4afede919da02580b4081aa3">create</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGnome_1_1Gda_1_1DataModel.html">DataModel</a> &gt;&amp; model)</td></tr>
<tr class="separator:ad5a5f8ac4afede919da02580b4081aa3"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_static_methods_classGnome_1_1Gda_1_1DataModel"><td colspan="2" onclick="javascript:toggleInherit('pub_static_methods_classGnome_1_1Gda_1_1DataModel')"><img src="closed.png" alt="-"/>&#160;Static Public Member Functions inherited from <a class="el" href="classGnome_1_1Gda_1_1DataModel.html">Gnome::Gda::DataModel</a></td></tr>
<tr class="memitem:a02553845053f5afe4bbde0ff5a2f7bf5 inherit pub_static_methods_classGnome_1_1Gda_1_1DataModel"><td class="memItemLeft" align="right" valign="top">static void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataModel.html#a02553845053f5afe4bbde0ff5a2f7bf5">add_interface</a> (GType gtype_implementer)</td></tr>
<tr class="separator:a02553845053f5afe4bbde0ff5a2f7bf5 inherit pub_static_methods_classGnome_1_1Gda_1_1DataModel"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1010bc7ee026693e4ee2c52998cfeb91 inherit pub_static_methods_classGnome_1_1Gda_1_1DataModel"><td class="memItemLeft" align="right" valign="top">static GType&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataModel.html#a1010bc7ee026693e4ee2c52998cfeb91">get_type</a> ()</td></tr>
<tr class="memdesc:a1010bc7ee026693e4ee2c52998cfeb91 inherit pub_static_methods_classGnome_1_1Gda_1_1DataModel"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the GType for this class, for use with the underlying GObject type system.  <a href="#a1010bc7ee026693e4ee2c52998cfeb91">More...</a><br /></td></tr>
<tr class="separator:a1010bc7ee026693e4ee2c52998cfeb91 inherit pub_static_methods_classGnome_1_1Gda_1_1DataModel"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pro-methods"></a>
Protected Member Functions</h2></td></tr>
<tr class="memitem:a1ca28f2466df84a1080959accdc43861"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#a1ca28f2466df84a1080959accdc43861">DataProxy</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGnome_1_1Gda_1_1DataModel.html">DataModel</a> &gt;&amp; model)</td></tr>
<tr class="separator:a1ca28f2466df84a1080959accdc43861"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1e1109b76776daeddea821cbab3c9cda"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#a1e1109b76776daeddea821cbab3c9cda">on_row_delete_changed</a> (int row, bool to_be_deleted)</td></tr>
<tr class="memdesc:a1e1109b76776daeddea821cbab3c9cda"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#a9c6b2591ccb7c86a91dd5154507dc187">signal_row_delete_changed()</a>.  <a href="#a1e1109b76776daeddea821cbab3c9cda">More...</a><br /></td></tr>
<tr class="separator:a1e1109b76776daeddea821cbab3c9cda"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a37b75ea13cca51a9500609979ed3e572"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#a37b75ea13cca51a9500609979ed3e572">on_sample_changed</a> (int sample_start, int sample_end)</td></tr>
<tr class="memdesc:a37b75ea13cca51a9500609979ed3e572"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#a36cfa77d1b108d99093e1a605df4348c">signal_sample_changed()</a>.  <a href="#a37b75ea13cca51a9500609979ed3e572">More...</a><br /></td></tr>
<tr class="separator:a37b75ea13cca51a9500609979ed3e572"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a606d9d28b53ede9b1d335e4968247324"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#a606d9d28b53ede9b1d335e4968247324">on_sample_size_changed</a> (int sample_size)</td></tr>
<tr class="memdesc:a606d9d28b53ede9b1d335e4968247324"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#ac6d3e410ebae7cb6f90064eeaf7a2efa">signal_sample_size_changed()</a>.  <a href="#a606d9d28b53ede9b1d335e4968247324">More...</a><br /></td></tr>
<tr class="separator:a606d9d28b53ede9b1d335e4968247324"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac689dfcbe7495f5c336e130840846e2e"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#ac689dfcbe7495f5c336e130840846e2e">on_row_changes_applied</a> (int row, int proxied_row)</td></tr>
<tr class="memdesc:ac689dfcbe7495f5c336e130840846e2e"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#a3bc587aa8ea4513c30fe70847337b4a0">signal_row_changes_applied()</a>.  <a href="#ac689dfcbe7495f5c336e130840846e2e">More...</a><br /></td></tr>
<tr class="separator:ac689dfcbe7495f5c336e130840846e2e"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pro_methods_classGlib_1_1Object"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_classGlib_1_1Object')"><img src="closed.png" alt="-"/>&#160;Protected Member Functions inherited from <a class="el" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html">Glib::Object</a></td></tr>
<tr class="memitem:ad43f7c5ad0336e1eb3af622392a112eb inherit pro_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#ad43f7c5ad0336e1eb3af622392a112eb">Object</a> ()</td></tr>
<tr class="separator:ad43f7c5ad0336e1eb3af622392a112eb inherit pro_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6d72588496bd7ac03f72420021fb94a5 inherit pro_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#a6d72588496bd7ac03f72420021fb94a5">Object</a> (const Glib::ConstructParams &amp;construct_params)</td></tr>
<tr class="separator:a6d72588496bd7ac03f72420021fb94a5 inherit pro_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6f490eeaeb71db673c36799a0f729be5 inherit pro_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#a6f490eeaeb71db673c36799a0f729be5">Object</a> (GObject *castitem)</td></tr>
<tr class="separator:a6f490eeaeb71db673c36799a0f729be5 inherit pro_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aca9f9705c065c26621b7745d40f5b344 inherit pro_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">virtual&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#aca9f9705c065c26621b7745d40f5b344">~Object</a> () noexcept</td></tr>
<tr class="separator:aca9f9705c065c26621b7745d40f5b344 inherit pro_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pro_methods_classGlib_1_1ObjectBase"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_classGlib_1_1ObjectBase')"><img src="closed.png" alt="-"/>&#160;Protected Member Functions inherited from <a class="el" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">Glib::ObjectBase</a></td></tr>
<tr class="memitem:a27d3451d9ca28d6a2f00838d7c56d545 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a27d3451d9ca28d6a2f00838d7c56d545">ObjectBase</a> ()</td></tr>
<tr class="separator:a27d3451d9ca28d6a2f00838d7c56d545 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad4ef18214894c6874579313ab21d1018 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#ad4ef18214894c6874579313ab21d1018">ObjectBase</a> (const char *custom_type_name)</td></tr>
<tr class="separator:ad4ef18214894c6874579313ab21d1018 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3d59b4d85b0ee72a727e6b2e1b31a2ff inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a3d59b4d85b0ee72a727e6b2e1b31a2ff">ObjectBase</a> (const <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a00947.html">std::type_info</a> &amp;custom_type_info)</td></tr>
<tr class="separator:a3d59b4d85b0ee72a727e6b2e1b31a2ff inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7e2e177061f6a6e09c4cf3da49c6dfd3 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a7e2e177061f6a6e09c4cf3da49c6dfd3">ObjectBase</a> (<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">ObjectBase</a> &amp;&amp;src) noexcept</td></tr>
<tr class="separator:a7e2e177061f6a6e09c4cf3da49c6dfd3 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2e968f118314ba4d5debfd2850d18003 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">ObjectBase</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a2e968f118314ba4d5debfd2850d18003">operator=</a> (<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">ObjectBase</a> &amp;&amp;src) noexcept</td></tr>
<tr class="separator:a2e968f118314ba4d5debfd2850d18003 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae56ec45e9ebeaacf24be4fb54ed2eea3 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">virtual&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#ae56ec45e9ebeaacf24be4fb54ed2eea3">~ObjectBase</a> () noexcept=0</td></tr>
<tr class="separator:ae56ec45e9ebeaacf24be4fb54ed2eea3 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3faafb14c4f0ca60fbf0f5f5c4d549d0 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a3faafb14c4f0ca60fbf0f5f5c4d549d0">initialize</a> (GObject *castitem)</td></tr>
<tr class="separator:a3faafb14c4f0ca60fbf0f5f5c4d549d0 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a44ddc123cd98ed0083aa06364365c8d3 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a44ddc123cd98ed0083aa06364365c8d3">initialize_move</a> (GObject *castitem, <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">Glib::ObjectBase</a> *previous_wrapper)</td></tr>
<tr class="separator:a44ddc123cd98ed0083aa06364365c8d3 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pro_methods_classGnome_1_1Gda_1_1DataModel"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_classGnome_1_1Gda_1_1DataModel')"><img src="closed.png" alt="-"/>&#160;Protected Member Functions inherited from <a class="el" href="classGnome_1_1Gda_1_1DataModel.html">Gnome::Gda::DataModel</a></td></tr>
<tr class="memitem:ae6cb5a563d8d7689a78986ef419933d4 inherit pro_methods_classGnome_1_1Gda_1_1DataModel"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataModel.html#ae6cb5a563d8d7689a78986ef419933d4">DataModel</a> ()</td></tr>
<tr class="memdesc:ae6cb5a563d8d7689a78986ef419933d4 inherit pro_methods_classGnome_1_1Gda_1_1DataModel"><td class="mdescLeft">&#160;</td><td class="mdescRight">You should derive from this class to use it.  <a href="#ae6cb5a563d8d7689a78986ef419933d4">More...</a><br /></td></tr>
<tr class="separator:ae6cb5a563d8d7689a78986ef419933d4 inherit pro_methods_classGnome_1_1Gda_1_1DataModel"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7eaaaaaa4454e6ba834710339967c61a inherit pro_methods_classGnome_1_1Gda_1_1DataModel"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataModel.html#a7eaaaaaa4454e6ba834710339967c61a">on_row_inserted</a> (int row)</td></tr>
<tr class="memdesc:a7eaaaaaa4454e6ba834710339967c61a inherit pro_methods_classGnome_1_1Gda_1_1DataModel"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGnome_1_1Gda_1_1DataModel.html#a44d1fef2b89bb777e8920627187167a4">signal_row_inserted()</a>.  <a href="#a7eaaaaaa4454e6ba834710339967c61a">More...</a><br /></td></tr>
<tr class="separator:a7eaaaaaa4454e6ba834710339967c61a inherit pro_methods_classGnome_1_1Gda_1_1DataModel"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4f8e768af7e1eac582934ed7e1572f4f inherit pro_methods_classGnome_1_1Gda_1_1DataModel"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataModel.html#a4f8e768af7e1eac582934ed7e1572f4f">on_row_updated</a> (int row)</td></tr>
<tr class="memdesc:a4f8e768af7e1eac582934ed7e1572f4f inherit pro_methods_classGnome_1_1Gda_1_1DataModel"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGnome_1_1Gda_1_1DataModel.html#acc7b871c4f55e6092790e03283bcf43d">signal_row_updated()</a>.  <a href="#a4f8e768af7e1eac582934ed7e1572f4f">More...</a><br /></td></tr>
<tr class="separator:a4f8e768af7e1eac582934ed7e1572f4f inherit pro_methods_classGnome_1_1Gda_1_1DataModel"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa732165f7b86afdda700d934bdf39ab9 inherit pro_methods_classGnome_1_1Gda_1_1DataModel"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataModel.html#aa732165f7b86afdda700d934bdf39ab9">on_row_removed</a> (int row)</td></tr>
<tr class="memdesc:aa732165f7b86afdda700d934bdf39ab9 inherit pro_methods_classGnome_1_1Gda_1_1DataModel"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGnome_1_1Gda_1_1DataModel.html#a9bec8ba89312927f9751724ec8fab8e8">signal_row_removed()</a>.  <a href="#aa732165f7b86afdda700d934bdf39ab9">More...</a><br /></td></tr>
<tr class="separator:aa732165f7b86afdda700d934bdf39ab9 inherit pro_methods_classGnome_1_1Gda_1_1DataModel"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:afe8e17786482da3dac487bb939a385bd inherit pro_methods_classGnome_1_1Gda_1_1DataModel"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataModel.html#afe8e17786482da3dac487bb939a385bd">on_reset</a> ()</td></tr>
<tr class="memdesc:afe8e17786482da3dac487bb939a385bd inherit pro_methods_classGnome_1_1Gda_1_1DataModel"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGnome_1_1Gda_1_1DataModel.html#abf4a9efb6bffd0f90da482f24c59f798">signal_reset()</a>.  <a href="#afe8e17786482da3dac487bb939a385bd">More...</a><br /></td></tr>
<tr class="separator:afe8e17786482da3dac487bb939a385bd inherit pro_methods_classGnome_1_1Gda_1_1DataModel"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad2b5d34b8de0068eb9da6d6c4c978adb inherit pro_methods_classGnome_1_1Gda_1_1DataModel"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataModel.html#ad2b5d34b8de0068eb9da6d6c4c978adb">on_changed</a> ()</td></tr>
<tr class="memdesc:ad2b5d34b8de0068eb9da6d6c4c978adb inherit pro_methods_classGnome_1_1Gda_1_1DataModel"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGnome_1_1Gda_1_1DataModel.html#a210be11722e9abae805889a90a1d969c">signal_changed()</a>.  <a href="#ad2b5d34b8de0068eb9da6d6c4c978adb">More...</a><br /></td></tr>
<tr class="separator:ad2b5d34b8de0068eb9da6d6c4c978adb inherit pro_methods_classGnome_1_1Gda_1_1DataModel"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="related"></a>
Related Functions</h2></td></tr>
<tr><td class="ititle" colspan="2"><p>(Note that these are not member functions.) </p>
</td></tr>
<tr class="memitem:aeb2755aa7104f5f143fb823326fac00b"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGnome_1_1Gda_1_1DataProxy.html">Gnome::Gda::DataProxy</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#aeb2755aa7104f5f143fb823326fac00b">wrap</a> (GdaDataProxy* object, bool take_copy=false)</td></tr>
<tr class="memdesc:aeb2755aa7104f5f143fb823326fac00b"><td class="mdescLeft">&#160;</td><td class="mdescRight">A <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/namespaceGlib.html#a671306f4a3a0cae5ab4d7a9d54886592">Glib::wrap()</a> method for this object.  <a href="#aeb2755aa7104f5f143fb823326fac00b">More...</a><br /></td></tr>
<tr class="separator:aeb2755aa7104f5f143fb823326fac00b"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header related_classGnome_1_1Gda_1_1DataModel"><td colspan="2" onclick="javascript:toggleInherit('related_classGnome_1_1Gda_1_1DataModel')"><img src="closed.png" alt="-"/>&#160;Related Functions inherited from <a class="el" href="classGnome_1_1Gda_1_1DataModel.html">Gnome::Gda::DataModel</a></td></tr>
<tr class="memitem:ad64ded50f437e10a594c43517c45a389 inherit related_classGnome_1_1Gda_1_1DataModel"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGnome_1_1Gda_1_1DataModel.html">Gnome::Gda::DataModel</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataModel.html#ad64ded50f437e10a594c43517c45a389">wrap</a> (GdaDataModel* object, bool take_copy=false)</td></tr>
<tr class="memdesc:ad64ded50f437e10a594c43517c45a389 inherit related_classGnome_1_1Gda_1_1DataModel"><td class="mdescLeft">&#160;</td><td class="mdescRight">A <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/namespaceGlib.html#a671306f4a3a0cae5ab4d7a9d54886592">Glib::wrap()</a> method for this object.  <a href="#ad64ded50f437e10a594c43517c45a389">More...</a><br /></td></tr>
<tr class="separator:ad64ded50f437e10a594c43517c45a389 inherit related_classGnome_1_1Gda_1_1DataModel"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="inherited"></a>
Additional Inherited Members</h2></td></tr>
<tr class="inherit_header pub_types_classGlib_1_1Object"><td colspan="2" onclick="javascript:toggleInherit('pub_types_classGlib_1_1Object')"><img src="closed.png" alt="-"/>&#160;Public Types inherited from <a class="el" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html">Glib::Object</a></td></tr>
<tr class="memitem:ace6b5aedc84260604ba591df58f45b2e inherit pub_types_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">typedef void(*&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#ace6b5aedc84260604ba591df58f45b2e">DestroyNotify</a>) (gpointer data)</td></tr>
<tr class="separator:ace6b5aedc84260604ba591df58f45b2e inherit pub_types_classGlib_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_types_structsigc_1_1trackable"><td colspan="2" onclick="javascript:toggleInherit('pub_types_structsigc_1_1trackable')"><img src="closed.png" alt="-"/>&#160;Public Types inherited from <a class="el" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html">sigc::trackable</a></td></tr>
<tr class="memitem:a3338954d7565534bd945290b798e13ed inherit pub_types_structsigc_1_1trackable"><td class="memItemLeft" align="right" valign="top">typedef internal::func_destroy_notify&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#a3338954d7565534bd945290b798e13ed">func_destroy_notify</a></td></tr>
<tr class="separator:a3338954d7565534bd945290b798e13ed inherit pub_types_structsigc_1_1trackable"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_types_classGnome_1_1Gda_1_1DataModel"><td colspan="2" onclick="javascript:toggleInherit('pub_types_classGnome_1_1Gda_1_1DataModel')"><img src="closed.png" alt="-"/>&#160;Public Types inherited from <a class="el" href="classGnome_1_1Gda_1_1DataModel.html">Gnome::Gda::DataModel</a></td></tr>
<tr class="memitem:a0ed66299310af38e618f740a79fc3c52 inherit pub_types_classGnome_1_1Gda_1_1DataModel"><td class="memItemLeft" align="right" valign="top">typedef <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a00965.html">std::vector</a>&lt; <a class="el" href="classGnome_1_1Gda_1_1Value.html">Value</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGnome_1_1Gda_1_1DataModel.html#a0ed66299310af38e618f740a79fc3c52">ValueVector</a></td></tr>
<tr class="separator:a0ed66299310af38e618f740a79fc3c52 inherit pub_types_classGnome_1_1Gda_1_1DataModel"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table>
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<div class="textblock"><p>Proxy to hold modifications for any <a class="el" href="classGnome_1_1Gda_1_1DataModel.html" title="Abstract DataModel (Base class for all DataModels). ">DataModel</a>, providing the <a class="el" href="classGnome_1_1Gda_1_1DataModel.html" title="Abstract DataModel (Base class for all DataModels). ">DataModel</a> interface itself. </p>
<p>This object stores modifications made to a <a class="el" href="classGnome_1_1Gda_1_1DataModel.html" title="Abstract DataModel (Base class for all DataModels). ">DataModel</a> object which is proxied until asked to make the changes inside the <a class="el" href="classGnome_1_1Gda_1_1DataModel.html" title="Abstract DataModel (Base class for all DataModels). ">DataModel</a>. It also filters the proxied data model to show only a sample (a defined number of continuous rows) of it.</p>
<p>Specifically, for a proxied data model having nb_cols columns and nb_rows rows, the <a class="el" href="classGnome_1_1Gda_1_1DataProxy.html" title="Proxy to hold modifications for any DataModel, providing the DataModel interface itself. ">DataProxy</a> object has the following attributes:</p><ul>
<li>2 * nb_cols columns:<ul>
<li>The first (&gt;= 0) nb_cols columns are the current values stored in the proxy (which correspond to the values of the proxied data model if the considered row has not been changed). The associated values are writable.</li>
<li>The last nb_cols columns are the values stored in the proxied data model, at column col - nb_cols.</li>
</ul>
</li>
<li>A variable number of rows depending on the following attributes:<ul>
<li>Whether the proxy is configured to have an empty row as the first row.</li>
<li>Whether the proxy only displays parts of the proxied data model.</li>
<li>Whether new rows have been added to the proxy.</li>
</ul>
</li>
</ul>
<p>Note that unless explicitely mentioned, the columns are read-only. </p>
</div><h2 class="groupheader">Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="a88869ea56de5982a219dd1036460a2f4"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">Gnome::Gda::DataProxy::DataProxy </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html">DataProxy</a>&amp;&amp;&#160;</td>
          <td class="paramname"><em>src</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">noexcept</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a class="anchor" id="a144479c7506c3acafad2c3d0d62a21ed"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual Gnome::Gda::DataProxy::~DataProxy </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span><span class="mlabel">noexcept</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a class="anchor" id="a1ca28f2466df84a1080959accdc43861"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">Gnome::Gda::DataProxy::DataProxy </td>
          <td>(</td>
          <td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGnome_1_1Gda_1_1DataModel.html">DataModel</a> &gt;&amp;&#160;</td>
          <td class="paramname"><em>model</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">explicit</span><span class="mlabel">protected</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<h2 class="groupheader">Member Function Documentation</h2>
<a class="anchor" id="af6cb66b0b79c7401417f1ec8f1379285"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gnome::Gda::DataProxy::alter_value_attributes </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>proxy_row</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>col</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="namespaceGnome_1_1Gda.html#a9f6ae7fb1f39a3e8f221f95151e89e28">ValueAttribute</a>&#160;</td>
          <td class="paramname"><em>alter_flags</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Alters the attributes of the value stored at (proxy_row, col) in <em>proxy</em>. </p>
<p>the <em>alter_flags</em> can only contain the GDA_VALUE_ATTR_IS_NULL, GDA_VALUE_ATTR_IS_DEFAULT and GDA_VALUE_ATTR_IS_UNCHANGED flags (other flags are ignored).</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">proxy_row</td><td>A proxy row number. </td></tr>
    <tr><td class="paramname">col</td><td>A valid column number. </td></tr>
    <tr><td class="paramname">alter_flags</td><td>Flags to alter the attributes. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="acd2cf6caca93fe6e871a9f2a5940aabd"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool Gnome::Gda::DataProxy::apply_all_changes </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Apply all the changes stored in the proxy to the proxied data model. </p>
<p>The changes are done row after row, and if an error occurs, then it is possible that not all the changes to all the rows have been applied.</p>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if no error occurred. </dd></dl>

</div>
</div>
<a class="anchor" id="ab8583dac60b58bf33d063c92f6d99474"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gnome::Gda::DataProxy::apply_row_changes </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>proxy_row</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Commits the modified data in the proxy back into the <a class="el" href="classGnome_1_1Gda_1_1DataModel.html" title="Abstract DataModel (Base class for all DataModels). ">Gda::DataModel</a>. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">proxy_row</td><td>The row number to commit. </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if no error occurred. </dd></dl>

</div>
</div>
<a class="anchor" id="a1878e859aa43f71018aa4eb9c7cd9de2"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool Gnome::Gda::DataProxy::cancel_all_changes </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Cancel all the changes stored in the proxy (the <em>proxy</em> will be reset to its state as it was just after creation). </p>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if no error occurred. </dd></dl>

</div>
</div>
<a class="anchor" id="abe2edadb419b26915650e77e07489a0f"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gnome::Gda::DataProxy::cancel_row_changes </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>proxy_row</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>col</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Resets data at the corresponding row and column. </p>
<p>If <em>proxy_row</em> corresponds to a new row, then that new row is deleted from <em>proxy</em>.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">proxy_row</td><td>The row to cancel changes. </td></tr>
    <tr><td class="paramname">col</td><td>The column to cancel changes, or less than 0 to cancel any change on the <em>row</em> row. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="ad5a5f8ac4afede919da02580b4081aa3"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">static <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt;<a class="el" href="classGnome_1_1Gda_1_1DataProxy.html">DataProxy</a>&gt; Gnome::Gda::DataProxy::create </td>
          <td>(</td>
          <td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGnome_1_1Gda_1_1DataModel.html">DataModel</a> &gt;&amp;&#160;</td>
          <td class="paramname"><em>model</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a class="anchor" id="a0a02bfb027d48ff4578a6edf0f4fea22"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gnome::Gda::DataProxy::erase </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>proxy_row</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Marks the row <em>proxy_row</em> to be deleted. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">proxy_row</td><td>A proxy row number. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="ae5ea4f7fd12b2ce693f111bcc1950801"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> Gnome::Gda::DataProxy::get_filter_expr </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Get the current filter expression used by <em>proxy</em>. </p>
<dl class="section return"><dt>Returns</dt><dd>The current filter expression or <code>0</code> if no filter has been set. </dd></dl>

</div>
</div>
<a class="anchor" id="aaae882af4ed8f3f658094d19379bd379"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gnome::Gda::DataProxy::get_filter_expr </td>
          <td>(</td>
          <td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;&#160;</td>
          <td class="paramname"><em>filter_expr</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Sets a filter among the rows presented by <em>proxy</em>. </p>
<p>The filter is defined by a filter expression which can be any SQL valid expression using <em>proxy's</em> columns. For instance if <em>proxy</em> has the "id" and "name" columns, then a filter can be "length(name) &lt; 5" to filter only the rows where the length of the name is strictly inferior to 5, or "id &gt;= 1000 and id &lt; 2000 order by name limit 50" to filter only the rows where the id is between 1000 and 2000, ordered by name and limited to 50 rows.</p>
<p>Note about column names: real column names can be used (double quoted if necessary), but columns can also be named "_&lt;column number&gt;" with column numbers starting at 1.</p>
<p>Note that any previous filter expression is replaced with the new <em>filter_expr</em> if no error occurs (if an error occurs, then any previous filter is left unchanged).</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">filter_expr</td><td>An SQL based expression which will filter the contents of <em>proxy</em>, or <code>0</code> to remove any previous filter. </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if no error occurred. </dd></dl>

</div>
</div>
<a class="anchor" id="af4b50dc08b41895f5b01f2818e458396"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int Gnome::Gda::DataProxy::get_filtered_n_rows </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Get the total number of filtered rows in <em>proxy</em> if a filter has been applied. </p>
<p>As new rows (rows added to the proxy and not yet added to the proxied data model) and rows to remove (rows marked for removal but not yet removed from the proxied data model) are also filtered, the returned number also contains references to new rows and rows to be removed.</p>
<dl class="section return"><dt>Returns</dt><dd>The number of filtered rows in <em>proxy</em>, or -1 if no filter has been applied. </dd></dl>

</div>
</div>
<a class="anchor" id="a77c6ccd92246e4efb6be1b246460bc36"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int Gnome::Gda::DataProxy::get_n_modified_rows </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Get the number of rows which have been modified in the proxy (the sum of rows existing in the proxied data model which have been modified, and new rows). </p>
<dl class="section return"><dt>Returns</dt><dd>The number of modified rows. </dd></dl>

</div>
</div>
<a class="anchor" id="a6355be309052503450a8c0cc710860b7"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int Gnome::Gda::DataProxy::get_n_new_rows </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Get the number of rows which have been added to <em>proxy</em> and which are not part of the proxied data model. </p>
<dl class="section return"><dt>Returns</dt><dd>The number of new rows. </dd></dl>

</div>
</div>
<a class="anchor" id="a5d074bd6e3c57274050f74c9b96005a3"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt;<a class="el" href="classGnome_1_1Gda_1_1DataModel.html">DataModel</a>&gt; Gnome::Gda::DataProxy::get_proxied_model </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Fetch the <a class="el" href="classGnome_1_1Gda_1_1DataModel.html" title="Abstract DataModel (Base class for all DataModels). ">Gda::DataModel</a> which <em>proxy</em> does proxy. </p>
<dl class="section return"><dt>Returns</dt><dd>The proxied data model. </dd></dl>

</div>
</div>
<a class="anchor" id="aa014abf27a434c4389ce43caf1d166ad"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt;const <a class="el" href="classGnome_1_1Gda_1_1DataModel.html">DataModel</a>&gt; Gnome::Gda::DataProxy::get_proxied_model </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Fetch the <a class="el" href="classGnome_1_1Gda_1_1DataModel.html" title="Abstract DataModel (Base class for all DataModels). ">Gda::DataModel</a> which <em>proxy</em> does proxy. </p>
<dl class="section return"><dt>Returns</dt><dd>The proxied data model. </dd></dl>

</div>
</div>
<a class="anchor" id="ab08280878e7a001ddca503f11cd14c32"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int Gnome::Gda::DataProxy::get_proxied_model_n_cols </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Get the number of columns in the proxied data model. </p>
<dl class="section return"><dt>Returns</dt><dd>The number of columns, or -1 if an error occurred. </dd></dl>

</div>
</div>
<a class="anchor" id="aa87b3e19bc5995a249719a09068d9d8d"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int Gnome::Gda::DataProxy::get_proxied_model_n_rows </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Get the number of rows in the proxied data model. </p>
<dl class="section return"><dt>Returns</dt><dd>The number of rows, or -1 if the number of rows is not known. </dd></dl>

</div>
</div>
<a class="anchor" id="aff1c2ef56b16ec4fc9709ebb2d3c9c5f"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int Gnome::Gda::DataProxy::get_proxied_model_row </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>proxy_row</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Get the <em>proxy's</em> proxied model row corresponding to <em>proxy_row</em>. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">proxy_row</td><td>A proxy row number. </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>The proxied model's row, or -1 if <em>proxy</em> row which only exists <em>proxy</em>. </dd></dl>

</div>
</div>
<a class="anchor" id="af9094f0b09ab12567c9aebd3e80369d4"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int Gnome::Gda::DataProxy::get_sample_end </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Get the number of the last row to be available in <em>proxy</em> (in reference to the proxied data model) </p>
<dl class="section return"><dt>Returns</dt><dd>The number of the last proxied model's row. </dd></dl>

</div>
</div>
<a class="anchor" id="a11cb9f691247736f5ed69d108cd27492"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int Gnome::Gda::DataProxy::get_sample_size </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Get the size of each chunk of data displayed at a time. </p>
<dl class="section return"><dt>Returns</dt><dd>The chunk (or sample) size, or 0 if chunking is disabled. </dd></dl>

</div>
</div>
<a class="anchor" id="a9d9e4f0c62cd82886a5a33264816dd2e"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int Gnome::Gda::DataProxy::get_sample_start </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Get the number of the first row to be available in <em>proxy</em> (in reference to the proxied data model) </p>
<dl class="section return"><dt>Returns</dt><dd>The number of the first proxied model's row. </dd></dl>

</div>
</div>
<a class="anchor" id="a1df68f63738799363c557f8a5366c6f5"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">static GType Gnome::Gda::DataProxy::get_type </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Get the GType for this class, for use with the underlying GObject type system. </p>

</div>
</div>
<a class="anchor" id="a3b597666c13ba06b2fc0c66a5e709d36"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="namespaceGnome_1_1Gda.html#a9f6ae7fb1f39a3e8f221f95151e89e28">ValueAttribute</a> Gnome::Gda::DataProxy::get_value_attributes </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>proxy_row</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>col</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Get the attributes of the value stored at (proxy_row, col) in <em>proxy</em>, which is an ORed value of <a class="el" href="namespaceGnome_1_1Gda.html#a9f6ae7fb1f39a3e8f221f95151e89e28">Gda::ValueAttribute</a> flags. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">proxy_row</td><td>A proxy row. </td></tr>
    <tr><td class="paramname">col</td><td>A valid proxy column. </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>The attribute. </dd></dl>

</div>
</div>
<a class="anchor" id="a8bed3e92e6daa3cabcafb66beacae73b"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classGnome_1_1Gda_1_1DataModel.html#a0ed66299310af38e618f740a79fc3c52">ValueVector</a> Gnome::Gda::DataProxy::get_values </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>proxy_row</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a00965.html">std::vector</a>&lt; int &gt; &amp;&#160;</td>
          <td class="paramname"><em>cols_index</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Retrieve a whole list of values from the <em>proxy</em> data model. </p>
<p>This function calls gda_data_proxy_get_value() for each column index specified in <em>cols_index</em>, and generates a SList on the way.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">proxy_row</td><td>A proxy row. </td></tr>
    <tr><td class="paramname">cols_index</td><td>Array containing the columns for which the values are requested. </td></tr>
    <tr><td class="paramname">n_cols</td><td>Size of <em>cols_index</em>. </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>A new list of values (the list must be freed, not the values), or <code>0</code> if an error occurred. </dd></dl>

</div>
</div>
<a class="anchor" id="a20ff1348fc0013fb9c33c82d7d494401"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">GdaDataProxy* Gnome::Gda::DataProxy::gobj </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Provides access to the underlying C GObject. </p>

</div>
</div>
<a class="anchor" id="a596dbec3180a1f066831130ae85a06dc"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const GdaDataProxy* Gnome::Gda::DataProxy::gobj </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Provides access to the underlying C GObject. </p>

</div>
</div>
<a class="anchor" id="a13a9f1ff550fdc9d56d56326b3c4d913"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">GdaDataProxy* Gnome::Gda::DataProxy::gobj_copy </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs. </p>

</div>
</div>
<a class="anchor" id="a6a5ec8f0ff423656d3eb90a79748382d"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool Gnome::Gda::DataProxy::has_changed </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Tells if <em>proxy</em> contains any modifications not applied to the proxied data model. </p>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if there are some modifications in <em>proxy</em>. </dd></dl>

</div>
</div>
<a class="anchor" id="a968cd04871fb3c21948f3798a5848b8e"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool Gnome::Gda::DataProxy::is_read_only </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if the proxied data model is itself read-only. </dd></dl>

</div>
</div>
<a class="anchor" id="ac689dfcbe7495f5c336e130840846e2e"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual void Gnome::Gda::DataProxy::on_row_changes_applied </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>row</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>proxied_row</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>This is a default handler for the signal <a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#a3bc587aa8ea4513c30fe70847337b4a0">signal_row_changes_applied()</a>. </p>

</div>
</div>
<a class="anchor" id="a1e1109b76776daeddea821cbab3c9cda"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual void Gnome::Gda::DataProxy::on_row_delete_changed </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>row</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"><em>to_be_deleted</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>This is a default handler for the signal <a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#a9c6b2591ccb7c86a91dd5154507dc187">signal_row_delete_changed()</a>. </p>

</div>
</div>
<a class="anchor" id="a37b75ea13cca51a9500609979ed3e572"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual void Gnome::Gda::DataProxy::on_sample_changed </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>sample_start</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>sample_end</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>This is a default handler for the signal <a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#a36cfa77d1b108d99093e1a605df4348c">signal_sample_changed()</a>. </p>

</div>
</div>
<a class="anchor" id="a606d9d28b53ede9b1d335e4968247324"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual void Gnome::Gda::DataProxy::on_sample_size_changed </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>sample_size</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>This is a default handler for the signal <a class="el" href="classGnome_1_1Gda_1_1DataProxy.html#ac6d3e410ebae7cb6f90064eeaf7a2efa">signal_sample_size_changed()</a>. </p>

</div>
</div>
<a class="anchor" id="a72009c96a749c0ef27d1488a25e3816b"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html">DataProxy</a>&amp; Gnome::Gda::DataProxy::operator= </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classGnome_1_1Gda_1_1DataProxy.html">DataProxy</a>&amp;&amp;&#160;</td>
          <td class="paramname"><em>src</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">noexcept</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a class="anchor" id="a03c84472e422e8854245aa11a830e7e4"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>&lt; bool &gt; Gnome::Gda::DataProxy::property_defer_sync </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Tells if changes to the sample of rows displayed is done in background in several steps or if it's done in one step. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="aafd9861e707d9d19e7128143c95f9437"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>&lt; bool &gt; Gnome::Gda::DataProxy::property_defer_sync </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Tells if changes to the sample of rows displayed is done in background in several steps or if it's done in one step. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="ac4490c795536742bf000b2463c244d13"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>&lt; <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt;<a class="el" href="classGnome_1_1Gda_1_1DataModel.html">DataModel</a>&gt; &gt; Gnome::Gda::DataProxy::property_model </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Proxied data model. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a976598ba4890cfa99d412d6ec7c97e44"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>&lt; <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt;<a class="el" href="classGnome_1_1Gda_1_1DataModel.html">DataModel</a>&gt; &gt; Gnome::Gda::DataProxy::property_model </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Proxied data model. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a794414f493075acc7890cda621b1c44a"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>&lt; bool &gt; Gnome::Gda::DataProxy::property_prepend_null_entry </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Tells if a row composed of NULL values is inserted as the proxy's first row. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="ac554ad7f147bd7c95b7e0a6eec00542e"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>&lt; bool &gt; Gnome::Gda::DataProxy::property_prepend_null_entry </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Tells if a row composed of NULL values is inserted as the proxy's first row. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a53ce5c480efb506ccb402a360a9c5702"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>&lt; int &gt; Gnome::Gda::DataProxy::property_sample_size </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Number of rows which the proxy will contain at any time, like a sliding window on the proxied data model. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="ae6b1e10111ff879945b6a905ed64abbc"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>&lt; int &gt; Gnome::Gda::DataProxy::property_sample_size </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Number of rows which the proxy will contain at any time, like a sliding window on the proxied data model. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a8d36c248041ba85d221bdd9d4a2e7d08"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool Gnome::Gda::DataProxy::row_has_changed </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>proxy_row</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Tells if the row number <em>proxy_row</em> has changed. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">proxy_row</td><td>A proxy row number. </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if the row has changed. </dd></dl>

</div>
</div>
<a class="anchor" id="a2bdadcc3f5f66d2edb191fe211403bbb"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool Gnome::Gda::DataProxy::row_is_deleted </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>proxy_row</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Tells if the row number <em>proxy_row</em> is marked to be deleted. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">proxy_row</td><td>A proxy row number. </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if the row is marked to be deleted. </dd></dl>

</div>
</div>
<a class="anchor" id="a779cd3b00bfc8b0126a62dbfac1ec857"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool Gnome::Gda::DataProxy::row_is_inserted </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>proxy_row</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Tells if the row number <em>proxy_row</em> is a row which has been inserted in <em>proxy</em> (and is thus not in the proxied data model). </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">proxy_row</td><td>A proxy row number. </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if the row is an inserted row. </dd></dl>

</div>
</div>
<a class="anchor" id="ac3b6ccfc2b86577326036510ed7286bc"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gnome::Gda::DataProxy::set_ordering_column </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>col</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Orders by the <em>col</em> column. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">col</td><td>The column number to order from. </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if no error occurred. </dd></dl>

</div>
</div>
<a class="anchor" id="a519edc04a930dda39ece993319beeb05"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gnome::Gda::DataProxy::set_sample_size </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>sample_size</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Sets the size of each chunk of data to display: the maximum number of rows which can be "displayed" at a time (the maximum number of rows which <em>proxy</em> pretends to have). </p>
<p>The default value is arbitrary 300 as it is big enough to be able to display quite a lot of data, but small enough to avoid too much data displayed at the same time.</p>
<dl class="section note"><dt>Note</dt><dd>the rows which have been added but not yet committed will always be displayed regardless of the current chunk of data, and the modified rows which are not visible when the displayed chunk of data changes are still held as modified rows.</dd></dl>
<p>To remove the chunking of the data to display, simply pass <em>sample_size</em> the %0 value.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">sample_size</td><td>The requested size of a chunk, or 0. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="acaa0f674714646ca31d6ec57aab078ae"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gnome::Gda::DataProxy::set_sample_start </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>sample_start</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Sets the number of the first row to be available in <em>proxy</em> (in reference to the proxied data model) </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">sample_start</td><td>The number of the first row to be displayed. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a324cff8212f3dbeb9504e97636dd39dd"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy0.html">Glib::SignalProxy0</a>&lt; void &gt; Gnome::Gda::DataProxy::signal_filter_changed </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">
<dl class="section user"><dt>Slot Prototype:</dt><dd><code>void on_my_filter_changed()</code> </dd></dl>

</div>
</div>
<a class="anchor" id="a3bc587aa8ea4513c30fe70847337b4a0"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy2.html">Glib::SignalProxy2</a>&lt; void,int,int &gt; Gnome::Gda::DataProxy::signal_row_changes_applied </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">
<dl class="section user"><dt>Slot Prototype:</dt><dd><code>void on_my_row_changes_applied(int row, int proxied_row)</code> </dd></dl>

</div>
</div>
<a class="anchor" id="a9c6b2591ccb7c86a91dd5154507dc187"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy2.html">Glib::SignalProxy2</a>&lt; void,int,bool &gt; Gnome::Gda::DataProxy::signal_row_delete_changed </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">
<dl class="section user"><dt>Slot Prototype:</dt><dd><code>void on_my_row_delete_changed(int row, bool to_be_deleted)</code> </dd></dl>

</div>
</div>
<a class="anchor" id="a36cfa77d1b108d99093e1a605df4348c"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy2.html">Glib::SignalProxy2</a>&lt; void,int,int &gt; Gnome::Gda::DataProxy::signal_sample_changed </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">
<dl class="section user"><dt>Slot Prototype:</dt><dd><code>void on_my_sample_changed(int sample_start, int sample_end)</code> </dd></dl>

</div>
</div>
<a class="anchor" id="ac6d3e410ebae7cb6f90064eeaf7a2efa"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy1.html">Glib::SignalProxy1</a>&lt; void,int &gt; Gnome::Gda::DataProxy::signal_sample_size_changed </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">
<dl class="section user"><dt>Slot Prototype:</dt><dd><code>void on_my_sample_size_changed(int sample_size)</code> </dd></dl>

</div>
</div>
<a class="anchor" id="aedd0dc6781a74ca9c6e9f43d4faa84db"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SignalProxy2.html">Glib::SignalProxy2</a>&lt; <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Error.html">Glib::Error</a>,int,int &gt; Gnome::Gda::DataProxy::signal_validate_row_changes </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">
<dl class="section user"><dt>Slot Prototype:</dt><dd><code><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Error.html">Glib::Error</a> on_my_validate_row_changes(int row, int proxied_row)</code> </dd></dl>

</div>
</div>
<a class="anchor" id="aa924b89d8c77a82af926eed675cf0919"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gnome::Gda::DataProxy::unerase </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>proxy_row</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Remove the "to be deleted" mark at the row <em>proxy_row</em>, if it existed. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">proxy_row</td><td>A proxy row number. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<h2 class="groupheader">Friends And Related Function Documentation</h2>
<a class="anchor" id="aeb2755aa7104f5f143fb823326fac00b"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGnome_1_1Gda_1_1DataProxy.html">Gnome::Gda::DataProxy</a> &gt; wrap </td>
          <td>(</td>
          <td class="paramtype">GdaDataProxy *&#160;</td>
          <td class="paramname"><em>object</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"><em>take_copy</em> = <code>false</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">related</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>A <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/namespaceGlib.html#a671306f4a3a0cae5ab4d7a9d54886592">Glib::wrap()</a> method for this object. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">object</td><td>The C instance. </td></tr>
    <tr><td class="paramname">take_copy</td><td>False if the result should take ownership of the C instance. True if it should take a new copy or ref. </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>A C++ instance that wraps this C instance. </dd></dl>

</div>
</div>
<hr/>The documentation for this class was generated from the following file:<ul>
<li>libgdamm/dataproxy.h</li>
</ul>
</div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Wed Nov 4 2015 15:04:40 for libgdamm by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.9.1
</small></address>
</body>
</html>