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

#include <linux/mm.h>
#include <linux/hugetlb.h>
#include <linux/mman.h>
#include <linux/slab.h>
#include <linux/kernel_stat.h>
#include <linux/swap.h>
#include <linux/vmalloc.h>
#include <linux/pagemap.h>
#include <linux/namei.h>
#include <linux/shm.h>
#include <linux/blkdev.h>
#include <linux/random.h>
#include <linux/writeback.h>
#include <linux/proc_fs.h>
#include <linux/seq_file.h>
#include <linux/init.h>
#include <linux/module.h>
#include <linux/rmap.h>
#include <linux/security.h>
#include <linux/backing-dev.h>
#include <linux/mutex.h>
#include <linux/capability.h>
#include <linux/syscalls.h>
#include <linux/memcontrol.h>

#include <asm/pgtable.h>
#include <asm/tlbflush.h>
#include <linux/swapops.h>
#include <linux/page_cgroup.h>

static DEFINE_SPINLOCK(swap_lock);
static unsigned int nr_swapfiles;
long nr_swap_pages;
long total_swap_pages;
static int swap_overflow;
static int least_priority;

static const char Bad_file[] = "Bad swap file entry ";
static const char Unused_file[] = "Unused swap file entry ";
static const char Bad_offset[] = "Bad swap offset entry ";
static const char Unused_offset[] = "Unused swap offset entry ";

static struct swap_list_t swap_list = {-1, -1};

static struct swap_info_struct swap_info[MAX_SWAPFILES];

static DEFINE_MUTEX(swapon_mutex);

/*
 * We need this because the bdev->unplug_fn can sleep and we cannot
 * hold swap_lock while calling the unplug_fn. And swap_lock
 * cannot be turned into a mutex.
 */
static DECLARE_RWSEM(swap_unplug_sem);

void swap_unplug_io_fn(struct backing_dev_info *unused_bdi, struct page *page)
{
	swp_entry_t entry;

	down_read(&swap_unplug_sem);
	entry.val = page_private(page);
	if (PageSwapCache(page)) {
		struct block_device *bdev = swap_info[swp_type(entry)].bdev;
		struct backing_dev_info *bdi;

		/*
		 * If the page is removed from swapcache from under us (with a
		 * racy try_to_unuse/swapoff) we need an additional reference
		 * count to avoid reading garbage from page_private(page) above.
		 * If the WARN_ON triggers during a swapoff it maybe the race
		 * condition and it's harmless. However if it triggers without
		 * swapoff it signals a problem.
		 */
		WARN_ON(page_count(page) <= 1);

		bdi = bdev->bd_inode->i_mapping->backing_dev_info;
		blk_run_backing_dev(bdi, page);
	}
	up_read(&swap_unplug_sem);
}

/*
 * swapon tell device that all the old swap contents can be discarded,
 * to allow the swap device to optimize its wear-levelling.
 */
static int discard_swap(struct swap_info_struct *si)
{
	struct swap_extent *se;
	int err = 0;

	list_for_each_entry(se, &si->extent_list, list) {
		sector_t start_block = se->start_block << (PAGE_SHIFT - 9);
		sector_t nr_blocks = (sector_t)se->nr_pages << (PAGE_SHIFT - 9);

		if (se->start_page == 0) {
			/* Do not discard the swap header page! */
			start_block += 1 << (PAGE_SHIFT - 9);
			nr_blocks -= 1 << (PAGE_SHIFT - 9);
			if (!nr_blocks)
				continue;
		}

		err = blkdev_issue_discard(si->bdev, start_block,
						nr_blocks, GFP_KERNEL);
		if (err)
			break;

		cond_resched();
	}
	return err;		/* That will often be -EOPNOTSUPP */
}

/*
 * swap allocation tell device that a cluster of swap can now be discarded,
 * to allow the swap device to optimize its wear-levelling.
 */
static void discard_swap_cluster(struct swap_info_struct *si,
				 pgoff_t start_page, pgoff_t nr_pages)
{
	struct swap_extent *se = si->curr_swap_extent;
	int found_extent = 0;

	while (nr_pages) {
		struct list_head *lh;

		if (se->start_page <= start_page &&
		    start_page < se->start_page + se->nr_pages) {
			pgoff_t offset = start_page - se->start_page;
			sector_t start_block = se->start_block + offset;
			sector_t nr_blocks = se->nr_pages - offset;

			if (nr_blocks > nr_pages)
				nr_blocks = nr_pages;
			start_page += nr_blocks;
			nr_pages -= nr_blocks;

			if (!found_extent++)
				si->curr_swap_extent = se;

			start_block <<= PAGE_SHIFT - 9;
			nr_blocks <<= PAGE_SHIFT - 9;
			if (blkdev_issue_discard(si->bdev, start_block,
							nr_blocks, GFP_NOIO))
				break;
		}

		lh = se->list.next;
		if (lh == &si->extent_list)
			lh = lh->next;
		se = list_entry(lh, struct swap_extent, list);
	}
}

static int wait_for_discard(void *word)
{
	schedule();
	return 0;
}

#define SWAPFILE_CLUSTER	256
#define LATENCY_LIMIT		256

static inline unsigned long scan_swap_map(struct swap_info_struct *si)
{
	unsigned long offset;
	unsigned long scan_base;
	unsigned long last_in_cluster = 0;
	int latency_ration = LATENCY_LIMIT;
	int found_free_cluster = 0;

	/*
	 * We try to cluster swap pages by allocating them sequentially
	 * in swap.  Once we've allocated SWAPFILE_CLUSTER pages this
	 * way, however, we resort to first-free allocation, starting
	 * a new cluster.  This prevents us from scattering swap pages
	 * all over the entire swap partition, so that we reduce
	 * overall disk seek times between swap pages.  -- sct
	 * But we do now try to find an empty cluster.  -Andrea
	 * And we let swap pages go all over an SSD partition.  Hugh
	 */

	si->flags += SWP_SCANNING;
	scan_base = offset = si->cluster_next;

	if (unlikely(!si->cluster_nr--)) {
		if (si->pages - si->inuse_pages < SWAPFILE_CLUSTER) {
			si->cluster_nr = SWAPFILE_CLUSTER - 1;
			goto checks;
		}
		if (si->flags & SWP_DISCARDABLE) {
			/*
			 * Start range check on racing allocations, in case
			 * they overlap the cluster we eventually decide on
			 * (we scan without swap_lock to allow preemption).
			 * It's hardly conceivable that cluster_nr could be
			 * wrapped during our scan, but don't depend on it.
			 */
			if (si->lowest_alloc)
				goto checks;
			si->lowest_alloc = si->max;
			si->highest_alloc = 0;
		}
		spin_unlock(&swap_lock);

		/*
		 * If seek is expensive, start searching for new cluster from
		 * start of partition, to minimize the span of allocated swap.
		 * But if seek is cheap, search from our current position, so
		 * that swap is allocated from all over the partition: if the
		 * Flash Translation Layer only remaps within limited zones,
		 * we don't want to wear out the first zone too quickly.
		 */
		if (!(si->flags & SWP_SOLIDSTATE))
			scan_base = offset = si->lowest_bit;
		last_in_cluster = offset + SWAPFILE_CLUSTER - 1;

		/* Locate the first empty (unaligned) cluster */
		for (; last_in_cluster <= si->highest_bit; offset++) {
			if (si->swap_map[offset])
				last_in_cluster = offset + SWAPFILE_CLUSTER;
			else if (offset == last_in_cluster) {
				spin_lock(&swap_lock);
				offset -= SWAPFILE_CLUSTER - 1;
				si->cluster_next = offset;
				si->cluster_nr = SWAPFILE_CLUSTER - 1;
				found_free_cluster = 1;
				goto checks;
			}
			if (unlikely(--latency_ration < 0)) {
				cond_resched();
				latency_ration = LATENCY_LIMIT;
			}
		}

		offset = si->lowest_bit;
		last_in_cluster = offset + SWAPFILE_CLUSTER - 1;

		/* Locate the first empty (unaligned) cluster */
		for (; last_in_cluster < scan_base; offset++) {
			if (si->swap_map[offset])
				last_in_cluster = offset + SWAPFILE_CLUSTER;
			else if (offset == last_in_cluster) {
				spin_lock(&swap_lock);
				offset -= SWAPFILE_CLUSTER - 1;
				si->cluster_next = offset;
				si->cluster_nr = SWAPFILE_CLUSTER - 1;
				found_free_cluster = 1;
				goto checks;
			}
			if (unlikely(--latency_ration < 0)) {
				cond_resched();
				latency_ration = LATENCY_LIMIT;
			}
		}

		offset = scan_base;
		spin_lock(&swap_lock);
		si->cluster_nr = SWAPFILE_CLUSTER - 1;
		si->lowest_alloc = 0;
	}

checks:
	if (!(si->flags & SWP_WRITEOK))
		goto no_page;
	if (!si->highest_bit)
		goto no_page;
	if (offset > si->highest_bit)
		scan_base = offset = si->lowest_bit;
	if (si->swap_map[offset])
		goto scan;

	if (offset == si->lowest_bit)
		si->lowest_bit++;
	if (offset == si->highest_bit)
		si->highest_bit--;
	si->inuse_pages++;
	if (si->inuse_pages == si->pages) {
		si->lowest_bit = si->max;
		si->highest_bit = 0;
	}
	si->swap_map[offset] = 1;
	si->cluster_next = offset + 1;
	si->flags -= SWP_SCANNING;

	if (si->lowest_alloc) {
		/*
		 * Only set when SWP_DISCARDABLE, and there's a scan
		 * for a free cluster in progress or just completed.
		 */
		if (found_free_cluster) {
			/*
			 * To optimize wear-levelling, discard the
			 * old data of the cluster, taking care not to
			 * discard any of its pages that have already
			 * been allocated by racing tasks (offset has
			 * already stepped over any at the beginning).
			 */
			if (offset < si->highest_alloc &&
			    si->lowest_alloc <= last_in_cluster)
				last_in_cluster = si->lowest_alloc - 1;
			si->flags |= SWP_DISCARDING;
			spin_unlock(&swap_lock);

			if (offset < last_in_cluster)
				discard_swap_cluster(si, offset,
					last_in_cluster - offset + 1);

			spin_lock(&swap_lock);
			si->lowest_alloc = 0;
			si->flags &= ~SWP_DISCARDING;

			smp_mb();	/* wake_up_bit advises this */
			wake_up_bit(&si->flags, ilog2(SWP_DISCARDING));

		} else if (si->flags & SWP_DISCARDING) {
			/*
			 * Delay using pages allocated by racing tasks
			 * until the whole discard has been issued. We
			 * could defer that delay until swap_writepage,
			 * but it's easier to keep this self-contained.
			 */
			spin_unlock(&swap_lock);
			wait_on_bit(&si->flags, ilog2(SWP_DISCARDING),
				wait_for_discard, TASK_UNINTERRUPTIBLE);
			spin_lock(&swap_lock);
		} else {
			/*
			 * Note pages allocated by racing tasks while
			 * scan for a free cluster is in progress, so
			 * that its final discard can exclude them.
			 */
			if (offset < si->lowest_alloc)
				si->lowest_alloc = offset;
			if (offset > si->highest_alloc)
				si->highest_alloc = offset;
		}
	}
	return offset;

scan:
	spin_unlock(&swap_lock);
	while (++offset <= si->highest_bit) {
		if (!si->swap_map[offset]) {
			spin_lock(&swap_lock);
			goto checks;
		}
		if (unlikely(--latency_ration < 0)) {
			cond_resched();
			latency_ration = LATENCY_LIMIT;
		}
	}
	offset = si->lowest_bit;
	while (++offset < scan_base) {
		if (!si->swap_map[offset]) {
			spin_lock(&swap_lock);
			goto checks;
		}
		if (unlikely(--latency_ration < 0)) {
			cond_resched();
			latency_ration = LATENCY_LIMIT;
		}
	}
	spin_lock(&swap_lock);

no_page:
	si->flags -= SWP_SCANNING;
	return 0;
}

swp_entry_t get_swap_page(void)
{
	struct swap_info_struct *si;
	pgoff_t offset;
	int type, next;
	int wrapped = 0;

	spin_lock(&swap_lock);
	if (nr_swap_pages <= 0)
		goto noswap;
	nr_swap_pages--;

	for (type = swap_list.next; type >= 0 && wrapped < 2; type = next) {
		si = swap_info + type;
		next = si->next;
		if (next < 0 ||
		    (!wrapped && si->prio != swap_info[next].prio)) {
			next = swap_list.head;
			wrapped++;
		}

		if (!si->highest_bit)
			continue;
		if (!(si->flags & SWP_WRITEOK))
			continue;

		swap_list.next = next;
		offset = scan_swap_map(si);
		if (offset) {
			spin_unlock(&swap_lock);
			return swp_entry(type, offset);
		}
		next = swap_list.next;
	}

	nr_swap_pages++;
noswap:
	spin_unlock(&swap_lock);
	return (swp_entry_t) {0};
}

swp_entry_t get_swap_page_of_type(int type)
{
	struct swap_info_struct *si;
	pgoff_t offset;

	spin_lock(&swap_lock);
	si = swap_info + type;
	if (si->flags & SWP_WRITEOK) {
		nr_swap_pages--;
		offset = scan_swap_map(si);
		if (offset) {
			spin_unlock(&swap_lock);
			return swp_entry(type, offset);
		}
		nr_swap_pages++;
	}
	spin_unlock(&swap_lock);
	return (swp_entry_t) {0};
}

static struct swap_info_struct * swap_info_get(swp_entry_t entry)
{
	struct swap_info_struct * p;
	unsigned long offset, type;

	if (!entry.val)
		goto out;
	type = swp_type(entry);
	if (type >= nr_swapfiles)
		goto bad_nofile;
	p = & swap_info[type];
	if (!(p->flags & SWP_USED))
		goto bad_device;
	offset = swp_offset(entry);
	if (offset >= p->max)
		goto bad_offset;
	if (!p->swap_map[offset])
		goto bad_free;
	spin_lock(&swap_lock);
	return p;

bad_free:
	printk(KERN_ERR "swap_free: %s%08lx\n", Unused_offset, entry.val);
	goto out;
bad_offset:
	printk(KERN_ERR "swap_free: %s%08lx\n", Bad_offset, entry.val);
	goto out;
bad_device:
	printk(KERN_ERR "swap_free: %s%08lx\n", Unused_file, entry.val);
	goto out;
bad_nofile:
	printk(KERN_ERR "swap_free: %s%08lx\n", Bad_file, entry.val);
out:
	return NULL;
}

static int swap_entry_free(struct swap_info_struct *p, swp_entry_t ent)
{
	unsigned long offset = swp_offset(ent);
	int count = p->swap_map[offset];

	if (count < SWAP_MAP_MAX) {
		count--;
		p->swap_map[offset] = count;
		if (!count) {
			if (offset < p->lowest_bit)
				p->lowest_bit = offset;
			if (offset > p->highest_bit)
				p->highest_bit = offset;
			if (p->prio > swap_info[swap_list.next].prio)
				swap_list.next = p - swap_info;
			nr_swap_pages++;
			p->inuse_pages--;
			mem_cgroup_uncharge_swap(ent);
		}
	}
	return count;
}

/*
 * Caller has made sure that the swapdevice corresponding to entry
 * is still around or has not been recycled.
 */
void swap_free(swp_entry_t entry)
{
	struct swap_info_struct * p;

	p = swap_info_get(entry);
	if (p) {
		swap_entry_free(p, entry);
		spin_unlock(&swap_lock);
	}
}

/*
 * How many references to page are currently swapped out?
 */
static inline int page_swapcount(struct page *page)
{
	int count = 0;
	struct swap_info_struct *p;
	swp_entry_t entry;

	entry.val = page_private(page);
	p = swap_info_get(entry);
	if (p) {
		/* Subtract the 1 for the swap cache itself */
		count = p->swap_map[swp_offset(entry)] - 1;
		spin_unlock(&swap_lock);
	}
	return count;
}

/*
 * We can write to an anon page without COW if there are no other references
 * to it.  And as a side-effect, free up its swap: because the old content
 * on disk will never be read, and seeking back there to write new content
 * later would only waste time away from clustering.
 */
int reuse_swap_page(struct page *page)
{
	int count;

	VM_BUG_ON(!PageLocked(page));
	count = page_mapcount(page);
	if (count <= 1 && PageSwapCache(page)) {
		count += page_swapcount(page);
		if (count == 1 && !PageWriteback(page)) {
			delete_from_swap_cache(page);
			SetPageDirty(page);
		}
	}
	return count == 1;
}

/*
 * If swap is getting full, or if there are no more mappings of this page,
 * then try_to_free_swap is called to free its swap space.
 */
int try_to_free_swap(struct page *page)
{
	VM_BUG_ON(!PageLocked(page));

	if (!PageSwapCache(page))
		return 0;
	if (PageWriteback(page))
		return 0;
	if (page_swapcount(page))
		return 0;

	delete_from_swap_cache(page);
	SetPageDirty(page);
	return 1;
}

/*
 * Free the swap entry like above, but also try to
 * free the page cache entry if it is the last user.
 */
int free_swap_and_cache(swp_entry_t entry)
{
	struct swap_info_struct *p;
	struct page *page = NULL;

	if (is_migration_entry(entry))
		return 1;

	p = swap_info_get(entry);
	if (p) {
		if (swap_entry_free(p, entry) == 1) {
			page = find_get_page(&swapper_space, entry.val);
			if (page && !trylock_page(page)) {
				page_cache_release(page);
				page = NULL;
			}
		}
		spin_unlock(&swap_lock);
	}
	if (page) {
		/*
		 * Not mapped elsewhere, or swap space full? Free it!
		 * Also recheck PageSwapCache now page is locked (above).
		 */
		if (PageSwapCache(page) && !PageWriteback(page) &&
				(!page_mapped(page) || vm_swap_full())) {
			delete_from_swap_cache(page);
			SetPageDirty(page);
		}
		unlock_page(page);
		page_cache_release(page);
	}
	return p != NULL;
}

#ifdef CONFIG_HIBERNATION
/*
 * Find the swap type that corresponds to given device (if any).
 *
 * @offset - number of the PAGE_SIZE-sized block of the device, starting
 * from 0, in which the swap header is expected to be located.
 *
 * This is needed for the suspend to disk (aka swsusp).
 */
int swap_type_of(dev_t device, sector_t offset, struct block_device **bdev_p)
{
	struct block_device *bdev = NULL;
	int i;

	if (device)
		bdev = bdget(device);

	spin_lock(&swap_lock);
	for (i = 0; i < nr_swapfiles; i++) {
		struct swap_info_struct *sis = swap_info + i;

		if (!(sis->flags & SWP_WRITEOK))
			continue;

		if (!bdev) {
			if (bdev_p)
				*bdev_p = bdget(sis->bdev->bd_dev);

			spin_unlock(&swap_lock);
			return i;
		}
		if (bdev == sis->bdev) {
			struct swap_extent *se;

			se = list_entry(sis->extent_list.next,
					struct swap_extent, list);
			if (se->start_block == offset) {
				if (bdev_p)
					*bdev_p = bdget(sis->bdev->bd_dev);

				spin_unlock(&swap_lock);
				bdput(bdev);
				return i;
			}
		}
	}
	spin_unlock(&swap_lock);
	if (bdev)
		bdput(bdev);

	return -ENODEV;
}

/*
 * Return either the total number of swap pages of given type, or the number
 * of free pages of that type (depending on @free)
 *
 * This is needed for software suspend
 */
unsigned int count_swap_pages(int type, int free)
{
	unsigned int n = 0;

	if (type < nr_swapfiles) {
		spin_lock(&swap_lock);
		if (swap_info[type].flags & SWP_WRITEOK) {
			n = swap_info[type].pages;
			if (free)
				n -= swap_info[type].inuse_pages;
		}
		spin_unlock(&swap_lock);
	}
	return n;
}
#endif

/*
 * No need to decide whether this PTE shares the swap entry with others,
 * just let do_wp_page work it out if a write is requested later - to
 * force COW, vm_page_prot omits write permission from any private vma.
 */
static int unuse_pte(struct vm_area_struct *vma, pmd_t *pmd,
		unsigned long addr, swp_entry_t entry, struct page *page)
{
	struct mem_cgroup *ptr = NULL;
	spinlock_t *ptl;
	pte_t *pte;
	int ret = 1;

	if (mem_cgroup_try_charge_swapin(vma->vm_mm, page, GFP_KERNEL, &ptr)) {
		ret = -ENOMEM;
		goto out_nolock;
	}

	pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
	if (unlikely(!pte_same(*pte, swp_entry_to_pte(entry)))) {
		if (ret > 0)
			mem_cgroup_cancel_charge_swapin(ptr);
		ret = 0;
		goto out;
	}

	inc_mm_counter(vma->vm_mm, anon_rss);
	get_page(page);
	set_pte_at(vma->vm_mm, addr, pte,
		   pte_mkold(mk_pte(page, vma->vm_page_prot)));
	page_add_anon_rmap(page, vma, addr);
	mem_cgroup_commit_charge_swapin(page, ptr);
	swap_free(entry);
	/*
	 * Move the page to the active list so it is not
	 * immediately swapped out again after swapon.
	 */
	activate_page(page);
out:
	pte_unmap_unlock(pte, ptl);
out_nolock:
	return ret;
}

static int unuse_pte_range(struct vm_area_struct *vma, pmd_t *pmd,
				unsigned long addr, unsigned long end,
				swp_entry_t entry, struct page *page)
{
	pte_t swp_pte = swp_entry_to_pte(entry);
	pte_t *pte;
	int ret = 0;

	/*
	 * We don't actually need pte lock while scanning for swp_pte: since
	 * we hold page lock and mmap_sem, swp_pte cannot be inserted into the
	 * page table while we're scanning; though it could get zapped, and on
	 * some architectures (e.g. x86_32 with PAE) we might catch a glimpse
	 * of unmatched parts which look like swp_pte, so unuse_pte must
	 * recheck under pte lock.  Scanning without pte lock lets it be
	 * preemptible whenever CONFIG_PREEMPT but not CONFIG_HIGHPTE.
	 */
	pte = pte_offset_map(pmd, addr);
	do {
		/*
		 * swapoff spends a _lot_ of time in this loop!
		 * Test inline before going to call unuse_pte.
		 */
		if (unlikely(pte_same(*pte, swp_pte))) {
			pte_unmap(pte);
			ret = unuse_pte(vma, pmd, addr, entry, page);
			if (ret)
				goto out;
			pte = pte_offset_map(pmd, addr);
		}
	} while (pte++, addr += PAGE_SIZE, addr != end);
	pte_unmap(pte - 1);
out:
	return ret;
}

static inline int unuse_pmd_range(struct vm_area_struct *vma, pud_t *pud,
				unsigned long addr, unsigned long end,
				swp_entry_t entry, struct page *page)
{
	pmd_t *pmd;
	unsigned long next;
	int ret;

	pmd = pmd_offset(pud, addr);
	do {
		next = pmd_addr_end(addr, end);
		if (pmd_none_or_clear_bad(pmd))
			continue;
		ret = unuse_pte_range(vma, pmd, addr, next, entry, page);
		if (ret)
			return ret;
	} while (pmd++, addr = next, addr != end);
	return 0;
}

static inline int unuse_pud_range(struct vm_area_struct *vma, pgd_t *pgd,
				unsigned long addr, unsigned long end,
				swp_entry_t entry, struct page *page)
{
	pud_t *pud;
	unsigned long next;
	int ret;

	pud = pud_offset(pgd, addr);
	do {
		next = pud_addr_end(addr, end);
		if (pud_none_or_clear_bad(pud))
			continue;
		ret = unuse_pmd_range(vma, pud, addr, next, entry, page);
		if (ret)
			return ret;
	} while (pud++, addr = next, addr != end);
	return 0;
}

static int unuse_vma(struct vm_area_struct *vma,
				swp_entry_t entry, struct page *page)
{
	pgd_t *pgd;
	unsigned long addr, end, next;
	int ret;

	if (page->mapping) {
		addr = page_address_in_vma(page, vma);
		if (addr == -EFAULT)
			return 0;
		else
			end = addr + PAGE_SIZE;
	} else {
		addr = vma->vm_start;
		end = vma->vm_end;
	}

	pgd = pgd_offset(vma->vm_mm, addr);
	do {
		next = pgd_addr_end(addr, end);
		if (pgd_none_or_clear_bad(pgd))
			continue;
		ret = unuse_pud_range(vma, pgd, addr, next, entry, page);
		if (ret)
			return ret;
	} while (pgd++, addr = next, addr != end);
	return 0;
}

static int unuse_mm(struct mm_struct *mm,
				swp_entry_t entry, struct page *page)
{
	struct vm_area_struct *vma;
	int ret = 0;

	if (!down_read_trylock(&mm->mmap_sem)) {
		/*
		 * Activate page so shrink_inactive_list is unlikely to unmap
		 * its ptes while lock is dropped, so swapoff can make progress.
		 */
		activate_page(page);
		unlock_page(page);
		down_read(&mm->mmap_sem);
		lock_page(page);
	}
	for (vma = mm->mmap; vma; vma = vma->vm_next) {
		if (vma->anon_vma && (ret = unuse_vma(vma, entry, page)))
			break;
	}
	up_read(&mm->mmap_sem);
	return (ret < 0)? ret: 0;
}

/*
 * Scan swap_map from current position to next entry still in use.
 * Recycle to start on reaching the end, returning 0 when empty.
 */
static unsigned int find_next_to_unuse(struct swap_info_struct *si,
					unsigned int prev)
{
	unsigned int max = si->max;
	unsigned int i = prev;
	int count;

	/*
	 * No need for swap_lock here: we're just looking
	 * for whether an entry is in use, not modifying it; false
	 * hits are okay, and sys_swapoff() has already prevented new
	 * allocations from this area (while holding swap_lock).
	 */
	for (;;) {
		if (++i >= max) {
			if (!prev) {
				i = 0;
				break;
			}
			/*
			 * No entries in use at top of swap_map,
			 * loop back to start and recheck there.
			 */
			max = prev + 1;
			prev = 0;
			i = 1;
		}
		count = si->swap_map[i];
		if (count && count != SWAP_MAP_BAD)
			break;
	}
	return i;
}

/*
 * We completely avoid races by reading each swap page in advance,
 * and then search for the process using it.  All the necessary
 * page table adjustments can then be made atomically.
 */
static int try_to_unuse(unsigned int type)
{
	struct swap_info_struct * si = &swap_info[type];
	struct mm_struct *start_mm;
	unsigned short *swap_map;
	unsigned short swcount;
	struct page *page;
	swp_entry_t entry;
	unsigned int i = 0;
	int retval = 0;
	int reset_overflow = 0;
	int shmem;

	/*
	 * When searching mms for an entry, a good strategy is to
	 * start at the first mm we freed the previous entry from
	 * (though actually we don't notice whether we or coincidence
	 * freed the entry).  Initialize this start_mm with a hold.
	 *
	 * A simpler strategy would be to start at the last mm we
	 * freed the previous entry from; but that would take less
	 * advantage of mmlist ordering, which clusters forked mms
	 * together, child after parent.  If we race with dup_mmap(), we
	 * prefer to resolve parent before child, lest we miss entries
	 * duplicated after we scanned child: using last mm would invert
	 * that.  Though it's only a serious concern when an overflowed
	 * swap count is reset from SWAP_MAP_MAX, preventing a rescan.
	 */
	start_mm = &init_mm;
	atomic_inc(&init_mm.mm_users);

	/*
	 * Keep on scanning until all entries have gone.  Usually,
	 * one pass through swap_map is enough, but not necessarily:
	 * there are races when an instance of an entry might be missed.
	 */
	while ((i = find_next_to_unuse(si, i)) != 0) {
		if (signal_pending(current)) {
			retval = -EINTR;
			break;
		}

		/*
		 * Get a page for the entry, using the existing swap
		 * cache page if there is one.  Otherwise, get a clean
		 * page and read the swap into it.
		 */
		swap_map = &si->swap_map[i];
		entry = swp_entry(type, i);
		page = read_swap_cache_async(entry,
					GFP_HIGHUSER_MOVABLE, NULL, 0);
		if (!page) {
			/*
			 * Either swap_duplicate() failed because entry
			 * has been freed independently, and will not be
			 * reused since sys_swapoff() already disabled
			 * allocation from here, or alloc_page() failed.
			 */
			if (!*swap_map)
				continue;
			retval = -ENOMEM;
			break;
		}

		/*
		 * Don't hold on to start_mm if it looks like exiting.
		 */
		if (atomic_read(&start_mm->mm_users) == 1) {
			mmput(start_mm);
			start_mm = &init_mm;
			atomic_inc(&init_mm.mm_users);
		}

		/*
		 * Wait for and lock page.  When do_swap_page races with
		 * try_to_unuse, do_swap_page can handle the fault much
		 * faster than try_to_unuse can locate the entry.  This
		 * apparently redundant "wait_on_page_locked" lets try_to_unuse
		 * defer to do_swap_page in such a case - in some tests,
		 * do_swap_page and try_to_unuse repeatedly compete.
		 */
		wait_on_page_locked(page);
		wait_on_page_writeback(page);
		lock_page(page);
		wait_on_page_writeback(page);

		/*
		 * Remove all references to entry.
		 * Whenever we reach init_mm, there's no address space
		 * to search, but use it as a reminder to search shmem.
		 */
		shmem = 0;
		swcount = *swap_map;
		if (swcount > 1) {
			if (start_mm == &init_mm)
				shmem = shmem_unuse(entry, page);
			else
				retval = unuse_mm(start_mm, entry, page);
		}
		if (*swap_map > 1) {
			int set_start_mm = (*swap_map >= swcount);
			struct list_head *p = &start_mm->mmlist;
			struct mm_struct *new_start_mm = start_mm;
			struct mm_struct *prev_mm = start_mm;
			struct mm_struct *mm;

			atomic_inc(&new_start_mm->mm_users);
			atomic_inc(&prev_mm->mm_users);
			spin_lock(&mmlist_lock);
			while (*swap_map > 1 && !retval && !shmem &&
					(p = p->next) != &start_mm->mmlist) {
				mm = list_entry(p, struct mm_struct, mmlist);
				if (!atomic_inc_not_zero(&mm->mm_users))
					continue;
				spin_unlock(&mmlist_lock);
				mmput(prev_mm);
				prev_mm = mm;

				cond_resched();

				swcount = *swap_map;
				if (swcount <= 1)
					;
				else if (mm == &init_mm) {
					set_start_mm = 1;
					shmem = shmem_unuse(entry, page);
				} else
					retval = unuse_mm(mm, entry, page);
				if (set_start_mm && *swap_map < swcount) {
					mmput(new_start_mm);
					atomic_inc(&mm->mm_users);
					new_start_mm = mm;
					set_start_mm = 0;
				}
				spin_lock(&mmlist_lock);
			}
			spin_unlock(&mmlist_lock);
			mmput(prev_mm);
			mmput(start_mm);
			start_mm = new_start_mm;
		}
		if (shmem) {
			/* page has already been unlocked and released */
			if (shmem > 0)
				continue;
			retval = shmem;
			break;
		}
		if (retval) {
			unlock_page(page);
			page_cache_release(page);
			break;
		}

		/*
		 * How could swap count reach 0x7fff when the maximum
		 * pid is 0x7fff, and there's no way to repeat a swap
		 * page within an mm (except in shmem, where it's the
		 * shared object which takes the reference count)?
		 * We believe SWAP_MAP_MAX cannot occur in Linux 2.4.
		 *
		 * If that's wrong, then we should worry more about
		 * exit_mmap() and do_munmap() cases described above:
		 * we might be resetting SWAP_MAP_MAX too early here.
		 * We know "Undead"s can happen, they're okay, so don't
		 * report them; but do report if we reset SWAP_MAP_MAX.
		 */
		if (*swap_map == SWAP_MAP_MAX) {
			spin_lock(&swap_lock);
			*swap_map = 1;
			spin_unlock(&swap_lock);
			reset_overflow = 1;
		}

		/*
		 * If a reference remains (rare), we would like to leave
		 * the page in the swap cache; but try_to_unmap could
		 * then re-duplicate the entry once we drop page lock,
		 * so we might loop indefinitely; also, that page could
		 * not be swapped out to other storage meanwhile.  So:
		 * delete from cache even if there's another reference,
		 * after ensuring that the data has been saved to disk -
		 * since if the reference remains (rarer), it will be
		 * read from disk into another page.  Splitting into two
		 * pages would be incorrect if swap supported "shared
		 * private" pages, but they are handled by tmpfs files.
		 */
		if ((*swap_map > 1) && PageDirty(page) && PageSwapCache(page)) {
			struct writeback_control wbc = {
				.sync_mode = WB_SYNC_NONE,
			};

			swap_writepage(page, &wbc);
			lock_page(page);
			wait_on_page_writeback(page);
		}

		/*
		 * It is conceivable that a racing task removed this page from
		 * swap cache just before we acquired the page lock at the top,
		 * or while we dropped it in unuse_mm().  The page might even
		 * be back in swap cache on another swap area: that we must not
		 * delete, since it may not have been written out to swap yet.
		 */
		if (PageSwapCache(page) &&
		    likely(page_private(page) == entry.val))
			delete_from_swap_cache(page);

		/*
		 * So we could skip searching mms once swap count went
		 * to 1, we did not mark any present ptes as dirty: must
		 * mark page dirty so shrink_page_list will preserve it.
		 */
		SetPageDirty(page);
		unlock_page(page);
		page_cache_release(page);

		/*
		 * Make sure that we aren't completely killing
		 * interactive performance.
		 */
		cond_resched();
	}

	mmput(start_mm);
	if (reset_overflow) {
		printk(KERN_WARNING "swapoff: cleared swap entry overflow\n");
		swap_overflow = 0;
	}
	return retval;
}

/*
 * After a successful try_to_unuse, if no swap is now in use, we know
 * we can empty the mmlist.  swap_lock must be held on entry and exit.
 * Note that mmlist_lock nests inside swap_lock, and an mm must be
 * added to the mmlist just after page_duplicate - before would be racy.
 */
static void drain_mmlist(void)
{
	struct list_head *p, *next;
	unsigned int i;

	for (i = 0; i < nr_swapfiles; i++)
		if (swap_info[i].inuse_pages)
			return;
	spin_lock(&mmlist_lock);
	list_for_each_safe(p, next, &init_mm.mmlist)
		list_del_init(p);
	spin_unlock(&mmlist_lock);
}

/*
 * Use this swapdev's extent info to locate the (PAGE_SIZE) block which
 * corresponds to page offset `offset'.
 */
sector_t map_swap_page(struct swap_info_struct *sis, pgoff_t offset)
{
	struct swap_extent *se = sis->curr_swap_extent;
	struct swap_extent *start_se = se;

	for ( ; ; ) {
		struct list_head *lh;

		if (se->start_page <= offset &&
				offset < (se->start_page + se->nr_pages)) {
			return se->start_block + (offset - se->start_page);
		}
		lh = se->list.next;
		if (lh == &sis->extent_list)
			lh = lh->next;
		se = list_entry(lh, struct swap_extent, list);
		sis->curr_swap_extent = se;
		BUG_ON(se == start_se);		/* It *must* be present */
	}
}

#ifdef CONFIG_HIBERNATION
/*
 * Get the (PAGE_SIZE) block corresponding to given offset on the swapdev
 * corresponding to given index in swap_info (swap type).
 */
sector_t swapdev_block(int swap_type, pgoff_t offset)
{
	struct swap_info_struct *sis;

	if (swap_type >= nr_swapfiles)
		return 0;

	sis = swap_info + swap_type;
	return (sis->flags & SWP_WRITEOK) ? map_swap_page(sis, offset) : 0;
}
#endif /* CONFIG_HIBERNATION */

/*
 * Free all of a swapdev's extent information
 */
static void destroy_swap_extents(struct swap_info_struct *sis)
{
	while (!list_empty(&sis->extent_list)) {
		struct swap_extent *se;

		se = list_entry(sis->extent_list.next,
				struct swap_extent, list);
		list_del(&se->list);
		kfree(se);
	}
}

/*
 * Add a block range (and the corresponding page range) into this swapdev's
 * extent list.  The extent list is kept sorted in page order.
 *
 * This function rather assumes that it is called in ascending page order.
 */
static int
add_swap_extent(struct swap_info_struct *sis, unsigned long start_page,
		unsigned long nr_pages, sector_t start_block)
{
	struct swap_extent *se;
	struct swap_extent *new_se;
	struct list_head *lh;

	lh = sis->extent_list.prev;	/* The highest page extent */
	if (lh != &sis->extent_list) {
		se = list_entry(lh, struct swap_extent, list);
		BUG_ON(se->start_page + se->nr_pages != start_page);
		if (se->start_block + se->nr_pages == start_block) {
			/* Merge it */
			se->nr_pages += nr_pages;
			return 0;
		}
	}

	/*
	 * No merge.  Insert a new extent, preserving ordering.
	 */
	new_se = kmalloc(sizeof(*se), GFP_KERNEL);
	if (new_se == NULL)
		return -ENOMEM;
	new_se->start_page = start_page;
	new_se->nr_pages = nr_pages;
	new_se->start_block = start_block;

	list_add_tail(&new_se->list, &sis->extent_list);
	return 1;
}

/*
 * A `swap extent' is a simple thing which maps a contiguous range of pages
 * onto a contiguous range of disk blocks.  An ordered list of swap extents
 * is built at swapon time and is then used at swap_writepage/swap_readpage
 * time for locating where on disk a page belongs.
 *
 * If the swapfile is an S_ISBLK block device, a single extent is installed.
 * This is done so that the main operating code can treat S_ISBLK and S_ISREG
 * swap files identically.
 *
 * Whether the swapdev is an S_ISREG file or an S_ISBLK blockdev, the swap
 * extent list operates in PAGE_SIZE disk blocks.  Both S_ISREG and S_ISBLK
 * swapfiles are handled *identically* after swapon time.
 *
 * For S_ISREG swapfiles, setup_swap_extents() will walk all the file's blocks
 * and will parse them into an ordered extent list, in PAGE_SIZE chunks.  If
 * some stray blocks are found which do not fall within the PAGE_SIZE alignment
 * requirements, they are simply tossed out - we will never use those blocks
 * for swapping.
 *
 * For S_ISREG swapfiles we set S_SWAPFILE across the life of the swapon.  This
 * prevents root from shooting her foot off by ftruncating an in-use swapfile,
 * which will scribble on the fs.
 *
 * The amount of disk space which a single swap extent represents varies.
 * Typically it is in the 1-4 megabyte range.  So we can have hundreds of
 * extents in the list.  To avoid much list walking, we cache the previous
 * search location in `curr_swap_extent', and start new searches from there.
 * This is extremely effective.  The average number of iterations in
 * map_swap_page() has been measured at about 0.3 per page.  - akpm.
 */
static int setup_swap_extents(struct swap_info_struct *sis, sector_t *span)
{
	struct inode *inode;
	unsigned blocks_per_page;
	unsigned long page_no;
	unsigned blkbits;
	sector_t probe_block;
	sector_t last_block;
	sector_t lowest_block = -1;
	sector_t highest_block = 0;
	int nr_extents = 0;
	int ret;

	inode = sis->swap_file->f_mapping->host;
	if (S_ISBLK(inode->i_mode)) {
		ret = add_swap_extent(sis, 0, sis->max, 0);
		*span = sis->pages;
		goto done;
	}

	blkbits = inode->i_blkbits;
	blocks_per_page = PAGE_SIZE >> blkbits;

	/*
	 * Map all the blocks into the extent list.  This code doesn't try
	 * to be very smart.
	 */
	probe_block = 0;
	page_no = 0;
	last_block = i_size_read(inode) >> blkbits;
	while ((probe_block + blocks_per_page) <= last_block &&
			page_no < sis->max) {
		unsigned block_in_page;
		sector_t first_block;

		first_block = bmap(inode, probe_block);
		if (first_block == 0)
			goto bad_bmap;

		/*
		 * It must be PAGE_SIZE aligned on-disk
		 */
		if (first_block & (blocks_per_page - 1)) {
			probe_block++;
			goto reprobe;
		}

		for (block_in_page = 1; block_in_page < blocks_per_page;
					block_in_page++) {
			sector_t block;

			block = bmap(inode, probe_block + block_in_page);
			if (block == 0)
				goto bad_bmap;
			if (block != first_block + block_in_page) {
				/* Discontiguity */
				probe_block++;
				goto reprobe;
			}
		}

		first_block >>= (PAGE_SHIFT - blkbits);
		if (page_no) {	/* exclude the header page */
			if (first_block < lowest_block)
				lowest_block = first_block;
			if (first_block > highest_block)
				highest_block = first_block;
		}

		/*
		 * We found a PAGE_SIZE-length, PAGE_SIZE-aligned run of blocks
		 */
		ret = add_swap_extent(sis, page_no, 1, first_block);
		if (ret < 0)
			goto out;
		nr_extents += ret;
		page_no++;
		probe_block += blocks_per_page;
reprobe:
		continue;
	}
	ret = nr_extents;
	*span = 1 + highest_block - lowest_block;
	if (page_no == 0)
		page_no = 1;	/* force Empty message */
	sis->max = page_no;
	sis->pages = page_no - 1;
	sis->highest_bit = page_no - 1;
done:
	sis->curr_swap_extent = list_entry(sis->extent_list.prev,
					struct swap_extent, list);
	goto out;
bad_bmap:
	printk(KERN_ERR "swapon: swapfile has holes\n");
	ret = -EINVAL;
out:
	return ret;
}

SYSCALL_DEFINE1(swapoff, const char __user *, specialfile)
{
	struct swap_info_struct * p = NULL;
	unsigned short *swap_map;
	struct file *swap_file, *victim;
	struct address_space *mapping;
	struct inode *inode;
	char * pathname;
	int i, type, prev;
	int err;

	if (!capable(CAP_SYS_ADMIN))
		return -EPERM;

	pathname = getname(specialfile);
	err = PTR_ERR(pathname);
	if (IS_ERR(pathname))
		goto out;

	victim = filp_open(pathname, O_RDWR|O_LARGEFILE, 0);
	putname(pathname);
	err = PTR_ERR(victim);
	if (IS_ERR(victim))
		goto out;

	mapping = victim->f_mapping;
	prev = -1;
	spin_lock(&swap_lock);
	for (type = swap_list.head; type >= 0; type = swap_info[type].next) {
		p = swap_info + type;
		if (p->flags & SWP_WRITEOK) {
			if (p->swap_file->f_mapping == mapping)
				break;
		}
		prev = type;
	}
	if (type < 0) {
		err = -EINVAL;
		spin_unlock(&swap_lock);
		goto out_dput;
	}
	if (!security_vm_enough_memory(p->pages))
		vm_unacct_memory(p->pages);
	else {
		err = -ENOMEM;
		spin_unlock(&swap_lock);
		goto out_dput;
	}
	if (prev < 0) {
		swap_list.head = p->next;
	} else {
		swap_info[prev].next = p->next;
	}
	if (type == swap_list.next) {
		/* just pick something that's safe... */
		swap_list.next = swap_list.head;
	}
	if (p->prio < 0) {
		for (i = p->next; i >= 0; i = swap_info[i].next)
			swap_info[i].prio = p->prio--;
		least_priority++;
	}
	nr_swap_pages -= p->pages;
	total_swap_pages -= p->pages;
	p->flags &= ~SWP_WRITEOK;
	spin_unlock(&swap_lock);

	current->flags |= PF_SWAPOFF;
	err = try_to_unuse(type);
	current->flags &= ~PF_SWAPOFF;

	if (err) {
		/* re-insert swap space back into swap_list */
		spin_lock(&swap_lock);
		if (p->prio < 0)
			p->prio = --least_priority;
		prev = -1;
		for (i = swap_list.head; i >= 0; i = swap_info[i].next) {
			if (p->prio >= swap_info[i].prio)
				break;
			prev = i;
		}
		p->next = i;
		if (prev < 0)
			swap_list.head = swap_list.next = p - swap_info;
		else
			swap_info[prev].next = p - swap_info;
		nr_swap_pages += p->pages;
		total_swap_pages += p->pages;
		p->flags |= SWP_WRITEOK;
		spin_unlock(&swap_lock);
		goto out_dput;
	}

	/* wait for any unplug function to finish */
	down_write(&swap_unplug_sem);
	up_write(&swap_unplug_sem);

	destroy_swap_extents(p);
	mutex_lock(&swapon_mutex);
	spin_lock(&swap_lock);
	drain_mmlist();

	/* wait for anyone still in scan_swap_map */
	p->highest_bit = 0;		/* cuts scans short */
	while (p->flags >= SWP_SCANNING) {
		spin_unlock(&swap_lock);
		schedule_timeout_uninterruptible(1);
		spin_lock(&swap_lock);
	}

	swap_file = p->swap_file;
	p->swap_file = NULL;
	p->max = 0;
	swap_map = p->swap_map;
	p->swap_map = NULL;
	p->flags = 0;
	spin_unlock(&swap_lock);
	mutex_unlock(&swapon_mutex);
	vfree(swap_map);
	/* Destroy swap account informatin */
	swap_cgroup_swapoff(type);

	inode = mapping->host;
	if (S_ISBLK(inode->i_mode)) {
		struct block_device *bdev = I_BDEV(inode);
		set_blocksize(bdev, p->old_block_size);
		bd_release(bdev);
	} else {
		mutex_lock(&inode->i_mutex);
		inode->i_flags &= ~S_SWAPFILE;
		mutex_unlock(&inode->i_mutex);
	}
	filp_close(swap_file, NULL);
	err = 0;

out_dput:
	filp_close(victim, NULL);
out:
	return err;
}

#ifdef CONFIG_PROC_FS
/* iterator */
static void *swap_start(struct seq_file *swap, loff_t *pos)
{
	struct swap_info_struct *ptr = swap_info;
	int i;
	loff_t l = *pos;

	mutex_lock(&swapon_mutex);

	if (!l)
		return SEQ_START_TOKEN;

	for (i = 0; i < nr_swapfiles; i++, ptr++) {
		if (!(ptr->flags & SWP_USED) || !ptr->swap_map)
			continue;
		if (!--l)
			return ptr;
	}

	return NULL;
}

static void *swap_next(struct seq_file *swap, void *v, loff_t *pos)
{
	struct swap_info_struct *ptr;
	struct swap_info_struct *endptr = swap_info + nr_swapfiles;

	if (v == SEQ_START_TOKEN)
		ptr = swap_info;
	else {
		ptr = v;
		ptr++;
	}

	for (; ptr < endptr; ptr++) {
		if (!(ptr->flags & SWP_USED) || !ptr->swap_map)
			continue;
		++*pos;
		return ptr;
	}

	return NULL;
}

static void swap_stop(struct seq_file *swap, void *v)
{
	mutex_unlock(&swapon_mutex);
}

static int swap_show(struct seq_file *swap, void *v)
{
	struct swap_info_struct *ptr = v;
	struct file *file;
	int len;

	if (ptr == SEQ_START_TOKEN) {
		seq_puts(swap,"Filename\t\t\t\tType\t\tSize\tUsed\tPriority\n");
		return 0;
	}

	file = ptr->swap_file;
	len = seq_path(swap, &file->f_path, " \t\n\\");
	seq_printf(swap, "%*s%s\t%u\t%u\t%d\n",
			len < 40 ? 40 - len : 1, " ",
			S_ISBLK(file->f_path.dentry->d_inode->i_mode) ?
				"partition" : "file\t",
			ptr->pages << (PAGE_SHIFT - 10),
			ptr->inuse_pages << (PAGE_SHIFT - 10),
			ptr->prio);
	return 0;
}

static const struct seq_operations swaps_op = {
	.start =	swap_start,
	.next =		swap_next,
	.stop =		swap_stop,
	.show =		swap_show
};

static int swaps_open(struct inode *inode, struct file *file)
{
	return seq_open(file, &swaps_op);
}

static const struct file_operations proc_swaps_operations = {
	.open		= swaps_open,
	.read		= seq_read,
	.llseek		= seq_lseek,
	.release	= seq_release,
};

static int __init procswaps_init(void)
{
	proc_create("swaps", 0, NULL, &proc_swaps_operations);
	return 0;
}
__initcall(procswaps_init);
#endif /* CONFIG_PROC_FS */

#ifdef MAX_SWAPFILES_CHECK
static int __init max_swapfiles_check(void)
{
	MAX_SWAPFILES_CHECK();
	return 0;
}
late_initcall(max_swapfiles_check);
#endif

/*
 * Written 01/25/92 by Simmule Turner, heavily changed by Linus.
 *
 * The swapon system call
 */
SYSCALL_DEFINE2(swapon, const char __user *, specialfile, int, swap_flags)
{
	struct swap_info_struct * p;
	char *name = NULL;
	struct block_device *bdev = NULL;
	struct file *swap_file = NULL;
	struct address_space *mapping;
	unsigned int type;
	int i, prev;
	int error;
	union swap_header *swap_header = NULL;
	unsigned int nr_good_pages = 0;
	int nr_extents = 0;
	sector_t span;
	unsigned long maxpages = 1;
	unsigned long swapfilepages;
	unsigned short *swap_map = NULL;
	struct page *page = NULL;
	struct inode *inode = NULL;
	int did_down = 0;

	if (!capable(CAP_SYS_ADMIN))
		return -EPERM;
	spin_lock(&swap_lock);
	p = swap_info;
	for (type = 0 ; type < nr_swapfiles ; type++,p++)
		if (!(p->flags & SWP_USED))
			break;
	error = -EPERM;
	if (type >= MAX_SWAPFILES) {
		spin_unlock(&swap_lock);
		goto out;
	}
	if (type >= nr_swapfiles)
		nr_swapfiles = type+1;
	memset(p, 0, sizeof(*p));
	INIT_LIST_HEAD(&p->extent_list);
	p->flags = SWP_USED;
	p->next = -1;
	spin_unlock(&swap_lock);
	name = getname(specialfile);
	error = PTR_ERR(name);
	if (IS_ERR(name)) {
		name = NULL;
		goto bad_swap_2;
	}
	swap_file = filp_open(name, O_RDWR|O_LARGEFILE, 0);
	error = PTR_ERR(swap_file);
	if (IS_ERR(swap_file)) {
		swap_file = NULL;
		goto bad_swap_2;
	}

	p->swap_file = swap_file;
	mapping = swap_file->f_mapping;
	inode = mapping->host;

	error = -EBUSY;
	for (i = 0; i < nr_swapfiles; i++) {
		struct swap_info_struct *q = &swap_info[i];

		if (i == type || !q->swap_file)
			continue;
		if (mapping == q->swap_file->f_mapping)
			goto bad_swap;
	}

	error = -EINVAL;
	if (S_ISBLK(inode->i_mode)) {
		bdev = I_BDEV(inode);
		error = bd_claim(bdev, sys_swapon);
		if (error < 0) {
			bdev = NULL;
			error = -EINVAL;
			goto bad_swap;
		}
		p->old_block_size = block_size(bdev);
		error = set_blocksize(bdev, PAGE_SIZE);
		if (error < 0)
			goto bad_swap;
		p->bdev = bdev;
	} else if (S_ISREG(inode->i_mode)) {
		p->bdev = inode->i_sb->s_bdev;
		mutex_lock(&inode->i_mutex);
		did_down = 1;
		if (IS_SWAPFILE(inode)) {
			error = -EBUSY;
			goto bad_swap;
		}
	} else {
		goto bad_swap;
	}

	swapfilepages = i_size_read(inode) >> PAGE_SHIFT;

	/*
	 * Read the swap header.
	 */
	if (!mapping->a_ops->readpage) {
		error = -EINVAL;
		goto bad_swap;
	}
	page = read_mapping_page(mapping, 0, swap_file);
	if (IS_ERR(page)) {
		error = PTR_ERR(page);
		goto bad_swap;
	}
	swap_header = kmap(page);

	if (memcmp("SWAPSPACE2", swap_header->magic.magic, 10)) {
		printk(KERN_ERR "Unable to find swap-space signature\n");
		error = -EINVAL;
		goto bad_swap;
	}

	/* swap partition endianess hack... */
	if (swab32(swap_header->info.version) == 1) {
		swab32s(&swap_header->info.version);
		swab32s(&swap_header->info.last_page);
		swab32s(&swap_header->info.nr_badpages);
		for (i = 0; i < swap_header->info.nr_badpages; i++)
			swab32s(&swap_header->info.badpages[i]);
	}
	/* Check the swap header's sub-version */
	if (swap_header->info.version != 1) {
		printk(KERN_WARNING
		       "Unable to handle swap header version %d\n",
		       swap_header->info.version);
		error = -EINVAL;
		goto bad_swap;
	}

	p->lowest_bit  = 1;
	p->cluster_next = 1;

	/*
	 * Find out how many pages are allowed for a single swap
	 * device. There are two limiting factors: 1) the number of
	 * bits for the swap offset in the swp_entry_t type and
	 * 2) the number of bits in the a swap pte as defined by
	 * the different architectures. In order to find the
	 * largest possible bit mask a swap entry with swap type 0
	 * and swap offset ~0UL is created, encoded to a swap pte,
	 * decoded to a swp_entry_t again and finally the swap
	 * offset is extracted. This will mask all the bits from
	 * the initial ~0UL mask that can't be encoded in either
	 * the swp_entry_t or the architecture definition of a
	 * swap pte.
	 */
	maxpages = swp_offset(pte_to_swp_entry(
			swp_entry_to_pte(swp_entry(0, ~0UL)))) - 1;
	if (maxpages > swap_header->info.last_page)
		maxpages = swap_header->info.last_page;
	p->highest_bit = maxpages - 1;

	error = -EINVAL;
	if (!maxpages)
		goto bad_swap;
	if (swapfilepages && maxpages > swapfilepages) {
		printk(KERN_WARNING
		       "Swap area shorter than signature indicates\n");
		goto bad_swap;
	}
	if (swap_header->info.nr_badpages && S_ISREG(inode->i_mode))
		goto bad_swap;
	if (swap_header->info.nr_badpages > MAX_SWAP_BADPAGES)
		goto bad_swap;

	/* OK, set up the swap map and apply the bad block list */
	swap_map = vmalloc(maxpages * sizeof(short));
	if (!swap_map) {
		error = -ENOMEM;
		goto bad_swap;
	}

	memset(swap_map, 0, maxpages * sizeof(short));
	for (i = 0; i < swap_header->info.nr_badpages; i++) {
		int page_nr = swap_header->info.badpages[i];
		if (page_nr <= 0 || page_nr >= swap_header->info.last_page) {
			error = -EINVAL;
			goto bad_swap;
		}
		swap_map[page_nr] = SWAP_MAP_BAD;
	}

	error = swap_cgroup_swapon(type, maxpages);
	if (error)
		goto bad_swap;

	nr_good_pages = swap_header->info.last_page -
			swap_header->info.nr_badpages -
			1 /* header page */;

	if (nr_good_pages) {
		swap_map[0] = SWAP_MAP_BAD;
		p->max = maxpages;
		p->pages = nr_good_pages;
		nr_extents = setup_swap_extents(p, &span);
		if (nr_extents < 0) {
			error = nr_extents;
			goto bad_swap;
		}
		nr_good_pages = p->pages;
	}
	if (!nr_good_pages) {
		printk(KERN_WARNING "Empty swap-file\n");
		error = -EINVAL;
		goto bad_swap;
	}

	if (blk_queue_nonrot(bdev_get_queue(p->bdev))) {
		p->flags |= SWP_SOLIDSTATE;
		p->cluster_next = 1 + (random32() % p->highest_bit);
	}
	if (discard_swap(p) == 0)
		p->flags |= SWP_DISCARDABLE;

	mutex_lock(&swapon_mutex);
	spin_lock(&swap_lock);
	if (swap_flags & SWAP_FLAG_PREFER)
		p->prio =
		  (swap_flags & SWAP_FLAG_PRIO_MASK) >> SWAP_FLAG_PRIO_SHIFT;
	else
		p->prio = --least_priority;
	p->swap_map = swap_map;
	p->flags |= SWP_WRITEOK;
	nr_swap_pages += nr_good_pages;
	total_swap_pages += nr_good_pages;

	printk(KERN_INFO "Adding %uk swap on %s.  "
			"Priority:%d extents:%d across:%lluk %s%s\n",
		nr_good_pages<<(PAGE_SHIFT-10), name, p->prio,
		nr_extents, (unsigned long long)span<<(PAGE_SHIFT-10),
		(p->flags & SWP_SOLIDSTATE) ? "SS" : "",
		(p->flags & SWP_DISCARDABLE) ? "D" : "");

	/* insert swap space into swap_list: */
	prev = -1;
	for (i = swap_list.head; i >= 0; i = swap_info[i].next) {
		if (p->prio >= swap_info[i].prio) {
			break;
		}
		prev = i;
	}
	p->next = i;
	if (prev < 0) {
		swap_list.head = swap_list.next = p - swap_info;
	} else {
		swap_info[prev].next = p - swap_info;
	}
	spin_unlock(&swap_lock);
	mutex_unlock(&swapon_mutex);
	error = 0;
	goto out;
bad_swap:
	if (bdev) {
		set_blocksize(bdev, p->old_block_size);
		bd_release(bdev);
	}
	destroy_swap_extents(p);
	swap_cgroup_swapoff(type);
bad_swap_2:
	spin_lock(&swap_lock);
	p->swap_file = NULL;
	p->flags = 0;
	spin_unlock(&swap_lock);
	vfree(swap_map);
	if (swap_file)
		filp_close(swap_file, NULL);
out:
	if (page && !IS_ERR(page)) {
		kunmap(page);
		page_cache_release(page);
	}
	if (name)
		putname(name);
	if (did_down) {
		if (!error)
			inode->i_flags |= S_SWAPFILE;
		mutex_unlock(&inode->i_mutex);
	}
	return error;
}

void si_swapinfo(struct sysinfo *val)
{
	unsigned int i;
	unsigned long nr_to_be_unused = 0;

	spin_lock(&swap_lock);
	for (i = 0; i < nr_swapfiles; i++) {
		if (!(swap_info[i].flags & SWP_USED) ||
		     (swap_info[i].flags & SWP_WRITEOK))
			continue;
		nr_to_be_unused += swap_info[i].inuse_pages;
	}
	val->freeswap = nr_swap_pages + nr_to_be_unused;
	val->totalswap = total_swap_pages + nr_to_be_unused;
	spin_unlock(&swap_lock);
}

/*
 * Verify that a swap entry is valid and increment its swap map count.
 *
 * Note: if swap_map[] reaches SWAP_MAP_MAX the entries are treated as
 * "permanent", but will be reclaimed by the next swapoff.
 */
int swap_duplicate(swp_entry_t entry)
{
	struct swap_info_struct * p;
	unsigned long offset, type;
	int result = 0;

	if (is_migration_entry(entry))
		return 1;

	type = swp_type(entry);
	if (type >= nr_swapfiles)
		goto bad_file;
	p = type + swap_info;
	offset = swp_offset(entry);

	spin_lock(&swap_lock);
	if (offset < p->max && p->swap_map[offset]) {
		if (p->swap_map[offset] < SWAP_MAP_MAX - 1) {
			p->swap_map[offset]++;
			result = 1;
		} else if (p->swap_map[offset] <= SWAP_MAP_MAX) {
			if (swap_overflow++ < 5)
				printk(KERN_WARNING "swap_dup: swap entry overflow\n");
			p->swap_map[offset] = SWAP_MAP_MAX;
			result = 1;
		}
	}
	spin_unlock(&swap_lock);
out:
	return result;

bad_file:
	printk(KERN_ERR "swap_dup: %s%08lx\n", Bad_file, entry.val);
	goto out;
}

struct swap_info_struct *
get_swap_info_struct(unsigned type)
{
	return &swap_info[type];
}

/*
 * swap_lock prevents swap_map being freed. Don't grab an extra
 * reference on the swaphandle, it doesn't matter if it becomes unused.
 */
int valid_swaphandles(swp_entry_t entry, unsigned long *offset)
{
	struct swap_info_struct *si;
	int our_page_cluster = page_cluster;
	pgoff_t target, toff;
	pgoff_t base, end;
	int nr_pages = 0;

	if (!our_page_cluster)	/* no readahead */
		return 0;

	si = &swap_info[swp_type(entry)];
	target = swp_offset(entry);
	base = (target >> our_page_cluster) << our_page_cluster;
	end = base + (1 << our_page_cluster);
	if (!base)		/* first page is swap header */
		base++;

	spin_lock(&swap_lock);
	if (end > si->max)	/* don't go beyond end of map */
		end = si->max;

	/* Count contiguous allocated slots above our target */
	for (toff = target; ++toff < end; nr_pages++) {
		/* Don't read in free or bad pages */
		if (!si->swap_map[toff])
			break;
		if (si->swap_map[toff] == SWAP_MAP_BAD)
			break;
	}
	/* Count contiguous allocated slots below our target */
	for (toff = target; --toff >= base; nr_pages++) {
		/* Don't read in free or bad pages */
		if (!si->swap_map[toff])
			break;
		if (si->swap_map[toff] == SWAP_MAP_BAD)
			break;
	}
	spin_unlock(&swap_lock);

	/*
	 * Indicate starting offset, and return number of pages to get:
	 * if only 1, say 0, since there's then no readahead to be done.
	 */
	*offset = ++toff;
	return nr_pages? ++nr_pages: 0;
}
m' style='width: 0.0%;'/> -rw-r--r--accessibility/inc/accessibility/helper/IComboListBoxHelper.hxx73
-rw-r--r--accessibility/inc/accessibility/helper/acc_factory.hxx53
-rw-r--r--accessibility/inc/accessibility/helper/accessiblestrings.hrc53
-rw-r--r--accessibility/inc/accessibility/helper/accresmgr.hxx72
-rw-r--r--accessibility/inc/accessibility/helper/characterattributeshelper.hxx61
-rw-r--r--accessibility/inc/accessibility/helper/listboxhelper.hxx198
-rw-r--r--accessibility/inc/accessibility/standard/accessiblemenubasecomponent.hxx157
-rw-r--r--accessibility/inc/accessibility/standard/accessiblemenucomponent.hxx102
-rw-r--r--accessibility/inc/accessibility/standard/accessiblemenuitemcomponent.hxx98
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessiblebox.hxx182
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessiblebutton.hxx88
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessiblecheckbox.hxx95
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessiblecombobox.hxx67
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessibledropdowncombobox.hxx69
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessibledropdownlistbox.hxx69
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessibleedit.hxx121
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessiblefixedhyperlink.hxx56
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessiblefixedtext.hxx56
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessiblelist.hxx226
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessiblelistbox.hxx65
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessiblelistboxlist.hxx108
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessiblelistitem.hxx198
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessiblemenu.hxx86
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessiblemenubar.hxx75
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessiblemenuitem.hxx119
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessiblemenuseparator.hxx56
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessiblepopupmenu.hxx62
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessibleradiobutton.hxx86
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessiblescrollbar.hxx85
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessiblestatusbar.hxx82
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessiblestatusbaritem.hxx144
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessibletabcontrol.hxx105
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessibletabpage.hxx148
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessibletabpagewindow.hxx69
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessibletextcomponent.hxx95
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessibletextfield.hxx105
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessibletoolbox.hxx115
-rw-r--r--accessibility/inc/accessibility/standard/vclxaccessibletoolboxitem.hxx168
-rw-r--r--accessibility/inc/makefile.mk47
-rw-r--r--accessibility/inc/pch/precompiled_accessibility.cxx31
-rw-r--r--accessibility/inc/pch/precompiled_accessibility.hxx40
-rwxr-xr-xaccessibility/prj/build.lst18
-rw-r--r--accessibility/prj/d.lst8
-rw-r--r--accessibility/prj/l10n1
-rw-r--r--accessibility/source/extended/AccessibleBrowseBox.cxx395
-rw-r--r--accessibility/source/extended/AccessibleBrowseBoxBase.cxx660
-rw-r--r--accessibility/source/extended/AccessibleBrowseBoxCheckBoxCell.cxx174
-rw-r--r--accessibility/source/extended/AccessibleBrowseBoxHeaderBar.cxx421
-rw-r--r--accessibility/source/extended/AccessibleBrowseBoxHeaderCell.cxx175
-rw-r--r--accessibility/source/extended/AccessibleBrowseBoxTable.cxx280
-rw-r--r--accessibility/source/extended/AccessibleBrowseBoxTableBase.cxx357
-rw-r--r--accessibility/source/extended/AccessibleBrowseBoxTableCell.cxx357
-rw-r--r--accessibility/source/extended/AccessibleGridControl.cxx375
-rw-r--r--accessibility/source/extended/AccessibleGridControlBase.cxx537
-rw-r--r--accessibility/source/extended/AccessibleGridControlHeader.cxx286
-rw-r--r--accessibility/source/extended/AccessibleGridControlHeaderCell.cxx172
-rw-r--r--accessibility/source/extended/AccessibleGridControlTable.cxx380
-rw-r--r--accessibility/source/extended/AccessibleGridControlTableBase.cxx290
-rw-r--r--accessibility/source/extended/AccessibleGridControlTableCell.cxx373
-rw-r--r--accessibility/source/extended/AccessibleToolPanelDeck.cxx410
-rw-r--r--accessibility/source/extended/AccessibleToolPanelDeckTabBar.cxx457
-rw-r--r--accessibility/source/extended/AccessibleToolPanelDeckTabBarItem.cxx453
-rw-r--r--accessibility/source/extended/accessiblebrowseboxcell.cxx94
-rw-r--r--accessibility/source/extended/accessibleeditbrowseboxcell.cxx276
-rw-r--r--accessibility/source/extended/accessibleiconchoicectrl.cxx374
-rw-r--r--accessibility/source/extended/accessibleiconchoicectrlentry.cxx749
-rw-r--r--accessibility/source/extended/accessiblelistbox.cxx434
-rw-r--r--accessibility/source/extended/accessiblelistboxentry.cxx962
-rw-r--r--accessibility/source/extended/accessibletabbar.cxx557
-rw-r--r--accessibility/source/extended/accessibletabbarbase.cxx116
-rw-r--r--accessibility/source/extended/accessibletabbarpage.cxx514
-rw-r--r--accessibility/source/extended/accessibletabbarpagelist.cxx808
-rw-r--r--accessibility/source/extended/accessibletablistbox.cxx137
-rw-r--r--accessibility/source/extended/accessibletablistboxtable.cxx374
-rw-r--r--accessibility/source/extended/listboxaccessible.cxx106
-rwxr-xr-xaccessibility/source/extended/makefile.mk81
-rw-r--r--accessibility/source/extended/textwindowaccessibility.cxx2254
-rw-r--r--accessibility/source/helper/acc_factory.cxx555
-rw-r--r--accessibility/source/helper/accessiblestrings.src76
-rw-r--r--accessibility/source/helper/accresmgr.cxx85
-rw-r--r--accessibility/source/helper/characterattributeshelper.cxx122
-rw-r--r--accessibility/source/helper/makefile.mk53
-rw-r--r--accessibility/source/inc/floatingwindowaccessible.hxx45
-rw-r--r--accessibility/source/standard/accessiblemenubasecomponent.cxx786
-rw-r--r--accessibility/source/standard/accessiblemenucomponent.cxx474
-rw-r--r--accessibility/source/standard/accessiblemenuitemcomponent.cxx506
-rw-r--r--accessibility/source/standard/floatingwindowaccessible.cxx73
-rw-r--r--accessibility/source/standard/makefile.mk78
-rw-r--r--accessibility/source/standard/vclxaccessiblebox.cxx376
-rw-r--r--accessibility/source/standard/vclxaccessiblebutton.cxx329
-rw-r--r--accessibility/source/standard/vclxaccessiblecheckbox.cxx364
-rw-r--r--accessibility/source/standard/vclxaccessiblecombobox.cxx99
-rw-r--r--accessibility/source/standard/vclxaccessibledropdowncombobox.cxx145
-rw-r--r--accessibility/source/standard/vclxaccessibledropdownlistbox.cxx113
-rw-r--r--accessibility/source/standard/vclxaccessibleedit.cxx629
-rw-r--r--accessibility/source/standard/vclxaccessiblefixedhyperlink.cxx87
-rw-r--r--accessibility/source/standard/vclxaccessiblefixedtext.cxx99
-rw-r--r--accessibility/source/standard/vclxaccessiblelist.cxx851
-rw-r--r--accessibility/source/standard/vclxaccessiblelistbox.cxx111
-rw-r--r--accessibility/source/standard/vclxaccessiblelistitem.cxx677
-rw-r--r--accessibility/source/standard/vclxaccessiblemenu.cxx258
-rw-r--r--accessibility/source/standard/vclxaccessiblemenubar.cxx214
-rw-r--r--accessibility/source/standard/vclxaccessiblemenuitem.cxx610
-rw-r--r--accessibility/source/standard/vclxaccessiblemenuseparator.cxx88
-rw-r--r--accessibility/source/standard/vclxaccessiblepopupmenu.cxx114
-rw-r--r--accessibility/source/standard/vclxaccessibleradiobutton.cxx317
-rw-r--r--accessibility/source/standard/vclxaccessiblescrollbar.cxx283
-rw-r--r--accessibility/source/standard/vclxaccessiblestatusbar.cxx369
-rw-r--r--accessibility/source/standard/vclxaccessiblestatusbaritem.cxx632
-rw-r--r--accessibility/source/standard/vclxaccessibletabcontrol.cxx518
-rw-r--r--accessibility/source/standard/vclxaccessibletabpage.cxx705
-rw-r--r--accessibility/source/standard/vclxaccessibletabpagewindow.cxx144
-rw-r--r--accessibility/source/standard/vclxaccessibletextcomponent.cxx365
-rw-r--r--accessibility/source/standard/vclxaccessibletextfield.cxx157
-rw-r--r--accessibility/source/standard/vclxaccessibletoolbox.cxx885
-rw-r--r--accessibility/source/standard/vclxaccessibletoolboxitem.cxx708
-rw-r--r--accessibility/util/acc.map7
-rw-r--r--accessibility/util/makefile.mk86
-rw-r--r--accessibility/workben/TODO13
-rw-r--r--accessibility/workben/makefile9
-rw-r--r--accessibility/workben/makefile.in31
-rw-r--r--accessibility/workben/makefile.mk39
-rw-r--r--accessibility/workben/org/openoffice/accessibility/Makefile6
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/AccessibilityWorkBench.java702
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/HelpWindow.java187
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/Makefile13
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/canvas/Canvas.java322
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/canvas/CanvasShape.java412
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/canvas/Makefile15
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/canvas/MouseObserver.java104
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/canvas/ShapeContainer.java237
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/canvas/makefile.common34
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/canvas/makefile.mk55
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/makefile.common30
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/makefile.mk57
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/manifest3
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/tree/AccessibilityModel.java154
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/tree/AccessibilityNode.java163
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/tree/AccessibilityTree.java89
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/tree/AccessibilityTreeModel.java217
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/tree/DynamicAccessibilityModel.java123
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/tree/DynamicAccessibilityNode.java92
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/tree/Makefile40
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/tree/ToolkitNode.java215
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/tree/makefile.common35
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/tree/makefile.mk51
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/ComponentView.java195
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/ContextView.java115
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/EditableTextView.java119
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/EventMonitorView.java126
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/FocusView.java148
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/LayoutManager.java160
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/Makefile13
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/ObjectView.java90
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/ObjectViewContainer.java310
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/ObjectViewContainerWindow.java35
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/ParentView.java147
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/SelectionView.java267
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/ServiceInterfaceView.java150
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/StateSetView.java199
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/TableView.java161
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/TextView.java467
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/ViewGridLayout.java117
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/makefile.common45
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/makefile.mk51
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/text/CaretSpinnerModel.java122
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/text/Makefile13
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/text/TextActionDialog.java208
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/text/TextAttributeDialog.java179
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/text/TextDialogFactory.java136
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/text/TextEditDialog.java122
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/text/makefile.common34
-rw-r--r--accessibility/workben/org/openoffice/accessibility/awb/view/text/makefile.mk51
-rw-r--r--accessibility/workben/org/openoffice/accessibility/misc/AccessibleEventMulticaster.java92
-rw-r--r--accessibility/workben/org/openoffice/accessibility/misc/Connector.java50
-rw-r--r--accessibility/workben/org/openoffice/accessibility/misc/InformationWriter.java421
-rw-r--r--accessibility/workben/org/openoffice/accessibility/misc/Makefile38
-rw-r--r--accessibility/workben/org/openoffice/accessibility/misc/MessageArea.java125
-rw-r--r--accessibility/workben/org/openoffice/accessibility/misc/NameProvider.java263
-rw-r--r--accessibility/workben/org/openoffice/accessibility/misc/OfficeConnection.java169
-rw-r--r--accessibility/workben/org/openoffice/accessibility/misc/Options.java106
-rw-r--r--accessibility/workben/org/openoffice/accessibility/misc/SimpleOffice.java413
-rw-r--r--accessibility/workben/org/openoffice/accessibility/misc/makefile.common36
-rw-r--r--accessibility/workben/org/openoffice/accessibility/misc/makefile.mk55
-rw-r--r--afms/delzip0
-rw-r--r--afms/makefile.mk58
-rw-r--r--afms/prj/build.lst3
-rw-r--r--afms/prj/d.lst3
-rw-r--r--animations/inc/animations/animationnodehelper.hxx133
-rw-r--r--animations/prj/build.lst3
-rw-r--r--animations/prj/d.lst9
-rw-r--r--animations/source/animcore/animcore.cxx2092
-rw-r--r--animations/source/animcore/animcore.xml28
-rw-r--r--animations/source/animcore/factreg.cxx103
-rw-r--r--animations/source/animcore/factreg.hxx54
-rw-r--r--animations/source/animcore/makefile.mk70
-rw-r--r--animations/source/animcore/targetpropertiescreator.cxx507
-rw-r--r--apache-commons/java/codec/makefile.mk77
-rw-r--r--apache-commons/java/httpclient/makefile.mk82
-rw-r--r--apache-commons/java/lang/makefile.mk79
-rw-r--r--apache-commons/java/logging/makefile.mk81
-rw-r--r--apache-commons/patches/codec.patch17
-rw-r--r--apache-commons/patches/logging.patch15
-rw-r--r--apache-commons/prj/build.lst6
-rw-r--r--apache-commons/prj/d.lst5
-rw-r--r--apple_remote/AppleRemote.m125
-rw-r--r--apple_remote/GlobalKeyboardDevice.m249
-rw-r--r--apple_remote/HIDRemoteControlDevice.m518
-rw-r--r--apple_remote/KeyspanFrontRowControl.m97
-rw-r--r--apple_remote/MultiClickRemoteBehavior.m213
-rw-r--r--apple_remote/RemoteControl.m146
-rw-r--r--apple_remote/RemoteControlContainer.m140
-rw-r--r--apple_remote/RemoteMainController.m177
-rw-r--r--apple_remote/inc/AppleRemote.h40
-rw-r--r--apple_remote/inc/GlobalKeyboardDevice.h54
-rw-r--r--apple_remote/inc/HIDRemoteControlDevice.h67
-rw-r--r--apple_remote/inc/KeyspanFrontRowControl.h42
-rw-r--r--apple_remote/inc/MultiClickRemoteBehavior.h93
-rw-r--r--apple_remote/inc/RemoteControl.h105
-rw-r--r--apple_remote/inc/RemoteControlContainer.h41
-rw-r--r--apple_remote/inc/RemoteMainController.h49
-rw-r--r--apple_remote/makefile.mk82
-rw-r--r--apple_remote/prj/build.lst2
-rw-r--r--apple_remote/prj/d.lst5
-rw-r--r--autodoc/inc/ary/actions.hxx105
-rw-r--r--autodoc/inc/ary/ary.hxx93
-rw-r--r--autodoc/inc/ary/ary_disp.hxx114
-rw-r--r--autodoc/inc/ary/arygroup.hxx110
-rw-r--r--autodoc/inc/ary/ceslot.hxx106
-rw-r--r--autodoc/inc/ary/cessentl.hxx91
-rw-r--r--autodoc/inc/ary/cpp/c_builtintype.hxx100
-rw-r--r--autodoc/inc/ary/cpp/c_ce.hxx106
-rw-r--r--autodoc/inc/ary/cpp/c_class.hxx248
-rw-r--r--autodoc/inc/ary/cpp/c_cppentity.hxx94
-rw-r--r--autodoc/inc/ary/cpp/c_de.hxx107
-rw-r--r--autodoc/inc/ary/cpp/c_define.hxx85
-rw-r--r--autodoc/inc/ary/cpp/c_enum.hxx119
-rw-r--r--autodoc/inc/ary/cpp/c_enuval.hxx99
-rw-r--r--autodoc/inc/ary/cpp/c_funct.hxx152
-rw-r--r--autodoc/inc/ary/cpp/c_gate.hxx124
-rw-r--r--autodoc/inc/ary/cpp/c_macro.hxx87
-rw-r--r--autodoc/inc/ary/cpp/c_namesp.hxx197
-rw-r--r--autodoc/inc/ary/cpp/c_osigna.hxx125
-rw-r--r--autodoc/inc/ary/cpp/c_slntry.hxx113
-rw-r--r--autodoc/inc/ary/cpp/c_traits.hxx219
-rw-r--r--autodoc/inc/ary/cpp/c_tydef.hxx103
-rw-r--r--autodoc/inc/ary/cpp/c_type.hxx136
-rw-r--r--autodoc/inc/ary/cpp/c_types4cpp.hxx137
-rw-r--r--autodoc/inc/ary/cpp/c_vari.hxx117
-rw-r--r--autodoc/inc/ary/cpp/c_vfflag.hxx154
-rw-r--r--autodoc/inc/ary/cpp/cp_ce.hxx176
-rw-r--r--autodoc/inc/ary/cpp/cp_def.hxx102
-rw-r--r--autodoc/inc/ary/cpp/cp_type.hxx99
-rw-r--r--autodoc/inc/ary/cpp/inpcontx.hxx219
-rw-r--r--autodoc/inc/ary/cpp/namechain.hxx143
-rw-r--r--autodoc/inc/ary/cpp/usedtype.hxx215
-rw-r--r--autodoc/inc/ary/doc/d_boolean.hxx99
-rw-r--r--autodoc/inc/ary/doc/d_docu.hxx109
-rw-r--r--autodoc/inc/ary/doc/d_node.hxx112
-rw-r--r--autodoc/inc/ary/doc/d_oldcppdocu.hxx133
-rw-r--r--autodoc/inc/ary/doc/d_oldidldocu.hxx114
-rw-r--r--autodoc/inc/ary/doc/d_parametrized.hxx124
-rw-r--r--autodoc/inc/ary/doc/d_types4doc.hxx73
-rw-r--r--autodoc/inc/ary/doc/ht/dht_interpreter.hxx79
-rw-r--r--autodoc/inc/ary/entity.hxx84
-rw-r--r--autodoc/inc/ary/getncast.hxx91
-rw-r--r--autodoc/inc/ary/idl/i_attribute.hxx138
-rw-r--r--autodoc/inc/ary/idl/i_ce.hxx138
-rw-r--r--autodoc/inc/ary/idl/i_ce2s.hxx98
-rw-r--r--autodoc/inc/ary/idl/i_comrela.hxx83
-rw-r--r--autodoc/inc/ary/idl/i_constant.hxx115
-rw-r--r--autodoc/inc/ary/idl/i_constgroup.hxx104
-rw-r--r--autodoc/inc/ary/idl/i_enum.hxx103
-rw-r--r--autodoc/inc/ary/idl/i_enumvalue.hxx106
-rw-r--r--autodoc/inc/ary/idl/i_exception.hxx110
-rw-r--r--autodoc/inc/ary/idl/i_function.hxx163
-rw-r--r--autodoc/inc/ary/idl/i_gate.hxx86
-rw-r--r--autodoc/inc/ary/idl/i_interface.hxx130
-rw-r--r--autodoc/inc/ary/idl/i_module.hxx117
-rw-r--r--autodoc/inc/ary/idl/i_namelookup.hxx98
-rw-r--r--autodoc/inc/ary/idl/i_param.hxx78
-rw-r--r--autodoc/inc/ary/idl/i_property.hxx146
-rw-r--r--autodoc/inc/ary/idl/i_service.hxx142
-rw-r--r--autodoc/inc/ary/idl/i_singleton.hxx108
-rw-r--r--autodoc/inc/ary/idl/i_siservice.hxx110
-rw-r--r--autodoc/inc/ary/idl/i_sisingleton.hxx103
-rw-r--r--autodoc/inc/ary/idl/i_struct.hxx133
-rw-r--r--autodoc/inc/ary/idl/i_structelem.hxx106
-rw-r--r--autodoc/inc/ary/idl/i_traits.hxx81
-rw-r--r--autodoc/inc/ary/idl/i_type.hxx145
-rw-r--r--autodoc/inc/ary/idl/i_typedef.hxx93
-rw-r--r--autodoc/inc/ary/idl/i_types4idl.hxx145
-rw-r--r--autodoc/inc/ary/idl/ik_attribute.hxx88
-rw-r--r--autodoc/inc/ary/idl/ik_ce.hxx148
-rw-r--r--autodoc/inc/ary/idl/ik_constant.hxx78
-rw-r--r--autodoc/inc/ary/idl/ik_constgroup.hxx75
-rw-r--r--autodoc/inc/ary/idl/ik_enum.hxx87
-rw-r--r--autodoc/inc/ary/idl/ik_enumvalue.hxx76
-rw-r--r--autodoc/inc/ary/idl/ik_exception.hxx84
-rw-r--r--autodoc/inc/ary/idl/ik_function.hxx98
-rw-r--r--autodoc/inc/ary/idl/ik_interface.hxx103
-rw-r--r--autodoc/inc/ary/idl/ik_module.hxx117
-rw-r--r--autodoc/inc/ary/idl/ik_property.hxx92
-rw-r--r--autodoc/inc/ary/idl/ik_service.hxx91
-rw-r--r--autodoc/inc/ary/idl/ik_singleton.hxx76
-rw-r--r--autodoc/inc/ary/idl/ik_siservice.hxx78
-rw-r--r--autodoc/inc/ary/idl/ik_sisingleton.hxx76
-rw-r--r--autodoc/inc/ary/idl/ik_struct.hxx93
-rw-r--r--autodoc/inc/ary/idl/ik_structelem.hxx75
-rw-r--r--autodoc/inc/ary/idl/ik_typedef.hxx86
-rw-r--r--autodoc/inc/ary/idl/ip_ce.hxx213
-rw-r--r--autodoc/inc/ary/idl/ip_type.hxx86
-rw-r--r--autodoc/inc/ary/info/all_dts.hxx162
-rw-r--r--autodoc/inc/ary/info/all_tags.hxx291
-rw-r--r--autodoc/inc/ary/info/ci_attag.hxx103
-rw-r--r--autodoc/inc/ary/info/ci_text.hxx87
-rw-r--r--autodoc/inc/ary/info/docstore.hxx119
-rw-r--r--autodoc/inc/ary/info/infodisp.hxx117
-rw-r--r--autodoc/inc/ary/info/inftypes.hxx124
-rw-r--r--autodoc/inc/ary/itrange.hxx83
-rw-r--r--autodoc/inc/ary/loc/loc_dir.hxx148
-rw-r--r--autodoc/inc/ary/loc/loc_file.hxx71
-rw-r--r--autodoc/inc/ary/loc/loc_filebase.hxx75
-rw-r--r--autodoc/inc/ary/loc/loc_le.hxx97
-rw-r--r--autodoc/inc/ary/loc/loc_root.hxx113
-rw-r--r--autodoc/inc/ary/loc/loc_traits.hxx118
-rw-r--r--autodoc/inc/ary/loc/loc_types4loc.hxx57
-rw-r--r--autodoc/inc/ary/loc/locp_le.hxx91
-rw-r--r--autodoc/inc/ary/namesort.hxx78
-rw-r--r--autodoc/inc/ary/object.hxx73
-rw-r--r--autodoc/inc/ary/qualiname.hxx106
-rw-r--r--autodoc/inc/ary/sequentialids.hxx156
-rw-r--r--autodoc/inc/ary/stdconstiter.hxx101
-rw-r--r--autodoc/inc/ary/symtreenode.hxx347
-rw-r--r--autodoc/inc/ary/types.hxx133
-rw-r--r--autodoc/inc/ary/udmhost.hxx65
-rw-r--r--autodoc/inc/ary_i/ci_atag2.hxx81
-rw-r--r--autodoc/inc/ary_i/ci_text2.hxx94
-rw-r--r--autodoc/inc/ary_i/d_token.hxx284
-rw-r--r--autodoc/inc/ary_i/disdocum.hxx148
-rw-r--r--autodoc/inc/autodoc/displaying.hxx78
-rw-r--r--autodoc/inc/autodoc/dsp_html_std.hxx216
-rw-r--r--autodoc/inc/autodoc/dsp_txt_flist.hxx67
-rw-r--r--autodoc/inc/autodoc/filecoli.hxx74
-rw-r--r--autodoc/inc/autodoc/parsing.hxx80
-rw-r--r--autodoc/inc/autodoc/prs_code.hxx79
-rw-r--r--autodoc/inc/autodoc/prs_docu.hxx61
-rw-r--r--autodoc/inc/autodoc/x_parsing.hxx76
-rw-r--r--autodoc/inc/display/corframe.hxx84
-rw-r--r--autodoc/inc/parser/parser.hxx59
-rw-r--r--autodoc/inc/parser/parserinfo.hxx67
-rw-r--r--autodoc/inc/parser/unoidl.hxx81
-rw-r--r--autodoc/prj/build.lst67
-rw-r--r--autodoc/prj/d.lst3
-rw-r--r--autodoc/source/ary/cpp/c_builtintype.cxx130
-rw-r--r--autodoc/source/ary/cpp/c_class.cxx287
-rw-r--r--autodoc/source/ary/cpp/c_de.cxx54
-rw-r--r--autodoc/source/ary/cpp/c_define.cxx79
-rw-r--r--autodoc/source/ary/cpp/c_enum.cxx137
-rw-r--r--autodoc/source/ary/cpp/c_enuval.cxx90
-rw-r--r--autodoc/source/ary/cpp/c_funct.cxx250
-rw-r--r--autodoc/source/ary/cpp/c_macro.cxx81
-rw-r--r--autodoc/source/ary/cpp/c_namesp.cxx297
-rw-r--r--autodoc/source/ary/cpp/c_osigna.cxx79
-rw-r--r--autodoc/source/ary/cpp/c_reposypart.cxx526
-rw-r--r--autodoc/source/ary/cpp/c_reposypart.hxx117
-rw-r--r--autodoc/source/ary/cpp/c_slots.cxx109
-rw-r--r--autodoc/source/ary/cpp/c_slots.hxx87
-rw-r--r--autodoc/source/ary/cpp/c_traits.cxx226
-rw-r--r--autodoc/source/ary/cpp/c_tydef.cxx97
-rw-r--r--autodoc/source/ary/cpp/c_vari.cxx99
-rw-r--r--autodoc/source/ary/cpp/ca_ce.cxx625
-rw-r--r--autodoc/source/ary/cpp/ca_ce.hxx216
-rw-r--r--autodoc/source/ary/cpp/ca_def.cxx114
-rw-r--r--autodoc/source/ary/cpp/ca_def.hxx118
-rw-r--r--autodoc/source/ary/cpp/ca_type.cxx139
-rw-r--r--autodoc/source/ary/cpp/ca_type.hxx130
-rw-r--r--autodoc/source/ary/cpp/cs_ce.cxx107
-rw-r--r--autodoc/source/ary/cpp/cs_ce.hxx108
-rw-r--r--autodoc/source/ary/cpp/cs_def.cxx89
-rw-r--r--autodoc/source/ary/cpp/cs_def.hxx110
-rw-r--r--autodoc/source/ary/cpp/cs_type.cxx115
-rw-r--r--autodoc/source/ary/cpp/cs_type.hxx141
-rw-r--r--autodoc/source/ary/cpp/makefile.mk80
-rw-r--r--autodoc/source/ary/cpp/namechain.cxx199
-rw-r--r--autodoc/source/ary/cpp/tplparam.cxx77
-rw-r--r--autodoc/source/ary/cpp/tplparam.hxx87
-rw-r--r--autodoc/source/ary/cpp/usedtype.cxx578
-rw-r--r--autodoc/source/ary/doc/d_boolean.cxx58
-rw-r--r--autodoc/source/ary/doc/d_docu.cxx62
-rw-r--r--autodoc/source/ary/doc/d_node.cxx72
-rw-r--r--autodoc/source/ary/doc/d_oldcppdocu.cxx339
-rw-r--r--autodoc/source/ary/doc/d_oldidldocu.cxx79
-rw-r--r--autodoc/source/ary/doc/makefile.mk58
-rw-r--r--autodoc/source/ary/idl/i2s_calculator.cxx995
-rw-r--r--autodoc/source/ary/idl/i2s_calculator.hxx298
-rw-r--r--autodoc/source/ary/idl/i_attribute.cxx162
-rw-r--r--autodoc/source/ary/idl/i_ce.cxx83
-rw-r--r--autodoc/source/ary/idl/i_ce2s.cxx87
-rw-r--r--autodoc/source/ary/idl/i_comrela.cxx50
-rw-r--r--autodoc/source/ary/idl/i_constant.cxx126
-rw-r--r--autodoc/source/ary/idl/i_constgroup.cxx117
-rw-r--r--autodoc/source/ary/idl/i_enum.cxx146
-rw-r--r--autodoc/source/ary/idl/i_enumvalue.cxx119
-rw-r--r--autodoc/source/ary/idl/i_exception.cxx142
-rw-r--r--autodoc/source/ary/idl/i_function.cxx168
-rw-r--r--autodoc/source/ary/idl/i_interface.cxx199
-rw-r--r--autodoc/source/ary/idl/i_module.cxx207
-rw-r--r--autodoc/source/ary/idl/i_namelookup.cxx65
-rw-r--r--autodoc/source/ary/idl/i_nnfinder.hxx121
-rw-r--r--autodoc/source/ary/idl/i_param.cxx60
-rw-r--r--autodoc/source/ary/idl/i_property.cxx174
-rw-r--r--autodoc/source/ary/idl/i_reposypart.cxx122
-rw-r--r--autodoc/source/ary/idl/i_reposypart.hxx99
-rw-r--r--autodoc/source/ary/idl/i_service.cxx174
-rw-r--r--autodoc/source/ary/idl/i_singleton.cxx115
-rw-r--r--autodoc/source/ary/idl/i_siservice.cxx124
-rw-r--r--autodoc/source/ary/idl/i_sisingleton.cxx116
-rw-r--r--autodoc/source/ary/idl/i_struct.cxx166
-rw-r--r--autodoc/source/ary/idl/i_structelem.cxx120
-rw-r--r--autodoc/source/ary/idl/i_traits.cxx75
-rw-r--r--autodoc/source/ary/idl/i_typedef.cxx148
-rw-r--r--autodoc/source/ary/idl/ia_ce.cxx584
-rw-r--r--autodoc/source/ary/idl/ia_ce.hxx256
-rw-r--r--autodoc/source/ary/idl/ia_type.cxx367
-rw-r--r--autodoc/source/ary/idl/ia_type.hxx173
-rw-r--r--autodoc/source/ary/idl/is_ce.cxx68
-rw-r--r--autodoc/source/ary/idl/is_ce.hxx82
-rw-r--r--autodoc/source/ary/idl/is_type.cxx86
-rw-r--r--autodoc/source/ary/idl/is_type.hxx125
-rw-r--r--autodoc/source/ary/idl/it_builtin.cxx82
-rw-r--r--autodoc/source/ary/idl/it_builtin.hxx79
-rw-r--r--autodoc/source/ary/idl/it_ce.cxx103
-rw-r--r--autodoc/source/ary/idl/it_ce.hxx91
-rw-r--r--autodoc/source/ary/idl/it_explicit.cxx103
-rw-r--r--autodoc/source/ary/idl/it_explicit.hxx96
-rw-r--r--autodoc/source/ary/idl/it_named.hxx78
-rw-r--r--autodoc/source/ary/idl/it_sequence.cxx94
-rw-r--r--autodoc/source/ary/idl/it_sequence.hxx87
-rw-r--r--autodoc/source/ary/idl/it_tplparam.cxx95
-rw-r--r--autodoc/source/ary/idl/it_tplparam.hxx101
-rw-r--r--autodoc/source/ary/idl/it_xnameroom.cxx103
-rw-r--r--autodoc/source/ary/idl/it_xnameroom.hxx126
-rw-r--r--autodoc/source/ary/idl/makefile.mk87
-rw-r--r--autodoc/source/ary/inc/cpp_internalgate.hxx69
-rw-r--r--autodoc/source/ary/inc/cross_refs.hxx101
-rw-r--r--autodoc/source/ary/inc/idl_internalgate.hxx69
-rw-r--r--autodoc/source/ary/inc/idsort.hxx55
-rw-r--r--autodoc/source/ary/inc/loc_internalgate.hxx66
-rw-r--r--autodoc/source/ary/inc/nametreenode.hxx213
-rw-r--r--autodoc/source/ary/inc/reposy.hxx94
-rw-r--r--autodoc/source/ary/inc/sci_impl.hxx416
-rw-r--r--autodoc/source/ary/inc/slots.hxx166
-rw-r--r--autodoc/source/ary/inc/sorted_idset.hxx99
-rw-r--r--autodoc/source/ary/inc/sortedids.hxx240
-rw-r--r--autodoc/source/ary/inc/store/s_base.hxx183
-rw-r--r--autodoc/source/ary/inc/store/s_iterator.hxx240
-rw-r--r--autodoc/source/ary/inc/store/s_storage.hxx297
-rw-r--r--autodoc/source/ary/inc/traits_impl.hxx122
-rw-r--r--autodoc/source/ary/info/all_dts.cxx107
-rw-r--r--autodoc/source/ary/info/all_tags.cxx571
-rw-r--r--autodoc/source/ary/info/ci_attag.cxx95
-rw-r--r--autodoc/source/ary/info/ci_text.cxx73
-rw-r--r--autodoc/source/ary/info/makefile.mk60
-rw-r--r--autodoc/source/ary/kernel/ary_disp.cxx111
-rw-r--r--autodoc/source/ary/kernel/cessentl.cxx89
-rw-r--r--autodoc/source/ary/kernel/makefile.mk63
-rw-r--r--autodoc/source/ary/kernel/namesort.cxx103
-rw-r--r--autodoc/source/ary/kernel/qualiname.cxx108
-rw-r--r--autodoc/source/ary/kernel/reposy.cxx221
-rw-r--r--autodoc/source/ary/kernel/slots.cxx167
-rw-r--r--autodoc/source/ary/loc/loc_dir.cxx137
-rw-r--r--autodoc/source/ary/loc/loc_file.cxx69
-rw-r--r--autodoc/source/ary/loc/loc_filebase.cxx66
-rw-r--r--autodoc/source/ary/loc/loc_root.cxx86
-rw-r--r--autodoc/source/ary/loc/loc_traits.cxx94
-rw-r--r--autodoc/source/ary/loc/loca_le.cxx184
-rw-r--r--autodoc/source/ary/loc/loca_le.hxx101
-rw-r--r--autodoc/source/ary/loc/locs_le.cxx70
-rw-r--r--autodoc/source/ary/loc/locs_le.hxx91
-rw-r--r--autodoc/source/ary/loc/makefile.mk61
-rw-r--r--autodoc/source/ary_i/kernel/ci_atag2.cxx59
-rw-r--r--autodoc/source/ary_i/kernel/ci_text2.cxx141
-rw-r--r--autodoc/source/ary_i/kernel/d_token.cxx190
-rw-r--r--autodoc/source/ary_i/kernel/makefile.mk60
-rw-r--r--autodoc/source/display/html/aryattrs.cxx251
-rw-r--r--autodoc/source/display/html/aryattrs.hxx157
-rw-r--r--autodoc/source/display/html/cfrstd.cxx347
-rw-r--r--autodoc/source/display/html/chd_udk2.cxx204
-rw-r--r--autodoc/source/display/html/cre_link.cxx272
-rw-r--r--autodoc/source/display/html/cre_link.hxx136
-rw-r--r--autodoc/source/display/html/dsply_cl.cxx111
-rw-r--r--autodoc/source/display/html/dsply_cl.hxx90
-rw-r--r--autodoc/source/display/html/dsply_da.cxx202
-rw-r--r--autodoc/source/display/html/dsply_da.hxx110
-rw-r--r--autodoc/source/display/html/dsply_op.cxx210
-rw-r--r--autodoc/source/display/html/dsply_op.hxx107
-rw-r--r--autodoc/source/display/html/easywri.cxx67
-rw-r--r--autodoc/source/display/html/easywri.hxx82
-rw-r--r--autodoc/source/display/html/hd_chlst.cxx592
-rw-r--r--autodoc/source/display/html/hd_chlst.hxx209
-rw-r--r--autodoc/source/display/html/hd_docu.cxx488
-rw-r--r--autodoc/source/display/html/hd_docu.hxx199
-rw-r--r--autodoc/source/display/html/hdimpl.cxx549
-rw-r--r--autodoc/source/display/html/hdimpl.hxx250
-rw-r--r--autodoc/source/display/html/html_kit.cxx307
-rw-r--r--autodoc/source/display/html/html_kit.hxx201
-rw-r--r--autodoc/source/display/html/makefile.mk78
-rw-r--r--autodoc/source/display/html/nav_main.cxx379
-rw-r--r--autodoc/source/display/html/nav_main.hxx121
-rw-r--r--autodoc/source/display/html/navibar.cxx318
-rw-r--r--autodoc/source/display/html/navibar.hxx121
-rw-r--r--autodoc/source/display/html/opageenv.cxx492
-rw-r--r--autodoc/source/display/html/opageenv.hxx131
-rw-r--r--autodoc/source/display/html/outfile.cxx395
-rw-r--r--autodoc/source/display/html/outfile.hxx89
-rw-r--r--autodoc/source/display/html/pagemake.cxx578
-rw-r--r--autodoc/source/display/html/pagemake.hxx167
-rw-r--r--autodoc/source/display/html/pm_aldef.cxx248
-rw-r--r--autodoc/source/display/html/pm_aldef.hxx91
-rw-r--r--autodoc/source/display/html/pm_base.cxx79
-rw-r--r--autodoc/source/display/html/pm_base.hxx90
-rw-r--r--autodoc/source/display/html/pm_class.cxx813
-rw-r--r--autodoc/source/display/html/pm_class.hxx133
-rw-r--r--autodoc/source/display/html/pm_help.cxx234
-rw-r--r--autodoc/source/display/html/pm_help.hxx65
-rw-r--r--autodoc/source/display/html/pm_index.cxx320
-rw-r--r--autodoc/source/display/html/pm_index.hxx138
-rw-r--r--autodoc/source/display/html/pm_namsp.cxx176
-rw-r--r--autodoc/source/display/html/pm_namsp.hxx80
-rw-r--r--autodoc/source/display/html/pm_start.cxx139
-rw-r--r--autodoc/source/display/html/pm_start.hxx65
-rw-r--r--autodoc/source/display/html/protarea.cxx140
-rw-r--r--autodoc/source/display/html/protarea.hxx96
-rw-r--r--autodoc/source/display/html/strconst.hxx80
-rw-r--r--autodoc/source/display/idl/hfi_constgroup.cxx140
-rw-r--r--autodoc/source/display/idl/hfi_constgroup.hxx68
-rw-r--r--autodoc/source/display/idl/hfi_doc.cxx194
-rw-r--r--autodoc/source/display/idl/hfi_doc.hxx88
-rw-r--r--autodoc/source/display/idl/hfi_enum.cxx136
-rw-r--r--autodoc/source/display/idl/hfi_enum.hxx70
-rw-r--r--autodoc/source/display/idl/hfi_globalindex.cxx278
-rw-r--r--autodoc/source/display/idl/hfi_globalindex.hxx91
-rw-r--r--autodoc/source/display/idl/hfi_hierarchy.cxx205
-rw-r--r--autodoc/source/display/idl/hfi_hierarchy.hxx127
-rw-r--r--autodoc/source/display/idl/hfi_interface.cxx360
-rw-r--r--autodoc/source/display/idl/hfi_interface.hxx93
-rw-r--r--autodoc/source/display/idl/hfi_linklist.cxx380
-rw-r--r--autodoc/source/display/idl/hfi_linklist.hxx147
-rw-r--r--autodoc/source/display/idl/hfi_method.cxx238
-rw-r--r--autodoc/source/display/idl/hfi_method.hxx106
-rw-r--r--autodoc/source/display/idl/hfi_module.cxx302
-rw-r--r--autodoc/source/display/idl/hfi_module.hxx85
-rw-r--r--autodoc/source/display/idl/hfi_navibar.cxx227
-rw-r--r--autodoc/source/display/idl/hfi_navibar.hxx85
-rw-r--r--autodoc/source/display/idl/hfi_property.cxx454
-rw-r--r--autodoc/source/display/idl/hfi_property.hxx185
-rw-r--r--autodoc/source/display/idl/hfi_service.cxx365
-rw-r--r--autodoc/source/display/idl/hfi_service.hxx101
-rw-r--r--autodoc/source/display/idl/hfi_singleton.cxx136
-rw-r--r--autodoc/source/display/idl/hfi_singleton.hxx71
-rw-r--r--autodoc/source/display/idl/hfi_siservice.cxx178
-rw-r--r--autodoc/source/display/idl/hfi_siservice.hxx74
-rw-r--r--autodoc/source/display/idl/hfi_struct.cxx206
-rw-r--r--autodoc/source/display/idl/hfi_struct.hxx81
-rw-r--r--autodoc/source/display/idl/hfi_tag.cxx357
-rw-r--r--autodoc/source/display/idl/hfi_tag.hxx180
-rw-r--r--autodoc/source/display/idl/hfi_typedef.cxx95
-rw-r--r--autodoc/source/display/idl/hfi_typedef.hxx67
-rw-r--r--autodoc/source/display/idl/hfi_typetext.cxx760
-rw-r--r--autodoc/source/display/idl/hfi_typetext.hxx160
-rw-r--r--autodoc/source/display/idl/hfi_xrefpage.cxx276
-rw-r--r--autodoc/source/display/idl/hfi_xrefpage.hxx107
-rw-r--r--autodoc/source/display/idl/hi_ary.cxx273
-rw-r--r--autodoc/source/display/idl/hi_ary.hxx164
-rw-r--r--autodoc/source/display/idl/hi_display.cxx200
-rw-r--r--autodoc/source/display/idl/hi_env.cxx202
-rw-r--r--autodoc/source/display/idl/hi_env.hxx163
-rw-r--r--autodoc/source/display/idl/hi_factory.cxx323
-rw-r--r--autodoc/source/display/idl/hi_factory.hxx172
-rw-r--r--autodoc/source/display/idl/hi_linkhelper.cxx99
-rw-r--r--autodoc/source/display/idl/hi_linkhelper.hxx110
-rw-r--r--autodoc/source/display/idl/hi_main.cxx766
-rw-r--r--autodoc/source/display/idl/hi_main.hxx181
-rw-r--r--autodoc/source/display/idl/makefile.mk77
-rw-r--r--autodoc/source/display/inc/cfrstd.hxx82
-rw-r--r--autodoc/source/display/inc/html/chd_udk2.hxx98
-rw-r--r--autodoc/source/display/inc/idl/hi_display.hxx113
-rw-r--r--autodoc/source/display/inc/toolkit/hf_docentry.hxx62
-rw-r--r--autodoc/source/display/inc/toolkit/hf_funcdecl.hxx74
-rw-r--r--autodoc/source/display/inc/toolkit/hf_linachain.hxx75
-rw-r--r--autodoc/source/display/inc/toolkit/hf_navi_main.hxx94
-rw-r--r--autodoc/source/display/inc/toolkit/hf_navi_sub.hxx83
-rw-r--r--autodoc/source/display/inc/toolkit/hf_title.hxx94
-rw-r--r--autodoc/source/display/inc/toolkit/htmlfactory.hxx104
-rw-r--r--autodoc/source/display/inc/toolkit/htmlfile.hxx88
-rw-r--r--autodoc/source/display/inc/toolkit/out_node.hxx132
-rw-r--r--autodoc/source/display/inc/toolkit/out_position.hxx120
-rw-r--r--autodoc/source/display/inc/toolkit/out_tree.hxx139
-rw-r--r--autodoc/source/display/inc/toolkit/outputstack.hxx75
-rw-r--r--autodoc/source/display/kernel/displfct.cxx91
-rw-r--r--autodoc/source/display/kernel/displfct.hxx65
-rw-r--r--autodoc/source/display/kernel/makefile.mk55
-rw-r--r--autodoc/source/display/toolkit/hf_docentry.cxx77
-rw-r--r--autodoc/source/display/toolkit/hf_funcdecl.cxx159
-rw-r--r--autodoc/source/display/toolkit/hf_linachain.cxx113
-rw-r--r--autodoc/source/display/toolkit/hf_navi_main.cxx240
-rw-r--r--autodoc/source/display/toolkit/hf_navi_sub.cxx105
-rw-r--r--autodoc/source/display/toolkit/hf_title.cxx172
-rw-r--r--autodoc/source/display/toolkit/htmlfile.cxx213
-rw-r--r--autodoc/source/display/toolkit/makefile.mk64
-rw-r--r--autodoc/source/display/toolkit/out_node.cxx192
-rw-r--r--autodoc/source/display/toolkit/out_position.cxx242
-rw-r--r--autodoc/source/display/toolkit/out_tree.cxx56
-rw-r--r--autodoc/source/display/toolkit/outputstack.cxx60
-rw-r--r--autodoc/source/exes/adc_uni/adc_cl.cxx402
-rw-r--r--autodoc/source/exes/adc_uni/adc_cmd.hxx134
-rw-r--r--autodoc/source/exes/adc_uni/adc_cmd_parse.cxx345
-rw-r--r--autodoc/source/exes/adc_uni/adc_cmd_parse.hxx211
-rw-r--r--autodoc/source/exes/adc_uni/adc_cmds.cxx180
-rw-r--r--autodoc/source/exes/adc_uni/adc_cmds.hxx128
-rw-r--r--autodoc/source/exes/adc_uni/adc_msg.cxx211
-rw-r--r--autodoc/source/exes/adc_uni/cmd_run.cxx281
-rw-r--r--autodoc/source/exes/adc_uni/cmd_run.hxx107
-rw-r--r--autodoc/source/exes/adc_uni/cmd_sincedata.cxx132
-rw-r--r--autodoc/source/exes/adc_uni/cmd_sincedata.hxx94
-rw-r--r--autodoc/source/exes/adc_uni/main.cxx56
-rw-r--r--autodoc/source/exes/adc_uni/makefile.mk104
-rw-r--r--autodoc/source/exes/adc_uni/spec-CommandLine.txt181
-rw-r--r--autodoc/source/exes/adc_uni/spec-DevGuideReferenceFile.txt0
-rw-r--r--autodoc/source/exes/adc_uni/spec-SinceTag_Handling.txt49
-rw-r--r--autodoc/source/inc/adc_cl.hxx195
-rw-r--r--autodoc/source/inc/adc_msg.hxx144
-rw-r--r--autodoc/source/inc/docu_node_ids.hxx67
-rw-r--r--autodoc/source/inc/estack.hxx96
-rw-r--r--autodoc/source/inc/luxenum.hxx105
-rw-r--r--autodoc/source/inc/manip.hxx63
-rw-r--r--autodoc/source/inc/precomp.h69
-rw-r--r--autodoc/source/inc/prprpr.hxx61
-rw-r--r--autodoc/source/inc/tools/filecoll.hxx71
-rw-r--r--autodoc/source/inc/tools/tkpchars.hxx172
-rw-r--r--autodoc/source/mkinc/fullcpp.mk54
-rw-r--r--autodoc/source/parser/adoc/a_rdocu.cxx92
-rw-r--r--autodoc/source/parser/adoc/adoc_tok.cxx49
-rw-r--r--autodoc/source/parser/adoc/cx_a_std.cxx518
-rw-r--r--autodoc/source/parser/adoc/cx_a_sub.cxx184
-rw-r--r--autodoc/source/parser/adoc/docu_pe.cxx405
-rw-r--r--autodoc/source/parser/adoc/makefile.mk62
-rw-r--r--autodoc/source/parser/adoc/prs_adoc.cxx59
-rw-r--r--autodoc/source/parser/adoc/tk_attag.cxx86
-rw-r--r--autodoc/source/parser/adoc/tk_docw.cxx130
-rw-r--r--autodoc/source/parser/cpp/all_toks.cxx154
-rw-r--r--autodoc/source/parser/cpp/all_toks.hxx221
-rw-r--r--autodoc/source/parser/cpp/c_dealer.cxx151
-rw-r--r--autodoc/source/parser/cpp/c_dealer.hxx110
-rw-r--r--autodoc/source/parser/cpp/c_rcode.cxx163
-rw-r--r--autodoc/source/parser/cpp/c_rcode.hxx106
-rw-r--r--autodoc/source/parser/cpp/cpp_pe.cxx80
-rw-r--r--autodoc/source/parser/cpp/cpp_pe.hxx83
-rw-r--r--autodoc/source/parser/cpp/cpp_tok.hxx65
-rw-r--r--autodoc/source/parser/cpp/cx_base.cxx79
-rw-r--r--autodoc/source/parser/cpp/cx_base.hxx98
-rw-r--r--autodoc/source/parser/cpp/cx_c_pp.cxx182
-rw-r--r--autodoc/source/parser/cpp/cx_c_pp.hxx97
-rw-r--r--autodoc/source/parser/cpp/cx_c_std.cxx531
-rw-r--r--autodoc/source/parser/cpp/cx_c_std.hxx94
-rw-r--r--autodoc/source/parser/cpp/cx_c_sub.cxx160
-rw-r--r--autodoc/source/parser/cpp/cx_c_sub.hxx105
-rw-r--r--autodoc/source/parser/cpp/cxt2ary.cxx360
-rw-r--r--autodoc/source/parser/cpp/cxt2ary.hxx201
-rw-r--r--autodoc/source/parser/cpp/defdescr.cxx227
-rw-r--r--autodoc/source/parser/cpp/defdescr.hxx100
-rw-r--r--autodoc/source/parser/cpp/fevnthdl.hxx107
-rw-r--r--autodoc/source/parser/cpp/icprivow.cxx195
-rw-r--r--autodoc/source/parser/cpp/icprivow.hxx126
-rw-r--r--autodoc/source/parser/cpp/makefile.mk87
-rw-r--r--autodoc/source/parser/cpp/pe_base.cxx226
-rw-r--r--autodoc/source/parser/cpp/pe_base.hxx126
-rw-r--r--autodoc/source/parser/cpp/pe_class.cxx496
-rw-r--r--autodoc/source/parser/cpp/pe_class.hxx255
-rw-r--r--autodoc/source/parser/cpp/pe_defs.cxx182
-rw-r--r--autodoc/source/parser/cpp/pe_defs.hxx96
-rw-r--r--autodoc/source/parser/cpp/pe_enum.cxx191
-rw-r--r--autodoc/source/parser/cpp/pe_enum.hxx140
-rw-r--r--autodoc/source/parser/cpp/pe_enval.cxx170
-rw-r--r--autodoc/source/parser/cpp/pe_enval.hxx101
-rw-r--r--autodoc/source/parser/cpp/pe_expr.cxx179
-rw-r--r--autodoc/source/parser/cpp/pe_expr.hxx107
-rw-r--r--autodoc/source/parser/cpp/pe_file.cxx320
-rw-r--r--autodoc/source/parser/cpp/pe_file.hxx198
-rw-r--r--autodoc/source/parser/cpp/pe_funct.cxx612
-rw-r--r--autodoc/source/parser/cpp/pe_funct.hxx284
-rw-r--r--autodoc/source/parser/cpp/pe_ignor.cxx118
-rw-r--r--autodoc/source/parser/cpp/pe_ignor.hxx77
-rw-r--r--autodoc/source/parser/cpp/pe_namsp.cxx165
-rw-r--r--autodoc/source/parser/cpp/pe_namsp.hxx101
-rw-r--r--autodoc/source/parser/cpp/pe_param.cxx282
-rw-r--r--autodoc/source/parser/cpp/pe_param.hxx141
-rw-r--r--autodoc/source/parser/cpp/pe_tpltp.cxx178
-rw-r--r--autodoc/source/parser/cpp/pe_tpltp.hxx108
-rw-r--r--autodoc/source/parser/cpp/pe_tydef.cxx145
-rw-r--r--autodoc/source/parser/cpp/pe_tydef.hxx93
-rw-r--r--autodoc/source/parser/cpp/pe_type.cxx556
-rw-r--r--autodoc/source/parser/cpp/pe_type.hxx187
-rw-r--r--autodoc/source/parser/cpp/pe_vafu.cxx651
-rw-r--r--autodoc/source/parser/cpp/pe_vafu.hxx292
-rw-r--r--autodoc/source/parser/cpp/pe_vari.cxx189
-rw-r--r--autodoc/source/parser/cpp/pe_vari.hxx132
-rw-r--r--autodoc/source/parser/cpp/pev.hxx306
-rw-r--r--autodoc/source/parser/cpp/preproc.cxx233
-rw-r--r--autodoc/source/parser/cpp/preproc.hxx118
-rw-r--r--autodoc/source/parser/cpp/prs_cpp.cxx250
-rw-r--r--autodoc/source/parser/cpp/sdocdist.hxx161
-rw-r--r--autodoc/source/parser/cpp/sfscope.hxx72
-rw-r--r--autodoc/source/parser/cpp/sownstck.hxx327
-rw-r--r--autodoc/source/parser/cpp/srecover.hxx134
-rw-r--r--autodoc/source/parser/cpp/tkp_cpp.cxx94
-rw-r--r--autodoc/source/parser/cpp/tkp_cpp.hxx101
-rw-r--r--autodoc/source/parser/cpp/tokintpr.hxx120
-rw-r--r--autodoc/source/parser/inc/adoc/a_rdocu.hxx73
-rw-r--r--autodoc/source/parser/inc/adoc/adoc_tok.hxx64
-rw-r--r--autodoc/source/parser/inc/adoc/atokdeal.hxx62
-rw-r--r--autodoc/source/parser/inc/adoc/cx_a_std.hxx107
-rw-r--r--autodoc/source/parser/inc/adoc/cx_a_sub.hxx148
-rw-r--r--autodoc/source/parser/inc/adoc/docu_pe.hxx195
-rw-r--r--autodoc/source/parser/inc/adoc/prs_adoc.hxx57
-rw-r--r--autodoc/source/parser/inc/adoc/tk_attag.hxx100
-rw-r--r--autodoc/source/parser/inc/adoc/tk_docw.hxx119
-rw-r--r--autodoc/source/parser/inc/adoc/tokintpr.hxx119
-rw-r--r--autodoc/source/parser/inc/cpp/ctokdeal.hxx76
-rw-r--r--autodoc/source/parser/inc/cpp/prs_cpp.hxx70
-rw-r--r--autodoc/source/parser/inc/doc_deal.hxx92
-rw-r--r--autodoc/source/parser/inc/semantic/callf.hxx289
-rw-r--r--autodoc/source/parser/inc/semantic/parseenv.hxx112
-rw-r--r--autodoc/source/parser/inc/semantic/sub_pe.hxx114
-rw-r--r--autodoc/source/parser/inc/semantic/sub_peu.hxx133
-rw-r--r--autodoc/source/parser/inc/tokens/parseinc.hxx205
-rw-r--r--autodoc/source/parser/inc/tokens/stmstarr.hxx87
-rw-r--r--autodoc/source/parser/inc/tokens/stmstate.hxx70
-rw-r--r--autodoc/source/parser/inc/tokens/stmstfin.hxx82
-rw-r--r--autodoc/source/parser/inc/tokens/tkp.hxx95
-rw-r--r--autodoc/source/parser/inc/tokens/tkpcontx.hxx142
-rw-r--r--autodoc/source/parser/inc/tokens/tkpstama.hxx125
-rw-r--r--autodoc/source/parser/inc/tokens/tokdeal.hxx59
-rw-r--r--autodoc/source/parser/inc/tokens/token.hxx68
-rw-r--r--autodoc/source/parser/inc/tokens/tokproct.hxx85
-rw-r--r--autodoc/source/parser/inc/x_docu.hxx61
-rw-r--r--autodoc/source/parser/inc/x_parse.hxx66
-rw-r--r--autodoc/source/parser/kernel/makefile.mk58
-rw-r--r--autodoc/source/parser/kernel/parsefct.cxx83
-rw-r--r--autodoc/source/parser/kernel/parsefct.hxx62
-rw-r--r--autodoc/source/parser/kernel/x_docu.cxx64
-rw-r--r--autodoc/source/parser/kernel/x_parse.cxx101
-rw-r--r--autodoc/source/parser/semantic/makefile.mk58
-rw-r--r--autodoc/source/parser/semantic/parseenv.cxx89
-rw-r--r--autodoc/source/parser/tokens/makefile.mk62
-rw-r--r--autodoc/source/parser/tokens/stmstarr.cxx101
-rw-r--r--autodoc/source/parser/tokens/stmstate.cxx48
-rw-r--r--autodoc/source/parser/tokens/stmstfin.cxx63
-rw-r--r--autodoc/source/parser/tokens/tkp.cxx74
-rw-r--r--autodoc/source/parser/tokens/tkpcontx.cxx70
-rw-r--r--autodoc/source/parser/tokens/tkpstama.cxx180
-rw-r--r--autodoc/source/parser/tokens/tokdeal.cxx52
-rw-r--r--autodoc/source/parser_i/idl/cx_idlco.cxx547
-rw-r--r--autodoc/source/parser_i/idl/cx_sub.cxx149
-rw-r--r--autodoc/source/parser_i/idl/distrib.cxx266
-rw-r--r--autodoc/source/parser_i/idl/makefile.mk84
-rw-r--r--autodoc/source/parser_i/idl/parsenv2.cxx215
-rw-r--r--autodoc/source/parser_i/idl/pe_attri.cxx297
-rw-r--r--autodoc/source/parser_i/idl/pe_const.cxx282
-rw-r--r--autodoc/source/parser_i/idl/pe_enum2.cxx253
-rw-r--r--autodoc/source/parser_i/idl/pe_evalu.cxx184
-rw-r--r--autodoc/source/parser_i/idl/pe_excp.cxx301
-rw-r--r--autodoc/source/parser_i/idl/pe_file2.cxx320
-rw-r--r--autodoc/source/parser_i/idl/pe_func2.cxx447
-rw-r--r--autodoc/source/parser_i/idl/pe_iface.cxx470
-rw-r--r--autodoc/source/parser_i/idl/pe_property.cxx240
-rw-r--r--autodoc/source/parser_i/idl/pe_selem.cxx208
-rw-r--r--autodoc/source/parser_i/idl/pe_servi.cxx395
-rw-r--r--autodoc/source/parser_i/idl/pe_singl.cxx250
-rw-r--r--autodoc/source/parser_i/idl/pe_struc.cxx330
-rw-r--r--autodoc/source/parser_i/idl/pe_tydf2.cxx186
-rw-r--r--autodoc/source/parser_i/idl/pe_type2.cxx317
-rw-r--r--autodoc/source/parser_i/idl/pe_vari2.cxx175
-rw-r--r--autodoc/source/parser_i/idl/pestate.cxx142
-rw-r--r--autodoc/source/parser_i/idl/semnode.cxx85
-rw-r--r--autodoc/source/parser_i/idl/tk_const.cxx59
-rw-r--r--autodoc/source/parser_i/idl/tk_ident.cxx70
-rw-r--r--autodoc/source/parser_i/idl/tk_keyw.cxx227
-rw-r--r--autodoc/source/parser_i/idl/tk_punct.cxx116
-rw-r--r--autodoc/source/parser_i/idl/tkp_uidl.cxx76
-rw-r--r--autodoc/source/parser_i/idl/unoidl.cxx179
-rw-r--r--autodoc/source/parser_i/idoc/cx_docu2.cxx269
-rw-r--r--autodoc/source/parser_i/idoc/cx_dsapi.cxx535
-rw-r--r--autodoc/source/parser_i/idoc/docu_pe2.cxx608
-rw-r--r--autodoc/source/parser_i/idoc/makefile.mk62
-rw-r--r--autodoc/source/parser_i/idoc/tk_atag2.cxx85
-rw-r--r--autodoc/source/parser_i/idoc/tk_docw2.cxx121
-rw-r--r--autodoc/source/parser_i/idoc/tk_html.cxx60
-rw-r--r--autodoc/source/parser_i/idoc/tk_xml.cxx176
-rw-r--r--autodoc/source/parser_i/inc/s2_dsapi/cx_docu2.hxx235
-rw-r--r--autodoc/source/parser_i/inc/s2_dsapi/cx_dsapi.hxx125
-rw-r--r--autodoc/source/parser_i/inc/s2_dsapi/docu_pe2.hxx176
-rw-r--r--autodoc/source/parser_i/inc/s2_dsapi/dsapitok.hxx67
-rw-r--r--autodoc/source/parser_i/inc/s2_dsapi/tk_atag2.hxx90
-rw-r--r--autodoc/source/parser_i/inc/s2_dsapi/tk_docw2.hxx123
-rw-r--r--autodoc/source/parser_i/inc/s2_dsapi/tk_html.hxx75
-rw-r--r--autodoc/source/parser_i/inc/s2_dsapi/tk_xml.hxx203
-rw-r--r--autodoc/source/parser_i/inc/s2_dsapi/tokintpr.hxx96
-rw-r--r--autodoc/source/parser_i/inc/s2_dsapi/tokrecv.hxx62
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/cx_idlco.hxx101
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/cx_sub.hxx133
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/distrib.hxx274
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/parsenv2.hxx145
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/pe_attri.hxx137
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/pe_const.hxx147
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/pe_enum2.hxx133
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/pe_evalu.hxx129
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/pe_excp.hxx261
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/pe_file2.hxx142
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/pe_func2.hxx169
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/pe_iface.hxx186
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/pe_modul.hxx65
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/pe_property.hxx125
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/pe_selem.hxx124
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/pe_servi.hxx151
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/pe_singl.hxx127
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/pe_struc.hxx287
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/pe_tydf2.hxx126
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/pe_type2.hxx119
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/pe_vari2.hxx109
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/pestate.hxx108
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/semnode.hxx134
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/smp_uidl.hxx84
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/tk_const.hxx66
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/tk_ident.hxx77
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/tk_keyw.hxx253
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/tk_punct.hxx115
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/tkp_uidl.hxx86
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/tokintpr.hxx101
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/tokproct.hxx95
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/tokrecv.hxx62
-rw-r--r--autodoc/source/parser_i/inc/s2_luidl/uidl_tok.hxx66
-rw-r--r--autodoc/source/parser_i/inc/semantic/parsenv2.hxx53
-rw-r--r--autodoc/source/parser_i/inc/tokens/stmstar2.hxx85
-rw-r--r--autodoc/source/parser_i/inc/tokens/stmstat2.hxx70
-rw-r--r--autodoc/source/parser_i/inc/tokens/stmstfi2.hxx82
-rw-r--r--autodoc/source/parser_i/inc/tokens/tkp2.hxx86
-rw-r--r--autodoc/source/parser_i/inc/tokens/tkpcont2.hxx125
-rw-r--r--autodoc/source/parser_i/inc/tokens/tkpstam2.hxx123
-rw-r--r--autodoc/source/parser_i/inc/tokens/token2.hxx65
-rw-r--r--autodoc/source/parser_i/inc/x_parse2.hxx70
-rw-r--r--autodoc/source/parser_i/tokens/makefile.mk63
-rw-r--r--autodoc/source/parser_i/tokens/stmstar2.cxx104
-rw-r--r--autodoc/source/parser_i/tokens/stmstat2.cxx48
-rw-r--r--autodoc/source/parser_i/tokens/stmstfi2.cxx63
-rw-r--r--autodoc/source/parser_i/tokens/tkp2.cxx64
-rw-r--r--autodoc/source/parser_i/tokens/tkpcont2.cxx67
-rw-r--r--autodoc/source/parser_i/tokens/tkpstam2.cxx177
-rw-r--r--autodoc/source/parser_i/tokens/x_parse2.cxx63
-rw-r--r--autodoc/source/tools/filecoll.cxx134
-rw-r--r--autodoc/source/tools/makefile.mk58
-rw-r--r--autodoc/source/tools/tkpchars.cxx161
-rw-r--r--automation/inc/automation/automation.hxx55
-rw-r--r--automation/inc/automation/commdefines.hxx150
-rw-r--r--automation/inc/automation/commtypes.hxx103
-rw-r--r--automation/inc/automation/communi.hxx183
-rw-r--r--automation/inc/automation/simplecm.hxx396
-rw-r--r--automation/inc/makefile.mk47
-rw-r--r--automation/inc/pch/precompiled_automation.cxx31
-rw-r--r--automation/inc/pch/precompiled_automation.hxx34
-rw-r--r--automation/packimages/makefile.mk63
-rw-r--r--automation/prj/build.lst11
-rw-r--r--automation/prj/d.lst27
-rw-r--r--automation/prj/l10n1
-rw-r--r--automation/source/app/makefile.mk52
-rw-r--r--automation/source/app/testbasi.cxx148
-rw-r--r--automation/source/app/testbasi.hxx67
-rw-r--r--automation/source/communi/communi.cxx599
-rw-r--r--automation/source/communi/makefile.mk44
-rw-r--r--automation/source/inc/cmdbasestream.hxx88
-rw-r--r--automation/source/inc/icommstream.hxx67
-rw-r--r--automation/source/inc/rcontrol.hxx499
-rw-r--r--automation/source/inc/sttresid.hxx45
-rw-r--r--automation/source/inc/svcommstream.hxx59
-rw-r--r--automation/source/inc/testapp.hxx198
-rw-r--r--automation/source/inc/testtool.hxx75
-rw-r--r--automation/source/miniapp/editwin.cxx127
-rw-r--r--automation/source/miniapp/editwin.hxx70
-rw-r--r--automation/source/miniapp/hid.lst27
-rw-r--r--automation/source/miniapp/makefile.mk54
-rw-r--r--automation/source/miniapp/servres.cxx62
-rw-r--r--automation/source/miniapp/servres.hrc40
-rw-r--r--automation/source/miniapp/servres.hxx65
-rw-r--r--automation/source/miniapp/servres.src233
-rw-r--r--automation/source/miniapp/servuid.hxx40
-rw-r--r--automation/source/miniapp/test.bas126
-rw-r--r--automation/source/miniapp/test.sid5
-rw-r--r--automation/source/miniapp/test.win13
-rw-r--r--automation/source/miniapp/testapp.cxx350
-rw-r--r--automation/source/miniapp/testapp.hxx109
-rw-r--r--automation/source/mozillaserver/makefile.mk153
-rw-r--r--automation/source/mozillaserver/mozillatesttoolserver.idl52
-rw-r--r--automation/source/mozillaserver/xmozillatesttoolserver.idl157
-rw-r--r--automation/source/server/XMLParser.cxx695
-rw-r--r--automation/source/server/cmdbasestream.cxx303
-rw-r--r--automation/source/server/editwin.cxx166
-rw-r--r--automation/source/server/editwin.hxx72
-rw-r--r--automation/source/server/makefile.mk71
-rw-r--r--automation/source/server/prof_nul.cxx98
-rw-r--r--automation/source/server/prof_usl.cxx138
-rw-r--r--automation/source/server/profiler.cxx264
-rw-r--r--automation/source/server/profiler.hxx139
-rw-r--r--automation/source/server/recorder.cxx1097
-rw-r--r--automation/source/server/recorder.hxx86
-rw-r--r--automation/source/server/retstrm.cxx124
-rw-r--r--automation/source/server/retstrm.hxx87
-rw-r--r--automation/source/server/scmdstrm.cxx217
-rw-r--r--automation/source/server/scmdstrm.hxx64
-rw-r--r--automation/source/server/server.cxx974
-rw-r--r--automation/source/server/server.hxx73
-rw-r--r--automation/source/server/sta_list.cxx1224
-rw-r--r--automation/source/server/statemnt.cxx6760
-rw-r--r--automation/source/server/statemnt.hxx500
-rw-r--r--automation/source/server/svcommstream.cxx51
-rw-r--r--automation/source/server/testtool.hrc55
-rw-r--r--automation/source/simplecm/communiio.hxx68
-rw-r--r--automation/source/simplecm/makefile.mk46
-rw-r--r--automation/source/simplecm/packethandler.cxx337
-rw-r--r--automation/source/simplecm/packethandler.hxx72
-rw-r--r--automation/source/simplecm/simplecm.cxx700
-rw-r--r--automation/source/simplecm/tcpio.cxx74
-rw-r--r--automation/source/simplecm/tcpio.hxx64
-rw-r--r--automation/source/testtool/cmdstrm.cxx470
-rw-r--r--automation/source/testtool/cmdstrm.hxx81
-rw-r--r--automation/source/testtool/comm_bas.cxx440
-rw-r--r--automation/source/testtool/comm_bas.hxx121
-rw-r--r--automation/source/testtool/cretstrm.cxx73
-rw-r--r--automation/source/testtool/cretstrm.hxx58
-rw-r--r--automation/source/testtool/filter.pl125
-rw-r--r--automation/source/testtool/httprequest.cxx239
-rw-r--r--automation/source/testtool/httprequest.hxx88
-rw-r--r--automation/source/testtool/makefile.mk109
-rw-r--r--automation/source/testtool/objtest.cxx4258
-rw-r--r--automation/source/testtool/objtest.hxx406
-rw-r--r--automation/source/testtool/registry_win.cxx90
-rw-r--r--automation/source/testtool/registry_win.hxx34
-rw-r--r--automation/source/testtool/sysdir_win.cxx107
-rw-r--r--automation/source/testtool/sysdir_win.hxx34
-rw-r--r--automation/source/testtool/tcommuni.cxx201
-rw-r--r--automation/source/testtool/tcommuni.hxx69
-rw-r--r--automation/source/testtool/testtool.ini19
-rw-r--r--automation/util/makefile.mk283
-rwxr-xr-xautomation/util/manually_added_ids.hid8
-rw-r--r--avmedia/inc/avmedia/mediaitem.hxx134
-rw-r--r--avmedia/inc/avmedia/mediaplayer.hxx99
-rw-r--r--avmedia/inc/avmedia/mediatoolbox.hxx68
-rw-r--r--avmedia/inc/avmedia/mediawindow.hxx173
-rw-r--r--avmedia/inc/helpids.hrc46
-rw-r--r--avmedia/inc/mediacontrol.hxx117
-rw-r--r--avmedia/prj/build.lst12
-rw-r--r--avmedia/prj/d.lst18
-rw-r--r--avmedia/source/framework/makefile.mk57
-rw-r--r--avmedia/source/framework/mediacontrol.cxx638
-rw-r--r--avmedia/source/framework/mediacontrol.hrc53
-rw-r--r--avmedia/source/framework/mediacontrol.src193
-rw-r--r--avmedia/source/framework/mediaitem.cxx332
-rw-r--r--avmedia/source/framework/mediamisc.cxx51
-rw-r--r--avmedia/source/framework/mediaplayer.cxx169
-rw-r--r--avmedia/source/framework/mediatoolbox.cxx171
-rw-r--r--avmedia/source/framework/soundhandler.cxx562
-rw-r--r--avmedia/source/framework/soundhandler.hxx190
-rw-r--r--avmedia/source/framework/soundhandler.xml47
-rw-r--r--avmedia/source/gstreamer/ChangeLog112
-rw-r--r--avmedia/source/gstreamer/exports.dxp3
-rw-r--r--avmedia/source/gstreamer/gstcommon.hxx60
-rw-r--r--avmedia/source/gstreamer/gstframegrabber.cxx239
-rw-r--r--avmedia/source/gstreamer/gstframegrabber.hxx71
-rw-r--r--avmedia/source/gstreamer/gstmanager.cxx109
-rw-r--r--avmedia/source/gstreamer/gstmanager.hxx67
-rw-r--r--avmedia/source/gstreamer/gstplayer.cxx613
-rw-r--r--avmedia/source/gstreamer/gstplayer.hxx114
-rw-r--r--avmedia/source/gstreamer/gstuno.cxx106
-rw-r--r--avmedia/source/gstreamer/gstwindow.cxx360
-rw-r--r--avmedia/source/gstreamer/gstwindow.hxx112
-rw-r--r--avmedia/source/gstreamer/makefile.mk77
-rw-r--r--avmedia/source/inc/mediamisc.hxx52
-rw-r--r--avmedia/source/java/FrameGrabber.java190
-rw-r--r--avmedia/source/java/Manager.java148
-rw-r--r--avmedia/source/java/MediaUno.java76
-rw-r--r--avmedia/source/java/Player.java325
-rw-r--r--avmedia/source/java/PlayerWindow.java602
-rw-r--r--avmedia/source/java/WindowAdapter.java508
-rw-r--r--avmedia/source/java/avmedia.jarbin0 -> 16420 bytes-rw-r--r--avmedia/source/java/makefile.mk61
-rw-r--r--avmedia/source/java/manifest2
-rw-r--r--avmedia/source/java/win/SystemWindowAdapter.java53
-rw-r--r--avmedia/source/java/x11/SystemWindowAdapter.java123
-rw-r--r--avmedia/source/quicktime/framegrabber.cxx155
-rw-r--r--avmedia/source/quicktime/framegrabber.hxx74
-rw-r--r--avmedia/source/quicktime/makefile.mk85
-rw-r--r--avmedia/source/quicktime/manager.cxx99
-rw-r--r--avmedia/source/quicktime/manager.hxx67
-rw-r--r--avmedia/source/quicktime/player.cxx504
-rw-r--r--avmedia/source/quicktime/player.hxx114
-rw-r--r--avmedia/source/quicktime/quicktimecommon.hxx84
-rw-r--r--avmedia/source/quicktime/quicktimeuno.cxx109
-rw-r--r--avmedia/source/quicktime/window.cxx356
-rw-r--r--avmedia/source/quicktime/window.hxx116
-rw-r--r--avmedia/source/viewer/makefile.mk55
-rw-r--r--avmedia/source/viewer/mediaevent_impl.cxx225
-rw-r--r--avmedia/source/viewer/mediaevent_impl.hxx92
-rw-r--r--avmedia/source/viewer/mediawindow.cxx584
-rw-r--r--avmedia/source/viewer/mediawindow.hrc9
-rw-r--r--avmedia/source/viewer/mediawindow.src77
-rw-r--r--avmedia/source/viewer/mediawindow_impl.cxx589
-rw-r--r--avmedia/source/viewer/mediawindow_impl.hxx156
-rw-r--r--avmedia/source/viewer/mediawindowbase_impl.cxx443
-rw-r--r--avmedia/source/viewer/mediawindowbase_impl.hxx134
-rw-r--r--avmedia/source/win/exports.dxp4
-rw-r--r--avmedia/source/win/framegrabber.cxx250
-rw-r--r--avmedia/source/win/framegrabber.hxx75
-rw-r--r--avmedia/source/win/interface.hxx125
-rw-r--r--avmedia/source/win/makefile.mk80
-rw-r--r--avmedia/source/win/manager.cxx100
-rw-r--r--avmedia/source/win/manager.hxx67
-rw-r--r--avmedia/source/win/player.cxx497
-rw-r--r--avmedia/source/win/player.hxx124
-rw-r--r--avmedia/source/win/wincommon.hxx59
-rw-r--r--avmedia/source/win/window.cxx743
-rw-r--r--avmedia/source/win/window.hxx126
-rw-r--r--avmedia/source/win/winuno.cxx107
-rw-r--r--avmedia/source/xine/exports.dxp4
-rw-r--r--avmedia/source/xine/makefile.mk64
-rw-r--r--avmedia/source/xine/manager.cxx94
-rw-r--r--avmedia/source/xine/manager.hxx67
-rw-r--r--avmedia/source/xine/player.cxx265
-rw-r--r--avmedia/source/xine/player.hxx85
-rw-r--r--avmedia/source/xine/window.cxx574
-rw-r--r--avmedia/source/xine/window.hxx115
-rw-r--r--avmedia/source/xine/xinecommon.hxx68
-rw-r--r--avmedia/source/xine/xineuno.cxx109
-rwxr-xr-xavmedia/util/hidother.src41
-rw-r--r--avmedia/util/makefile.mk79
-rw-r--r--basctl/inc/basidesh.hrc192
-rw-r--r--basctl/inc/helpid.hrc85
-rw-r--r--basctl/inc/iderdll.hxx57
-rw-r--r--basctl/inc/makefile.mk48
-rw-r--r--basctl/inc/pch/precompiled_basctl.cxx31
-rw-r--r--basctl/inc/pch/precompiled_basctl.hxx211
-rw-r--r--basctl/prj/build.lst9
-rw-r--r--basctl/prj/d.lst23
-rw-r--r--basctl/sdi/baside.sdi470
-rw-r--r--basctl/sdi/basslots.hrc29
-rw-r--r--basctl/sdi/basslots.sdi47
-rw-r--r--basctl/sdi/makefile.mk54
-rw-r--r--basctl/source/accessibility/accessibledialogcontrolshape.cxx621
-rw-r--r--basctl/source/accessibility/accessibledialogwindow.cxx1126
-rw-r--r--basctl/source/accessibility/makefile.mk48
-rw-r--r--basctl/source/basicide/basdoc.cxx137
-rw-r--r--basctl/source/basicide/basdoc.hxx69
-rw-r--r--basctl/source/basicide/basicbox.cxx548
-rw-r--r--basctl/source/basicide/basicbox.hxx154
-rw-r--r--basctl/source/basicide/basicmod.hxx49
-rw-r--r--basctl/source/basicide/basicprint.src40
-rw-r--r--basctl/source/basicide/basicrenderable.cxx196
-rw-r--r--basctl/source/basicide/basicrenderable.hxx76
-rw-r--r--basctl/source/basicide/baside2.cxx1759
-rw-r--r--basctl/source/basicide/baside2.hrc50
-rw-r--r--basctl/source/basicide/baside2.hxx507
-rw-r--r--basctl/source/basicide/baside2b.cxx2317
-rw-r--r--basctl/source/basicide/baside3.cxx1415
-rw-r--r--basctl/source/basicide/basidectrlr.cxx153
-rw-r--r--basctl/source/basicide/basides1.cxx1443
-rw-r--r--basctl/source/basicide/basides2.cxx353
-rw-r--r--basctl/source/basicide/basides3.cxx179
-rw-r--r--basctl/source/basicide/basidesh.cxx1065
-rw-r--r--basctl/source/basicide/basidesh.src747
-rw-r--r--basctl/source/basicide/basobj2.cxx416
-rw-r--r--basctl/source/basicide/basobj3.cxx529
-rw-r--r--basctl/source/basicide/bastype2.cxx903
-rw-r--r--basctl/source/basicide/bastype2.hxx222
-rw-r--r--basctl/source/basicide/bastype3.cxx509
-rw-r--r--basctl/source/basicide/bastype3.hxx67
-rw-r--r--basctl/source/basicide/bastype4.hxx69
-rw-r--r--basctl/source/basicide/bastypes.cxx1022
-rw-r--r--basctl/source/basicide/brkdlg.cxx282
-rw-r--r--basctl/source/basicide/brkdlg.hrc45
-rw-r--r--basctl/source/basicide/brkdlg.hxx75
-rw-r--r--basctl/source/basicide/brkdlg.src130
-rw-r--r--basctl/source/basicide/doceventnotifier.cxx280
-rw-r--r--basctl/source/basicide/docsignature.cxx118
-rw-r--r--basctl/source/basicide/documentenumeration.cxx206
-rw-r--r--basctl/source/basicide/documentenumeration.hxx109
-rw-r--r--basctl/source/basicide/ide_pch.cxx33
-rw-r--r--basctl/source/basicide/ide_pch.hxx72
-rw-r--r--basctl/source/basicide/iderdll.cxx232
-rw-r--r--basctl/source/basicide/iderdll2.hxx111
-rw-r--r--basctl/source/basicide/idetemp.hxx67
-rw-r--r--basctl/source/basicide/localizationmgr.cxx1228
-rw-r--r--basctl/source/basicide/macrodlg.cxx923
-rw-r--r--basctl/source/basicide/macrodlg.hrc59
-rw-r--r--basctl/source/basicide/macrodlg.hxx114
-rw-r--r--basctl/source/basicide/macrodlg.src231
-rw-r--r--basctl/source/basicide/makefile.mk100
-rw-r--r--basctl/source/basicide/moduldl2.cxx1728
-rw-r--r--basctl/source/basicide/moduldlg.cxx1068
-rw-r--r--basctl/source/basicide/moduldlg.hrc68
-rw-r--r--basctl/source/basicide/moduldlg.hxx277
-rw-r--r--basctl/source/basicide/moduldlg.src411
-rw-r--r--basctl/source/basicide/moptions.hrc47
-rw-r--r--basctl/source/basicide/moptions.src147
-rw-r--r--basctl/source/basicide/objdlg.cxx303
-rw-r--r--basctl/source/basicide/objdlg.hrc40
-rw-r--r--basctl/source/basicide/objdlg.hxx99
-rw-r--r--basctl/source/basicide/objdlg.src93
-rw-r--r--basctl/source/basicide/register.cxx120
-rw-r--r--basctl/source/basicide/scriptdocument.cxx1631
-rw-r--r--basctl/source/basicide/tbxctl.cxx243
-rw-r--r--basctl/source/basicide/tbxctl.hrc30
-rw-r--r--basctl/source/basicide/tbxctl.hxx95
-rw-r--r--basctl/source/basicide/tbxctl.src273
-rw-r--r--basctl/source/basicide/unomodel.cxx129
-rw-r--r--basctl/source/basicide/unomodel.hxx69
-rw-r--r--basctl/source/dlged/dlged.cxx1425
-rw-r--r--basctl/source/dlged/dlgedclip.cxx151
-rw-r--r--basctl/source/dlged/dlgedfac.cxx270
-rw-r--r--basctl/source/dlged/dlgedfunc.cxx640
-rw-r--r--basctl/source/dlged/dlgedlist.cxx130
-rw-r--r--basctl/source/dlged/dlgedmod.cxx81
-rw-r--r--basctl/source/dlged/dlgedobj.cxx1896
-rw-r--r--basctl/source/dlged/dlgedpage.cxx89
-rw-r--r--basctl/source/dlged/dlgedview.cxx217
-rw-r--r--basctl/source/dlged/dlgresid.src175
-rw-r--r--basctl/source/dlged/makefile.mk63
-rw-r--r--basctl/source/dlged/managelang.cxx427
-rw-r--r--basctl/source/dlged/managelang.hrc106
-rw-r--r--basctl/source/dlged/managelang.src232
-rw-r--r--basctl/source/dlged/propbrw.cxx624
-rw-r--r--basctl/source/inc/accessibledialogcontrolshape.hxx150
-rw-r--r--basctl/source/inc/accessibledialogwindow.hxx177
-rw-r--r--basctl/source/inc/baside3.hxx116
-rw-r--r--basctl/source/inc/basidectrlr.hxx76
-rw-r--r--basctl/source/inc/basidesh.hxx239
-rw-r--r--basctl/source/inc/basobj.hxx128
-rw-r--r--basctl/source/inc/bastypes.hxx343
-rw-r--r--basctl/source/inc/dlged.hxx215
-rw-r--r--basctl/source/inc/dlgedclip.hxx68
-rw-r--r--basctl/source/inc/dlgeddef.hxx86
-rw-r--r--basctl/source/inc/dlgedfac.hxx51
-rw-r--r--basctl/source/inc/dlgedfunc.hxx98
-rw-r--r--basctl/source/inc/dlgedlist.hxx87
-rw-r--r--basctl/source/inc/dlgedmod.hxx67
-rw-r--r--basctl/source/inc/dlgedobj.hxx198
-rw-r--r--basctl/source/inc/dlgedpage.hxx64
-rw-r--r--basctl/source/inc/dlgedview.hxx63
-rw-r--r--basctl/source/inc/dlgresid.hrc77
-rw-r--r--basctl/source/inc/doceventnotifier.hxx99
-rw-r--r--basctl/source/inc/docsignature.hxx92
-rw-r--r--basctl/source/inc/iderid.hxx43
-rw-r--r--basctl/source/inc/localizationmgr.hxx158
-rw-r--r--basctl/source/inc/managelang.hxx121
-rw-r--r--basctl/source/inc/propbrw.hxx118
-rw-r--r--basctl/source/inc/sbxitem.hxx79
-rw-r--r--basctl/source/inc/scriptdocument.hxx540
-rw-r--r--basctl/source/inc/svheader.hxx91
-rw-r--r--basctl/uiconfig/basicide/menubar/menubar.xml91
-rw-r--r--basctl/uiconfig/basicide/statusbar/statusbar.xml10
-rw-r--r--basctl/uiconfig/basicide/toolbar/dialogbar.xml9
-rw-r--r--basctl/uiconfig/basicide/toolbar/fullscreenbar.xml5
-rw-r--r--basctl/uiconfig/basicide/toolbar/insertcontrolsbar.xml43
-rw-r--r--basctl/uiconfig/basicide/toolbar/macrobar.xml22
-rw-r--r--basctl/uiconfig/basicide/toolbar/standardbar.xml25
-rw-r--r--basctl/uiconfig/basicide/toolbar/translationbar.xml6
-rwxr-xr-xbasctl/util/basctl.map11
-rw-r--r--basctl/util/basctl.xml23
-rw-r--r--basctl/util/hidother.hrc27
-rw-r--r--basctl/util/hidother.src44
-rw-r--r--basctl/util/makefile.mk105
-rw-r--r--basctl/util/makefile.pmk28
-rw-r--r--basebmp/inc/basebmp/accessor.hxx122
-rw-r--r--basebmp/inc/basebmp/accessoradapters.hxx529
-rw-r--r--basebmp/inc/basebmp/accessorfunctors.hxx190
-rw-r--r--basebmp/inc/basebmp/accessortraits.hxx133
-rw-r--r--basebmp/inc/basebmp/bitmapdevice.hxx695
-rw-r--r--basebmp/inc/basebmp/clippedlinerenderer.hxx415
-rw-r--r--basebmp/inc/basebmp/color.hxx102
-rw-r--r--basebmp/inc/basebmp/colorblendaccessoradapter.hxx151
-rw-r--r--basebmp/inc/basebmp/colormisc.hxx194
-rw-r--r--basebmp/inc/basebmp/colortraits.hxx153
-rw-r--r--basebmp/inc/basebmp/compositeiterator.hxx370
-rw-r--r--basebmp/inc/basebmp/debug.hxx53
-rw-r--r--basebmp/inc/basebmp/drawmodes.hxx58
-rw-r--r--basebmp/inc/basebmp/endian.hxx60
-rw-r--r--basebmp/inc/basebmp/fillimage.hxx72
-rw-r--r--basebmp/inc/basebmp/genericcolorimageaccessor.hxx85
-rw-r--r--basebmp/inc/basebmp/greylevelformats.hxx138
-rw-r--r--basebmp/inc/basebmp/iteratortraits.hxx58
-rw-r--r--basebmp/inc/basebmp/linerenderer.hxx184
-rw-r--r--basebmp/inc/basebmp/metafunctions.hxx225
-rw-r--r--basebmp/inc/basebmp/nonstandarditerator.hxx48
-rw-r--r--basebmp/inc/basebmp/packedpixeliterator.hxx680
-rw-r--r--basebmp/inc/basebmp/paletteformats.hxx150
-rw-r--r--basebmp/inc/basebmp/paletteimageaccessor.hxx171
-rw-r--r--basebmp/inc/basebmp/pixelformatadapters.hxx111
-rw-r--r--basebmp/inc/basebmp/pixeliterator.hxx358
-rw-r--r--basebmp/inc/basebmp/polypolygonrenderer.hxx369
-rw-r--r--basebmp/inc/basebmp/rgb24pixelformats.hxx101
-rw-r--r--basebmp/inc/basebmp/rgbmaskpixelformats.hxx292
-rw-r--r--basebmp/inc/basebmp/scaleimage.hxx198
-rw-r--r--basebmp/inc/basebmp/scanlineformats.hxx59
-rw-r--r--basebmp/inc/basebmp/stridedarrayiterator.hxx117
-rw-r--r--basebmp/inc/basebmp/tools.hxx94
-rw-r--r--basebmp/inc/basebmp/truecolormaskaccessor.hxx293
-rw-r--r--basebmp/prj/build.lst5
-rw-r--r--basebmp/prj/d.lst9
-rw-r--r--basebmp/source/bitmapdevice.cxx2029
-rw-r--r--basebmp/source/debug.cxx109
-rw-r--r--basebmp/source/intconversion.hxx91
-rw-r--r--basebmp/source/makefile.mk76
-rw-r--r--basebmp/source/polypolygonrenderer.cxx130
-rw-r--r--basebmp/test/basictest.cxx305
-rw-r--r--basebmp/test/bmpdemo.cxx1258
-rw-r--r--basebmp/test/bmpmasktest.cxx195
-rw-r--r--basebmp/test/bmptest.cxx222
-rw-r--r--basebmp/test/cliptest.cxx289
-rw-r--r--basebmp/test/export.map34
-rw-r--r--basebmp/test/filltest.cxx283
-rw-r--r--basebmp/test/linetest.cxx231
-rw-r--r--basebmp/test/makefile.mk132
-rw-r--r--basebmp/test/masktest.cxx183
-rw-r--r--basebmp/test/polytest.cxx303
-rw-r--r--basebmp/test/tools.cxx52
-rw-r--r--basebmp/test/tools.hxx34
-rw-r--r--basebmp/util/basebmp.flt4
-rw-r--r--basebmp/util/makefile.mk66
-rw-r--r--basegfx/inc/basegfx/color/bcolor.hxx240
-rw-r--r--basegfx/inc/basegfx/color/bcolormodifier.hxx146
-rw-r--r--basegfx/inc/basegfx/color/bcolortools.hxx75
-rw-r--r--basegfx/inc/basegfx/curve/b2dbeziertools.hxx66
-rw-r--r--basegfx/inc/basegfx/curve/b2dcubicbezier.hxx225
-rw-r--r--basegfx/inc/basegfx/curve/b2dquadraticbezier.hxx76
-rw-r--r--basegfx/inc/basegfx/matrix/b2dhommatrix.hxx171
-rw-r--r--basegfx/inc/basegfx/matrix/b2dhommatrixtools.hxx237
-rw-r--r--basegfx/inc/basegfx/matrix/b3dhommatrix.hxx178
-rw-r--r--basegfx/inc/basegfx/numeric/ftools.hxx206
-rw-r--r--basegfx/inc/basegfx/pixel/bpixel.hxx225
-rw-r--r--basegfx/inc/basegfx/point/b2dhompoint.hxx238
-rw-r--r--basegfx/inc/basegfx/point/b2dpoint.hxx154
-rw-r--r--basegfx/inc/basegfx/point/b2ipoint.hxx130
-rw-r--r--basegfx/inc/basegfx/point/b3dhompoint.hxx408
-rw-r--r--basegfx/inc/basegfx/point/b3dpoint.hxx153
-rw-r--r--basegfx/inc/basegfx/point/b3ipoint.hxx142
-rw-r--r--basegfx/inc/basegfx/polygon/b2dlinegeometry.hxx147
-rw-r--r--basegfx/inc/basegfx/polygon/b2dpolygon.hxx277
-rw-r--r--basegfx/inc/basegfx/polygon/b2dpolygonclipper.hxx85
-rw-r--r--basegfx/inc/basegfx/polygon/b2dpolygoncutandtouch.hxx84
-rw-r--r--basegfx/inc/basegfx/polygon/b2dpolygontools.hxx537
-rw-r--r--basegfx/inc/basegfx/polygon/b2dpolygontriangulator.hxx52
-rw-r--r--basegfx/inc/basegfx/polygon/b2dpolypolygon.hxx140
-rw-r--r--basegfx/inc/basegfx/polygon/b2dpolypolygoncutter.hxx122
-rw-r--r--basegfx/inc/basegfx/polygon/b2dpolypolygonfillrule.hxx63
-rw-r--r--basegfx/inc/basegfx/polygon/b2dpolypolygonrasterconverter.hxx144
-rw-r--r--basegfx/inc/basegfx/polygon/b2dpolypolygontools.hxx282
-rw-r--r--basegfx/inc/basegfx/polygon/b2dtrapezoid.hxx135
-rw-r--r--basegfx/inc/basegfx/polygon/b3dpolygon.hxx144
-rw-r--r--basegfx/inc/basegfx/polygon/b3dpolygonclipper.hxx89
-rw-r--r--basegfx/inc/basegfx/polygon/b3dpolygontools.hxx194
-rw-r--r--basegfx/inc/basegfx/polygon/b3dpolypolygon.hxx128
-rw-r--r--basegfx/inc/basegfx/polygon/b3dpolypolygontools.hxx157
-rw-r--r--basegfx/inc/basegfx/range/b1drange.hxx168
-rw-r--r--basegfx/inc/basegfx/range/b1ibox.hxx146
-rw-r--r--basegfx/inc/basegfx/range/b1irange.hxx147
-rw-r--r--basegfx/inc/basegfx/range/b2dconnectedranges.hxx266
-rw-r--r--basegfx/inc/basegfx/range/b2dpolyrange.hxx148
-rw-r--r--basegfx/inc/basegfx/range/b2drange.hxx298
-rw-r--r--basegfx/inc/basegfx/range/b2drangeclipper.hxx56
-rw-r--r--basegfx/inc/basegfx/range/b2drectangle.hxx45
-rw-r--r--basegfx/inc/basegfx/range/b2ibox.hxx254
-rw-r--r--basegfx/inc/basegfx/range/b2irange.hxx257
-rw-r--r--basegfx/inc/basegfx/range/b2irectangle.hxx45
-rw-r--r--basegfx/inc/basegfx/range/b3drange.hxx305
-rw-r--r--basegfx/inc/basegfx/range/b3dvolume.hxx45
-rw-r--r--basegfx/inc/basegfx/range/b3ibox.hxx262
-rw-r--r--basegfx/inc/basegfx/range/b3irange.hxx265
-rw-r--r--basegfx/inc/basegfx/range/b3ivolume.hxx45
-rw-r--r--basegfx/inc/basegfx/range/basicbox.hxx139
-rw-r--r--basegfx/inc/basegfx/range/basicrange.hxx300
-rw-r--r--basegfx/inc/basegfx/range/rangeexpander.hxx86
-rw-r--r--basegfx/inc/basegfx/raster/bpixelraster.hxx119
-rw-r--r--basegfx/inc/basegfx/raster/bzpixelraster.hxx99
-rw-r--r--basegfx/inc/basegfx/raster/rasterconvert3d.hxx348
-rw-r--r--basegfx/inc/basegfx/tools/b2dclipstate.hxx122
-rw-r--r--basegfx/inc/basegfx/tools/canvastools.hxx224
-rw-r--r--basegfx/inc/basegfx/tools/debugplotter.hxx110
-rw-r--r--basegfx/inc/basegfx/tools/gradienttools.hxx413
-rw-r--r--basegfx/inc/basegfx/tools/keystoplerp.hxx103
-rw-r--r--basegfx/inc/basegfx/tools/lerp.hxx63
-rw-r--r--basegfx/inc/basegfx/tools/rectcliptools.hxx91
-rw-r--r--basegfx/inc/basegfx/tools/tools.hxx134
-rw-r--r--basegfx/inc/basegfx/tools/unopolypolygon.hxx115
-rw-r--r--basegfx/inc/basegfx/tuple/b2dtuple.hxx362
-rw-r--r--basegfx/inc/basegfx/tuple/b2i64tuple.hxx315
-rw-r--r--basegfx/inc/basegfx/tuple/b2ituple.hxx240
-rw-r--r--basegfx/inc/basegfx/tuple/b3dtuple.hxx436
-rw-r--r--basegfx/inc/basegfx/tuple/b3i64tuple.hxx352
-rw-r--r--basegfx/inc/basegfx/tuple/b3ituple.hxx352
-rw-r--r--basegfx/inc/basegfx/vector/b2dsize.hxx45
-rw-r--r--basegfx/inc/basegfx/vector/b2dvector.hxx270
-rw-r--r--basegfx/inc/basegfx/vector/b2enums.hxx79
-rw-r--r--basegfx/inc/basegfx/vector/b2isize.hxx45
-rw-r--r--basegfx/inc/basegfx/vector/b2ivector.hxx233
-rw-r--r--basegfx/inc/basegfx/vector/b3dsize.hxx45
-rw-r--r--basegfx/inc/basegfx/vector/b3dvector.hxx343
-rw-r--r--basegfx/inc/basegfx/vector/b3isize.hxx45
-rw-r--r--basegfx/inc/basegfx/vector/b3ivector.hxx262
-rw-r--r--basegfx/inc/makefile.mk47
-rw-r--r--basegfx/inc/pch/precompiled_basegfx.cxx31
-rw-r--r--basegfx/inc/pch/precompiled_basegfx.hxx34
-rw-r--r--basegfx/prj/build.lst18
-rw-r--r--basegfx/prj/d.lst113
-rw-r--r--basegfx/qa/mkpolygons.pl344
-rw-r--r--basegfx/source/color/bcolor.cxx43
-rw-r--r--basegfx/source/color/bcolormodifier.cxx75
-rw-r--r--basegfx/source/color/bcolortools.cxx271
-rw-r--r--basegfx/source/color/makefile.mk49
-rw-r--r--basegfx/source/curve/b2dbeziertools.cxx166
-rw-r--r--basegfx/source/curve/b2dcubicbezier.cxx1109
-rw-r--r--basegfx/source/curve/b2dquadraticbezier.cxx108
-rw-r--r--basegfx/source/curve/makefile.mk49
-rw-r--r--basegfx/source/inc/PolygonPoint.hxx541
-rw-r--r--basegfx/source/inc/hommatrixtemplate.hxx616
-rw-r--r--basegfx/source/inc/polygontemplate.hxx541
-rw-r--r--basegfx/source/matrix/b2dhommatrix.cxx457
-rw-r--r--basegfx/source/matrix/b2dhommatrixtools.cxx404
-rw-r--r--basegfx/source/matrix/b3dhommatrix.cxx599
-rw-r--r--basegfx/source/matrix/makefile.mk49
-rw-r--r--basegfx/source/numeric/ftools.cxx41
-rw-r--r--basegfx/source/numeric/makefile.mk47
-rw-r--r--basegfx/source/pixel/bpixel.cxx54
-rw-r--r--basegfx/source/pixel/makefile.mk47
-rw-r--r--basegfx/source/point/b2dhompoint.cxx262
-rw-r--r--basegfx/source/point/b2dpoint.cxx88
-rw-r--r--basegfx/source/point/b2ipoint.cxx79
-rw-r--r--basegfx/source/point/b3dhompoint.cxx47
-rw-r--r--basegfx/source/point/b3dpoint.cxx88
-rw-r--r--basegfx/source/point/b3ipoint.cxx82
-rw-r--r--basegfx/source/point/makefile.mk52
-rw-r--r--basegfx/source/polygon/b2dlinegeometry.cxx728
-rw-r--r--basegfx/source/polygon/b2dpolygon.cxx1655
-rw-r--r--basegfx/source/polygon/b2dpolygonclipper.cxx876
-rw-r--r--basegfx/source/polygon/b2dpolygoncutandtouch.cxx1304
-rw-r--r--basegfx/source/polygon/b2dpolygontools.cxx3616
-rw-r--r--basegfx/source/polygon/b2dpolygontriangulator.cxx469
-rw-r--r--basegfx/source/polygon/b2dpolypolygon.cxx435
-rw-r--r--basegfx/source/polygon/b2dpolypolygoncutter.cxx1017
-rw-r--r--basegfx/source/polygon/b2dpolypolygonrasterconverter.cxx705
-rw-r--r--basegfx/source/polygon/b2dpolypolygontools.cxx588
-rw-r--r--basegfx/source/polygon/b2dsvgpolypolygon.cxx1111
-rw-r--r--basegfx/source/polygon/b2dtrapezoid.cxx1231
-rw-r--r--basegfx/source/polygon/b3dpolygon.cxx1819
-rw-r--r--basegfx/source/polygon/b3dpolygonclipper.cxx577
-rw-r--r--basegfx/source/polygon/b3dpolygontools.cxx1266
-rw-r--r--basegfx/source/polygon/b3dpolypolygon.cxx449
-rw-r--r--basegfx/source/polygon/b3dpolypolygontools.cxx559
-rw-r--r--basegfx/source/polygon/makefile.mk63
-rw-r--r--basegfx/source/range/b1drange.cxx59
-rw-r--r--basegfx/source/range/b2dpolyrange.cxx426
-rw-r--r--basegfx/source/range/b2drange.cxx77
-rw-r--r--basegfx/source/range/b2drangeclipper.cxx952
-rw-r--r--basegfx/source/range/b2xrange.cxx145
-rw-r--r--basegfx/source/range/b3drange.cxx88
-rw-r--r--basegfx/source/range/makefile.mk52
-rw-r--r--basegfx/source/raster/bpixelraster.cxx43
-rw-r--r--basegfx/source/raster/bzpixelraster.cxx43
-rw-r--r--basegfx/source/raster/makefile.mk49
-rw-r--r--basegfx/source/raster/rasterconvert3d.cxx356
-rw-r--r--basegfx/source/tools/b2dclipstate.cxx665
-rw-r--r--basegfx/source/tools/canvastools.cxx677
-rw-r--r--basegfx/source/tools/debugplotter.cxx418
-rw-r--r--basegfx/source/tools/gradienttools.cxx352
-rw-r--r--basegfx/source/tools/keystoplerp.cxx110
-rw-r--r--basegfx/source/tools/liangbarsky.cxx135
-rwxr-xr-xbasegfx/source/tools/makefile.mk51
-rw-r--r--basegfx/source/tools/tools.cxx127
-rw-r--r--basegfx/source/tools/unopolypolygon.cxx489
-rw-r--r--basegfx/source/tuple/b2dtuple.cxx87
-rw-r--r--basegfx/source/tuple/b2i64tuple.cxx47
-rw-r--r--basegfx/source/tuple/b2ituple.cxx156
-rw-r--r--basegfx/source/tuple/b3dtuple.cxx58
-rw-r--r--basegfx/source/tuple/b3i64tuple.cxx46
-rw-r--r--basegfx/source/tuple/b3ituple.cxx46
-rw-r--r--basegfx/source/tuple/makefile.mk52
-rw-r--r--basegfx/source/vector/b2dvector.cxx222
-rw-r--r--basegfx/source/vector/b2ivector.cxx162
-rw-r--r--basegfx/source/vector/b3dvector.cxx118
-rw-r--r--basegfx/source/vector/b3ivector.cxx54
-rw-r--r--basegfx/source/vector/makefile.mk50
-rw-r--r--basegfx/source/workbench/Makefile16
-rw-r--r--basegfx/source/workbench/bezierclip.cxx2060
-rw-r--r--basegfx/source/workbench/bezierclip.hxx96
-rw-r--r--basegfx/source/workbench/convexhull.cxx216
-rw-r--r--basegfx/source/workbench/gauss.hxx175
-rw-r--r--basegfx/test/basegfx1d.cxx78
-rw-r--r--basegfx/test/basegfx2d.cxx1465
-rw-r--r--basegfx/test/basegfx3d.cxx226
-rw-r--r--basegfx/test/basegfxtools.cxx115
-rw-r--r--basegfx/test/boxclipper.cxx424
-rw-r--r--basegfx/test/clipstate.cxx183
-rw-r--r--basegfx/test/export.map34
-rw-r--r--basegfx/test/genericclipper.cxx164
-rw-r--r--basegfx/test/makefile.mk87
-rw-r--r--basegfx/test/testtools.cxx238
-rw-r--r--basegfx/test/testtools.hxx101
-rw-r--r--basegfx/util/basegfx.flt6
-rw-r--r--basegfx/util/makefile.mk85
-rw-r--r--basic/inc/basic/basicmanagerrepository.hxx148
-rw-r--r--basic/inc/basic/basicrt.hxx81
-rw-r--r--basic/inc/basic/basmgr.hxx264
-rw-r--r--basic/inc/basic/basrdll.hxx62
-rw-r--r--basic/inc/basic/dispdefs.hxx40
-rw-r--r--basic/inc/basic/mybasic.hxx97
-rw-r--r--basic/inc/basic/process.hxx69
-rw-r--r--basic/inc/basic/sbdef.hxx113
-rw-r--r--basic/inc/basic/sberrors.hxx565
-rw-r--r--basic/inc/basic/sbmeth.hxx105
-rw-r--r--basic/inc/basic/sbmod.hxx193
-rw-r--r--basic/inc/basic/sbobjmod.hxx121
-rw-r--r--basic/inc/basic/sbprop.hxx83
-rw-r--r--basic/inc/basic/sbstar.hxx220
-rw-r--r--basic/inc/basic/sbstdobj.hxx146
-rw-r--r--basic/inc/basic/sbuno.hxx50
-rw-r--r--basic/inc/basic/sbx.hxx366
-rw-r--r--basic/inc/basic/sbxbase.hxx63
-rw-r--r--basic/inc/basic/sbxcore.hxx184
-rw-r--r--basic/inc/basic/sbxdef.hxx349
-rw-r--r--basic/inc/basic/sbxfac.hxx51
-rw-r--r--basic/inc/basic/sbxform.hxx183
-rw-r--r--basic/inc/basic/sbxmeth.hxx64
-rw-r--r--basic/inc/basic/sbxmstrm.hxx52
-rw-r--r--basic/inc/basic/sbxobj.hxx128
-rw-r--r--basic/inc/basic/sbxprop.hxx64
-rw-r--r--basic/inc/basic/sbxvar.hxx517
-rw-r--r--basic/inc/basic/testtool.hxx162
-rw-r--r--basic/inc/basic/ttglobal.hrc49
-rw-r--r--basic/inc/basic/ttstrhlp.hxx76
-rw-r--r--basic/inc/basrid.hxx48
-rw-r--r--basic/inc/makefile.mk47
-rw-r--r--basic/inc/modsizeexceeded.hxx63
-rw-r--r--basic/inc/pch/precompiled_basic.cxx31
-rw-r--r--basic/inc/pch/precompiled_basic.hxx287
-rw-r--r--basic/inc/sb.hrc47
-rw-r--r--basic/inc/sb.hxx45
-rw-r--r--basic/inc/svtmsg.hrc115
-rw-r--r--basic/inc/testtool.hrc36
-rw-r--r--basic/inc/ttmsg.hrc111
-rwxr-xr-xbasic/prj/build.lst13
-rw-r--r--basic/prj/d.lst59
-rw-r--r--basic/source/app/app.cxx1942
-rw-r--r--basic/source/app/app.hxx193
-rw-r--r--basic/source/app/appbased.cxx297
-rw-r--r--basic/source/app/appbased.hxx73
-rw-r--r--basic/source/app/appedit.cxx301
-rw-r--r--basic/source/app/appedit.hxx71
-rw-r--r--basic/source/app/apperror.cxx116
-rw-r--r--basic/source/app/apperror.hxx51
-rw-r--r--basic/source/app/appwin.cxx657
-rw-r--r--basic/source/app/appwin.hxx140
-rw-r--r--basic/source/app/basic.hrc184
-rw-r--r--basic/source/app/basic.src1472
-rw-r--r--basic/source/app/basicrt.cxx147
-rw-r--r--basic/source/app/basmsg.hrc45
-rw-r--r--basic/source/app/basmsg.src55
-rw-r--r--basic/source/app/brkpnts.cxx386
-rw-r--r--basic/source/app/brkpnts.hxx96
-rw-r--r--basic/source/app/dataedit.hxx119
-rw-r--r--basic/source/app/dialogs.cxx1493
-rw-r--r--basic/source/app/dialogs.hxx362
-rw-r--r--basic/source/app/makefile.mk77
-rw-r--r--basic/source/app/msgedit.cxx995
-rw-r--r--basic/source/app/msgedit.hxx117
-rw-r--r--basic/source/app/mybasic.cxx300
-rw-r--r--basic/source/app/printer.cxx114
-rw-r--r--basic/source/app/printer.hxx55
-rw-r--r--basic/source/app/process.cxx246
-rw-r--r--basic/source/app/processw.cxx278
-rw-r--r--basic/source/app/processw.hxx91
-rw-r--r--basic/source/app/resids.hrc158
-rw-r--r--basic/source/app/status.cxx127
-rw-r--r--basic/source/app/status.hxx57
-rw-r--r--basic/source/app/svtmsg.src339
-rw-r--r--basic/source/app/testbasi.cxx34
-rw-r--r--basic/source/app/testtool.idl47
-rw-r--r--basic/source/app/testtool.src61
-rw-r--r--basic/source/app/textedit.cxx866
-rw-r--r--basic/source/app/textedit.hxx140
-rw-r--r--basic/source/app/ttbasic.cxx39
-rw-r--r--basic/source/app/ttbasic.hxx34
-rw-r--r--basic/source/app/ttmsg.src161
-rw-r--r--basic/source/basmgr/basicmanagerrepository.cxx641
-rw-r--r--basic/source/basmgr/basmgr.cxx2511
-rw-r--r--basic/source/basmgr/makefile.mk46
-rw-r--r--basic/source/classes/disas.cxx689
-rw-r--r--basic/source/classes/errobject.cxx227
-rw-r--r--basic/source/classes/eventatt.cxx644
-rw-r--r--basic/source/classes/image.cxx545
-rw-r--r--basic/source/classes/makefile.mk76
-rw-r--r--basic/source/classes/propacc.cxx424
-rw-r--r--basic/source/classes/sb.cxx2019
-rw-r--r--basic/source/classes/sb.src681
-rw-r--r--basic/source/classes/sbintern.cxx84
-rw-r--r--basic/source/classes/sbunoobj.cxx4563
-rw-r--r--basic/source/classes/sbxmod.cxx2560
-rw-r--r--basic/source/comp/buffer.cxx252
-rw-r--r--basic/source/comp/codegen.cxx542
-rw-r--r--basic/source/comp/dim.cxx1226
-rw-r--r--basic/source/comp/exprgen.cxx272
-rw-r--r--basic/source/comp/exprnode.cxx490
-rw-r--r--basic/source/comp/exprtree.cxx1146
-rw-r--r--basic/source/comp/io.cxx360
-rw-r--r--basic/source/comp/loops.cxx560
-rw-r--r--basic/source/comp/makefile.mk57
-rw-r--r--basic/source/comp/parser.cxx878
-rw-r--r--basic/source/comp/sbcomp.cxx479
-rw-r--r--basic/source/comp/scanner.cxx585
-rw-r--r--basic/source/comp/symtbl.cxx538
-rw-r--r--basic/source/comp/token.cxx717
-rw-r--r--basic/source/inc/buffer.hxx66
-rw-r--r--basic/source/inc/codegen.hxx95
-rw-r--r--basic/source/inc/collelem.hxx50
-rw-r--r--basic/source/inc/disas.hxx75
-rw-r--r--basic/source/inc/dlgcont.hxx177
-rw-r--r--basic/source/inc/errobject.hxx55
-rw-r--r--basic/source/inc/expr.hxx269
-rw-r--r--basic/source/inc/filefmt.hxx181
-rw-r--r--basic/source/inc/image.hxx111
-rw-r--r--basic/source/inc/iosys.hxx113
-rw-r--r--basic/source/inc/namecont.hxx771
-rw-r--r--basic/source/inc/object.hxx101
-rw-r--r--basic/source/inc/opcodes.hxx175
-rw-r--r--basic/source/inc/parser.hxx157
-rw-r--r--basic/source/inc/propacc.hxx195
-rw-r--r--basic/source/inc/runtime.hxx527
-rw-r--r--basic/source/inc/sbcomp.hxx41
-rw-r--r--basic/source/inc/sbintern.hxx152
-rw-r--r--basic/source/inc/sbjsmeth.hxx56
-rw-r--r--basic/source/inc/sbjsmod.hxx52
-rw-r--r--basic/source/inc/sbtrace.hxx45
-rw-r--r--basic/source/inc/sbunoobj.hxx347
-rw-r--r--basic/source/inc/scanner.hxx147
-rw-r--r--basic/source/inc/scriptcont.hxx203
-rw-r--r--basic/source/inc/stdobj.hxx54
-rw-r--r--basic/source/inc/symtbl.hxx252
-rw-r--r--basic/source/inc/token.hxx184
-rw-r--r--basic/source/runtime/basrdll.cxx106
-rw-r--r--basic/source/runtime/ddectrl.cxx192
-rw-r--r--basic/source/runtime/ddectrl.hxx65
-rw-r--r--basic/source/runtime/dllmgr.cxx741
-rw-r--r--basic/source/runtime/dllmgr.hxx63
-rw-r--r--basic/source/runtime/inputbox.cxx197
-rw-r--r--basic/source/runtime/iosys.cxx1047
-rw-r--r--basic/source/runtime/makefile.mk71
-rw-r--r--basic/source/runtime/methods.cxx4729
-rw-r--r--basic/source/runtime/methods1.cxx3163
-rw-r--r--basic/source/runtime/props.cxx778
-rw-r--r--basic/source/runtime/rtlproto.hxx366
-rw-r--r--basic/source/runtime/runtime.cxx1297
-rw-r--r--basic/source/runtime/stdobj.cxx906
-rw-r--r--basic/source/runtime/stdobj1.cxx553
-rw-r--r--basic/source/runtime/step0.cxx1337
-rw-r--r--basic/source/runtime/step1.cxx587
-rw-r--r--basic/source/runtime/step2.cxx1263
-rw-r--r--basic/source/runtime/wnt-mingw.s53
-rw-r--r--basic/source/runtime/wnt.asm56
-rw-r--r--basic/source/sample/collelem.cxx81
-rw-r--r--basic/source/sample/makefile.mk61
-rw-r--r--basic/source/sample/object.cxx276
-rw-r--r--basic/source/sample/sample.bas39
-rw-r--r--basic/source/sbx/format.src85
-rw-r--r--basic/source/sbx/makefile.mk78
-rw-r--r--basic/source/sbx/sbxarray.cxx858
-rw-r--r--basic/source/sbx/sbxbase.cxx464
-rw-r--r--basic/source/sbx/sbxbool.cxx249
-rw-r--r--basic/source/sbx/sbxbyte.cxx331
-rw-r--r--basic/source/sbx/sbxchar.cxx321
-rw-r--r--basic/source/sbx/sbxcoll.cxx303
-rw-r--r--basic/source/sbx/sbxconv.hxx154
-rw-r--r--basic/source/sbx/sbxcurr.cxx397
-rw-r--r--basic/source/sbx/sbxdate.cxx416
-rw-r--r--basic/source/sbx/sbxdbl.cxx308
-rw-r--r--basic/source/sbx/sbxdec.cxx799
-rw-r--r--basic/source/sbx/sbxdec.hxx124
-rw-r--r--basic/source/sbx/sbxexec.cxx401
-rw-r--r--basic/source/sbx/sbxform.cxx1170
-rw-r--r--basic/source/sbx/sbxint.cxx965
-rw-r--r--basic/source/sbx/sbxlng.cxx343
-rw-r--r--basic/source/sbx/sbxmstrm.cxx42
-rw-r--r--basic/source/sbx/sbxobj.cxx1067
-rw-r--r--basic/source/sbx/sbxres.cxx93
-rw-r--r--basic/source/sbx/sbxres.hxx90
-rw-r--r--basic/source/sbx/sbxscan.cxx968
-rw-r--r--basic/source/sbx/sbxsng.cxx361
-rw-r--r--basic/source/sbx/sbxstr.cxx315
-rw-r--r--basic/source/sbx/sbxuint.cxx333
-rw-r--r--basic/source/sbx/sbxulng.cxx323
-rw-r--r--basic/source/sbx/sbxvals.cxx112
-rw-r--r--basic/source/sbx/sbxvalue.cxx1862
-rw-r--r--basic/source/sbx/sbxvar.cxx646
-rw-r--r--basic/source/uno/dlgcont.cxx664
-rw-r--r--basic/source/uno/makefile.mk49
-rw-r--r--basic/source/uno/modsizeexceeded.cxx70
-rw-r--r--basic/source/uno/namecont.cxx3502
-rw-r--r--basic/source/uno/sbmodule.cxx46
-rw-r--r--basic/source/uno/sbmodule.hxx47
-rw-r--r--basic/source/uno/sbservices.cxx65
-rw-r--r--basic/source/uno/scriptcont.cxx1340
-rw-r--r--basic/util/makefile.mk144
-rw-r--r--basic/win/res/basic.icobin0 -> 766 bytes-rw-r--r--basic/win/res/testtool.icobin0 -> 766 bytes-rw-r--r--basic/win/res/work.icobin0 -> 766 bytes-rw-r--r--basic/workben/basmgr.src31
-rw-r--r--basic/workben/makefile.mk89
-rw-r--r--basic/workben/mgrtest.cxx590
-rw-r--r--bean/com/sun/star/beans/ContainerFactory.java47
-rw-r--r--bean/com/sun/star/beans/JavaWindowPeerFake.java122
-rw-r--r--bean/com/sun/star/beans/LocalOfficeConnection.java617
-rw-r--r--bean/com/sun/star/beans/LocalOfficeWindow.java309
-rw-r--r--bean/com/sun/star/beans/NativeConnection.java59
-rw-r--r--bean/com/sun/star/beans/NativeService.java36
-rw-r--r--bean/com/sun/star/beans/OfficeConnection.java79
-rw-r--r--bean/com/sun/star/beans/OfficeWindow.java55
-rw-r--r--bean/com/sun/star/beans/makefile.mk64
-rw-r--r--bean/com/sun/star/comp/beans/CallWatchThread.java128
-rw-r--r--bean/com/sun/star/comp/beans/ContainerFactory.java47
-rw-r--r--bean/com/sun/star/comp/beans/Controller.java110
-rw-r--r--bean/com/sun/star/comp/beans/Frame.java182
-rw-r--r--bean/com/sun/star/comp/beans/HasConnectionException.java40
-rw-r--r--bean/com/sun/star/comp/beans/InvalidArgumentException.java38
-rw-r--r--bean/com/sun/star/comp/beans/JavaWindowPeerFake.java122
-rw-r--r--bean/com/sun/star/comp/beans/LocalOfficeConnection.java823
-rw-r--r--bean/com/sun/star/comp/beans/LocalOfficeWindow.java288
-rw-r--r--bean/com/sun/star/comp/beans/NativeConnection.java62
-rw-r--r--bean/com/sun/star/comp/beans/NativeService.java37
-rw-r--r--bean/com/sun/star/comp/beans/NoConnectionException.java40
-rw-r--r--bean/com/sun/star/comp/beans/NoDocumentException.java38
-rw-r--r--bean/com/sun/star/comp/beans/OOoBean.java1511
-rw-r--r--bean/com/sun/star/comp/beans/OfficeConnection.java80
-rw-r--r--bean/com/sun/star/comp/beans/OfficeDocument.java226
-rw-r--r--bean/com/sun/star/comp/beans/OfficeWindow.java56
-rw-r--r--bean/com/sun/star/comp/beans/SystemWindowException.java41
-rw-r--r--bean/com/sun/star/comp/beans/Wrapper.java108
-rw-r--r--bean/com/sun/star/comp/beans/makefile.mk75
-rw-r--r--bean/native/unix/com_sun_star_beans_LocalOfficeWindow.c101
-rw-r--r--bean/native/unix/com_sun_star_comp_beans_LocalOfficeWindow.c149
-rw-r--r--bean/native/unix/makefile.mk39
-rw-r--r--bean/native/win32/com_sun_star_beans_LocalOfficeWindow.c104
-rw-r--r--bean/native/win32/com_sun_star_comp_beans_LocalOfficeWindow.c219
-rw-r--r--bean/native/win32/makefile.mk34
-rw-r--r--bean/native/win32/officebean.dxp4
-rw-r--r--bean/prj/build.lst6
-rw-r--r--bean/prj/d.lst5
-rw-r--r--bean/qa/complex/OOoBeanTest.java656
-rw-r--r--bean/qa/complex/ScreenComparer.java233
-rw-r--r--bean/qa/complex/WriterFrame.java209
-rw-r--r--bean/qa/complex/makefile.mk95
-rw-r--r--bean/test/Test.java68
-rw-r--r--bean/test/applet/oooapplet/OOoViewer.java208
-rw-r--r--bean/test/applet/oooapplet/bean.policy16
-rw-r--r--bean/test/applet/oooapplet/example.html22
-rw-r--r--bean/test/applet/oooapplet/makefile.mk88
-rw-r--r--bean/test/makefile.mk95
-rw-r--r--bean/util/delzip0
-rw-r--r--bean/util/makefile.mk56
-rw-r--r--beanshell/bsh-2.0b1-src.patch83
-rw-r--r--beanshell/makefile.mk58
-rw-r--r--beanshell/prj/build.lst3
-rw-r--r--beanshell/prj/d.lst1
-rw-r--r--berkeleydb/db-4.7.25-mingw.patch348
-rw-r--r--berkeleydb/db-4.7.25.patch1048
-rw-r--r--berkeleydb/db-aix.patch205
-rw-r--r--berkeleydb/makefile.mk184
-rw-r--r--berkeleydb/prj/build.lst3
-rw-r--r--berkeleydb/prj/d.lst15
-rw-r--r--boost/README.Regex_Experimental30
-rw-r--r--boost/Regex_Experimental.tar.gzbin0 -> 3463 bytes-rw-r--r--boost/aliasing.patch43
-rw-r--r--boost/boost.4713.warnings.patch108
-rw-r--r--boost/boost_1_39_0.patch312
-rw-r--r--boost/makefile.mk137
-rw-r--r--boost/prj/build.lst3
-rw-r--r--boost/prj/d.lst375
-rw-r--r--bridges/inc/bridges/cpp_uno/bridge.hxx504
-rw-r--r--bridges/inc/bridges/cpp_uno/shared/arraypointer.hxx58
-rw-r--r--bridges/inc/bridges/cpp_uno/shared/bridge.hxx131
-rw-r--r--bridges/inc/bridges/cpp_uno/shared/cppinterfaceproxy.hxx109
-rw-r--r--bridges/inc/bridges/cpp_uno/shared/types.hxx80
-rw-r--r--bridges/inc/bridges/cpp_uno/shared/unointerfaceproxy.hxx119
-rw-r--r--bridges/inc/bridges/cpp_uno/shared/vtablefactory.hxx218
-rw-r--r--bridges/inc/bridges/cpp_uno/shared/vtables.hxx111
-rw-r--r--bridges/inc/bridges/cpp_uno/type_misc.hxx132
-rw-r--r--bridges/inc/bridges/remote/bridgeimpl.hxx97
-rw-r--r--bridges/inc/bridges/remote/connection.h70
-rw-r--r--bridges/inc/bridges/remote/context.h262
-rw-r--r--bridges/inc/bridges/remote/counter.hxx60
-rw-r--r--bridges/inc/bridges/remote/helper.hxx71
-rw-r--r--bridges/inc/bridges/remote/mapping.hxx72
-rw-r--r--bridges/inc/bridges/remote/proxy.hxx94
-rw-r--r--bridges/inc/bridges/remote/remote.h96
-rw-r--r--bridges/inc/bridges/remote/remote.hxx76
-rw-r--r--bridges/inc/bridges/remote/stub.hxx67
-rw-r--r--bridges/inc/makefile.mk47
-rw-r--r--bridges/inc/pch/precompiled_bridges.cxx31
-rw-r--r--bridges/inc/pch/precompiled_bridges.hxx155
-rw-r--r--bridges/prj/build.lst34
-rw-r--r--bridges/prj/d.lst28
-rw-r--r--bridges/source/bridge_exports.map8
-rw-r--r--bridges/source/cpp_uno/cc50_solaris_intel/call.s248
-rw-r--r--bridges/source/cpp_uno/cc50_solaris_intel/cc50_solaris_intel.hxx75
-rw-r--r--bridges/source/cpp_uno/cc50_solaris_intel/cpp2uno.cxx530
-rw-r--r--bridges/source/cpp_uno/cc50_solaris_intel/except.cxx451
-rw-r--r--bridges/source/cpp_uno/cc50_solaris_intel/hash.cxx264
-rw-r--r--bridges/source/cpp_uno/cc50_solaris_intel/makefile.mk75
-rw-r--r--bridges/source/cpp_uno/cc50_solaris_intel/uno2cpp.cxx421
-rw-r--r--bridges/source/cpp_uno/cc50_solaris_sparc/call.s199
-rw-r--r--bridges/source/cpp_uno/cc50_solaris_sparc/cc50_solaris_sparc.hxx89
-rw-r--r--bridges/source/cpp_uno/cc50_solaris_sparc/cpp2uno.cxx533
-rw-r--r--bridges/source/cpp_uno/cc50_solaris_sparc/except.cxx447
-rw-r--r--bridges/source/cpp_uno/cc50_solaris_sparc/flushcode.hxx51
-rw-r--r--bridges/source/cpp_uno/cc50_solaris_sparc/hash.cxx265
-rw-r--r--bridges/source/cpp_uno/cc50_solaris_sparc/makefile.mk80
-rw-r--r--bridges/source/cpp_uno/cc50_solaris_sparc/uno2cpp.cxx399
-rw-r--r--bridges/source/cpp_uno/cc5_solaris_sparc64/callvirtualmethod.hxx39
-rw-r--r--bridges/source/cpp_uno/cc5_solaris_sparc64/callvirtualmethod.s59
-rw-r--r--bridges/source/cpp_uno/cc5_solaris_sparc64/cpp2uno.cxx614
-rw-r--r--bridges/source/cpp_uno/cc5_solaris_sparc64/exceptions.cxx462
-rw-r--r--bridges/source/cpp_uno/cc5_solaris_sparc64/exceptions.hxx75
-rw-r--r--bridges/source/cpp_uno/cc5_solaris_sparc64/flushcode.hxx51
-rw-r--r--bridges/source/cpp_uno/cc5_solaris_sparc64/fp.hxx116
-rw-r--r--bridges/source/cpp_uno/cc5_solaris_sparc64/fp.s602
-rw-r--r--bridges/source/cpp_uno/cc5_solaris_sparc64/isdirectreturntype.cxx84
-rw-r--r--bridges/source/cpp_uno/cc5_solaris_sparc64/isdirectreturntype.hxx44
-rw-r--r--bridges/source/cpp_uno/cc5_solaris_sparc64/makefile.mk61
-rw-r--r--bridges/source/cpp_uno/cc5_solaris_sparc64/uno2cpp.cxx512
-rw-r--r--bridges/source/cpp_uno/cc5_solaris_sparc64/vtableslotcall.hxx38
-rw-r--r--bridges/source/cpp_uno/cc5_solaris_sparc64/vtableslotcall.s51
-rw-r--r--bridges/source/cpp_uno/gcc3_aix_powerpc/cpp2uno.cxx663
-rw-r--r--bridges/source/cpp_uno/gcc3_aix_powerpc/except.cxx291
-rw-r--r--bridges/source/cpp_uno/gcc3_aix_powerpc/makefile.mk81
-rw-r--r--bridges/source/cpp_uno/gcc3_aix_powerpc/share.hxx102
-rw-r--r--bridges/source/cpp_uno/gcc3_aix_powerpc/uno2cpp.cxx502
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_alpha/cpp2uno.cxx677
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_alpha/except.cxx289
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_alpha/makefile.mk77
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_alpha/share.hxx99
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_alpha/uno2cpp.cxx534
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_arm/armhelper.S38
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_arm/cpp2uno.cxx551
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_arm/except.cxx342
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_arm/makefile.mk84
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_arm/share.hxx102
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_arm/uno2cpp.cxx670
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_hppa/call.cxx143
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_hppa/cpp2uno.cxx726
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_hppa/except.cxx335
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_hppa/makefile.mk82
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_hppa/share.hxx102
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_hppa/uno2cpp.cxx522
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_ia64/call.s20
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_ia64/cpp2uno.cxx685
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_ia64/except.cxx289
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_ia64/makefile.mk83
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_ia64/share.hxx132
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_ia64/uno2cpp.cxx692
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_intel/call.s274
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_intel/cpp2uno.cxx527
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_intel/except.cxx340
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_intel/makefile.mk84
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_intel/share.hxx99
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_intel/uno2cpp.cxx507
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_m68k/cpp2uno.cxx537
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_m68k/except.cxx335
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_m68k/makefile.mk80
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_m68k/share.hxx94
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_m68k/uno2cpp.cxx494
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_mips/cpp2uno.cxx805
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_mips/except.cxx327
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_mips/makefile.mk81
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_mips/share.hxx94
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_mips/uno2cpp.cxx599
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_powerpc/cpp2uno.cxx795
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_powerpc/except.cxx289
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_powerpc/makefile.mk80
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_powerpc/share.hxx94
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_powerpc/uno2cpp.cxx675
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_powerpc64/cpp2uno.cxx723
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_powerpc64/except.cxx289
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_powerpc64/makefile.mk79
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_powerpc64/share.hxx99
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_powerpc64/uno2cpp.cxx603
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_s390/cpp2uno.cxx696
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_s390/except.cxx289
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_s390/makefile.mk77
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_s390/share.hxx94
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_s390/uno2cpp.cxx637
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_s390x/cpp2uno.cxx658
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_s390x/except.cxx289
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_s390x/makefile.mk77
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_s390x/share.hxx99
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_s390x/uno2cpp.cxx539
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_sparc/call.s10
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_sparc/cpp2uno.cxx578
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_sparc/except.cxx330
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_sparc/makefile.mk85
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_sparc/share.hxx100
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_sparc/uno2cpp.cxx603
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_x86-64/abi.cxx350
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_x86-64/abi.hxx70
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_x86-64/call.s96
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_x86-64/cpp2uno.cxx523
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_x86-64/except.cxx340
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_x86-64/makefile.mk83
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx93
-rw-r--r--bridges/source/cpp_uno/gcc3_linux_x86-64/uno2cpp.cxx574
-rw-r--r--bridges/source/cpp_uno/gcc3_macosx_intel/call.s327
-rw-r--r--bridges/source/cpp_uno/gcc3_macosx_intel/cpp2uno.cxx522
-rw-r--r--bridges/source/cpp_uno/gcc3_macosx_intel/except.cxx331
-rw-r--r--bridges/source/cpp_uno/gcc3_macosx_intel/makefile.mk76
-rw-r--r--bridges/source/cpp_uno/gcc3_macosx_intel/share.hxx95
-rw-r--r--bridges/source/cpp_uno/gcc3_macosx_intel/uno2cpp.cxx496
-rw-r--r--bridges/source/cpp_uno/gcc3_macosx_powerpc/cpp2uno.cxx732
-rw-r--r--bridges/source/cpp_uno/gcc3_macosx_powerpc/except.cxx288
-rw-r--r--bridges/source/cpp_uno/gcc3_macosx_powerpc/makefile.mk78
-rw-r--r--bridges/source/cpp_uno/gcc3_macosx_powerpc/share.hxx94
-rw-r--r--bridges/source/cpp_uno/gcc3_macosx_powerpc/uno2cpp.cxx637
-rw-r--r--bridges/source/cpp_uno/gcc3_os2_intel/cpp2uno.cxx528
-rw-r--r--bridges/source/cpp_uno/gcc3_os2_intel/defs/gcc3_uno.def915
-rw-r--r--bridges/source/cpp_uno/gcc3_os2_intel/except.cxx351
-rw-r--r--bridges/source/cpp_uno/gcc3_os2_intel/makefile.mk73
-rw-r--r--bridges/source/cpp_uno/gcc3_os2_intel/share.hxx93
-rw-r--r--bridges/source/cpp_uno/gcc3_os2_intel/uno2cpp.cxx454
-rw-r--r--bridges/source/cpp_uno/gcc3_solaris_intel/cpp2uno.cxx526
-rw-r--r--bridges/source/cpp_uno/gcc3_solaris_intel/except.cxx331
-rw-r--r--bridges/source/cpp_uno/gcc3_solaris_intel/makefile.mk73
-rw-r--r--bridges/source/cpp_uno/gcc3_solaris_intel/share.hxx93
-rw-r--r--bridges/source/cpp_uno/gcc3_solaris_intel/uno2cpp.cxx430
-rw-r--r--bridges/source/cpp_uno/gcc3_solaris_sparc/cpp2uno.cxx567
-rw-r--r--bridges/source/cpp_uno/gcc3_solaris_sparc/except.cxx329
-rw-r--r--bridges/source/cpp_uno/gcc3_solaris_sparc/makefile.mk77
-rw-r--r--bridges/source/cpp_uno/gcc3_solaris_sparc/share.hxx100
-rw-r--r--bridges/source/cpp_uno/gcc3_solaris_sparc/uno2cpp.cxx598
-rw-r--r--bridges/source/cpp_uno/mingw_intel/call.s261
-rw-r--r--bridges/source/cpp_uno/mingw_intel/cpp2uno.cxx521
-rw-r--r--bridges/source/cpp_uno/mingw_intel/dllinit.cxx59
-rw-r--r--bridges/source/cpp_uno/mingw_intel/except.cxx316
-rw-r--r--bridges/source/cpp_uno/mingw_intel/makefile.mk91
-rw-r--r--bridges/source/cpp_uno/mingw_intel/share.hxx93
-rw-r--r--bridges/source/cpp_uno/mingw_intel/smallstruct.cxx82
-rw-r--r--bridges/source/cpp_uno/mingw_intel/smallstruct.hxx38
-rw-r--r--bridges/source/cpp_uno/mingw_intel/uno2cpp.cxx503
-rw-r--r--bridges/source/cpp_uno/msvc_win32_intel/cpp2uno.cxx491
-rw-r--r--bridges/source/cpp_uno/msvc_win32_intel/dllinit.cxx61
-rw-r--r--bridges/source/cpp_uno/msvc_win32_intel/except.cxx634
-rw-r--r--bridges/source/cpp_uno/msvc_win32_intel/makefile.mk83
-rw-r--r--bridges/source/cpp_uno/msvc_win32_intel/msci.hxx59
-rw-r--r--bridges/source/cpp_uno/msvc_win32_intel/uno2cpp.cxx468
-rw-r--r--bridges/source/cpp_uno/shared/bridge.cxx229
-rw-r--r--bridges/source/cpp_uno/shared/component.cxx275
-rw-r--r--bridges/source/cpp_uno/shared/component.hxx42
-rw-r--r--bridges/source/cpp_uno/shared/cppinterfaceproxy.cxx208
-rw-r--r--bridges/source/cpp_uno/shared/guardedarray.hxx55
-rw-r--r--bridges/source/cpp_uno/shared/makefile.mk53
-rw-r--r--bridges/source/cpp_uno/shared/types.cxx129
-rw-r--r--bridges/source/cpp_uno/shared/unointerfaceproxy.cxx145
-rw-r--r--bridges/source/cpp_uno/shared/vtablefactory.cxx385
-rw-r--r--bridges/source/cpp_uno/shared/vtables.cxx157
-rw-r--r--bridges/source/jni_uno/java/com/sun/star/bridges/jni_uno/JNI_info_holder.java52
-rw-r--r--bridges/source/jni_uno/java/com/sun/star/bridges/jni_uno/JNI_proxy.java218
-rw-r--r--bridges/source/jni_uno/java/com/sun/star/bridges/jni_uno/makefile.mk53
-rw-r--r--bridges/source/jni_uno/java/com/sun/star/bridges/jni_uno/manifest1
-rw-r--r--bridges/source/jni_uno/java_uno.map27
-rw-r--r--bridges/source/jni_uno/jni_base.h295
-rw-r--r--bridges/source/jni_uno/jni_bridge.cxx572
-rw-r--r--bridges/source/jni_uno/jni_bridge.h127
-rw-r--r--bridges/source/jni_uno/jni_data.cxx2579
-rw-r--r--bridges/source/jni_uno/jni_helper.h165
-rw-r--r--bridges/source/jni_uno/jni_info.cxx999
-rw-r--r--bridges/source/jni_uno/jni_info.h378
-rw-r--r--bridges/source/jni_uno/jni_java2uno.cxx706
-rw-r--r--bridges/source/jni_uno/jni_uno2java.cxx876
-rw-r--r--bridges/source/jni_uno/makefile.mk85
-rw-r--r--bridges/source/jni_uno/nativethreadpool.cxx233
-rw-r--r--bridges/source/remote/context/context.cxx487
-rw-r--r--bridges/source/remote/context/exports.dxp5
-rw-r--r--bridges/source/remote/context/makefile.mk65
-rwxr-xr-xbridges/source/remote/context/rmcxt.map10
-rw-r--r--bridges/source/remote/idl/corba.idl88
-rw-r--r--bridges/source/remote/static/helper.cxx212
-rw-r--r--bridges/source/remote/static/makefile.mk61
-rw-r--r--bridges/source/remote/static/mapping.cxx221
-rw-r--r--bridges/source/remote/static/proxy.cxx341
-rw-r--r--bridges/source/remote/static/remote.cxx164
-rw-r--r--bridges/source/remote/static/remote_types.cxx99
-rw-r--r--bridges/source/remote/static/remote_types.hxx92
-rw-r--r--bridges/source/remote/static/stub.cxx339
-rw-r--r--bridges/source/remote/urp/makefile.mk78
-rw-r--r--bridges/source/remote/urp/urp_bridgeimpl.cxx253
-rw-r--r--bridges/source/remote/urp/urp_bridgeimpl.hxx130
-rw-r--r--bridges/source/remote/urp/urp_cache.h60
-rw-r--r--bridges/source/remote/urp/urp_cache.hxx163
-rw-r--r--bridges/source/remote/urp/urp_dispatch.cxx118
-rw-r--r--bridges/source/remote/urp/urp_dispatch.hxx80
-rw-r--r--bridges/source/remote/urp/urp_environment.cxx554
-rw-r--r--bridges/source/remote/urp/urp_job.cxx941
-rw-r--r--bridges/source/remote/urp/urp_job.hxx381
-rw-r--r--bridges/source/remote/urp/urp_log.cxx150
-rw-r--r--bridges/source/remote/urp/urp_log.hxx53
-rw-r--r--bridges/source/remote/urp/urp_marshal.cxx238
-rw-r--r--bridges/source/remote/urp/urp_marshal.hxx345
-rw-r--r--bridges/source/remote/urp/urp_marshal_decl.hxx109
-rw-r--r--bridges/source/remote/urp/urp_property.hxx94
-rw-r--r--bridges/source/remote/urp/urp_propertyobject.cxx796
-rw-r--r--bridges/source/remote/urp/urp_propertyobject.hxx107
-rw-r--r--bridges/source/remote/urp/urp_reader.cxx835
-rw-r--r--bridges/source/remote/urp/urp_reader.hxx81
-rw-r--r--bridges/source/remote/urp/urp_replycontainer.hxx78
-rw-r--r--bridges/source/remote/urp/urp_threadid.cxx51
-rw-r--r--bridges/source/remote/urp/urp_threadid.hxx62
-rw-r--r--bridges/source/remote/urp/urp_unmarshal.cxx709
-rw-r--r--bridges/source/remote/urp/urp_unmarshal.hxx281
-rw-r--r--bridges/source/remote/urp/urp_writer.cxx271
-rw-r--r--bridges/source/remote/urp/urp_writer.hxx85
-rw-r--r--bridges/test/com/sun/star/lib/TestBed.java232
-rw-r--r--bridges/test/com/sun/star/lib/makefile.mk36
-rw-r--r--bridges/test/com/sun/star/lib/uno/bridges/java_remote/Bug107753_Test.java394
-rw-r--r--bridges/test/com/sun/star/lib/uno/bridges/java_remote/Bug108825_Test.java163
-rw-r--r--bridges/test/com/sun/star/lib/uno/bridges/java_remote/Bug110892_Test.java124
-rw-r--r--bridges/test/com/sun/star/lib/uno/bridges/java_remote/Bug111153_Test.java103
-rw-r--r--bridges/test/com/sun/star/lib/uno/bridges/java_remote/Bug114133_Test.java76
-rw-r--r--bridges/test/com/sun/star/lib/uno/bridges/java_remote/Bug51323_Test.java84
-rw-r--r--bridges/test/com/sun/star/lib/uno/bridges/java_remote/Bug92174_Test.java99
-rw-r--r--bridges/test/com/sun/star/lib/uno/bridges/java_remote/Bug97697_Test.java105
-rw-r--r--bridges/test/com/sun/star/lib/uno/bridges/java_remote/Bug98508_Test.idl37
-rw-r--r--bridges/test/com/sun/star/lib/uno/bridges/java_remote/Bug98508_Test.java104
-rwxr-xr-xbridges/test/com/sun/star/lib/uno/bridges/java_remote/MethodIdTest.java473
-rw-r--r--bridges/test/com/sun/star/lib/uno/bridges/java_remote/PolyStructTest.idl52
-rw-r--r--bridges/test/com/sun/star/lib/uno/bridges/java_remote/PolyStructTest.java260
-rw-r--r--bridges/test/com/sun/star/lib/uno/bridges/java_remote/StopMessageDispatcherTest.java108
-rw-r--r--bridges/test/com/sun/star/lib/uno/bridges/java_remote/makefile.mk51
-rw-r--r--bridges/test/inter_libs_exc/inter.cxx69
-rw-r--r--bridges/test/inter_libs_exc/makefile.mk80
-rw-r--r--bridges/test/inter_libs_exc/share.h10
-rw-r--r--bridges/test/inter_libs_exc/starter.cxx68
-rw-r--r--bridges/test/inter_libs_exc/starter.map7
-rw-r--r--bridges/test/inter_libs_exc/thrower.cxx51
-rw-r--r--bridges/test/inter_libs_exc/thrower.map7
-rw-r--r--bridges/test/java_uno/acquire/TestAcquire.java304
-rw-r--r--bridges/test/java_uno/acquire/makefile.mk117
-rw-r--r--bridges/test/java_uno/acquire/readme.txt21
-rw-r--r--bridges/test/java_uno/acquire/testacquire.cxx577
-rw-r--r--bridges/test/java_uno/acquire/types.idl68
-rw-r--r--bridges/test/java_uno/any/TestAny.java2267
-rw-r--r--bridges/test/java_uno/any/TestJni.java48
-rw-r--r--bridges/test/java_uno/any/TestRemote.java64
-rw-r--r--bridges/test/java_uno/any/makefile.mk127
-rw-r--r--bridges/test/java_uno/any/test_javauno_any.map6
-rw-r--r--bridges/test/java_uno/any/transport.cxx111
-rw-r--r--bridges/test/java_uno/any/types.idl42
-rw-r--r--bridges/test/java_uno/equals/TestEquals.java1304
-rw-r--r--bridges/test/java_uno/equals/makefile.mk96
-rw-r--r--bridges/test/java_uno/equals/testequals.cxx235
-rw-r--r--bridges/test/java_uno/equals/types.idl47
-rw-r--r--bridges/test/java_uno/nativethreadpool/Relay.java125
-rw-r--r--bridges/test/java_uno/nativethreadpool/makefile.mk121
-rw-r--r--bridges/test/java_uno/nativethreadpool/readme39
-rw-r--r--bridges/test/java_uno/nativethreadpool/relay.manifest2
-rw-r--r--bridges/test/java_uno/nativethreadpool/testnativethreadpoolclient.cxx187
-rw-r--r--bridges/test/java_uno/nativethreadpool/testnativethreadpoolserver.cxx149
-rw-r--r--bridges/test/java_uno/nativethreadpool/types.idl40
-rw-r--r--bridges/test/java_uno/nativethreadpool/version.map35
-rw-r--r--bridges/test/makefile.mk175
-rw-r--r--bridges/test/performance/makefile.mk61
-rw-r--r--bridges/test/performance/testperformance.cxx193
-rw-r--r--bridges/test/test_bridge.idl82
-rw-r--r--bridges/test/testclient.cxx249
-rw-r--r--bridges/test/testclient.java156
-rw-r--r--bridges/test/testcomp.cxx801
-rw-r--r--bridges/test/testcomp.h157
-rw-r--r--bridges/test/testoffice.cxx282
-rw-r--r--bridges/test/testsameprocess.cxx218
-rw-r--r--bridges/test/testserver.cxx256
-rw-r--r--bridges/unotypes/makefile.mk63
-rw-r--r--bridges/version.mk40
-rw-r--r--cairo/cairo-1.8.0.patch251
-rwxr-xr-xcairo/cairo/dummy_pkg_config3
-rw-r--r--cairo/cairo/makefile.mk207
-rw-r--r--cairo/pixman-0.12.0.patch36
-rw-r--r--cairo/pixman/makefile.mk154
-rw-r--r--cairo/prj/build.lst4
-rw-r--r--cairo/prj/d.lst12
-rw-r--r--canvas/inc/canvas/base/basemutexhelper.hxx72
-rw-r--r--canvas/inc/canvas/base/bitmapcanvasbase.hxx137
-rw-r--r--canvas/inc/canvas/base/bufferedgraphicdevicebase.hxx286
-rw-r--r--canvas/inc/canvas/base/cachedprimitivebase.hxx125
-rw-r--r--canvas/inc/canvas/base/canvasbase.hxx486
-rw-r--r--canvas/inc/canvas/base/canvascustomspritebase.hxx280
-rw-r--r--canvas/inc/canvas/base/canvascustomspritehelper.hxx296
-rw-r--r--canvas/inc/canvas/base/doublebitmapbase.hxx154
-rw-r--r--canvas/inc/canvas/base/floatbitmapbase.hxx158
-rw-r--r--canvas/inc/canvas/base/graphicdevicebase.hxx394
-rw-r--r--canvas/inc/canvas/base/integerbitmapbase.hxx154
-rw-r--r--canvas/inc/canvas/base/sprite.hxx122
-rw-r--r--canvas/inc/canvas/base/spritecanvasbase.hxx205
-rw-r--r--canvas/inc/canvas/base/spritesurface.hxx76
-rw-r--r--canvas/inc/canvas/canvastools.hxx664
-rw-r--r--canvas/inc/canvas/debug.hxx68
-rw-r--r--canvas/inc/canvas/elapsedtime.hxx185
-rw-r--r--canvas/inc/canvas/parametricpolypolygon.hxx175
-rw-r--r--canvas/inc/canvas/prioritybooster.hxx68
-rw-r--r--canvas/inc/canvas/propertysethelper.hxx164
-rw-r--r--canvas/inc/canvas/rendering/bitmap.hxx323
-rw-r--r--canvas/inc/canvas/rendering/icachedprimitive.hxx69
-rw-r--r--canvas/inc/canvas/rendering/icolorbuffer.hxx97
-rw-r--r--canvas/inc/canvas/rendering/irendermodule.hxx152
-rw-r--r--canvas/inc/canvas/rendering/isurface.hxx91
-rw-r--r--canvas/inc/canvas/rendering/isurfaceproxy.hxx116
-rw-r--r--canvas/inc/canvas/rendering/isurfaceproxymanager.hxx82
-rw-r--r--canvas/inc/canvas/spriteredrawmanager.hxx437
-rw-r--r--canvas/inc/canvas/vclwrapper.hxx152
-rw-r--r--canvas/inc/canvas/verbosetrace.hxx41
-rw-r--r--canvas/inc/canvas/verifyinput.hxx723
-rw-r--r--canvas/inc/makefile.mk47
-rw-r--r--canvas/inc/pch/precompiled_canvas.cxx31
-rw-r--r--canvas/inc/pch/precompiled_canvas.hxx34
-rw-r--r--canvas/overview.txt50
-rw-r--r--canvas/prj/build.lst10
-rw-r--r--canvas/prj/d.lst26
-rw-r--r--canvas/source/cairo/cairo_cachedbitmap.cxx93
-rw-r--r--canvas/source/cairo/cairo_cachedbitmap.hxx70
-rw-r--r--canvas/source/cairo/cairo_cairo.cxx67
-rw-r--r--canvas/source/cairo/cairo_cairo.hxx100
-rw-r--r--canvas/source/cairo/cairo_canvas.cxx198
-rw-r--r--canvas/source/cairo/cairo_canvas.hxx164
-rw-r--r--canvas/source/cairo/cairo_canvasbitmap.cxx289
-rw-r--r--canvas/source/cairo/cairo_canvasbitmap.hxx141
-rw-r--r--canvas/source/cairo/cairo_canvascustomsprite.cxx178
-rw-r--r--canvas/source/cairo/cairo_canvascustomsprite.hxx159
-rw-r--r--canvas/source/cairo/cairo_canvasfont.cxx180
-rw-r--r--canvas/source/cairo/cairo_canvasfont.hxx99
-rw-r--r--canvas/source/cairo/cairo_canvashelper.cxx1999
-rw-r--r--canvas/source/cairo/cairo_canvashelper.hxx338
-rw-r--r--canvas/source/cairo/cairo_canvashelper_text.cxx401
-rw-r--r--canvas/source/cairo/cairo_canvashelper_texturefill.cxx147
-rw-r--r--canvas/source/cairo/cairo_devicehelper.cxx305
-rw-r--r--canvas/source/cairo/cairo_devicehelper.hxx146
-rw-r--r--canvas/source/cairo/cairo_quartz_cairo.cxx350
-rw-r--r--canvas/source/cairo/cairo_quartz_cairo.hxx76
-rw-r--r--canvas/source/cairo/cairo_repainttarget.hxx61
-rw-r--r--canvas/source/cairo/cairo_services.cxx86
-rw-r--r--canvas/source/cairo/cairo_sprite.hxx74
-rw-r--r--canvas/source/cairo/cairo_spritecanvas.cxx235
-rw-r--r--canvas/source/cairo/cairo_spritecanvas.hxx177
-rw-r--r--canvas/source/cairo/cairo_spritecanvashelper.cxx547
-rw-r--r--canvas/source/cairo/cairo_spritecanvashelper.hxx149
-rw-r--r--canvas/source/cairo/cairo_spritedevicehelper.cxx204
-rw-r--r--canvas/source/cairo/cairo_spritedevicehelper.hxx98
-rw-r--r--canvas/source/cairo/cairo_spritehelper.cxx186
-rw-r--r--canvas/source/cairo/cairo_spritehelper.hxx118
-rw-r--r--canvas/source/cairo/cairo_spritesurface.hxx73
-rw-r--r--canvas/source/cairo/cairo_surfaceprovider.hxx85
-rw-r--r--canvas/source/cairo/cairo_textlayout.cxx699
-rw-r--r--canvas/source/cairo/cairo_textlayout.hxx123
-rw-r--r--canvas/source/cairo/cairo_win32_cairo.cxx330
-rw-r--r--canvas/source/cairo/cairo_win32_cairo.hxx73
-rw-r--r--canvas/source/cairo/cairo_xlib_cairo.cxx355
-rw-r--r--canvas/source/cairo/cairo_xlib_cairo.hxx109
-rw-r--r--canvas/source/cairo/exports.dxp3
-rw-r--r--canvas/source/cairo/makefile.mk132
-rw-r--r--canvas/source/directx/dx_5rm.cxx2286
-rw-r--r--canvas/source/directx/dx_9rm.cxx1366
-rw-r--r--canvas/source/directx/dx_bitmap.cxx221
-rw-r--r--canvas/source/directx/dx_bitmap.hxx96
-rw-r--r--canvas/source/directx/dx_bitmapcanvashelper.cxx249
-rw-r--r--canvas/source/directx/dx_bitmapcanvashelper.hxx139
-rw-r--r--canvas/source/directx/dx_bitmapprovider.hxx48
-rw-r--r--canvas/source/directx/dx_canvas.cxx258
-rw-r--r--canvas/source/directx/dx_canvas.hxx178
-rw-r--r--canvas/source/directx/dx_canvasbitmap.cxx280
-rw-r--r--canvas/source/directx/dx_canvasbitmap.hxx107
-rw-r--r--canvas/source/directx/dx_canvascustomsprite.cxx126
-rw-r--r--canvas/source/directx/dx_canvascustomsprite.hxx142
-rw-r--r--canvas/source/directx/dx_canvasfont.cxx183
-rw-r--r--canvas/source/directx/dx_canvasfont.hxx107
-rw-r--r--canvas/source/directx/dx_canvashelper.cxx817
-rw-r--r--canvas/source/directx/dx_canvashelper.hxx260
-rw-r--r--canvas/source/directx/dx_canvashelper_texturefill.cxx630
-rw-r--r--canvas/source/directx/dx_config.cxx179
-rw-r--r--canvas/source/directx/dx_config.hxx92
-rw-r--r--canvas/source/directx/dx_devicehelper.cxx239
-rw-r--r--canvas/source/directx/dx_devicehelper.hxx124
-rw-r--r--canvas/source/directx/dx_gdiplususer.cxx84
-rw-r--r--canvas/source/directx/dx_gdiplususer.hxx58
-rw-r--r--canvas/source/directx/dx_graphicsprovider.hxx56
-rw-r--r--canvas/source/directx/dx_ibitmap.hxx73
-rw-r--r--canvas/source/directx/dx_impltools.cxx671
-rw-r--r--canvas/source/directx/dx_impltools.hxx145
-rw-r--r--canvas/source/directx/dx_linepolypolygon.cxx68
-rw-r--r--canvas/source/directx/dx_linepolypolygon.hxx59
-rw-r--r--canvas/source/directx/dx_rendermodule.hxx93
-rw-r--r--canvas/source/directx/dx_sprite.hxx54
-rw-r--r--canvas/source/directx/dx_spritecanvas.cxx214
-rw-r--r--canvas/source/directx/dx_spritecanvas.hxx158
-rw-r--r--canvas/source/directx/dx_spritecanvashelper.cxx385
-rw-r--r--canvas/source/directx/dx_spritecanvashelper.hxx164
-rw-r--r--canvas/source/directx/dx_spritedevicehelper.cxx262
-rw-r--r--canvas/source/directx/dx_spritedevicehelper.hxx117
-rw-r--r--canvas/source/directx/dx_spritehelper.cxx219
-rw-r--r--canvas/source/directx/dx_spritehelper.hxx114
-rw-r--r--canvas/source/directx/dx_surfacebitmap.cxx806
-rw-r--r--canvas/source/directx/dx_surfacebitmap.hxx150
-rw-r--r--canvas/source/directx/dx_surfacegraphics.cxx88
-rw-r--r--canvas/source/directx/dx_surfacegraphics.hxx48
-rw-r--r--canvas/source/directx/dx_textlayout.cxx283
-rw-r--r--canvas/source/directx/dx_textlayout.hxx118
-rw-r--r--canvas/source/directx/dx_textlayout_drawhelper.cxx322
-rw-r--r--canvas/source/directx/dx_textlayout_drawhelper.hxx89
-rw-r--r--canvas/source/directx/dx_vcltools.cxx526
-rw-r--r--canvas/source/directx/dx_vcltools.hxx67
-rw-r--r--canvas/source/directx/dx_winstuff.hxx227
-rw-r--r--canvas/source/directx/exports.dxp3
-rw-r--r--canvas/source/directx/makefile.mk219
-rw-r--r--canvas/source/factory/cf_service.cxx555
-rw-r--r--canvas/source/factory/makefile.mk56
-rw-r--r--canvas/source/null/exports.dxp3
-rw-r--r--canvas/source/null/makefile.mk70
-rw-r--r--canvas/source/null/null_canvasbitmap.cxx87
-rw-r--r--canvas/source/null/null_canvasbitmap.hxx95
-rw-r--r--canvas/source/null/null_canvascustomsprite.cxx108
-rw-r--r--canvas/source/null/null_canvascustomsprite.hxx139
-rw-r--r--canvas/source/null/null_canvasfont.cxx124
-rw-r--r--canvas/source/null/null_canvasfont.hxx98
-rw-r--r--canvas/source/null/null_canvashelper.cxx339
-rw-r--r--canvas/source/null/null_canvashelper.hxx276
-rw-r--r--canvas/source/null/null_devicehelper.cxx242
-rw-r--r--canvas/source/null/null_devicehelper.hxx110
-rw-r--r--canvas/source/null/null_spritecanvas.cxx169
-rw-r--r--canvas/source/null/null_spritecanvas.hxx152
-rw-r--r--canvas/source/null/null_spritecanvashelper.cxx134
-rw-r--r--canvas/source/null/null_spritecanvashelper.hxx138
-rw-r--r--canvas/source/null/null_spritehelper.cxx100
-rw-r--r--canvas/source/null/null_spritehelper.hxx108
-rw-r--r--canvas/source/null/null_textlayout.cxx264
-rw-r--r--canvas/source/null/null_textlayout.hxx110
-rw-r--r--canvas/source/null/null_usagecounter.hxx79
-rw-r--r--canvas/source/null/sprite.hxx50
-rw-r--r--canvas/source/simplecanvas/exports.dxp3
-rw-r--r--canvas/source/simplecanvas/makefile.mk63
-rw-r--r--canvas/source/simplecanvas/simplecanvasimpl.cxx403
-rw-r--r--canvas/source/tools/cachedprimitivebase.cxx115
-rw-r--r--canvas/source/tools/canvascustomspritehelper.cxx499
-rw-r--r--canvas/source/tools/canvastools.cxx1047
-rw-r--r--canvas/source/tools/canvastools.flt3
-rw-r--r--canvas/source/tools/elapsedtime.cxx227
-rw-r--r--canvas/source/tools/imagecachedprimitive.hxx60
-rw-r--r--canvas/source/tools/makefile.mk91
-rw-r--r--canvas/source/tools/page.cxx155
-rw-r--r--canvas/source/tools/page.hxx160
-rw-r--r--canvas/source/tools/pagemanager.cxx225
-rw-r--r--canvas/source/tools/pagemanager.hxx97
-rw-r--r--canvas/source/tools/parametricpolypolygon.cxx293
-rw-r--r--canvas/source/tools/prioritybooster.cxx86
-rw-r--r--canvas/source/tools/propertysethelper.cxx190
-rw-r--r--canvas/source/tools/spriteredrawmanager.cxx523
-rw-r--r--canvas/source/tools/surface.cxx498
-rw-r--r--canvas/source/tools/surface.hxx165
-rw-r--r--canvas/source/tools/surfaceproxy.cxx185
-rw-r--r--canvas/source/tools/surfaceproxy.hxx137
-rw-r--r--canvas/source/tools/surfaceproxymanager.cxx89
-rw-r--r--canvas/source/tools/surfacerect.hxx138
-rw-r--r--canvas/source/tools/verifyinput.cxx929
-rw-r--r--canvas/source/vcl/backbuffer.cxx74
-rw-r--r--canvas/source/vcl/backbuffer.hxx70
-rw-r--r--canvas/source/vcl/bitmapbackbuffer.cxx167
-rw-r--r--canvas/source/vcl/bitmapbackbuffer.hxx106
-rw-r--r--canvas/source/vcl/cachedbitmap.cxx107
-rw-r--r--canvas/source/vcl/cachedbitmap.hxx81
-rw-r--r--canvas/source/vcl/canvas.cxx164
-rw-r--r--canvas/source/vcl/canvas.hxx134
-rw-r--r--canvas/source/vcl/canvasbitmap.cxx147
-rw-r--r--canvas/source/vcl/canvasbitmap.hxx132
-rw-r--r--canvas/source/vcl/canvasbitmaphelper.cxx570
-rw-r--r--canvas/source/vcl/canvasbitmaphelper.hxx132
-rw-r--r--canvas/source/vcl/canvascustomsprite.cxx200
-rw-r--r--canvas/source/vcl/canvascustomsprite.hxx136
-rw-r--r--canvas/source/vcl/canvasfont.cxx191
-rw-r--r--canvas/source/vcl/canvasfont.hxx103
-rw-r--r--canvas/source/vcl/canvashelper.cxx1431
-rw-r--r--canvas/source/vcl/canvashelper.hxx347
-rw-r--r--canvas/source/vcl/canvashelper_texturefill.cxx1185
-rw-r--r--canvas/source/vcl/devicehelper.cxx245
-rw-r--r--canvas/source/vcl/devicehelper.hxx106
-rw-r--r--canvas/source/vcl/exports.dxp3
-rw-r--r--canvas/source/vcl/impltools.cxx547
-rw-r--r--canvas/source/vcl/impltools.hxx205
-rw-r--r--canvas/source/vcl/makefile.mk85
-rw-r--r--canvas/source/vcl/outdevprovider.hxx64
-rw-r--r--canvas/source/vcl/repainttarget.hxx66
-rw-r--r--canvas/source/vcl/services.cxx93
-rw-r--r--canvas/source/vcl/sprite.hxx74
-rw-r--r--canvas/source/vcl/spritecanvas.cxx181
-rw-r--r--canvas/source/vcl/spritecanvas.hxx175
-rw-r--r--canvas/source/vcl/spritecanvashelper.cxx721
-rw-r--r--canvas/source/vcl/spritecanvashelper.hxx181
-rw-r--r--canvas/source/vcl/spritedevicehelper.cxx161
-rw-r--r--canvas/source/vcl/spritedevicehelper.hxx85
-rw-r--r--canvas/source/vcl/spritehelper.cxx446
-rw-r--r--canvas/source/vcl/spritehelper.hxx124
-rw-r--r--canvas/source/vcl/textlayout.cxx499
-rw-r--r--canvas/source/vcl/textlayout.hxx118
-rw-r--r--canvas/source/vcl/windowoutdevholder.cxx60
-rw-r--r--canvas/source/vcl/windowoutdevholder.hxx69
-rw-r--r--canvas/workben/canvasdemo.cxx715
-rw-r--r--canvas/workben/makefile.mk37
-rw-r--r--chart2/chartview.pmk30
-rw-r--r--chart2/inc/makefile.mk47
-rw-r--r--chart2/inc/pch/precompiled_chart2.cxx31
-rw-r--r--chart2/inc/pch/precompiled_chart2.hxx278
-rw-r--r--chart2/prj/build.lst27
-rw-r--r--chart2/prj/d.lst23
-rw-r--r--chart2/qa/TestCaseOldAPI.java1033
-rw-r--r--chart2/qa/data.chd14
-rw-r--r--chart2/qa/makefile.mk70
-rw-r--r--chart2/qa/unoapi/Test.java51
-rw-r--r--chart2/qa/unoapi/knownissues.xcl40
-rw-r--r--chart2/qa/unoapi/makefile.mk48
-rw-r--r--chart2/qa/unoapi/sch.sce26
-rw-r--r--chart2/qa/unoapi/testdocuments/TransparencyChart.sxsbin0 -> 10810 bytes-rw-r--r--chart2/qa/unoapi/testdocuments/emptyChart.sdsbin0 -> 44544 bytes-rw-r--r--chart2/qa/unoapi/testdocuments/space-metal.jpgbin0 -> 4313 bytes-rw-r--r--chart2/source/controller/accessibility/AccStatisticsObject.cxx84
-rw-r--r--chart2/source/controller/accessibility/AccStatisticsObject.hxx69
-rw-r--r--chart2/source/controller/accessibility/AccessibleBase.cxx1013
-rw-r--r--chart2/source/controller/accessibility/AccessibleChartElement.cxx318
-rw-r--r--chart2/source/controller/accessibility/AccessibleChartElement.hxx145
-rw-r--r--chart2/source/controller/accessibility/AccessibleChartShape.cxx292
-rw-r--r--chart2/source/controller/accessibility/AccessibleChartShape.hxx107
-rw-r--r--chart2/source/controller/accessibility/AccessibleChartView.cxx419
-rw-r--r--chart2/source/controller/accessibility/AccessibleTextHelper.cxx206
-rw-r--r--chart2/source/controller/accessibility/AccessibleViewForwarder.cxx119
-rw-r--r--chart2/source/controller/accessibility/AccessibleViewForwarder.hxx68
-rw-r--r--chart2/source/controller/accessibility/ChartElementFactory.cxx148
-rw-r--r--chart2/source/controller/accessibility/ChartElementFactory.hxx51
-rw-r--r--chart2/source/controller/accessibility/makefile.mk54
-rw-r--r--chart2/source/controller/chartapiwrapper/AreaWrapper.cxx210
-rw-r--r--chart2/source/controller/chartapiwrapper/AreaWrapper.hxx108
-rw-r--r--chart2/source/controller/chartapiwrapper/AxisWrapper.cxx599
-rw-r--r--chart2/source/controller/chartapiwrapper/AxisWrapper.hxx143
-rw-r--r--chart2/source/controller/chartapiwrapper/Chart2ModelContact.cxx322
-rw-r--r--chart2/source/controller/chartapiwrapper/Chart2ModelContact.hxx172
-rw-r--r--chart2/source/controller/chartapiwrapper/ChartDataWrapper.cxx636
-rw-r--r--chart2/source/controller/chartapiwrapper/ChartDataWrapper.hxx152
-rw-r--r--chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx1626
-rw-r--r--chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx890
-rw-r--r--chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.hxx163
-rw-r--r--chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx2151
-rw-r--r--chart2/source/controller/chartapiwrapper/DiagramWrapper.hxx322
-rw-r--r--chart2/source/controller/chartapiwrapper/GridWrapper.cxx214
-rw-r--r--chart2/source/controller/chartapiwrapper/GridWrapper.hxx106
-rw-r--r--chart2/source/controller/chartapiwrapper/LegendWrapper.cxx462
-rw-r--r--chart2/source/controller/chartapiwrapper/LegendWrapper.hxx116
-rw-r--r--chart2/source/controller/chartapiwrapper/MinMaxLineWrapper.cxx438
-rw-r--r--chart2/source/controller/chartapiwrapper/MinMaxLineWrapper.hxx142
-rw-r--r--chart2/source/controller/chartapiwrapper/ReferenceSizePropertyProvider.hxx51
-rw-r--r--chart2/source/controller/chartapiwrapper/TitleWrapper.cxx569
-rw-r--r--chart2/source/controller/chartapiwrapper/TitleWrapper.hxx139
-rw-r--r--chart2/source/controller/chartapiwrapper/UpDownBarWrapper.cxx404
-rw-r--r--chart2/source/controller/chartapiwrapper/UpDownBarWrapper.hxx140
-rw-r--r--chart2/source/controller/chartapiwrapper/WallFloorWrapper.cxx195
-rw-r--r--chart2/source/controller/chartapiwrapper/WallFloorWrapper.hxx92
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedAddInProperty.cxx161
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedAddInProperty.hxx114
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedAutomaticPositionProperties.cxx159
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedAutomaticPositionProperties.hxx52
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedAxisAndGridExistenceProperties.cxx451
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedAxisAndGridExistenceProperties.hxx79
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedCharacterHeightProperty.cxx175
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedCharacterHeightProperty.hxx105
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedDataCaptionProperties.cxx196
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedDataCaptionProperties.hxx64
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedGapwidthProperty.cxx204
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedGapwidthProperty.hxx90
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedNumberFormatProperty.cxx202
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedNumberFormatProperty.hxx95
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedScaleProperty.cxx514
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedScaleProperty.hxx95
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedScaleTextProperties.cxx170
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedScaleTextProperties.hxx57
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedSceneProperty.cxx134
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedSceneProperty.hxx85
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedSeriesAreaOrLineProperty.cxx73
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedSeriesAreaOrLineProperty.hxx63
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedSeriesOrDiagramProperty.hxx192
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedSplineProperties.cxx290
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedSplineProperties.hxx62
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx1157
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.hxx60
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedStockProperties.cxx333
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedStockProperties.hxx62
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.cxx596
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.hxx64
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedTextRotationProperty.cxx90
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedTextRotationProperty.hxx61
-rw-r--r--chart2/source/controller/chartapiwrapper/makefile.mk77
-rw-r--r--chart2/source/controller/dialogs/Bitmaps.hrc216
-rw-r--r--chart2/source/controller/dialogs/Bitmaps.src543
-rw-r--r--chart2/source/controller/dialogs/Bitmaps_HC.hrc213
-rw-r--r--chart2/source/controller/dialogs/Bitmaps_HC.src543
-rw-r--r--chart2/source/controller/dialogs/ChangingResource.cxx59
-rw-r--r--chart2/source/controller/dialogs/ChangingResource.hxx66
-rw-r--r--chart2/source/controller/dialogs/ChartTypeDialogController.cxx1286
-rw-r--r--chart2/source/controller/dialogs/ChartTypeDialogController.hxx318
-rw-r--r--chart2/source/controller/dialogs/ChartTypeTemplateProvider.hxx56
-rw-r--r--chart2/source/controller/dialogs/CommonResources.hrc79
-rw-r--r--chart2/source/controller/dialogs/DataBrowser.cxx1367
-rw-r--r--chart2/source/controller/dialogs/DataBrowser.hxx207
-rw-r--r--chart2/source/controller/dialogs/DataBrowserModel.cxx1003
-rw-r--r--chart2/source/controller/dialogs/DataBrowserModel.hxx184
-rw-r--r--chart2/source/controller/dialogs/DialogModel.cxx852
-rw-r--r--chart2/source/controller/dialogs/DialogModel.hxx200
-rw-r--r--chart2/source/controller/dialogs/ObjectNameProvider.cxx855
-rw-r--r--chart2/source/controller/dialogs/RangeEdit.cxx73
-rw-r--r--chart2/source/controller/dialogs/RangeSelectionButton.cxx59
-rw-r--r--chart2/source/controller/dialogs/RangeSelectionHelper.cxx201
-rw-r--r--chart2/source/controller/dialogs/RangeSelectionListener.cxx78
-rw-r--r--chart2/source/controller/dialogs/ResourceIds.hrc86
-rw-r--r--chart2/source/controller/dialogs/Strings.src608
-rw-r--r--chart2/source/controller/dialogs/Strings_AdditionalControls.src57
-rw-r--r--chart2/source/controller/dialogs/Strings_ChartTypes.src153
-rw-r--r--chart2/source/controller/dialogs/Strings_Scale.src44
-rw-r--r--chart2/source/controller/dialogs/Strings_Statistic.src72
-rw-r--r--chart2/source/controller/dialogs/TabPages.hrc172
-rw-r--r--chart2/source/controller/dialogs/TextDirectionListBox.cxx62
-rw-r--r--chart2/source/controller/dialogs/TimerTriggeredControllerLock.cxx73
-rw-r--r--chart2/source/controller/dialogs/TitleDialogData.cxx127
-rw-r--r--chart2/source/controller/dialogs/dlg_ChartType.cxx81
-rw-r--r--chart2/source/controller/dialogs/dlg_ChartType.hrc35
-rw-r--r--chart2/source/controller/dialogs/dlg_ChartType.src57
-rw-r--r--chart2/source/controller/dialogs/dlg_ChartType_UNO.cxx142
-rw-r--r--chart2/source/controller/dialogs/dlg_CreationWizard.cxx270
-rw-r--r--chart2/source/controller/dialogs/dlg_CreationWizard.hrc32
-rw-r--r--chart2/source/controller/dialogs/dlg_CreationWizard.src39
-rw-r--r--chart2/source/controller/dialogs/dlg_CreationWizard_UNO.cxx436
-rw-r--r--chart2/source/controller/dialogs/dlg_DataEditor.cxx363
-rw-r--r--chart2/source/controller/dialogs/dlg_DataEditor.hrc47
-rw-r--r--chart2/source/controller/dialogs/dlg_DataEditor.src148
-rw-r--r--chart2/source/controller/dialogs/dlg_DataSource.cxx256
-rw-r--r--chart2/source/controller/dialogs/dlg_DataSource.hrc33
-rw-r--r--chart2/source/controller/dialogs/dlg_DataSource.src48
-rw-r--r--chart2/source/controller/dialogs/dlg_InsertAxis_Grid.cxx166
-rw-r--r--chart2/source/controller/dialogs/dlg_InsertAxis_Grid.hrc46
-rw-r--r--chart2/source/controller/dialogs/dlg_InsertAxis_Grid.src99
-rw-r--r--chart2/source/controller/dialogs/dlg_InsertDataLabel.cxx76
-rw-r--r--chart2/source/controller/dialogs/dlg_InsertDataLabel.hrc32
-rw-r--r--chart2/source/controller/dialogs/dlg_InsertDataLabel.src42
-rw-r--r--chart2/source/controller/dialogs/dlg_InsertErrorBars.cxx137
-rw-r--r--chart2/source/controller/dialogs/dlg_InsertErrorBars.hrc31
-rw-r--r--chart2/source/controller/dialogs/dlg_InsertErrorBars.src43
-rw-r--r--chart2/source/controller/dialogs/dlg_InsertLegend.cxx81
-rw-r--r--chart2/source/controller/dialogs/dlg_InsertLegend.hrc31
-rw-r--r--chart2/source/controller/dialogs/dlg_InsertLegend.src47
-rw-r--r--chart2/source/controller/dialogs/dlg_InsertTitle.cxx69
-rw-r--r--chart2/source/controller/dialogs/dlg_InsertTitle.hrc31
-rw-r--r--chart2/source/controller/dialogs/dlg_InsertTitle.src42
-rw-r--r--chart2/source/controller/dialogs/dlg_InsertTrendline.cxx117
-rw-r--r--chart2/source/controller/dialogs/dlg_InsertTrendline.hrc31
-rw-r--r--chart2/source/controller/dialogs/dlg_InsertTrendline.src48
-rw-r--r--chart2/source/controller/dialogs/dlg_NumberFormat.cxx89
-rw-r--r--chart2/source/controller/dialogs/dlg_NumberFormat.hxx56
-rw-r--r--chart2/source/controller/dialogs/dlg_ObjectProperties.cxx652
-rw-r--r--chart2/source/controller/dialogs/dlg_ObjectProperties.src39
-rw-r--r--chart2/source/controller/dialogs/dlg_ShapeFont.cxx95
-rw-r--r--chart2/source/controller/dialogs/dlg_ShapeFont.src62
-rw-r--r--chart2/source/controller/dialogs/dlg_ShapeParagraph.cxx96
-rw-r--r--chart2/source/controller/dialogs/dlg_ShapeParagraph.src67
-rw-r--r--chart2/source/controller/dialogs/dlg_View3D.cxx121
-rw-r--r--chart2/source/controller/dialogs/dlg_View3D.hrc40
-rw-r--r--chart2/source/controller/dialogs/dlg_View3D.src48
-rw-r--r--chart2/source/controller/dialogs/hidother.src116
-rw-r--r--chart2/source/controller/dialogs/makefile.mk205
-rw-r--r--chart2/source/controller/dialogs/res_BarGeometry.cxx112
-rw-r--r--chart2/source/controller/dialogs/res_BarGeometry.hxx70
-rw-r--r--chart2/source/controller/dialogs/res_BarGeometry.src49
-rw-r--r--chart2/source/controller/dialogs/res_DataLabel.cxx422
-rw-r--r--chart2/source/controller/dialogs/res_DataLabel.hxx107
-rw-r--r--chart2/source/controller/dialogs/res_DataLabel_IDs.hrc45
-rw-r--r--chart2/source/controller/dialogs/res_DataLabel_tmpl.hrc169
-rw-r--r--chart2/source/controller/dialogs/res_ErrorBar.cxx790
-rw-r--r--chart2/source/controller/dialogs/res_ErrorBar_IDs.hrc63
-rw-r--r--chart2/source/controller/dialogs/res_ErrorBar_tmpl.hrc228
-rw-r--r--chart2/source/controller/dialogs/res_LegendPosition.cxx265
-rw-r--r--chart2/source/controller/dialogs/res_LegendPosition.hxx91
-rw-r--r--chart2/source/controller/dialogs/res_LegendPosition_IDs.hrc32
-rw-r--r--chart2/source/controller/dialogs/res_LegendPosition_tmpl.hrc80
-rw-r--r--chart2/source/controller/dialogs/res_SecondaryAxisCheckBoxes_tmpl.hrc59
-rw-r--r--chart2/source/controller/dialogs/res_TextSeparator.cxx155
-rw-r--r--chart2/source/controller/dialogs/res_TextSeparator.hxx78
-rw-r--r--chart2/source/controller/dialogs/res_TextSeparator.src49
-rw-r--r--chart2/source/controller/dialogs/res_Titles.cxx226
-rw-r--r--chart2/source/controller/dialogs/res_Titles.hrc47
-rw-r--r--chart2/source/controller/dialogs/res_Titles.hxx80
-rw-r--r--chart2/source/controller/dialogs/res_Titlesx_tmpl.hrc149
-rw-r--r--chart2/source/controller/dialogs/res_Trendline.cxx285
-rw-r--r--chart2/source/controller/dialogs/res_Trendline.hxx86
-rw-r--r--chart2/source/controller/dialogs/res_Trendline_IDs.hrc44
-rw-r--r--chart2/source/controller/dialogs/res_Trendline_tmpl.hrc123
-rw-r--r--chart2/source/controller/dialogs/tp_3D_SceneAppearance.cxx366
-rw-r--r--chart2/source/controller/dialogs/tp_3D_SceneAppearance.hrc38
-rw-r--r--chart2/source/controller/dialogs/tp_3D_SceneAppearance.hxx100
-rw-r--r--chart2/source/controller/dialogs/tp_3D_SceneAppearance.src98
-rw-r--r--chart2/source/controller/dialogs/tp_3D_SceneGeometry.cxx299
-rw-r--r--chart2/source/controller/dialogs/tp_3D_SceneGeometry.hrc40
-rw-r--r--chart2/source/controller/dialogs/tp_3D_SceneGeometry.hxx113
-rw-r--r--chart2/source/controller/dialogs/tp_3D_SceneGeometry.src147
-rw-r--r--chart2/source/controller/dialogs/tp_3D_SceneIllumination.cxx651
-rw-r--r--chart2/source/controller/dialogs/tp_3D_SceneIllumination.hrc46
-rw-r--r--chart2/source/controller/dialogs/tp_3D_SceneIllumination.hxx143
-rw-r--r--chart2/source/controller/dialogs/tp_3D_SceneIllumination.src162
-rw-r--r--chart2/source/controller/dialogs/tp_AxisLabel.cxx326
-rw-r--r--chart2/source/controller/dialogs/tp_AxisLabel.hxx101
-rw-r--r--chart2/source/controller/dialogs/tp_AxisLabel.src186
-rw-r--r--chart2/source/controller/dialogs/tp_AxisPositions.cxx499
-rw-r--r--chart2/source/controller/dialogs/tp_AxisPositions.hxx115
-rw-r--r--chart2/source/controller/dialogs/tp_AxisPositions.src292
-rw-r--r--chart2/source/controller/dialogs/tp_ChartType.cxx1184
-rw-r--r--chart2/source/controller/dialogs/tp_ChartType.hrc62
-rw-r--r--chart2/source/controller/dialogs/tp_ChartType.hxx128
-rw-r--r--chart2/source/controller/dialogs/tp_ChartType.src259
-rw-r--r--chart2/source/controller/dialogs/tp_DataLabel.cxx77
-rw-r--r--chart2/source/controller/dialogs/tp_DataLabel.hxx67
-rw-r--r--chart2/source/controller/dialogs/tp_DataLabel.src42
-rw-r--r--chart2/source/controller/dialogs/tp_DataSource.cxx1079
-rw-r--r--chart2/source/controller/dialogs/tp_DataSource.hrc50
-rw-r--r--chart2/source/controller/dialogs/tp_DataSource.hxx180
-rw-r--r--chart2/source/controller/dialogs/tp_DataSource.src171
-rw-r--r--chart2/source/controller/dialogs/tp_DataSourceControls.cxx60
-rw-r--r--chart2/source/controller/dialogs/tp_DataSourceControls.hxx73
-rw-r--r--chart2/source/controller/dialogs/tp_ErrorBars.cxx103
-rw-r--r--chart2/source/controller/dialogs/tp_ErrorBars.hxx68
-rw-r--r--chart2/source/controller/dialogs/tp_ErrorBars.src38
-rw-r--r--chart2/source/controller/dialogs/tp_LegendPosition.cxx91
-rw-r--r--chart2/source/controller/dialogs/tp_LegendPosition.hxx71
-rw-r--r--chart2/source/controller/dialogs/tp_LegendPosition.src65
-rw-r--r--chart2/source/controller/dialogs/tp_Location.cxx74
-rw-r--r--chart2/source/controller/dialogs/tp_Location.hrc32
-rw-r--r--chart2/source/controller/dialogs/tp_Location.hxx79
-rw-r--r--chart2/source/controller/dialogs/tp_Location.src73
-rw-r--r--chart2/source/controller/dialogs/tp_PointGeometry.cxx107
-rw-r--r--chart2/source/controller/dialogs/tp_PointGeometry.hxx60
-rw-r--r--chart2/source/controller/dialogs/tp_PointGeometry.src36
-rw-r--r--chart2/source/controller/dialogs/tp_PolarOptions.cxx129
-rw-r--r--chart2/source/controller/dialogs/tp_PolarOptions.hrc40
-rw-r--r--chart2/source/controller/dialogs/tp_PolarOptions.hxx70
-rw-r--r--chart2/source/controller/dialogs/tp_PolarOptions.src87
-rw-r--r--chart2/source/controller/dialogs/tp_RangeChooser.cxx417
-rw-r--r--chart2/source/controller/dialogs/tp_RangeChooser.hrc40
-rw-r--r--chart2/source/controller/dialogs/tp_RangeChooser.hxx127
-rw-r--r--chart2/source/controller/dialogs/tp_RangeChooser.src94
-rw-r--r--chart2/source/controller/dialogs/tp_Scale.cxx519
-rw-r--r--chart2/source/controller/dialogs/tp_Scale.hxx128
-rw-r--r--chart2/source/controller/dialogs/tp_Scale.src190
-rw-r--r--chart2/source/controller/dialogs/tp_SeriesToAxis.cxx316
-rw-r--r--chart2/source/controller/dialogs/tp_SeriesToAxis.hrc45
-rw-r--r--chart2/source/controller/dialogs/tp_SeriesToAxis.hxx96
-rw-r--r--chart2/source/controller/dialogs/tp_SeriesToAxis.src176
-rw-r--r--chart2/source/controller/dialogs/tp_TitleRotation.cxx128
-rw-r--r--chart2/source/controller/dialogs/tp_TitleRotation.hxx72
-rw-r--r--chart2/source/controller/dialogs/tp_TitleRotation.src93
-rw-r--r--chart2/source/controller/dialogs/tp_Trendline.cxx80
-rw-r--r--chart2/source/controller/dialogs/tp_Trendline.hxx62
-rw-r--r--chart2/source/controller/dialogs/tp_Trendline.src38
-rw-r--r--chart2/source/controller/dialogs/tp_Wizard_TitlesAndObjects.cxx190
-rw-r--r--chart2/source/controller/dialogs/tp_Wizard_TitlesAndObjects.hrc50
-rw-r--r--chart2/source/controller/dialogs/tp_Wizard_TitlesAndObjects.hxx96
-rw-r--r--chart2/source/controller/dialogs/tp_Wizard_TitlesAndObjects.src92
-rw-r--r--chart2/source/controller/drawinglayer/DrawViewWrapper.cxx446
-rw-r--r--chart2/source/controller/drawinglayer/ViewElementListProvider.cxx277
-rw-r--r--chart2/source/controller/drawinglayer/makefile.mk49
-rw-r--r--chart2/source/controller/inc/AccessibleBase.hxx382
-rw-r--r--chart2/source/controller/inc/AccessibleChartView.hxx158
-rw-r--r--chart2/source/controller/inc/AccessibleTextHelper.hxx116
-rw-r--r--chart2/source/controller/inc/AxisItemConverter.hxx95
-rw-r--r--chart2/source/controller/inc/CharacterPropertyItemConverter.hxx87
-rw-r--r--chart2/source/controller/inc/ChartDocumentWrapper.hxx237
-rw-r--r--chart2/source/controller/inc/ChartRenderer.hxx79
-rw-r--r--chart2/source/controller/inc/ConfigurationAccess.hxx62
-rw-r--r--chart2/source/controller/inc/DataPointItemConverter.hxx113
-rw-r--r--chart2/source/controller/inc/DrawViewWrapper.hxx114
-rw-r--r--chart2/source/controller/inc/ErrorBarItemConverter.hxx87
-rw-r--r--chart2/source/controller/inc/GraphicPropertyItemConverter.hxx88
-rw-r--r--chart2/source/controller/inc/HelpIds.hrc182
-rw-r--r--chart2/source/controller/inc/ItemConverter.hxx218
-rw-r--r--chart2/source/controller/inc/ItemPropertyMap.hxx93
-rw-r--r--chart2/source/controller/inc/LegendItemConverter.hxx82
-rw-r--r--chart2/source/controller/inc/MenuResIds.hrc41
-rw-r--r--chart2/source/controller/inc/MultipleChartConverters.hxx133
-rw-r--r--chart2/source/controller/inc/MultipleItemConverter.hxx63
-rw-r--r--chart2/source/controller/inc/ObjectHierarchy.hxx123
-rw-r--r--chart2/source/controller/inc/ObjectNameProvider.hxx90
-rw-r--r--chart2/source/controller/inc/PositionAndSizeHelper.hxx63
-rw-r--r--chart2/source/controller/inc/RangeEdit.hxx59
-rw-r--r--chart2/source/controller/inc/RangeSelectionButton.hxx56
-rw-r--r--chart2/source/controller/inc/RangeSelectionHelper.hxx90
-rw-r--r--chart2/source/controller/inc/RangeSelectionListener.hxx82
-rw-r--r--chart2/source/controller/inc/RegressionCurveItemConverter.hxx85
-rw-r--r--chart2/source/controller/inc/RegressionEquationItemConverter.hxx86
-rw-r--r--chart2/source/controller/inc/SchSlotIds.hxx237
-rw-r--r--chart2/source/controller/inc/SeriesOptionsItemConverter.hxx105
-rw-r--r--chart2/source/controller/inc/ShapeController.hrc50
-rw-r--r--chart2/source/controller/inc/StatisticsItemConverter.hxx78
-rw-r--r--chart2/source/controller/inc/TabPageNotifiable.hxx54
-rw-r--r--chart2/source/controller/inc/TextDirectionListBox.hxx51
-rw-r--r--chart2/source/controller/inc/TimerTriggeredControllerLock.hxx66
-rw-r--r--chart2/source/controller/inc/TitleDialogData.hxx70
-rw-r--r--chart2/source/controller/inc/TitleItemConverter.hxx83
-rw-r--r--chart2/source/controller/inc/ViewElementListProvider.hxx73
-rw-r--r--chart2/source/controller/inc/dlg_ChartType.hxx76
-rw-r--r--chart2/source/controller/inc/dlg_ChartType_UNO.hxx89
-rw-r--r--chart2/source/controller/inc/dlg_CreationWizard.hxx108
-rw-r--r--chart2/source/controller/inc/dlg_CreationWizard_UNO.hxx132
-rw-r--r--chart2/source/controller/inc/dlg_DataEditor.hxx124
-rw-r--r--chart2/source/controller/inc/dlg_DataSource.hxx101
-rw-r--r--chart2/source/controller/inc/dlg_InsertAxis_Grid.hxx102
-rw-r--r--chart2/source/controller/inc/dlg_InsertDataLabel.hxx73
-rw-r--r--chart2/source/controller/inc/dlg_InsertErrorBars.hxx81
-rw-r--r--chart2/source/controller/inc/dlg_InsertLegend.hxx72
-rw-r--r--chart2/source/controller/inc/dlg_InsertTitle.hxx64
-rw-r--r--chart2/source/controller/inc/dlg_InsertTrendline.hxx71
-rw-r--r--chart2/source/controller/inc/dlg_ObjectProperties.hxx157
-rw-r--r--chart2/source/controller/inc/dlg_ShapeFont.hxx62
-rw-r--r--chart2/source/controller/inc/dlg_ShapeParagraph.hxx57
-rw-r--r--chart2/source/controller/inc/dlg_View3D.hxx85
-rw-r--r--chart2/source/controller/inc/res_ErrorBar.hxx158
-rw-r--r--chart2/source/controller/itemsetwrapper/AxisItemConverter.cxx838
-rw-r--r--chart2/source/controller/itemsetwrapper/CharacterPropertyItemConverter.cxx521
-rw-r--r--chart2/source/controller/itemsetwrapper/DataPointItemConverter.cxx703
-rw-r--r--chart2/source/controller/itemsetwrapper/ErrorBarItemConverter.cxx459
-rw-r--r--chart2/source/controller/itemsetwrapper/GraphicPropertyItemConverter.cxx812
-rw-r--r--chart2/source/controller/itemsetwrapper/ItemConverter.cxx272
-rw-r--r--chart2/source/controller/itemsetwrapper/LegendItemConverter.cxx239
-rw-r--r--chart2/source/controller/itemsetwrapper/MultipleChartConverters.cxx236
-rw-r--r--chart2/source/controller/itemsetwrapper/MultipleItemConverter.cxx87
-rw-r--r--chart2/source/controller/itemsetwrapper/RegressionCurveItemConverter.cxx279
-rw-r--r--chart2/source/controller/itemsetwrapper/RegressionEquationItemConverter.cxx190
-rw-r--r--chart2/source/controller/itemsetwrapper/SchWhichPairs.hxx255
-rw-r--r--chart2/source/controller/itemsetwrapper/SeriesOptionsItemConverter.cxx456
-rw-r--r--chart2/source/controller/itemsetwrapper/StatisticsItemConverter.cxx700
-rw-r--r--chart2/source/controller/itemsetwrapper/TitleItemConverter.cxx248
-rw-r--r--chart2/source/controller/itemsetwrapper/makefile.mk60
-rw-r--r--chart2/source/controller/main/ChartController.cxx1587
-rw-r--r--chart2/source/controller/main/ChartController.hxx739
-rw-r--r--chart2/source/controller/main/ChartController_EditData.cxx83
-rw-r--r--chart2/source/controller/main/ChartController_Insert.cxx949
-rw-r--r--chart2/source/controller/main/ChartController_Position.cxx194
-rw-r--r--chart2/source/controller/main/ChartController_Properties.cxx863
-rw-r--r--chart2/source/controller/main/ChartController_TextEdit.cxx272
-rw-r--r--chart2/source/controller/main/ChartController_Tools.cxx922
-rw-r--r--chart2/source/controller/main/ChartController_Window.cxx2032
-rw-r--r--chart2/source/controller/main/ChartDropTargetHelper.cxx207
-rw-r--r--chart2/source/controller/main/ChartDropTargetHelper.hxx72
-rw-r--r--chart2/source/controller/main/ChartFrameloader.cxx211
-rw-r--r--chart2/source/controller/main/ChartFrameloader.hxx94
-rw-r--r--chart2/source/controller/main/ChartRenderer.cxx181
-rw-r--r--chart2/source/controller/main/ChartTransferable.cxx175
-rw-r--r--chart2/source/controller/main/ChartTransferable.hxx70
-rw-r--r--chart2/source/controller/main/ChartWindow.cxx274
-rw-r--r--chart2/source/controller/main/ChartWindow.hxx91
-rw-r--r--chart2/source/controller/main/CommandDispatch.cxx214
-rw-r--r--chart2/source/controller/main/CommandDispatch.hxx154
-rw-r--r--chart2/source/controller/main/CommandDispatchContainer.cxx219
-rw-r--r--chart2/source/controller/main/CommandDispatchContainer.hxx163
-rw-r--r--chart2/source/controller/main/ConfigurationAccess.cxx123
-rw-r--r--chart2/source/controller/main/ControllerCommandDispatch.cxx808
-rw-r--r--chart2/source/controller/main/ControllerCommandDispatch.hxx139
-rw-r--r--chart2/source/controller/main/DragMethod_Base.cxx96
-rw-r--r--chart2/source/controller/main/DragMethod_Base.hxx72
-rw-r--r--chart2/source/controller/main/DragMethod_PieSegment.cxx166
-rw-r--r--chart2/source/controller/main/DragMethod_PieSegment.hxx67
-rw-r--r--chart2/source/controller/main/DragMethod_RotateDiagram.cxx240
-rw-r--r--chart2/source/controller/main/DragMethod_RotateDiagram.hxx95
-rw-r--r--chart2/source/controller/main/DrawCommandDispatch.cxx677
-rw-r--r--chart2/source/controller/main/DrawCommandDispatch.hrc50
-rw-r--r--chart2/source/controller/main/DrawCommandDispatch.hxx96
-rw-r--r--chart2/source/controller/main/ElementSelector.cxx347
-rw-r--r--chart2/source/controller/main/ElementSelector.hxx126
-rw-r--r--chart2/source/controller/main/FeatureCommandDispatchBase.cxx117
-rw-r--r--chart2/source/controller/main/FeatureCommandDispatchBase.hxx118
-rw-r--r--chart2/source/controller/main/ImplUndoManager.cxx508
-rw-r--r--chart2/source/controller/main/ImplUndoManager.hxx230
-rw-r--r--chart2/source/controller/main/ObjectHierarchy.cxx865
-rw-r--r--chart2/source/controller/main/PositionAndSizeHelper.cxx192
-rw-r--r--chart2/source/controller/main/SelectionHelper.cxx688
-rw-r--r--chart2/source/controller/main/SelectionHelper.hxx142
-rw-r--r--chart2/source/controller/main/ShapeController.cxx741
-rw-r--r--chart2/source/controller/main/ShapeController.hxx103
-rw-r--r--chart2/source/controller/main/ShapeToolbarController.cxx301
-rw-r--r--chart2/source/controller/main/ShapeToolbarController.hxx105
-rw-r--r--chart2/source/controller/main/StatusBarCommandDispatch.cxx152
-rw-r--r--chart2/source/controller/main/StatusBarCommandDispatch.hxx113
-rw-r--r--chart2/source/controller/main/UndoCommandDispatch.cxx150
-rw-r--r--chart2/source/controller/main/UndoCommandDispatch.hxx89
-rw-r--r--chart2/source/controller/main/UndoGuard.cxx146
-rw-r--r--chart2/source/controller/main/UndoManager.cxx443
-rw-r--r--chart2/source/controller/main/_serviceregistration_controller.cxx128
-rw-r--r--chart2/source/controller/main/makefile.mk84
-rw-r--r--chart2/source/controller/makefile.mk128
-rw-r--r--chart2/source/controller/menus/ShapeContextMenu.src124
-rw-r--r--chart2/source/controller/menus/ShapeEditContextMenu.src65
-rw-r--r--chart2/source/controller/menus/makefile.mk63
-rw-r--r--chart2/source/inc/AxisHelper.hxx250
-rw-r--r--chart2/source/inc/AxisIndexDefines.hxx41
-rw-r--r--chart2/source/inc/BaseGFXHelper.hxx105
-rw-r--r--chart2/source/inc/CachedDataSequence.hxx195
-rw-r--r--chart2/source/inc/CharacterProperties.hxx150
-rw-r--r--chart2/source/inc/ChartDebugTrace.hxx72
-rw-r--r--chart2/source/inc/ChartModelHelper.hxx118
-rw-r--r--chart2/source/inc/ChartTypeHelper.hxx107
-rw-r--r--chart2/source/inc/ChartViewHelper.hxx54
-rw-r--r--chart2/source/inc/CloneHelper.hxx127
-rw-r--r--chart2/source/inc/ColorPerPointHelper.hxx68
-rw-r--r--chart2/source/inc/CommonConverters.hxx282
-rw-r--r--chart2/source/inc/CommonFunctors.hxx231
-rw-r--r--chart2/source/inc/ConfigColorScheme.hxx97
-rw-r--r--chart2/source/inc/ConfigItemListener.hxx48
-rw-r--r--chart2/source/inc/ContainerHelper.hxx184
-rw-r--r--chart2/source/inc/ControllerLockGuard.hxx96
-rw-r--r--chart2/source/inc/DataSeriesHelper.hxx216
-rw-r--r--chart2/source/inc/DataSource.hxx86
-rw-r--r--chart2/source/inc/DataSourceHelper.hxx167
-rw-r--r--chart2/source/inc/DiagramHelper.hxx353
-rw-r--r--chart2/source/inc/DisposeHelper.hxx104
-rw-r--r--chart2/source/inc/ErrorBar.hxx163
-rw-r--r--chart2/source/inc/EventListenerHelper.hxx225
-rw-r--r--chart2/source/inc/ExplicitCategoriesProvider.hxx111
-rw-r--r--chart2/source/inc/ExponentialRegressionCurveCalculator.hxx77
-rw-r--r--chart2/source/inc/FastPropertyIdRanges.hxx60
-rw-r--r--chart2/source/inc/FillProperties.hxx94
-rw-r--r--chart2/source/inc/FormattedStringHelper.hxx60
-rw-r--r--chart2/source/inc/InternalData.hxx114
-rw-r--r--chart2/source/inc/InternalDataProvider.hxx249
-rw-r--r--chart2/source/inc/LabeledDataSequence.hxx116
-rw-r--r--chart2/source/inc/LegendHelper.hxx81
-rw-r--r--chart2/source/inc/LifeTime.hxx256
-rw-r--r--chart2/source/inc/LineProperties.hxx80
-rw-r--r--chart2/source/inc/LinearRegressionCurveCalculator.hxx77
-rw-r--r--chart2/source/inc/LogarithmicRegressionCurveCalculator.hxx77
-rw-r--r--chart2/source/inc/MeanValueRegressionCurveCalculator.hxx76
-rw-r--r--chart2/source/inc/MediaDescriptorHelper.hxx210
-rw-r--r--chart2/source/inc/ModifyListenerCallBack.hxx70
-rw-r--r--chart2/source/inc/ModifyListenerHelper.hxx310
-rw-r--r--chart2/source/inc/MutexContainer.hxx53
-rw-r--r--chart2/source/inc/NameContainer.hxx107
-rw-r--r--chart2/source/inc/NamedFillProperties.hxx78
-rw-r--r--chart2/source/inc/NamedLineProperties.hxx78
-rw-r--r--chart2/source/inc/NamedProperties.hxx65
-rw-r--r--chart2/source/inc/NoWarningThisInCTOR.hxx49
-rw-r--r--chart2/source/inc/OPropertySet.hxx316
-rw-r--r--chart2/source/inc/ObjectIdentifier.hxx281
-rw-r--r--chart2/source/inc/PotentialRegressionCurveCalculator.hxx79
-rw-r--r--chart2/source/inc/PropertyHelper.hxx200
-rw-r--r--chart2/source/inc/RangeHighlighter.hxx119
-rw-r--r--chart2/source/inc/ReferenceSizeProvider.hxx148
-rw-r--r--chart2/source/inc/RegressionCurveCalculator.hxx96
-rw-r--r--chart2/source/inc/RegressionCurveHelper.hxx244
-rw-r--r--chart2/source/inc/RelativePositionHelper.hxx123
-rw-r--r--chart2/source/inc/RelativeSizeHelper.hxx62
-rw-r--r--chart2/source/inc/ResId.hxx51
-rw-r--r--chart2/source/inc/RessourceManager.hxx56
-rw-r--r--chart2/source/inc/Scaling.hxx212
-rw-r--r--chart2/source/inc/SceneProperties.hxx99
-rw-r--r--chart2/source/inc/ServiceMacros.hxx149
-rw-r--r--chart2/source/inc/StackMode.hxx50
-rw-r--r--chart2/source/inc/StatisticsHelper.hxx136
-rw-r--r--chart2/source/inc/Strings.hrc409
-rw-r--r--chart2/source/inc/ThreeDHelper.hxx162
-rw-r--r--chart2/source/inc/TitleHelper.hxx104
-rw-r--r--chart2/source/inc/TrueGuard.hxx51
-rw-r--r--chart2/source/inc/UncachedDataSequence.hxx209
-rw-r--r--chart2/source/inc/UndoGuard.hxx123
-rw-r--r--chart2/source/inc/UndoManager.hxx183
-rw-r--r--chart2/source/inc/UserDefinedProperties.hxx72
-rw-r--r--chart2/source/inc/WeakListenerAdapter.hxx130
-rw-r--r--chart2/source/inc/WrappedDefaultProperty.hxx69
-rw-r--r--chart2/source/inc/WrappedDirectStateProperty.hxx56
-rw-r--r--chart2/source/inc/WrappedIgnoreProperty.hxx84
-rw-r--r--chart2/source/inc/WrappedProperty.hxx89
-rw-r--r--chart2/source/inc/WrappedPropertySet.hxx148
-rw-r--r--chart2/source/inc/XMLRangeHelper.hxx77
-rw-r--r--chart2/source/inc/charttoolsdllapi.hxx44
-rw-r--r--chart2/source/inc/chartview/ChartSfxItemIds.hxx260
-rw-r--r--chart2/source/inc/chartview/DataPointSymbolSupplier.hxx62
-rw-r--r--chart2/source/inc/chartview/DrawModelWrapper.hxx117
-rw-r--r--chart2/source/inc/chartview/ExplicitValueProvider.hxx122
-rw-r--r--chart2/source/inc/chartview/NumberFormatterWrapper.hxx85
-rw-r--r--chart2/source/inc/chartview/chartviewdllapi.hxx44
-rw-r--r--chart2/source/inc/chartview/servicenames_charttypes.hxx50
-rw-r--r--chart2/source/inc/exports.dxp3
-rw-r--r--chart2/source/inc/macros.hxx56
-rw-r--r--chart2/source/inc/servicenames.hxx74
-rw-r--r--chart2/source/inc/servicenames_charttypes.hxx52
-rw-r--r--chart2/source/inc/servicenames_coosystems.hxx46
-rw-r--r--chart2/source/inc/servicenames_dlwrapper.hxx44
-rw-r--r--chart2/source/model/filter/XMLFilter.cxx876
-rw-r--r--chart2/source/model/filter/makefile.mk49
-rw-r--r--chart2/source/model/inc/BaseCoordinateSystem.hxx193
-rw-r--r--chart2/source/model/inc/CartesianCoordinateSystem.hxx96
-rw-r--r--chart2/source/model/inc/ChartTypeManager.hxx90
-rw-r--r--chart2/source/model/inc/DataSeries.hxx233
-rw-r--r--chart2/source/model/inc/DataSeriesTree.hxx94
-rw-r--r--chart2/source/model/inc/Diagram.hxx244
-rw-r--r--chart2/source/model/inc/PolarCoordinateSystem.hxx96
-rw-r--r--chart2/source/model/inc/StockBar.hxx122
-rw-r--r--chart2/source/model/inc/XMLFilter.hxx226
-rw-r--r--chart2/source/model/inc/_serviceregistration_charttypes.hxx43
-rw-r--r--chart2/source/model/main/Axis.cxx649
-rw-r--r--chart2/source/model/main/Axis.hxx187
-rw-r--r--chart2/source/model/main/BaseCoordinateSystem.cxx412
-rw-r--r--chart2/source/model/main/CartesianCoordinateSystem.cxx158
-rw-r--r--chart2/source/model/main/ChartModel.cxx1382
-rw-r--r--chart2/source/model/main/ChartModel.hxx612
-rw-r--r--chart2/source/model/main/ChartModel_Persistence.cxx861
-rw-r--r--chart2/source/model/main/DataPoint.cxx322
-rw-r--r--chart2/source/model/main/DataPoint.hxx146
-rw-r--r--chart2/source/model/main/DataPointProperties.cxx432
-rw-r--r--chart2/source/model/main/DataPointProperties.hxx104
-rw-r--r--chart2/source/model/main/DataSeries.cxx627
-rw-r--r--chart2/source/model/main/DataSeriesProperties.cxx101
-rw-r--r--chart2/source/model/main/DataSeriesProperties.hxx66
-rw-r--r--chart2/source/model/main/Diagram.cxx716
-rw-r--r--chart2/source/model/main/FormattedString.cxx266
-rw-r--r--chart2/source/model/main/FormattedString.hxx143
-rw-r--r--chart2/source/model/main/GridProperties.cxx276
-rw-r--r--chart2/source/model/main/GridProperties.hxx131
-rw-r--r--chart2/source/model/main/LayoutContainer.cxx141
-rw-r--r--chart2/source/model/main/LayoutContainer.hxx93
-rw-r--r--chart2/source/model/main/Legend.cxx372
-rw-r--r--chart2/source/model/main/Legend.hxx157
-rw-r--r--chart2/source/model/main/PageBackground.cxx258
-rw-r--r--chart2/source/model/main/PageBackground.hxx135
-rw-r--r--chart2/source/model/main/PolarCoordinateSystem.cxx158
-rw-r--r--chart2/source/model/main/StockBar.cxx270
-rw-r--r--chart2/source/model/main/Title.cxx415
-rw-r--r--chart2/source/model/main/Title.hxx150
-rw-r--r--chart2/source/model/main/Wall.cxx263
-rw-r--r--chart2/source/model/main/Wall.hxx130
-rw-r--r--chart2/source/model/main/_serviceregistration_model.cxx221
-rw-r--r--chart2/source/model/main/makefile.mk67
-rw-r--r--chart2/source/model/makefile.mk100
-rw-r--r--chart2/source/model/template/AreaChartType.cxx80
-rw-r--r--chart2/source/model/template/AreaChartType.hxx67
-rw-r--r--chart2/source/model/template/AreaChartTypeTemplate.cxx284
-rw-r--r--chart2/source/model/template/AreaChartTypeTemplate.hxx106
-rw-r--r--chart2/source/model/template/BarChartType.cxx81
-rw-r--r--chart2/source/model/template/BarChartType.hxx67
-rw-r--r--chart2/source/model/template/BarChartTypeTemplate.cxx356
-rw-r--r--chart2/source/model/template/BarChartTypeTemplate.hxx124
-rw-r--r--chart2/source/model/template/BubbleChartType.cxx245
-rw-r--r--chart2/source/model/template/BubbleChartType.hxx89
-rw-r--r--chart2/source/model/template/BubbleChartTypeTemplate.cxx317
-rw-r--r--chart2/source/model/template/BubbleChartTypeTemplate.hxx104
-rw-r--r--chart2/source/model/template/BubbleDataInterpreter.cxx311
-rw-r--r--chart2/source/model/template/BubbleDataInterpreter.hxx64
-rw-r--r--chart2/source/model/template/CandleStickChartType.cxx358
-rw-r--r--chart2/source/model/template/CandleStickChartType.hxx93
-rw-r--r--chart2/source/model/template/ChartType.cxx328
-rw-r--r--chart2/source/model/template/ChartType.hxx186
-rw-r--r--chart2/source/model/template/ChartTypeManager.cxx622
-rw-r--r--chart2/source/model/template/ChartTypeTemplate.cxx936
-rw-r--r--chart2/source/model/template/ChartTypeTemplate.hxx302
-rw-r--r--chart2/source/model/template/ColumnChartType.cxx205
-rw-r--r--chart2/source/model/template/ColumnChartType.hxx77
-rw-r--r--chart2/source/model/template/ColumnLineChartTypeTemplate.cxx456
-rw-r--r--chart2/source/model/template/ColumnLineChartTypeTemplate.hxx122
-rw-r--r--chart2/source/model/template/ColumnLineDataInterpreter.cxx102
-rw-r--r--chart2/source/model/template/ColumnLineDataInterpreter.hxx62
-rw-r--r--chart2/source/model/template/DataInterpreter.cxx464
-rw-r--r--chart2/source/model/template/DataInterpreter.hxx103
-rw-r--r--chart2/source/model/template/FilledNetChartType.cxx97
-rw-r--r--chart2/source/model/template/FilledNetChartType.hxx66
-rw-r--r--chart2/source/model/template/LineChartType.cxx217
-rw-r--r--chart2/source/model/template/LineChartType.hxx78
-rw-r--r--chart2/source/model/template/LineChartTypeTemplate.cxx415
-rw-r--r--chart2/source/model/template/LineChartTypeTemplate.hxx112
-rw-r--r--chart2/source/model/template/NetChartType.cxx183
-rw-r--r--chart2/source/model/template/NetChartType.hxx96
-rw-r--r--chart2/source/model/template/NetChartTypeTemplate.cxx232
-rw-r--r--chart2/source/model/template/NetChartTypeTemplate.hxx90
-rw-r--r--chart2/source/model/template/PieChartType.cxx242
-rw-r--r--chart2/source/model/template/PieChartType.hxx84
-rw-r--r--chart2/source/model/template/PieChartTypeTemplate.cxx664
-rw-r--r--chart2/source/model/template/PieChartTypeTemplate.hxx143
-rw-r--r--chart2/source/model/template/ScatterChartType.cxx299
-rw-r--r--chart2/source/model/template/ScatterChartType.hxx94
-rw-r--r--chart2/source/model/template/ScatterChartTypeTemplate.cxx435
-rw-r--r--chart2/source/model/template/ScatterChartTypeTemplate.hxx113
-rw-r--r--chart2/source/model/template/StockChartTypeTemplate.cxx563
-rw-r--r--chart2/source/model/template/StockChartTypeTemplate.hxx141
-rw-r--r--chart2/source/model/template/StockDataInterpreter.cxx345
-rw-r--r--chart2/source/model/template/StockDataInterpreter.hxx72
-rw-r--r--chart2/source/model/template/XYDataInterpreter.cxx276
-rw-r--r--chart2/source/model/template/XYDataInterpreter.hxx64
-rw-r--r--chart2/source/model/template/_serviceregistration_charttypes.cxx141
-rw-r--r--chart2/source/model/template/makefile.mk82
-rw-r--r--chart2/source/tools/AxisHelper.cxx979
-rw-r--r--chart2/source/tools/BaseGFXHelper.cxx225
-rw-r--r--chart2/source/tools/CachedDataSequence.cxx412
-rw-r--r--chart2/source/tools/CharacterProperties.cxx605
-rw-r--r--chart2/source/tools/ChartDebugTrace.cxx420
-rw-r--r--chart2/source/tools/ChartModelHelper.cxx270
-rw-r--r--chart2/source/tools/ChartTypeHelper.cxx688
-rw-r--r--chart2/source/tools/ChartViewHelper.cxx75
-rw-r--r--chart2/source/tools/ColorPerPointHelper.cxx100
-rw-r--r--chart2/source/tools/CommonConverters.cxx552
-rw-r--r--chart2/source/tools/ConfigColorScheme.cxx205
-rw-r--r--chart2/source/tools/ControllerLockGuard.cxx92
-rw-r--r--chart2/source/tools/DataSeriesHelper.cxx921
-rw-r--r--chart2/source/tools/DataSource.cxx94
-rw-r--r--chart2/source/tools/DataSourceHelper.cxx555
-rw-r--r--chart2/source/tools/DiagramHelper.cxx1562
-rw-r--r--chart2/source/tools/ErrorBar.cxx366
-rw-r--r--chart2/source/tools/ExplicitCategoriesProvider.cxx425
-rw-r--r--chart2/source/tools/ExponentialRegressionCurveCalculator.cxx186
-rw-r--r--chart2/source/tools/FillProperties.cxx280
-rw-r--r--chart2/source/tools/FormattedStringHelper.cxx82
-rw-r--r--chart2/source/tools/ImplOPropertySet.cxx210
-rw-r--r--chart2/source/tools/ImplOPropertySet.hxx99
-rw-r--r--chart2/source/tools/InternalData.cxx559
-rw-r--r--chart2/source/tools/InternalDataProvider.cxx1386
-rw-r--r--chart2/source/tools/LabeledDataSequence.cxx182
-rw-r--r--chart2/source/tools/LegendHelper.cxx149
-rw-r--r--chart2/source/tools/LifeTime.cxx549
-rw-r--r--chart2/source/tools/LineProperties.cxx188
-rw-r--r--chart2/source/tools/LinearRegressionCurveCalculator.cxx182
-rw-r--r--chart2/source/tools/LogarithmicRegressionCurveCalculator.cxx194
-rw-r--r--chart2/source/tools/MeanValueRegressionCurveCalculator.cxx146
-rw-r--r--chart2/source/tools/MediaDescriptorHelper.cxx224
-rw-r--r--chart2/source/tools/ModifyListenerCallBack.cxx136
-rw-r--r--chart2/source/tools/ModifyListenerHelper.cxx216
-rw-r--r--chart2/source/tools/MutexContainer.cxx46
-rw-r--r--chart2/source/tools/NameContainer.cxx192
-rw-r--r--chart2/source/tools/NamedFillProperties.cxx117
-rw-r--r--chart2/source/tools/NamedLineProperties.cxx102
-rw-r--r--chart2/source/tools/NamedProperties.cxx62
-rw-r--r--chart2/source/tools/OPropertySet.cxx533
-rw-r--r--chart2/source/tools/ObjectIdentifier.cxx1494
-rw-r--r--chart2/source/tools/PotentialRegressionCurveCalculator.cxx180
-rw-r--r--chart2/source/tools/PropertyHelper.cxx317
-rw-r--r--chart2/source/tools/RangeHighlighter.cxx409
-rw-r--r--chart2/source/tools/ReferenceSizeProvider.cxx381
-rw-r--r--chart2/source/tools/RegressionCalculationHelper.hxx134
-rw-r--r--chart2/source/tools/RegressionCurveCalculator.cxx171
-rw-r--r--chart2/source/tools/RegressionCurveHelper.cxx739
-rw-r--r--chart2/source/tools/RegressionCurveModel.cxx444
-rw-r--r--chart2/source/tools/RegressionCurveModel.hxx262
-rw-r--r--chart2/source/tools/RegressionEquation.cxx365
-rw-r--r--chart2/source/tools/RegressionEquation.hxx146
-rw-r--r--chart2/source/tools/RelativePositionHelper.cxx402
-rw-r--r--chart2/source/tools/RelativeSizeHelper.cxx103
-rw-r--r--chart2/source/tools/ResId.cxx50
-rw-r--r--chart2/source/tools/RessourceManager.cxx52
-rw-r--r--chart2/source/tools/Scaling.cxx274
-rw-r--r--chart2/source/tools/SceneProperties.cxx385
-rw-r--r--chart2/source/tools/StatisticsHelper.cxx406
-rw-r--r--chart2/source/tools/ThreeDHelper.cxx1530
-rw-r--r--chart2/source/tools/TitleHelper.cxx380
-rw-r--r--chart2/source/tools/TrueGuard.cxx50
-rw-r--r--chart2/source/tools/UncachedDataSequence.cxx382
-rw-r--r--chart2/source/tools/UserDefinedProperties.cxx76
-rw-r--r--chart2/source/tools/WeakListenerAdapter.cxx79
-rw-r--r--chart2/source/tools/WrappedDefaultProperty.cxx95
-rw-r--r--chart2/source/tools/WrappedDirectStateProperty.cxx62
-rw-r--r--chart2/source/tools/WrappedIgnoreProperty.cxx151
-rw-r--r--chart2/source/tools/WrappedProperty.cxx153
-rw-r--r--chart2/source/tools/WrappedPropertySet.cxx498
-rw-r--r--chart2/source/tools/XMLRangeHelper.cxx421
-rw-r--r--chart2/source/tools/_serviceregistration_tools.cxx203
-rw-r--r--chart2/source/tools/exports.flt3
-rw-r--r--chart2/source/tools/makefile.mk189
-rw-r--r--chart2/source/view/axes/MinimumAndMaximumSupplier.cxx204
-rw-r--r--chart2/source/view/axes/ScaleAutomatism.cxx763
-rw-r--r--chart2/source/view/axes/TickmarkHelper.cxx940
-rw-r--r--chart2/source/view/axes/TickmarkHelper.hxx279
-rw-r--r--chart2/source/view/axes/TickmarkProperties.hxx56
-rw-r--r--chart2/source/view/axes/VAxisBase.cxx256
-rw-r--r--chart2/source/view/axes/VAxisBase.hxx110
-rw-r--r--chart2/source/view/axes/VAxisOrGridBase.cxx101
-rw-r--r--chart2/source/view/axes/VAxisOrGridBase.hxx86
-rw-r--r--chart2/source/view/axes/VAxisProperties.cxx489
-rw-r--r--chart2/source/view/axes/VAxisProperties.hxx171
-rw-r--r--chart2/source/view/axes/VCartesianAxis.cxx1603
-rw-r--r--chart2/source/view/axes/VCartesianAxis.hxx149
-rw-r--r--chart2/source/view/axes/VCartesianCoordinateSystem.cxx253
-rw-r--r--chart2/source/view/axes/VCartesianCoordinateSystem.hxx67
-rw-r--r--chart2/source/view/axes/VCartesianGrid.cxx342
-rw-r--r--chart2/source/view/axes/VCartesianGrid.hxx74
-rw-r--r--chart2/source/view/axes/VCoordinateSystem.cxx601
-rw-r--r--chart2/source/view/axes/VPolarAngleAxis.cxx237
-rw-r--r--chart2/source/view/axes/VPolarAngleAxis.hxx69
-rw-r--r--chart2/source/view/axes/VPolarAxis.cxx86
-rw-r--r--chart2/source/view/axes/VPolarAxis.hxx74
-rw-r--r--chart2/source/view/axes/VPolarCoordinateSystem.cxx214
-rw-r--r--chart2/source/view/axes/VPolarCoordinateSystem.hxx71
-rw-r--r--chart2/source/view/axes/VPolarGrid.cxx276
-rw-r--r--chart2/source/view/axes/VPolarGrid.hxx99
-rw-r--r--chart2/source/view/axes/VPolarRadiusAxis.cxx189
-rw-r--r--chart2/source/view/axes/VPolarRadiusAxis.hxx101
-rw-r--r--chart2/source/view/axes/makefile.mk66
-rw-r--r--chart2/source/view/charttypes/AreaChart.cxx981
-rw-r--r--chart2/source/view/charttypes/AreaChart.hxx137
-rw-r--r--chart2/source/view/charttypes/BarChart.cxx969
-rw-r--r--chart2/source/view/charttypes/BarChart.hxx113
-rw-r--r--chart2/source/view/charttypes/BarPositionHelper.cxx141
-rw-r--r--chart2/source/view/charttypes/BarPositionHelper.hxx79
-rw-r--r--chart2/source/view/charttypes/BubbleChart.cxx420
-rw-r--r--chart2/source/view/charttypes/BubbleChart.hxx97
-rw-r--r--chart2/source/view/charttypes/CandleStickChart.cxx372
-rw-r--r--chart2/source/view/charttypes/CandleStickChart.hxx92
-rw-r--r--chart2/source/view/charttypes/CategoryPositionHelper.cxx103
-rw-r--r--chart2/source/view/charttypes/CategoryPositionHelper.hxx71
-rw-r--r--chart2/source/view/charttypes/PieChart.cxx883
-rw-r--r--chart2/source/view/charttypes/PieChart.hxx148
-rw-r--r--chart2/source/view/charttypes/Splines.cxx547
-rw-r--r--chart2/source/view/charttypes/Splines.hxx64
-rw-r--r--chart2/source/view/charttypes/VSeriesPlotter.cxx2113
-rw-r--r--chart2/source/view/charttypes/makefile.mk55
-rw-r--r--chart2/source/view/diagram/VDiagram.cxx813
-rw-r--r--chart2/source/view/diagram/makefile.mk48
-rw-r--r--chart2/source/view/exports.flt4
-rw-r--r--chart2/source/view/inc/Clipping.hxx73
-rw-r--r--chart2/source/view/inc/LabelAlignment.hxx44
-rw-r--r--chart2/source/view/inc/LabelPositionHelper.hxx89
-rw-r--r--chart2/source/view/inc/LegendEntryProvider.hxx64
-rw-r--r--chart2/source/view/inc/Linear3DTransformation.hxx69
-rw-r--r--chart2/source/view/inc/MinimumAndMaximumSupplier.hxx103
-rw-r--r--chart2/source/view/inc/PlotterBase.hxx129
-rw-r--r--chart2/source/view/inc/PlottingPositionHelper.hxx409
-rw-r--r--chart2/source/view/inc/PolarLabelPositionHelper.hxx79
-rw-r--r--chart2/source/view/inc/PropertyMapper.hxx136
-rw-r--r--chart2/source/view/inc/ScaleAutomatism.hxx122
-rw-r--r--chart2/source/view/inc/ShapeFactory.hxx257
-rw-r--r--chart2/source/view/inc/Stripe.hxx92
-rw-r--r--chart2/source/view/inc/VCoordinateSystem.hxx215
-rw-r--r--chart2/source/view/inc/VDataSeries.hxx267
-rw-r--r--chart2/source/view/inc/VDiagram.hxx138
-rw-r--r--chart2/source/view/inc/VLegendSymbolFactory.hxx80
-rw-r--r--chart2/source/view/inc/VLineProperties.hxx64
-rw-r--r--chart2/source/view/inc/VPolarTransformation.hxx69
-rw-r--r--chart2/source/view/inc/VSeriesPlotter.hxx456
-rw-r--r--chart2/source/view/inc/ViewDefines.hxx50
-rw-r--r--chart2/source/view/main/ChartItemPool.cxx255
-rw-r--r--chart2/source/view/main/ChartItemPool.hxx61
-rw-r--r--chart2/source/view/main/ChartView.cxx3190
-rw-r--r--chart2/source/view/main/ChartView.hxx264
-rw-r--r--chart2/source/view/main/Clipping.cxx307
-rw-r--r--chart2/source/view/main/DataPointSymbolSupplier.cxx69
-rw-r--r--chart2/source/view/main/DrawModelWrapper.cxx414
-rw-r--r--chart2/source/view/main/LabelPositionHelper.cxx491
-rw-r--r--chart2/source/view/main/Linear3DTransformation.cxx110
-rw-r--r--chart2/source/view/main/NumberFormatterWrapper.cxx172
-rw-r--r--chart2/source/view/main/PlotterBase.cxx138
-rw-r--r--chart2/source/view/main/PlottingPositionHelper.cxx670
-rw-r--r--chart2/source/view/main/PolarLabelPositionHelper.cxx191
-rw-r--r--chart2/source/view/main/PropertyMapper.cxx542
-rw-r--r--chart2/source/view/main/ShapeFactory.cxx2112
-rw-r--r--chart2/source/view/main/Stripe.cxx363
-rw-r--r--chart2/source/view/main/VDataSeries.cxx988
-rw-r--r--chart2/source/view/main/VLegend.cxx837
-rw-r--r--chart2/source/view/main/VLegend.hxx113
-rw-r--r--chart2/source/view/main/VLegendSymbolFactory.cxx377
-rw-r--r--chart2/source/view/main/VLineProperties.cxx112
-rw-r--r--chart2/source/view/main/VPolarTransformation.cxx97
-rw-r--r--chart2/source/view/main/VTitle.cxx302
-rw-r--r--chart2/source/view/main/VTitle.hxx85
-rw-r--r--chart2/source/view/main/_serviceregistration_view.cxx74
-rw-r--r--chart2/source/view/main/makefile.mk68
-rw-r--r--chart2/source/view/makefile.mk120
-rw-r--r--chart2/uiconfig/accelerator/en-US/default.xml30
-rw-r--r--chart2/uiconfig/menubar/menubar.xml156
-rw-r--r--chart2/uiconfig/statusbar/statusbar.xml6
-rw-r--r--chart2/uiconfig/toolbar/arrowshapes.xml34
-rw-r--r--chart2/uiconfig/toolbar/basicshapes.xml29
-rw-r--r--chart2/uiconfig/toolbar/calloutshapes.xml11
-rw-r--r--chart2/uiconfig/toolbar/drawbar.xml20
-rw-r--r--chart2/uiconfig/toolbar/flowchartshapes.xml36
-rw-r--r--chart2/uiconfig/toolbar/standardbar.xml22
-rw-r--r--chart2/uiconfig/toolbar/starshapes.xml17
-rw-r--r--chart2/uiconfig/toolbar/symbolshapes.xml24
-rw-r--r--chart2/uiconfig/toolbar/toolbar.xml15
-rw-r--r--chart2/util/makefile.mk60
-rw-r--r--chart2/util/makefile.pmk46
-rw-r--r--chart2/util/target.pmk32
-rw-r--r--chart2/workbench/addin/exports.dxp3
-rw-r--r--chart2/workbench/addin/makefile.mk85
-rw-r--r--chart2/workbench/addin/sampleaddin.cxx719
-rw-r--r--chart2/workbench/addin/sampleaddin.def7
-rw-r--r--chart2/workbench/addin/sampleaddin.hxx164
-rw-r--r--cli_ure/inc/makefile.mk48
-rw-r--r--cli_ure/inc/pch/precompiled_cli_ure.cxx31
-rw-r--r--cli_ure/inc/pch/precompiled_cli_ure.hxx34
-rw-r--r--cli_ure/prj/build.lst12
-rw-r--r--cli_ure/prj/d.lst13
-rw-r--r--cli_ure/qa/climaker/ClimakerTestCase.java98
-rw-r--r--cli_ure/qa/climaker/climaker.cs1487
-rw-r--r--cli_ure/qa/climaker/makefile.mk135
-rw-r--r--cli_ure/qa/climaker/testobjects.cs588
-rw-r--r--cli_ure/qa/climaker/types.idl483
-rw-r--r--cli_ure/qa/versioning/readme.txt28
-rw-r--r--cli_ure/readme.txt272
-rw-r--r--cli_ure/source/basetypes/assembly.cs2
-rw-r--r--cli_ure/source/basetypes/cli_basetypes_config11
-rw-r--r--cli_ure/source/basetypes/makefile.mk105
-rw-r--r--cli_ure/source/basetypes/uno/Any.cs211
-rw-r--r--cli_ure/source/basetypes/uno/BoundAttribute.cs46
-rw-r--r--cli_ure/source/basetypes/uno/ExceptionAttribute.cs70
-rw-r--r--cli_ure/source/basetypes/uno/OnewayAttribute.cs43
-rw-r--r--cli_ure/source/basetypes/uno/ParameterizedTypeAttribute.cs68
-rw-r--r--cli_ure/source/basetypes/uno/PolymorphicType.cs443
-rw-r--r--cli_ure/source/basetypes/uno/TypeArgumentsAttribute.cs84
-rw-r--r--cli_ure/source/basetypes/uno/TypeParametersAttribute.cs65
-rw-r--r--cli_ure/source/climaker/climaker.exe.config10
-rw-r--r--cli_ure/source/climaker/climaker_app.cxx752
-rw-r--r--cli_ure/source/climaker/climaker_emit.cxx2326
-rw-r--r--cli_ure/source/climaker/climaker_share.h271
-rw-r--r--cli_ure/source/climaker/makefile.mk137
-rw-r--r--cli_ure/source/cliuno.snkbin0 -> 596 bytes-rw-r--r--cli_ure/source/makefile.mk48
-rw-r--r--cli_ure/source/native/assembly.cxx39
-rw-r--r--cli_ure/source/native/cli_cppuhelper_config11
-rw-r--r--cli_ure/source/native/makefile.mk184
-rw-r--r--cli_ure/source/native/msvc.map6
-rw-r--r--cli_ure/source/native/native_bootstrap.cxx436
-rw-r--r--cli_ure/source/native/native_share.h123
-rw-r--r--cli_ure/source/native/path.cxx220
-rw-r--r--cli_ure/source/scripts/increment_version.pl281
-rw-r--r--cli_ure/source/scripts/subst_template.pl133
-rw-r--r--cli_ure/source/uno_bridge/README.txt20
-rw-r--r--cli_ure/source/uno_bridge/bridge_exports.map8
-rw-r--r--cli_ure/source/uno_bridge/cli_base.h183
-rw-r--r--cli_ure/source/uno_bridge/cli_bridge.cxx372
-rw-r--r--cli_ure/source/uno_bridge/cli_bridge.h123
-rw-r--r--cli_ure/source/uno_bridge/cli_data.cxx2014
-rw-r--r--cli_ure/source/uno_bridge/cli_environment.cxx176
-rw-r--r--cli_ure/source/uno_bridge/cli_environment.h117
-rw-r--r--cli_ure/source/uno_bridge/cli_proxy.cxx1180
-rw-r--r--cli_ure/source/uno_bridge/cli_proxy.h302
-rw-r--r--cli_ure/source/uno_bridge/cli_uno.cxx293
-rw-r--r--cli_ure/source/uno_bridge/makefile.mk95
-rw-r--r--cli_ure/source/ure/assembly.cs2
-rw-r--r--cli_ure/source/ure/cli_ure_config11
-rw-r--r--cli_ure/source/ure/makefile.mk102
-rw-r--r--cli_ure/source/ure/uno/util/DisposeGuard.cs59
-rw-r--r--cli_ure/source/ure/uno/util/WeakAdapter.cs120
-rw-r--r--cli_ure/source/ure/uno/util/WeakBase.cs178
-rw-r--r--cli_ure/source/ure/uno/util/WeakComponentBase.cs194
-rw-r--r--cli_ure/unotypes/cli_uretypes_config11
-rw-r--r--cli_ure/unotypes/makefile.mk79
-rw-r--r--cli_ure/util/makefile.pmk35
-rw-r--r--cli_ure/util/target.pmk44
-rw-r--r--cli_ure/version/incversions.txt39
-rw-r--r--cli_ure/version/makefile.mk60
-rw-r--r--cli_ure/version/version.txt47
-rw-r--r--cli_ure/workbench/dynload/dynload.cs35
-rw-r--r--cli_ure/workbench/dynload/makefile.mk68
-rw-r--r--cli_ure/workbench/dynload/readme.txt2
-rwxr-xr-xcodemaker/codemaker.pmk53
-rw-r--r--codemaker/inc/codemaker/codemaker.hxx59
-rw-r--r--codemaker/inc/codemaker/commoncpp.hxx60
-rw-r--r--codemaker/inc/codemaker/commonjava.hxx47
-rw-r--r--codemaker/inc/codemaker/dependencies.hxx152
-rw-r--r--codemaker/inc/codemaker/exceptiontree.hxx127
-rw-r--r--codemaker/inc/codemaker/generatedtypeset.hxx82
-rw-r--r--codemaker/inc/codemaker/global.hxx153
-rw-r--r--codemaker/inc/codemaker/options.hxx100
-rw-r--r--codemaker/inc/codemaker/typemanager.hxx185
-rw-r--r--codemaker/inc/codemaker/unotype.hxx113
-rw-r--r--codemaker/inc/makefile.mk47
-rw-r--r--codemaker/inc/pch/precompiled_codemaker.cxx31
-rw-r--r--codemaker/inc/pch/precompiled_codemaker.hxx34
-rw-r--r--codemaker/prj/build.lst11
-rw-r--r--codemaker/prj/d.lst14
-rw-r--r--codemaker/source/codemaker/codemaker.cxx191
-rw-r--r--codemaker/source/codemaker/dependencies.cxx284
-rw-r--r--codemaker/source/codemaker/exceptiontree.cxx109
-rw-r--r--codemaker/source/codemaker/global.cxx452
-rw-r--r--codemaker/source/codemaker/makefile.mk51
-rw-r--r--codemaker/source/codemaker/options.cxx101
-rw-r--r--codemaker/source/codemaker/typemanager.cxx406
-rw-r--r--codemaker/source/codemaker/unotype.cxx106
-rw-r--r--codemaker/source/commoncpp/commoncpp.cxx358
-rw-r--r--codemaker/source/commoncpp/makefile.mk42
-rw-r--r--codemaker/source/commonjava/commonjava.cxx170
-rw-r--r--codemaker/source/commonjava/makefile.mk42
-rw-r--r--codemaker/source/cppumaker/cppumaker.cxx246
-rw-r--r--codemaker/source/cppumaker/cppuoptions.cxx358
-rw-r--r--codemaker/source/cppumaker/cppuoptions.hxx54
-rw-r--r--codemaker/source/cppumaker/cpputype.cxx4507
-rw-r--r--codemaker/source/cppumaker/cpputype.hxx408
-rw-r--r--codemaker/source/cppumaker/dumputils.cxx94
-rw-r--r--codemaker/source/cppumaker/dumputils.hxx49
-rw-r--r--codemaker/source/cppumaker/includes.cxx283
-rw-r--r--codemaker/source/cppumaker/includes.hxx124
-rw-r--r--codemaker/source/cppumaker/makefile.mk65
-rw-r--r--codemaker/source/cunomaker/cunomaker.cxx188
-rw-r--r--codemaker/source/cunomaker/cunooptions.cxx333
-rw-r--r--codemaker/source/cunomaker/cunooptions.hxx54
-rw-r--r--codemaker/source/cunomaker/cunotype.cxx3535
-rw-r--r--codemaker/source/cunomaker/cunotype.hxx311
-rw-r--r--codemaker/source/cunomaker/makefile.mk61
-rw-r--r--codemaker/source/idlmaker/idlmaker.cxx188
-rw-r--r--codemaker/source/idlmaker/idloptions.cxx254
-rw-r--r--codemaker/source/idlmaker/idloptions.hxx54
-rw-r--r--codemaker/source/idlmaker/idltype.cxx1754
-rw-r--r--codemaker/source/idlmaker/idltype.hxx251
-rw-r--r--codemaker/source/idlmaker/makefile.mk62
-rw-r--r--codemaker/source/javamaker/classfile.cxx906
-rw-r--r--codemaker/source/javamaker/classfile.hxx277
-rw-r--r--codemaker/source/javamaker/javamaker.cxx249
-rw-r--r--codemaker/source/javamaker/javaoptions.cxx302
-rw-r--r--codemaker/source/javamaker/javaoptions.hxx54
-rw-r--r--codemaker/source/javamaker/javatype.cxx3377
-rw-r--r--codemaker/source/javamaker/javatype.hxx48
-rw-r--r--codemaker/source/javamaker/makefile.mk58
-rw-r--r--codemaker/test/cppumaker/makefile.mk73
-rw-r--r--codemaker/test/cppumaker/test_codemaker_cppumaker.cxx570
-rw-r--r--codemaker/test/cppumaker/types.idl717
-rw-r--r--codemaker/test/cppumaker/version.map34
-rw-r--r--codemaker/test/javamaker/Test.java559
-rw-r--r--codemaker/test/javamaker/java15/Test.java100
-rw-r--r--codemaker/test/javamaker/java15/makefile.mk41
-rw-r--r--codemaker/test/javamaker/java15/types.idl50
-rw-r--r--codemaker/test/javamaker/makefile.mk41
-rw-r--r--codemaker/test/javamaker/types.idl433
-rw-r--r--comphelper/inc/comphelper/ChainablePropertySet.hxx155
-rw-r--r--comphelper/inc/comphelper/ChainablePropertySetInfo.hxx80
-rw-r--r--comphelper/inc/comphelper/IdPropArrayHelper.hxx126
-rw-r--r--comphelper/inc/comphelper/InlineContainer.hxx152
-rw-r--r--comphelper/inc/comphelper/MasterPropertySet.hxx154
-rw-r--r--comphelper/inc/comphelper/MasterPropertySetInfo.hxx72
-rw-r--r--comphelper/inc/comphelper/PropertyInfoHash.hxx74
-rw-r--r--comphelper/inc/comphelper/SelectionMultiplex.hxx119
-rw-r--r--comphelper/inc/comphelper/SettingsHelper.hxx122
-rw-r--r--comphelper/inc/comphelper/TypeGeneration.hxx126
-rw-r--r--comphelper/inc/comphelper/accessiblecomponenthelper.hxx146
-rw-r--r--comphelper/inc/comphelper/accessiblecontexthelper.hxx378
-rw-r--r--comphelper/inc/comphelper/accessibleeventbuffer.hxx136
-rw-r--r--comphelper/inc/comphelper/accessibleeventnotifier.hxx175
-rw-r--r--comphelper/inc/comphelper/accessiblekeybindinghelper.hxx86
-rw-r--r--comphelper/inc/comphelper/accessibleselectionhelper.hxx134
-rw-r--r--comphelper/inc/comphelper/accessibletexthelper.hxx188
-rw-r--r--comphelper/inc/comphelper/accessiblewrapper.hxx414
-rw-r--r--comphelper/inc/comphelper/accimplaccess.hxx168
-rw-r--r--comphelper/inc/comphelper/anytostring.hxx52
-rw-r--r--comphelper/inc/comphelper/asyncnotification.hxx201
-rw-r--r--comphelper/inc/comphelper/attributelist.hxx79
-rw-r--r--comphelper/inc/comphelper/basicio.hxx108
-rw-r--r--comphelper/inc/comphelper/broadcasthelper.hxx72
-rw-r--r--comphelper/inc/comphelper/classids.hxx577
-rw-r--r--comphelper/inc/comphelper/comphelperdllapi.h16
-rw-r--r--comphelper/inc/comphelper/componentbase.hxx164
-rw-r--r--comphelper/inc/comphelper/componentcontext.hxx254
-rw-r--r--comphelper/inc/comphelper/componentfactory.hxx121
-rw-r--r--comphelper/inc/comphelper/componentmodule.hxx443
-rw-r--r--comphelper/inc/comphelper/composedprops.hxx129
-rw-r--r--comphelper/inc/comphelper/configurationhelper.hxx264
-rw-r--r--comphelper/inc/comphelper/container.hxx87
-rw-r--r--comphelper/inc/comphelper/containermultiplexer.hxx117
-rw-r--r--comphelper/inc/comphelper/docpasswordhelper.hxx322
-rw-r--r--comphelper/inc/comphelper/docpasswordrequest.hxx105
-rw-r--r--comphelper/inc/comphelper/documentconstants.hxx115
-rw-r--r--comphelper/inc/comphelper/documentinfo.hxx62
-rw-r--r--comphelper/inc/comphelper/embeddedobjectcontainer.hxx190
-rw-r--r--comphelper/inc/comphelper/enumhelper.hxx152
-rw-r--r--comphelper/inc/comphelper/eventattachermgr.hxx70
-rw-r--r--comphelper/inc/comphelper/evtlistenerhlp.hxx59
-rw-r--r--comphelper/inc/comphelper/evtmethodhelper.hxx44
-rw-r--r--comphelper/inc/comphelper/extract.hxx167
-rw-r--r--comphelper/inc/comphelper/fileformat.h43
-rw-r--r--comphelper/inc/comphelper/genericpropertyset.hxx43
-rw-r--r--comphelper/inc/comphelper/guarding.hxx65
-rw-r--r--comphelper/inc/comphelper/ihwrapnofilter.hxx101
-rw-r--r--comphelper/inc/comphelper/implbase_var.hxx405
-rw-r--r--comphelper/inc/comphelper/implementationreference.hxx276
-rw-r--r--comphelper/inc/comphelper/interaction.hxx172
-rw-r--r--comphelper/inc/comphelper/legacysingletonfactory.hxx75
-rw-r--r--comphelper/inc/comphelper/listenernotification.hxx310
-rw-r--r--comphelper/inc/comphelper/locale.hxx446
-rw-r--r--comphelper/inc/comphelper/logging.hxx797
-rw-r--r--comphelper/inc/comphelper/make_shared_from_uno.hxx77
-rw-r--r--comphelper/inc/comphelper/makesequence.hxx89
-rw-r--r--comphelper/inc/comphelper/mediadescriptor.hxx343
-rw-r--r--comphelper/inc/comphelper/mimeconfighelper.hxx135
-rw-r--r--comphelper/inc/comphelper/namecontainer.hxx44
-rw-r--r--comphelper/inc/comphelper/namedvaluecollection.hxx357
-rw-r--r--comphelper/inc/comphelper/numberedcollection.hxx201
-rw-r--r--comphelper/inc/comphelper/numbers.hxx76
-rw-r--r--comphelper/inc/comphelper/officeresourcebundle.hxx118
-rw-r--r--comphelper/inc/comphelper/ofopxmlhelper.hxx139
-rw-r--r--comphelper/inc/comphelper/optional.hxx92
-rw-r--r--comphelper/inc/comphelper/optionalvalue.hxx190
-rw-r--r--comphelper/inc/comphelper/oslfile2streamwrap.hxx110
-rw-r--r--comphelper/inc/comphelper/otransactedfilestream.hxx138
-rw-r--r--comphelper/inc/comphelper/processfactory.hxx100
-rw-r--r--comphelper/inc/comphelper/propagg.hxx331
-rw-r--r--comphelper/inc/comphelper/proparrhlp.hxx184
-rw-r--r--comphelper/inc/comphelper/property.hxx240
-rw-r--r--comphelper/inc/comphelper/propertybag.hxx239
-rw-r--r--comphelper/inc/comphelper/propertycontainer.hxx99
-rw-r--r--comphelper/inc/comphelper/propertycontainerhelper.hxx221
-rw-r--r--comphelper/inc/comphelper/propertysethelper.hxx104
-rw-r--r--comphelper/inc/comphelper/propertysetinfo.hxx105
-rw-r--r--comphelper/inc/comphelper/propertystatecontainer.hxx123
-rw-r--r--comphelper/inc/comphelper/propmultiplex.hxx118
-rw-r--r--comphelper/inc/comphelper/propstate.hxx114
-rw-r--r--comphelper/inc/comphelper/proxyaggregation.hxx232
-rw-r--r--comphelper/inc/comphelper/querydeep.hxx486
-rw-r--r--comphelper/inc/comphelper/regpathhelper.hxx73
-rw-r--r--comphelper/inc/comphelper/scopeguard.hxx74
-rw-r--r--comphelper/inc/comphelper/seekableinput.hxx86
-rw-r--r--comphelper/inc/comphelper/seqstream.hxx148
-rw-r--r--comphelper/inc/comphelper/sequence.hxx391
-rw-r--r--comphelper/inc/comphelper/sequenceashashmap.hxx385
-rw-r--r--comphelper/inc/comphelper/sequenceasvector.hxx247
-rw-r--r--comphelper/inc/comphelper/servicedecl.hxx461
-rw-r--r--comphelper/inc/comphelper/servicehelper.hxx107
-rw-r--r--comphelper/inc/comphelper/serviceinfohelper.hxx65
-rw-r--r--comphelper/inc/comphelper/sharedmutex.hxx94
-rw-r--r--comphelper/inc/comphelper/stillreadwriteinteraction.hxx70
-rw-r--r--comphelper/inc/comphelper/stl_types.hxx284
-rw-r--r--comphelper/inc/comphelper/stlunosequence.hxx89
-rw-r--r--comphelper/inc/comphelper/storagehelper.hxx173
-rw-r--r--comphelper/inc/comphelper/streamsection.hxx91
-rw-r--r--comphelper/inc/comphelper/string.hxx138
-rw-r--r--comphelper/inc/comphelper/synchronousdispatch.hxx76
-rw-r--r--comphelper/inc/comphelper/types.hxx182
-rw-r--r--comphelper/inc/comphelper/uieventslogger.hxx60
-rw-r--r--comphelper/inc/comphelper/uno3.hxx304
-rw-r--r--comphelper/inc/comphelper/unwrapargs.hxx152
-rw-r--r--comphelper/inc/comphelper/weak.hxx65
-rw-r--r--comphelper/inc/comphelper/weakbag.hxx95
-rw-r--r--comphelper/inc/comphelper/weakeventlistener.hxx191
-rw-r--r--comphelper/inc/makefile.mk48
-rw-r--r--comphelper/inc/pch/precompiled_comphelper.cxx31
-rw-r--r--comphelper/inc/pch/precompiled_comphelper.hxx34
-rw-r--r--comphelper/prj/build.lst13
-rw-r--r--comphelper/prj/d.lst14
-rw-r--r--comphelper/qa/complex/comphelper/Map.java514
-rw-r--r--comphelper/qa/complex/comphelper/SequenceOutputStreamUnitTest.java71
-rw-r--r--comphelper/qa/complex/comphelper/Test01.java107
-rw-r--r--comphelper/qa/complex/comphelper/TestHelper.java49
-rw-r--r--comphelper/qa/complex/comphelper_all.sce2
-rw-r--r--comphelper/qa/complex/makefile.mk83
-rw-r--r--comphelper/qa/makefile.mk56
-rw-r--r--comphelper/qa/test_string.cxx85
-rw-r--r--comphelper/qa/test_weakbag.cxx73
-rw-r--r--comphelper/qa/version.map34
-rw-r--r--comphelper/source/compare/AnyCompareFactory.cxx194
-rw-r--r--comphelper/source/compare/makefile.mk47
-rw-r--r--comphelper/source/container/IndexedPropertyValuesContainer.cxx273
-rw-r--r--comphelper/source/container/NamedPropertyValuesContainer.cxx242
-rw-r--r--comphelper/source/container/container.cxx155
-rw-r--r--comphelper/source/container/containermultiplexer.cxx205
-rw-r--r--comphelper/source/container/embeddedobjectcontainer.cxx1666
-rw-r--r--comphelper/source/container/enumerablemap.cxx1003
-rw-r--r--comphelper/source/container/enumhelper.cxx299
-rw-r--r--comphelper/source/container/makefile.mk55
-rw-r--r--comphelper/source/container/namecontainer.cxx214
-rw-r--r--comphelper/source/eventattachermgr/eventattachermgr.cxx1009
-rw-r--r--comphelper/source/eventattachermgr/makefile.mk50
-rw-r--r--comphelper/source/inc/comphelper_module.hxx46
-rw-r--r--comphelper/source/misc/SelectionMultiplex.cxx176
-rw-r--r--comphelper/source/misc/accessiblecomponenthelper.cxx223
-rw-r--r--comphelper/source/misc/accessiblecontexthelper.cxx358
-rw-r--r--comphelper/source/misc/accessibleeventbuffer.cxx113
-rw-r--r--comphelper/source/misc/accessibleeventnotifier.cxx261
-rw-r--r--comphelper/source/misc/accessiblekeybindinghelper.cxx117
-rw-r--r--comphelper/source/misc/accessibleselectionhelper.cxx194
-rw-r--r--comphelper/source/misc/accessibletexthelper.cxx916
-rw-r--r--comphelper/source/misc/accessiblewrapper.cxx686
-rw-r--r--comphelper/source/misc/accimplaccess.cxx191
-rw-r--r--comphelper/source/misc/anytostring.cxx337
-rw-r--r--comphelper/source/misc/asyncnotification.cxx283
-rw-r--r--comphelper/source/misc/comphelper_module.cxx44
-rw-r--r--comphelper/source/misc/comphelper_services.cxx82
-rw-r--r--comphelper/source/misc/componentbase.cxx77
-rw-r--r--comphelper/source/misc/componentcontext.cxx153
-rw-r--r--comphelper/source/misc/componentmodule.cxx240
-rw-r--r--comphelper/source/misc/configurationhelper.cxx210
-rw-r--r--comphelper/source/misc/docpasswordhelper.cxx382
-rw-r--r--comphelper/source/misc/docpasswordrequest.cxx196
-rw-r--r--comphelper/source/misc/documentinfo.cxx200
-rw-r--r--comphelper/source/misc/documentiologring.cxx182
-rw-r--r--comphelper/source/misc/documentiologring.hxx90
-rw-r--r--comphelper/source/misc/evtlistenerhlp.cxx54
-rw-r--r--comphelper/source/misc/evtmethodhelper.cxx79
-rw-r--r--comphelper/source/misc/ihwrapnofilter.cxx120
-rw-r--r--comphelper/source/misc/instancelocker.cxx515
-rw-r--r--comphelper/source/misc/instancelocker.hxx135
-rw-r--r--comphelper/source/misc/interaction.cxx101
-rw-r--r--comphelper/source/misc/legacysingletonfactory.cxx200
-rw-r--r--comphelper/source/misc/listenernotification.cxx129
-rw-r--r--comphelper/source/misc/locale.cxx685
-rw-r--r--comphelper/source/misc/logging.cxx408
-rw-r--r--comphelper/source/misc/makefile.mk101
-rw-r--r--comphelper/source/misc/mediadescriptor.cxx870
-rw-r--r--comphelper/source/misc/mimeconfighelper.cxx807
-rw-r--r--comphelper/source/misc/namedvaluecollection.cxx340
-rw-r--r--comphelper/source/misc/numberedcollection.cxx278
-rw-r--r--comphelper/source/misc/numbers.cxx152
-rw-r--r--comphelper/source/misc/officeresourcebundle.cxx243
-rw-r--r--comphelper/source/misc/officerestartmanager.cxx213
-rw-r--r--comphelper/source/misc/officerestartmanager.hxx93
-rw-r--r--comphelper/source/misc/proxyaggregation.cxx278
-rw-r--r--comphelper/source/misc/querydeep.cxx78
-rw-r--r--comphelper/source/misc/regpathhelper.cxx234
-rw-r--r--comphelper/source/misc/scopeguard.cxx73
-rw-r--r--comphelper/source/misc/sequence.cxx105
-rw-r--r--comphelper/source/misc/sequenceashashmap.cxx403
-rw-r--r--comphelper/source/misc/servicedecl.cxx198
-rw-r--r--comphelper/source/misc/serviceinfohelper.cxx114
-rw-r--r--comphelper/source/misc/sharedmutex.cxx65
-rw-r--r--comphelper/source/misc/stillreadwriteinteraction.cxx141
-rw-r--r--comphelper/source/misc/storagehelper.cxx489
-rw-r--r--comphelper/source/misc/string.cxx128
-rw-r--r--comphelper/source/misc/synchronousdispatch.cxx104
-rw-r--r--comphelper/source/misc/types.cxx479
-rw-r--r--comphelper/source/misc/uieventslogger.cxx689
-rw-r--r--comphelper/source/misc/weak.cxx78
-rw-r--r--comphelper/source/misc/weakeventlistener.cxx95
-rw-r--r--comphelper/source/officeinstdir/makefile.mk50
-rw-r--r--comphelper/source/officeinstdir/officeinstallationdirectories.cxx353
-rw-r--r--comphelper/source/officeinstdir/officeinstallationdirectories.hxx110
-rw-r--r--comphelper/source/processfactory/componentfactory.cxx83
-rw-r--r--comphelper/source/processfactory/makefile.mk52
-rw-r--r--comphelper/source/processfactory/processfactory.cxx129
-rw-r--r--comphelper/source/property/ChainablePropertySet.cxx323
-rw-r--r--comphelper/source/property/ChainablePropertySetInfo.cxx145
-rw-r--r--comphelper/source/property/MasterPropertySet.cxx506
-rw-r--r--comphelper/source/property/MasterPropertySetInfo.cxx171
-rw-r--r--comphelper/source/property/TypeGeneration.cxx234
-rw-r--r--comphelper/source/property/composedprops.cxx359
-rw-r--r--comphelper/source/property/genericpropertyset.cxx303
-rw-r--r--comphelper/source/property/makefile.mk65
-rw-r--r--comphelper/source/property/opropertybag.cxx583
-rw-r--r--comphelper/source/property/opropertybag.hxx245
-rw-r--r--comphelper/source/property/propagg.cxx1029
-rw-r--r--comphelper/source/property/property.cxx247
-rw-r--r--comphelper/source/property/propertybag.cxx223
-rw-r--r--comphelper/source/property/propertycontainer.cxx107
-rw-r--r--comphelper/source/property/propertycontainerhelper.cxx554
-rw-r--r--comphelper/source/property/propertysethelper.cxx331
-rw-r--r--comphelper/source/property/propertysetinfo.cxx217
-rw-r--r--comphelper/source/property/propertystatecontainer.cxx341
-rw-r--r--comphelper/source/property/propmultiplex.cxx184
-rw-r--r--comphelper/source/property/propstate.cxx263
-rw-r--r--comphelper/source/streaming/basicio.cxx176
-rw-r--r--comphelper/source/streaming/makefile.mk54
-rw-r--r--comphelper/source/streaming/memorystream.cxx250
-rw-r--r--comphelper/source/streaming/oslfile2streamwrap.cxx200
-rw-r--r--comphelper/source/streaming/otransactedfilestream.cxx826
-rw-r--r--comphelper/source/streaming/seekableinput.cxx269
-rw-r--r--comphelper/source/streaming/seqinputstreamserv.cxx254
-rw-r--r--comphelper/source/streaming/seqoutputstreamserv.cxx175
-rw-r--r--comphelper/source/streaming/seqstream.cxx246
-rw-r--r--comphelper/source/streaming/streamsection.cxx124
-rw-r--r--comphelper/source/xml/attributelist.cxx181
-rw-r--r--comphelper/source/xml/makefile.mk48
-rw-r--r--comphelper/source/xml/ofopxmlhelper.cxx457
-rw-r--r--comphelper/test/uno_iterators/makefile.mk48
-rw-r--r--comphelper/test/uno_iterators/uno_iterators.cxx221
-rw-r--r--comphelper/util/exports.dxp3
-rw-r--r--comphelper/util/makefile.mk70
-rw-r--r--comphelper/util/makefile.pmk35
-rw-r--r--comphelper/version.mk46
-rw-r--r--configmgr/inc/makefile.mk38
-rw-r--r--configmgr/inc/pch/precompiled_configmgr.cxx31
-rw-r--r--configmgr/inc/pch/precompiled_configmgr.hxx35
-rw-r--r--configmgr/prj/build.lst4
-rw-r--r--configmgr/prj/d.lst3
-rw-r--r--configmgr/qa/unit/data.xcd5190
-rw-r--r--configmgr/qa/unit/makefile.mk93
-rw-r--r--configmgr/qa/unit/no_localization0
-rw-r--r--configmgr/qa/unit/test.cxx681
-rw-r--r--configmgr/qa/unit/urebootstrap.ini30
-rw-r--r--configmgr/qa/unit/version.map34
-rw-r--r--configmgr/qa/unoapi/Test.java50
-rw-r--r--configmgr/qa/unoapi/makefile.mk50
-rw-r--r--configmgr/qa/unoapi/module.sce29
-rw-r--r--configmgr/source/README158
-rw-r--r--configmgr/source/access.cxx2210
-rw-r--r--configmgr/source/access.hxx588
-rw-r--r--configmgr/source/additions.hxx46
-rw-r--r--configmgr/source/broadcaster.cxx261
-rw-r--r--configmgr/source/broadcaster.hxx184
-rw-r--r--configmgr/source/childaccess.cxx407
-rw-r--r--configmgr/source/childaccess.hxx162
-rw-r--r--configmgr/source/components.cxx884
-rw-r--r--configmgr/source/components.hxx187
-rw-r--r--configmgr/source/configurationprovider.cxx540
-rw-r--r--configmgr/source/configurationprovider.hxx70
-rw-r--r--configmgr/source/configurationregistry.cxx953
-rw-r--r--configmgr/source/configurationregistry.hxx60
-rw-r--r--configmgr/source/data.cxx375
-rw-r--r--configmgr/source/data.hxx109
-rw-r--r--configmgr/source/defaultprovider.cxx140
-rw-r--r--configmgr/source/defaultprovider.hxx62
-rw-r--r--configmgr/source/groupnode.cxx93
-rw-r--r--configmgr/source/groupnode.hxx78
-rw-r--r--configmgr/source/localizedpropertynode.cxx90
-rw-r--r--configmgr/source/localizedpropertynode.hxx79
-rw-r--r--configmgr/source/localizedvaluenode.cxx81
-rw-r--r--configmgr/source/localizedvaluenode.hxx69
-rw-r--r--configmgr/source/lock.cxx48
-rw-r--r--configmgr/source/lock.hxx44
-rw-r--r--configmgr/source/makefile.mk84
-rw-r--r--configmgr/source/modifications.cxx90
-rw-r--r--configmgr/source/modifications.hxx70
-rw-r--r--configmgr/source/node.cxx111
-rw-r--r--configmgr/source/node.hxx89
-rw-r--r--configmgr/source/nodemap.cxx53
-rw-r--r--configmgr/source/nodemap.hxx52
-rw-r--r--configmgr/source/pad.cxx94
-rw-r--r--configmgr/source/pad.hxx64
-rw-r--r--configmgr/source/parsemanager.cxx88
-rw-r--r--configmgr/source/parsemanager.hxx72
-rw-r--r--configmgr/source/parser.hxx65
-rw-r--r--configmgr/source/partial.cxx140
-rw-r--r--configmgr/source/partial.hxx74
-rw-r--r--configmgr/source/path.hxx46
-rw-r--r--configmgr/source/propertynode.cxx113
-rw-r--r--configmgr/source/propertynode.hxx86
-rw-r--r--configmgr/source/rootaccess.cxx340
-rw-r--r--configmgr/source/rootaccess.hxx168
-rw-r--r--configmgr/source/services.cxx138
-rw-r--r--configmgr/source/setnode.cxx132
-rw-r--r--configmgr/source/setnode.hxx87
-rw-r--r--configmgr/source/span.hxx67
-rw-r--r--configmgr/source/type.cxx190
-rw-r--r--configmgr/source/type.hxx59
-rw-r--r--configmgr/source/update.cxx236
-rw-r--r--configmgr/source/update.hxx62
-rw-r--r--configmgr/source/valueparser.cxx473
-rw-r--r--configmgr/source/valueparser.hxx95
-rw-r--r--configmgr/source/writemodfile.cxx604
-rw-r--r--configmgr/source/writemodfile.hxx48
-rw-r--r--configmgr/source/xcdparser.cxx186
-rw-r--r--configmgr/source/xcdparser.hxx81
-rw-r--r--configmgr/source/xcsparser.cxx676
-rw-r--r--configmgr/source/xcsparser.hxx109
-rw-r--r--configmgr/source/xcuparser.cxx1128
-rw-r--r--configmgr/source/xcuparser.hxx158
-rw-r--r--configmgr/source/xmldata.cxx207
-rw-r--r--configmgr/source/xmldata.hxx61
-rw-r--r--configmgr/source/xmlreader.cxx1058
-rw-r--r--configmgr/source/xmlreader.hxx189
-rw-r--r--connectivity/com/sun/star/sdbcx/comp/hsqldb/FileSystemRuntimeException.java73
-rw-r--r--connectivity/com/sun/star/sdbcx/comp/hsqldb/NativeInputStreamHelper.java74
-rw-r--r--connectivity/com/sun/star/sdbcx/comp/hsqldb/NativeLibraries.java80
-rw-r--r--connectivity/com/sun/star/sdbcx/comp/hsqldb/NativeOutputStreamHelper.java48
-rw-r--r--connectivity/com/sun/star/sdbcx/comp/hsqldb/NativeStorageAccess.java80
-rw-r--r--connectivity/com/sun/star/sdbcx/comp/hsqldb/StorageAccess.java131
-rw-r--r--connectivity/com/sun/star/sdbcx/comp/hsqldb/StorageFileAccess.java107
-rw-r--r--connectivity/com/sun/star/sdbcx/comp/hsqldb/StorageNativeInputStream.java53
-rw-r--r--connectivity/com/sun/star/sdbcx/comp/hsqldb/StorageNativeOutputStream.java143
-rw-r--r--connectivity/com/sun/star/sdbcx/comp/hsqldb/makefile.mk65
-rw-r--r--connectivity/dbtools.pmk29
-rw-r--r--connectivity/inc/connectivity/BlobHelper.hxx53
-rw-r--r--connectivity/inc/connectivity/CommonTools.hxx216
-rw-r--r--connectivity/inc/connectivity/ConnectionWrapper.hxx100
-rw-r--r--connectivity/inc/connectivity/DateConversion.hxx96
-rw-r--r--connectivity/inc/connectivity/DriversConfig.hxx90
-rw-r--r--connectivity/inc/connectivity/FValue.hxx469
-rw-r--r--connectivity/inc/connectivity/IParseContext.hxx110
-rw-r--r--connectivity/inc/connectivity/PColumn.hxx150
-rw-r--r--connectivity/inc/connectivity/ParameterCont.hxx61
-rw-r--r--connectivity/inc/connectivity/SQLStatementHelper.hxx56
-rw-r--r--connectivity/inc/connectivity/StdTypeDefs.hxx50
-rw-r--r--connectivity/inc/connectivity/TColumnsHelper.hxx72
-rw-r--r--connectivity/inc/connectivity/TIndex.hxx58
-rw-r--r--connectivity/inc/connectivity/TIndexColumns.hxx53
-rw-r--r--connectivity/inc/connectivity/TIndexes.hxx59
-rw-r--r--connectivity/inc/connectivity/TKey.hxx56
-rw-r--r--connectivity/inc/connectivity/TKeyColumns.hxx53
-rw-r--r--connectivity/inc/connectivity/TKeys.hxx68
-rw-r--r--connectivity/inc/connectivity/TTableHelper.hxx175
-rw-r--r--connectivity/inc/connectivity/conncleanup.hxx99
-rw-r--r--connectivity/inc/connectivity/dbcharset.hxx170
-rw-r--r--connectivity/inc/connectivity/dbconversion.hxx226
-rw-r--r--connectivity/inc/connectivity/dbexception.hxx379
-rw-r--r--connectivity/inc/connectivity/dbmetadata.hxx203
-rw-r--r--connectivity/inc/connectivity/dbtools.hxx827
-rw-r--r--connectivity/inc/connectivity/dbtoolsdllapi.hxx43
-rw-r--r--connectivity/inc/connectivity/filtermanager.hxx133
-rw-r--r--connectivity/inc/connectivity/formattedcolumnvalue.hxx122
-rw-r--r--connectivity/inc/connectivity/parameters.hxx428
-rw-r--r--connectivity/inc/connectivity/paramwrapper.hxx211
-rw-r--r--connectivity/inc/connectivity/predicateinput.hxx128
-rw-r--r--connectivity/inc/connectivity/sdbcx/IRefreshable.hxx59
-rw-r--r--connectivity/inc/connectivity/sdbcx/VCatalog.hxx134
-rw-r--r--connectivity/inc/connectivity/sdbcx/VCollection.hxx245
-rw-r--r--connectivity/inc/connectivity/sdbcx/VColumn.hxx120
-rw-r--r--connectivity/inc/connectivity/sdbcx/VDescriptor.hxx104
-rw-r--r--connectivity/inc/connectivity/sdbcx/VGroup.hxx112
-rw-r--r--connectivity/inc/connectivity/sdbcx/VIndex.hxx116
-rw-r--r--connectivity/inc/connectivity/sdbcx/VIndexColumn.hxx71
-rw-r--r--connectivity/inc/connectivity/sdbcx/VKey.hxx130
-rw-r--r--connectivity/inc/connectivity/sdbcx/VKeyColumn.hxx73
-rw-r--r--connectivity/inc/connectivity/sdbcx/VTable.hxx150
-rw-r--r--connectivity/inc/connectivity/sdbcx/VTypeDef.hxx49
-rw-r--r--connectivity/inc/connectivity/sdbcx/VUser.hxx109
-rw-r--r--connectivity/inc/connectivity/sdbcx/VView.hxx110
-rw-r--r--connectivity/inc/connectivity/sqlerror.hxx343
-rw-r--r--connectivity/inc/connectivity/sqliterator.hxx368
-rw-r--r--connectivity/inc/connectivity/sqlnode.hxx476
-rw-r--r--connectivity/inc/connectivity/sqlparse.hxx264
-rw-r--r--connectivity/inc/connectivity/standardsqlstate.hxx76
-rw-r--r--connectivity/inc/connectivity/statementcomposer.hxx114
-rw-r--r--connectivity/inc/connectivity/virtualdbtools.hxx360
-rw-r--r--connectivity/inc/connectivity/warningscontainer.hxx110
-rw-r--r--connectivity/inc/makefile.mk47
-rw-r--r--connectivity/inc/pch/precompiled_connectivity.cxx31
-rw-r--r--connectivity/inc/pch/precompiled_connectivity.hxx337
-rwxr-xr-xconnectivity/makefile.pmk62
-rw-r--r--connectivity/prj/build.lst32
-rw-r--r--connectivity/prj/d.lst33
-rw-r--r--connectivity/qa/connectivity/GeneralTest.java62
-rw-r--r--connectivity/qa/connectivity/makefile.mk65
-rwxr-xr-xconnectivity/qa/connectivity/tools/AbstractDatabase.java222
-rw-r--r--connectivity/qa/connectivity/tools/CRMDatabase.java292
-rw-r--r--connectivity/qa/connectivity/tools/DataSource.java145
-rwxr-xr-xconnectivity/qa/connectivity/tools/DatabaseAccess.java63
-rwxr-xr-xconnectivity/qa/connectivity/tools/DbaseDatabase.java98
-rw-r--r--connectivity/qa/connectivity/tools/HsqlColumnDescriptor.java84
-rw-r--r--connectivity/qa/connectivity/tools/HsqlDatabase.java213
-rw-r--r--connectivity/qa/connectivity/tools/HsqlTableDescriptor.java102
-rw-r--r--connectivity/qa/connectivity/tools/QueryDefinition.java74
-rw-r--r--connectivity/qa/connectivity/tools/RowSet.java292
-rw-r--r--connectivity/qa/connectivity/tools/makefile.mk65
-rw-r--r--connectivity/qa/connectivity/tools/sdb/Connection.java93
-rw-r--r--connectivity/qa/drivers/dbase/.nbattrs10
-rw-r--r--connectivity/qa/drivers/dbase/DBaseDateFunctions.java309
-rw-r--r--connectivity/qa/drivers/dbase/DBaseDriverTest.java94
-rw-r--r--connectivity/qa/drivers/dbase/DBaseNumericFunctions.java402
-rwxr-xr-xconnectivity/qa/drivers/dbase/DBaseSqlTests.java96
-rw-r--r--connectivity/qa/drivers/dbase/DBaseStringFunctions.java323
-rw-r--r--connectivity/qa/drivers/dbase/makefile.mk64
-rw-r--r--connectivity/qa/drivers/dbase/test.properties5
-rw-r--r--connectivity/qa/drivers/hsqldb/DatabaseMetaData.java152
-rw-r--r--connectivity/qa/drivers/hsqldb/DriverTest.java170
-rw-r--r--connectivity/qa/drivers/hsqldb/TestCacheSize.java617
-rw-r--r--connectivity/qa/drivers/jdbc/LongVarCharTest.java131
-rw-r--r--connectivity/qa/drivers/jdbc/makefile.mk66
-rw-r--r--connectivity/source/commontools/AutoRetrievingBase.cxx73
-rw-r--r--connectivity/source/commontools/BlobHelper.cxx72
-rw-r--r--connectivity/source/commontools/CommonTools.cxx372
-rw-r--r--connectivity/source/commontools/ConnectionWrapper.cxx267
-rw-r--r--connectivity/source/commontools/DateConversion.cxx523
-rw-r--r--connectivity/source/commontools/DriversConfig.cxx265
-rw-r--r--connectivity/source/commontools/FDatabaseMetaDataResultSet.cxx916
-rw-r--r--connectivity/source/commontools/FDatabaseMetaDataResultSetMetaData.cxx694
-rw-r--r--connectivity/source/commontools/FValue.cxx2336
-rw-r--r--connectivity/source/commontools/ParamterSubstitution.cxx135
-rw-r--r--connectivity/source/commontools/RowFunctionParser.cxx501
-rw-r--r--connectivity/source/commontools/TColumnsHelper.cxx227
-rw-r--r--connectivity/source/commontools/TConnection.cxx108
-rw-r--r--connectivity/source/commontools/TDatabaseMetaDataBase.cxx337
-rw-r--r--connectivity/source/commontools/TIndex.cxx112
-rw-r--r--connectivity/source/commontools/TIndexColumns.cxx130
-rw-r--r--connectivity/source/commontools/TIndexes.cxx264
-rw-r--r--connectivity/source/commontools/TKey.cxx121
-rw-r--r--connectivity/source/commontools/TKeyColumns.cxx147
-rw-r--r--connectivity/source/commontools/TKeys.cxx323
-rw-r--r--connectivity/source/commontools/TPrivilegesResultSet.cxx158
-rw-r--r--connectivity/source/commontools/TSkipDeletedSet.cxx281
-rw-r--r--connectivity/source/commontools/TSortIndex.cxx180
-rw-r--r--connectivity/source/commontools/TTableHelper.cxx633
-rw-r--r--connectivity/source/commontools/conncleanup.cxx249
-rw-r--r--connectivity/source/commontools/dbcharset.cxx234
-rw-r--r--connectivity/source/commontools/dbconversion.cxx492
-rw-r--r--connectivity/source/commontools/dbexception.cxx566
-rw-r--r--connectivity/source/commontools/dbmetadata.cxx451
-rw-r--r--connectivity/source/commontools/dbtools.cxx2175
-rw-r--r--connectivity/source/commontools/dbtools2.cxx976
-rw-r--r--connectivity/source/commontools/filtermanager.cxx201
-rw-r--r--connectivity/source/commontools/formattedcolumnvalue.cxx347
-rw-r--r--connectivity/source/commontools/makefile.mk103
-rw-r--r--connectivity/source/commontools/parameters.cxx1122
-rw-r--r--connectivity/source/commontools/paramwrapper.cxx366
-rw-r--r--connectivity/source/commontools/predicateinput.cxx393
-rw-r--r--connectivity/source/commontools/propertyids.cxx200
-rw-r--r--connectivity/source/commontools/sqlerror.cxx366
-rw-r--r--connectivity/source/commontools/statementcomposer.cxx318
-rw-r--r--connectivity/source/commontools/warningscontainer.cxx126
-rw-r--r--connectivity/source/cpool/ZConnectionPool.cxx335
-rw-r--r--connectivity/source/cpool/ZConnectionPool.hxx157
-rw-r--r--connectivity/source/cpool/ZConnectionWrapper.cxx260
-rw-r--r--connectivity/source/cpool/ZConnectionWrapper.hxx89
-rw-r--r--connectivity/source/cpool/ZDriverWrapper.cxx137
-rw-r--r--connectivity/source/cpool/ZDriverWrapper.hxx91
-rw-r--r--connectivity/source/cpool/ZPoolCollection.cxx583
-rw-r--r--connectivity/source/cpool/ZPoolCollection.hxx150
-rw-r--r--connectivity/source/cpool/ZPooledConnection.cxx88
-rw-r--r--connectivity/source/cpool/ZPooledConnection.hxx70
-rw-r--r--connectivity/source/cpool/Zregistration.cxx110
-rw-r--r--connectivity/source/cpool/dbpool.xml26
-rw-r--r--connectivity/source/cpool/exports.dxp3
-rw-r--r--connectivity/source/cpool/makefile.mk81
-rw-r--r--connectivity/source/dbtools/dbt.xml14
-rw-r--r--connectivity/source/dbtools/exports.dxp3
-rw-r--r--connectivity/source/dbtools/makefile.mk97
-rw-r--r--connectivity/source/drivers/adabas/BCatalog.cxx170
-rw-r--r--connectivity/source/drivers/adabas/BColumns.cxx186
-rw-r--r--connectivity/source/drivers/adabas/BConnection.cxx274
-rw-r--r--connectivity/source/drivers/adabas/BDatabaseMetaData.cxx161
-rw-r--r--connectivity/source/drivers/adabas/BDriver.cxx1877
-rw-r--r--connectivity/source/drivers/adabas/BFunctions.cxx277
-rw-r--r--connectivity/source/drivers/adabas/BGroup.cxx94
-rw-r--r--connectivity/source/drivers/adabas/BGroups.cxx95
-rw-r--r--connectivity/source/drivers/adabas/BIndex.cxx106
-rw-r--r--connectivity/source/drivers/adabas/BIndexColumns.cxx124
-rw-r--r--connectivity/source/drivers/adabas/BIndexes.cxx194
-rw-r--r--connectivity/source/drivers/adabas/BKeys.cxx183
-rw-r--r--connectivity/source/drivers/adabas/BPreparedStatement.cxx78
-rw-r--r--connectivity/source/drivers/adabas/BResultSet.cxx225
-rw-r--r--connectivity/source/drivers/adabas/BResultSetMetaData.cxx87
-rw-r--r--connectivity/source/drivers/adabas/BStatement.cxx81
-rw-r--r--connectivity/source/drivers/adabas/BTable.cxx378
-rw-r--r--connectivity/source/drivers/adabas/BTables.cxx525
-rw-r--r--connectivity/source/drivers/adabas/BUser.cxx335
-rw-r--r--connectivity/source/drivers/adabas/BUsers.cxx131
-rw-r--r--connectivity/source/drivers/adabas/BViews.cxx197
-rw-r--r--connectivity/source/drivers/adabas/Bservices.cxx178
-rw-r--r--connectivity/source/drivers/adabas/adabas.mxp.map148
-rwxr-xr-xconnectivity/source/drivers/adabas/adabas.xcu130
-rw-r--r--connectivity/source/drivers/adabas/adabas.xml25
-rw-r--r--connectivity/source/drivers/adabas/exports.dxp3
-rw-r--r--connectivity/source/drivers/adabas/makefile.mk106
-rw-r--r--connectivity/source/drivers/ado/ACallableStatement.cxx237
-rw-r--r--connectivity/source/drivers/ado/ACatalog.cxx127
-rw-r--r--connectivity/source/drivers/ado/AColumn.cxx302
-rw-r--r--connectivity/source/drivers/ado/AColumns.cxx144
-rw-r--r--connectivity/source/drivers/ado/AConnection.cxx627
-rw-r--r--connectivity/source/drivers/ado/ADatabaseMetaData.cxx1095
-rw-r--r--connectivity/source/drivers/ado/ADatabaseMetaDataImpl.cxx610
-rw-r--r--connectivity/source/drivers/ado/ADatabaseMetaDataResultSet.cxx1220
-rw-r--r--connectivity/source/drivers/ado/ADatabaseMetaDataResultSetMetaData.cxx235
-rw-r--r--connectivity/source/drivers/ado/ADriver.cxx275
-rw-r--r--connectivity/source/drivers/ado/AGroup.cxx190
-rw-r--r--connectivity/source/drivers/ado/AGroups.cxx90
-rw-r--r--connectivity/source/drivers/ado/AIndex.cxx159
-rw-r--r--connectivity/source/drivers/ado/AIndexes.cxx92
-rw-r--r--connectivity/source/drivers/ado/AKey.cxx169
-rw-r--r--connectivity/source/drivers/ado/AKeyColumn.cxx71
-rw-r--r--connectivity/source/drivers/ado/AKeyColumns.cxx97
-rw-r--r--connectivity/source/drivers/ado/AKeys.cxx115
-rw-r--r--connectivity/source/drivers/ado/APreparedStatement.cxx566
-rw-r--r--connectivity/source/drivers/ado/AResultSet.cxx1175
-rw-r--r--connectivity/source/drivers/ado/AResultSetMetaData.cxx264
-rw-r--r--connectivity/source/drivers/ado/AStatement.cxx844
-rw-r--r--connectivity/source/drivers/ado/ATable.cxx259
-rw-r--r--connectivity/source/drivers/ado/ATables.cxx117
-rw-r--r--connectivity/source/drivers/ado/AUser.cxx227
-rw-r--r--connectivity/source/drivers/ado/AUsers.cxx89
-rw-r--r--connectivity/source/drivers/ado/AView.cxx125
-rw-r--r--connectivity/source/drivers/ado/AViews.cxx106
-rw-r--r--connectivity/source/drivers/ado/Aolevariant.cxx794
-rw-r--r--connectivity/source/drivers/ado/Aservices.cxx177
-rw-r--r--connectivity/source/drivers/ado/Awrapado.cxx2205
-rwxr-xr-xconnectivity/source/drivers/ado/ado.xcu259
-rw-r--r--connectivity/source/drivers/ado/ado.xml27
-rw-r--r--connectivity/source/drivers/ado/ado_post_sys_include.h35
-rw-r--r--connectivity/source/drivers/ado/ado_pre_sys_include.h40
-rw-r--r--connectivity/source/drivers/ado/adoimp.cxx338
-rw-r--r--connectivity/source/drivers/ado/exports.dxp3
-rw-r--r--connectivity/source/drivers/ado/makefile.mk114
-rw-r--r--connectivity/source/drivers/calc/CCatalog.cxx82
-rw-r--r--connectivity/source/drivers/calc/CColumns.cxx57
-rw-r--r--connectivity/source/drivers/calc/CConnection.cxx293
-rw-r--r--connectivity/source/drivers/calc/CDatabaseMetaData.cxx470
-rw-r--r--connectivity/source/drivers/calc/CDriver.cxx107
-rw-r--r--connectivity/source/drivers/calc/CPreparedStatement.cxx45
-rw-r--r--connectivity/source/drivers/calc/CResultSet.cxx193
-rw-r--r--connectivity/source/drivers/calc/CStatement.cxx45
-rw-r--r--connectivity/source/drivers/calc/CTable.cxx869
-rw-r--r--connectivity/source/drivers/calc/CTables.cxx62
-rw-r--r--connectivity/source/drivers/calc/CalcDriver.xml30
-rw-r--r--connectivity/source/drivers/calc/Cservices.cxx177
-rwxr-xr-xconnectivity/source/drivers/calc/calc.xcu63
-rw-r--r--connectivity/source/drivers/calc/exports.dxp3
-rw-r--r--connectivity/source/drivers/calc/makefile.mk96
-rw-r--r--connectivity/source/drivers/dbase/DCatalog.cxx72
-rw-r--r--connectivity/source/drivers/dbase/DCode.cxx133
-rw-r--r--connectivity/source/drivers/dbase/DColumns.cxx92
-rw-r--r--connectivity/source/drivers/dbase/DConnection.cxx133
-rw-r--r--connectivity/source/drivers/dbase/DDatabaseMetaData.cxx415
-rw-r--r--connectivity/source/drivers/dbase/DDriver.cxx129
-rw-r--r--connectivity/source/drivers/dbase/DIndex.cxx648
-rw-r--r--connectivity/source/drivers/dbase/DIndexColumns.cxx96
-rw-r--r--connectivity/source/drivers/dbase/DIndexIter.cxx307
-rw-r--r--connectivity/source/drivers/dbase/DIndexes.cxx136
-rw-r--r--connectivity/source/drivers/dbase/DNoException.cxx621
-rw-r--r--connectivity/source/drivers/dbase/DPreparedStatement.cxx45
-rw-r--r--connectivity/source/drivers/dbase/DResultSet.cxx247
-rw-r--r--connectivity/source/drivers/dbase/DStatement.cxx46
-rw-r--r--connectivity/source/drivers/dbase/DTable.cxx2813
-rw-r--r--connectivity/source/drivers/dbase/DTables.cxx146
-rw-r--r--connectivity/source/drivers/dbase/Dservices.cxx177
-rw-r--r--connectivity/source/drivers/dbase/dbase.mxp.map173
-rwxr-xr-xconnectivity/source/drivers/dbase/dbase.xcu100
-rw-r--r--connectivity/source/drivers/dbase/dbase.xml31
-rw-r--r--connectivity/source/drivers/dbase/dindexnode.cxx1023
-rw-r--r--connectivity/source/drivers/dbase/exports.dxp3
-rw-r--r--connectivity/source/drivers/dbase/makefile.mk129
-rw-r--r--connectivity/source/drivers/evoab/LCatalog.cxx74
-rw-r--r--connectivity/source/drivers/evoab/LCatalog.hxx51
-rw-r--r--connectivity/source/drivers/evoab/LColumnAlias.cxx235
-rw-r--r--connectivity/source/drivers/evoab/LColumnAlias.hxx116
-rw-r--r--connectivity/source/drivers/evoab/LColumns.cxx59
-rw-r--r--connectivity/source/drivers/evoab/LColumns.hxx54
-rw-r--r--connectivity/source/drivers/evoab/LConfigAccess.cxx162
-rw-r--r--connectivity/source/drivers/evoab/LConfigAccess.hxx49
-rw-r--r--connectivity/source/drivers/evoab/LConnection.cxx281
-rw-r--r--connectivity/source/drivers/evoab/LConnection.hxx81
-rw-r--r--connectivity/source/drivers/evoab/LDatabaseMetaData.cxx398
-rw-r--r--connectivity/source/drivers/evoab/LDatabaseMetaData.hxx58
-rw-r--r--connectivity/source/drivers/evoab/LDebug.cxx43
-rw-r--r--connectivity/source/drivers/evoab/LDebug.hxx45
-rw-r--r--connectivity/source/drivers/evoab/LDriver.cxx508
-rw-r--r--connectivity/source/drivers/evoab/LDriver.hxx118
-rw-r--r--connectivity/source/drivers/evoab/LFolderList.cxx564
-rw-r--r--connectivity/source/drivers/evoab/LFolderList.hxx94
-rw-r--r--connectivity/source/drivers/evoab/LNoException.cxx327
-rw-r--r--connectivity/source/drivers/evoab/LPreparedStatement.cxx45
-rw-r--r--connectivity/source/drivers/evoab/LPreparedStatement.hxx52
-rw-r--r--connectivity/source/drivers/evoab/LResultSet.cxx192
-rw-r--r--connectivity/source/drivers/evoab/LResultSet.hxx83
-rw-r--r--connectivity/source/drivers/evoab/LServices.cxx177
-rw-r--r--connectivity/source/drivers/evoab/LStatement.cxx45
-rw-r--r--connectivity/source/drivers/evoab/LStatement.hxx52
-rw-r--r--connectivity/source/drivers/evoab/LTable.cxx868
-rw-r--r--connectivity/source/drivers/evoab/LTable.hxx102
-rw-r--r--connectivity/source/drivers/evoab/LTables.cxx64
-rw-r--r--connectivity/source/drivers/evoab/LTables.hxx54
-rwxr-xr-xconnectivity/source/drivers/evoab/evoab.xcu61
-rw-r--r--connectivity/source/drivers/evoab/evoab.xml31
-rw-r--r--connectivity/source/drivers/evoab/exports.dxp3
-rw-r--r--connectivity/source/drivers/evoab/makefile.mk104
-rw-r--r--connectivity/source/drivers/evoab2/EApi.cxx138
-rw-r--r--connectivity/source/drivers/evoab2/EApi.h145
-rw-r--r--connectivity/source/drivers/evoab2/NCatalog.cxx102
-rw-r--r--connectivity/source/drivers/evoab2/NCatalog.hxx58
-rw-r--r--connectivity/source/drivers/evoab2/NColumns.cxx93
-rw-r--r--connectivity/source/drivers/evoab2/NColumns.hxx60
-rw-r--r--connectivity/source/drivers/evoab2/NConnection.cxx293
-rw-r--r--connectivity/source/drivers/evoab2/NConnection.hxx126
-rw-r--r--connectivity/source/drivers/evoab2/NDatabaseMetaData.cxx1195
-rw-r--r--connectivity/source/drivers/evoab2/NDatabaseMetaData.hxx237
-rw-r--r--connectivity/source/drivers/evoab2/NDebug.cxx43
-rw-r--r--connectivity/source/drivers/evoab2/NDebug.hxx45
-rw-r--r--connectivity/source/drivers/evoab2/NDriver.cxx190
-rw-r--r--connectivity/source/drivers/evoab2/NDriver.hxx101
-rw-r--r--connectivity/source/drivers/evoab2/NPreparedStatement.cxx338
-rw-r--r--connectivity/source/drivers/evoab2/NPreparedStatement.hxx141
-rw-r--r--connectivity/source/drivers/evoab2/NResultSet.cxx1023
-rw-r--r--connectivity/source/drivers/evoab2/NResultSet.hxx186
-rw-r--r--connectivity/source/drivers/evoab2/NResultSetMetaData.cxx197
-rw-r--r--connectivity/source/drivers/evoab2/NResultSetMetaData.hxx91
-rw-r--r--connectivity/source/drivers/evoab2/NServices.cxx177
-rw-r--r--connectivity/source/drivers/evoab2/NStatement.cxx685
-rw-r--r--connectivity/source/drivers/evoab2/NStatement.hxx291
-rw-r--r--connectivity/source/drivers/evoab2/NTable.cxx90
-rw-r--r--connectivity/source/drivers/evoab2/NTable.hxx70
-rw-r--r--connectivity/source/drivers/evoab2/NTables.cxx105
-rw-r--r--connectivity/source/drivers/evoab2/NTables.hxx56
-rw-r--r--connectivity/source/drivers/evoab2/evoab.xml28
-rwxr-xr-xconnectivity/source/drivers/evoab2/evoab2.xcu76
-rw-r--r--connectivity/source/drivers/evoab2/makefile.mk112
-rw-r--r--connectivity/source/drivers/file/FCatalog.cxx123
-rw-r--r--connectivity/source/drivers/file/FColumns.cxx96
-rw-r--r--connectivity/source/drivers/file/FConnection.cxx463
-rw-r--r--connectivity/source/drivers/file/FDatabaseMetaData.cxx1225
-rw-r--r--connectivity/source/drivers/file/FDateFunctions.cxx292
-rw-r--r--connectivity/source/drivers/file/FDriver.cxx287
-rw-r--r--connectivity/source/drivers/file/FNoException.cxx133
-rw-r--r--connectivity/source/drivers/file/FNumericFunctions.cxx252
-rw-r--r--connectivity/source/drivers/file/FPreparedStatement.cxx636
-rw-r--r--connectivity/source/drivers/file/FResultSet.cxx1897
-rw-r--r--connectivity/source/drivers/file/FResultSetMetaData.cxx221
-rw-r--r--connectivity/source/drivers/file/FStatement.cxx863
-rw-r--r--connectivity/source/drivers/file/FStringFunctions.cxx269
-rw-r--r--connectivity/source/drivers/file/FTable.cxx259
-rw-r--r--connectivity/source/drivers/file/FTables.cxx81
-rw-r--r--connectivity/source/drivers/file/fanalyzer.cxx325
-rw-r--r--connectivity/source/drivers/file/fcode.cxx521
-rw-r--r--connectivity/source/drivers/file/fcomp.cxx919
-rw-r--r--connectivity/source/drivers/file/file.xml30
-rw-r--r--connectivity/source/drivers/file/makefile.mk108
-rw-r--r--connectivity/source/drivers/file/quotedstring.cxx167
-rw-r--r--connectivity/source/drivers/flat/ECatalog.cxx75
-rw-r--r--connectivity/source/drivers/flat/EColumns.cxx58
-rw-r--r--connectivity/source/drivers/flat/EConnection.cxx179
-rw-r--r--connectivity/source/drivers/flat/EDatabaseMetaData.cxx269
-rw-r--r--connectivity/source/drivers/flat/EDriver.cxx147
-rw-r--r--connectivity/source/drivers/flat/EPreparedStatement.cxx46
-rw-r--r--connectivity/source/drivers/flat/EResultSet.cxx191
-rw-r--r--connectivity/source/drivers/flat/EStatement.cxx45
-rw-r--r--connectivity/source/drivers/flat/ETable.cxx849
-rw-r--r--connectivity/source/drivers/flat/ETables.cxx64
-rw-r--r--connectivity/source/drivers/flat/Eservices.cxx177
-rw-r--r--connectivity/source/drivers/flat/exports.dxp3
-rw-r--r--connectivity/source/drivers/flat/flat.mxp.map141
-rwxr-xr-xconnectivity/source/drivers/flat/flat.xcu110
-rw-r--r--connectivity/source/drivers/flat/flat.xml31
-rw-r--r--connectivity/source/drivers/flat/makefile.mk107
-rw-r--r--connectivity/source/drivers/hsqldb/HCatalog.cxx168
-rw-r--r--connectivity/source/drivers/hsqldb/HColumns.cxx92
-rw-r--r--connectivity/source/drivers/hsqldb/HConnection.cxx387
-rw-r--r--connectivity/source/drivers/hsqldb/HDriver.cxx888
-rw-r--r--connectivity/source/drivers/hsqldb/HStorage.hxx120
-rw-r--r--connectivity/source/drivers/hsqldb/HStorageAccess.cxx554
-rw-r--r--connectivity/source/drivers/hsqldb/HStorageMap.cxx365
-rw-r--r--connectivity/source/drivers/hsqldb/HTable.cxx429
-rw-r--r--connectivity/source/drivers/hsqldb/HTables.cxx202
-rw-r--r--connectivity/source/drivers/hsqldb/HTerminateListener.cxx67
-rw-r--r--connectivity/source/drivers/hsqldb/HTerminateListener.hxx67
-rw-r--r--connectivity/source/drivers/hsqldb/HTools.cxx76
-rw-r--r--connectivity/source/drivers/hsqldb/HUser.cxx353
-rw-r--r--connectivity/source/drivers/hsqldb/HUsers.cxx123
-rw-r--r--connectivity/source/drivers/hsqldb/HView.cxx216
-rw-r--r--connectivity/source/drivers/hsqldb/HViews.cxx172
-rw-r--r--connectivity/source/drivers/hsqldb/Hservices.cxx179
-rw-r--r--connectivity/source/drivers/hsqldb/StorageFileAccess.cxx183
-rw-r--r--connectivity/source/drivers/hsqldb/StorageNativeInputStream.cxx309
-rw-r--r--connectivity/source/drivers/hsqldb/StorageNativeOutputStream.cxx222
-rw-r--r--connectivity/source/drivers/hsqldb/accesslog.cxx86
-rw-r--r--connectivity/source/drivers/hsqldb/accesslog.hxx148
-rw-r--r--connectivity/source/drivers/hsqldb/exports.dxp30
-rw-r--r--connectivity/source/drivers/hsqldb/hsqldb.map35
-rwxr-xr-xconnectivity/source/drivers/hsqldb/hsqldb.xcu78
-rw-r--r--connectivity/source/drivers/hsqldb/hsqldb.xml26
-rw-r--r--connectivity/source/drivers/hsqldb/hsqlui.hrc36
-rw-r--r--connectivity/source/drivers/hsqldb/hsqlui.src53
-rw-r--r--connectivity/source/drivers/hsqldb/makefile.mk117
-rw-r--r--connectivity/source/drivers/jdbc/Array.cxx154
-rw-r--r--connectivity/source/drivers/jdbc/Blob.cxx147
-rw-r--r--connectivity/source/drivers/jdbc/Boolean.cxx54
-rw-r--r--connectivity/source/drivers/jdbc/CallableStatement.cxx361
-rw-r--r--connectivity/source/drivers/jdbc/Class.cxx75
-rw-r--r--connectivity/source/drivers/jdbc/Clob.cxx148
-rw-r--r--connectivity/source/drivers/jdbc/ConnectionLog.cxx137
-rw-r--r--connectivity/source/drivers/jdbc/ContextClassLoader.cxx134
-rw-r--r--connectivity/source/drivers/jdbc/DatabaseMetaData.cxx1466
-rw-r--r--connectivity/source/drivers/jdbc/Date.cxx55
-rw-r--r--connectivity/source/drivers/jdbc/DriverPropertyInfo.cxx143
-rw-r--r--connectivity/source/drivers/jdbc/Exception.cxx50
-rw-r--r--connectivity/source/drivers/jdbc/InputStream.cxx112
-rw-r--r--connectivity/source/drivers/jdbc/JBigDecimal.cxx91
-rw-r--r--connectivity/source/drivers/jdbc/JConnection.cxx876
-rw-r--r--connectivity/source/drivers/jdbc/JDriver.cxx258
-rw-r--r--connectivity/source/drivers/jdbc/JStatement.cxx831
-rw-r--r--connectivity/source/drivers/jdbc/Object.cxx428
-rw-r--r--connectivity/source/drivers/jdbc/PreparedStatement.cxx668
-rw-r--r--connectivity/source/drivers/jdbc/Reader.cxx121
-rw-r--r--connectivity/source/drivers/jdbc/Ref.cxx63
-rw-r--r--connectivity/source/drivers/jdbc/ResultSet.cxx1089
-rw-r--r--connectivity/source/drivers/jdbc/ResultSetMetaData.cxx240
-rw-r--r--connectivity/source/drivers/jdbc/SQLException.cxx102
-rw-r--r--connectivity/source/drivers/jdbc/SQLWarning.cxx50
-rw-r--r--connectivity/source/drivers/jdbc/String.cxx64
-rw-r--r--connectivity/source/drivers/jdbc/Throwable.cxx71
-rw-r--r--connectivity/source/drivers/jdbc/Timestamp.cxx203
-rw-r--r--connectivity/source/drivers/jdbc/exports.dxp3
-rw-r--r--connectivity/source/drivers/jdbc/jdbc.mxp.map154
-rwxr-xr-xconnectivity/source/drivers/jdbc/jdbc.xcu214
-rw-r--r--connectivity/source/drivers/jdbc/jdbc.xml28
-rw-r--r--connectivity/source/drivers/jdbc/jservices.cxx179
-rw-r--r--connectivity/source/drivers/jdbc/makefile.mk112
-rw-r--r--connectivity/source/drivers/jdbc/tools.cxx277
-rw-r--r--connectivity/source/drivers/kab/KCatalog.cxx127
-rw-r--r--connectivity/source/drivers/kab/KCatalog.hxx67
-rw-r--r--connectivity/source/drivers/kab/KColumns.cxx101
-rw-r--r--connectivity/source/drivers/kab/KColumns.hxx57
-rw-r--r--connectivity/source/drivers/kab/KConnection.cxx331
-rw-r--r--connectivity/source/drivers/kab/KConnection.hxx142
-rw-r--r--connectivity/source/drivers/kab/KDEInit.cxx158
-rw-r--r--connectivity/source/drivers/kab/KDEInit.h47
-rw-r--r--connectivity/source/drivers/kab/KDatabaseMetaData.cxx1083
-rw-r--r--connectivity/source/drivers/kab/KDatabaseMetaData.hxx216
-rw-r--r--connectivity/source/drivers/kab/KDriver.cxx475
-rw-r--r--connectivity/source/drivers/kab/KDriver.hxx226
-rw-r--r--connectivity/source/drivers/kab/KPreparedStatement.cxx393
-rw-r--r--connectivity/source/drivers/kab/KPreparedStatement.hxx122
-rw-r--r--connectivity/source/drivers/kab/KResultSet.cxx990
-rw-r--r--connectivity/source/drivers/kab/KResultSet.hxx227
-rw-r--r--connectivity/source/drivers/kab/KResultSetMetaData.cxx190
-rw-r--r--connectivity/source/drivers/kab/KResultSetMetaData.hxx95
-rw-r--r--connectivity/source/drivers/kab/KServices.cxx179
-rw-r--r--connectivity/source/drivers/kab/KStatement.cxx587
-rw-r--r--connectivity/source/drivers/kab/KStatement.hxx173
-rw-r--r--connectivity/source/drivers/kab/KTable.cxx99
-rw-r--r--connectivity/source/drivers/kab/KTable.hxx71
-rw-r--r--connectivity/source/drivers/kab/KTables.cxx93
-rw-r--r--connectivity/source/drivers/kab/KTables.hxx64
-rw-r--r--connectivity/source/drivers/kab/exports.dxp3
-rwxr-xr-xconnectivity/source/drivers/kab/kab.xcu46
-rw-r--r--connectivity/source/drivers/kab/kab.xml77
-rw-r--r--connectivity/source/drivers/kab/kabdrv.map9
-rw-r--r--connectivity/source/drivers/kab/kcondition.cxx232
-rw-r--r--connectivity/source/drivers/kab/kcondition.hxx163
-rw-r--r--connectivity/source/drivers/kab/kfields.cxx97
-rw-r--r--connectivity/source/drivers/kab/kfields.hxx50
-rw-r--r--connectivity/source/drivers/kab/korder.cxx91
-rw-r--r--connectivity/source/drivers/kab/korder.hxx77
-rw-r--r--connectivity/source/drivers/kab/makefile.mk138
-rw-r--r--connectivity/source/drivers/macab/MacabAddressBook.cxx258
-rw-r--r--connectivity/source/drivers/macab/MacabAddressBook.hxx75
-rw-r--r--connectivity/source/drivers/macab/MacabCatalog.cxx127
-rw-r--r--connectivity/source/drivers/macab/MacabCatalog.hxx67
-rw-r--r--connectivity/source/drivers/macab/MacabColumns.cxx101
-rw-r--r--connectivity/source/drivers/macab/MacabColumns.hxx57
-rw-r--r--connectivity/source/drivers/macab/MacabConnection.cxx326
-rw-r--r--connectivity/source/drivers/macab/MacabConnection.hxx134
-rw-r--r--connectivity/source/drivers/macab/MacabDatabaseMetaData.cxx1127
-rw-r--r--connectivity/source/drivers/macab/MacabDatabaseMetaData.hxx215
-rw-r--r--connectivity/source/drivers/macab/MacabDriver.cxx350
-rw-r--r--connectivity/source/drivers/macab/MacabDriver.hxx199
-rw-r--r--connectivity/source/drivers/macab/MacabGroup.cxx104
-rw-r--r--connectivity/source/drivers/macab/MacabGroup.hxx53
-rw-r--r--connectivity/source/drivers/macab/MacabHeader.cxx345
-rw-r--r--connectivity/source/drivers/macab/MacabHeader.hxx74
-rw-r--r--connectivity/source/drivers/macab/MacabPreparedStatement.cxx410
-rw-r--r--connectivity/source/drivers/macab/MacabPreparedStatement.hxx122
-rw-r--r--connectivity/source/drivers/macab/MacabRecord.cxx350
-rw-r--r--connectivity/source/drivers/macab/MacabRecord.hxx80
-rw-r--r--connectivity/source/drivers/macab/MacabRecords.cxx1214
-rw-r--r--connectivity/source/drivers/macab/MacabRecords.hxx139
-rw-r--r--connectivity/source/drivers/macab/MacabResultSet.cxx1076
-rw-r--r--connectivity/source/drivers/macab/MacabResultSet.hxx229
-rw-r--r--connectivity/source/drivers/macab/MacabResultSetMetaData.cxx227
-rw-r--r--connectivity/source/drivers/macab/MacabResultSetMetaData.hxx97
-rw-r--r--connectivity/source/drivers/macab/MacabServices.cxx179
-rw-r--r--connectivity/source/drivers/macab/MacabStatement.cxx614
-rw-r--r--connectivity/source/drivers/macab/MacabStatement.hxx177
-rw-r--r--connectivity/source/drivers/macab/MacabTable.cxx99
-rw-r--r--connectivity/source/drivers/macab/MacabTable.hxx71
-rw-r--r--connectivity/source/drivers/macab/MacabTables.cxx93
-rw-r--r--connectivity/source/drivers/macab/MacabTables.hxx64
-rwxr-xr-xconnectivity/source/drivers/macab/exports.dxp3
-rwxr-xr-xconnectivity/source/drivers/macab/macab.xcu46
-rwxr-xr-xconnectivity/source/drivers/macab/macab.xml77
-rw-r--r--connectivity/source/drivers/macab/macabcondition.cxx253
-rw-r--r--connectivity/source/drivers/macab/macabcondition.hxx170
-rw-r--r--connectivity/source/drivers/macab/macaborder.cxx89
-rw-r--r--connectivity/source/drivers/macab/macaborder.hxx77
-rw-r--r--connectivity/source/drivers/macab/macabutilities.hxx152
-rwxr-xr-xconnectivity/source/drivers/macab/makefile.mk130
-rw-r--r--connectivity/source/drivers/mozab/MCatalog.cxx128
-rw-r--r--connectivity/source/drivers/mozab/MCatalog.hxx65
-rw-r--r--connectivity/source/drivers/mozab/MColumnAlias.cxx195
-rw-r--r--connectivity/source/drivers/mozab/MColumnAlias.hxx88
-rw-r--r--connectivity/source/drivers/mozab/MColumns.cxx102
-rw-r--r--connectivity/source/drivers/mozab/MColumns.hxx60
-rw-r--r--connectivity/source/drivers/mozab/MConfigAccess.cxx271
-rw-r--r--connectivity/source/drivers/mozab/MConfigAccess.hxx41
-rw-r--r--connectivity/source/drivers/mozab/MConnection.cxx607
-rw-r--r--connectivity/source/drivers/mozab/MConnection.hxx233
-rw-r--r--connectivity/source/drivers/mozab/MDatabaseMetaData.cxx1033
-rw-r--r--connectivity/source/drivers/mozab/MDatabaseMetaData.hxx207
-rw-r--r--connectivity/source/drivers/mozab/MDriver.cxx333
-rw-r--r--connectivity/source/drivers/mozab/MDriver.hxx113
-rw-r--r--connectivity/source/drivers/mozab/MExtConfigAccess.hxx48
-rw-r--r--connectivity/source/drivers/mozab/MPreparedStatement.cxx546
-rw-r--r--connectivity/source/drivers/mozab/MPreparedStatement.hxx170
-rw-r--r--connectivity/source/drivers/mozab/MResultSet.cxx1983
-rw-r--r--connectivity/source/drivers/mozab/MResultSet.hxx369
-rw-r--r--connectivity/source/drivers/mozab/MResultSetMetaData.cxx214
-rw-r--r--connectivity/source/drivers/mozab/MResultSetMetaData.hxx101
-rw-r--r--connectivity/source/drivers/mozab/MServices.cxx227
-rw-r--r--connectivity/source/drivers/mozab/MStatement.cxx564
-rw-r--r--connectivity/source/drivers/mozab/MStatement.hxx214
-rw-r--r--connectivity/source/drivers/mozab/MTable.cxx97
-rw-r--r--connectivity/source/drivers/mozab/MTable.hxx72
-rw-r--r--connectivity/source/drivers/mozab/MTables.cxx104
-rw-r--r--connectivity/source/drivers/mozab/MTables.hxx57
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/MMozillaBootstrap.cxx337
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/MMozillaBootstrap.hxx104
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/MNSFolders.cxx174
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/MNSFolders.hxx46
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/MNSINIParser.cxx141
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/MNSINIParser.hxx85
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/MNSInit.cxx347
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/MNSInit.hxx47
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/MNSProfile.cxx634
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/MNSProfile.hxx76
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/MNSProfileDirServiceProvider.cxx243
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/MNSProfileDirServiceProvider.hxx85
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/MNSProfileDiscover.cxx536
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/MNSProfileDiscover.hxx134
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/MNSProfileManager.cxx116
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/MNSProfileManager.hxx80
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/MNSRunnable.cxx100
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/MNSRunnable.hxx69
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/makefile.mk93
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/mozilla_nsinit.h57
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/mozilla_nsprofile.h92
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/mozilla_nsprofiledirserviceprovider.h44
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/mozilla_profile_discover.h49
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/mozilla_profilemanager.h87
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/post_include_windows.h33
-rw-r--r--connectivity/source/drivers/mozab/bootstrap/pre_include_windows.h34
-rw-r--r--connectivity/source/drivers/mozab/exports.dxp3
-rw-r--r--connectivity/source/drivers/mozab/makefile.mk186
-rw-r--r--connectivity/source/drivers/mozab/makefile_mozab.mk128
-rwxr-xr-xconnectivity/source/drivers/mozab/mozab.xcu154
-rw-r--r--connectivity/source/drivers/mozab/mozab.xml80
-rwxr-xr-xconnectivity/source/drivers/mozab/mozab2.xcu118
-rw-r--r--connectivity/source/drivers/mozab/mozabdrv.map8
-rw-r--r--connectivity/source/drivers/mozab/mozillasrc/MDatabaseMetaDataHelper.cxx805
-rw-r--r--connectivity/source/drivers/mozab/mozillasrc/MDatabaseMetaDataHelper.hxx78
-rw-r--r--connectivity/source/drivers/mozab/mozillasrc/MErrorResource.hxx80
-rw-r--r--connectivity/source/drivers/mozab/mozillasrc/MLdapAttributeMap.cxx453
-rw-r--r--connectivity/source/drivers/mozab/mozillasrc/MLdapAttributeMap.hxx78
-rw-r--r--connectivity/source/drivers/mozab/mozillasrc/MNSDeclares.hxx54
-rw-r--r--connectivity/source/drivers/mozab/mozillasrc/MNSInclude.hxx84
-rw-r--r--connectivity/source/drivers/mozab/mozillasrc/MNSMozabProxy.cxx407
-rw-r--r--connectivity/source/drivers/mozab/mozillasrc/MNSMozabProxy.hxx116
-rw-r--r--connectivity/source/drivers/mozab/mozillasrc/MNSTerminateListener.cxx88
-rw-r--r--connectivity/source/drivers/mozab/mozillasrc/MNSTerminateListener.hxx60
-rw-r--r--connectivity/source/drivers/mozab/mozillasrc/MNameMapper.cxx144
-rw-r--r--connectivity/source/drivers/mozab/mozillasrc/MNameMapper.hxx86
-rw-r--r--connectivity/source/drivers/mozab/mozillasrc/MQuery.cxx826
-rw-r--r--connectivity/source/drivers/mozab/mozillasrc/MQuery.hxx282
-rw-r--r--connectivity/source/drivers/mozab/mozillasrc/MQueryHelper.cxx637
-rw-r--r--connectivity/source/drivers/mozab/mozillasrc/MQueryHelper.hxx144
-rw-r--r--connectivity/source/drivers/mozab/mozillasrc/MTypeConverter.cxx134
-rw-r--r--connectivity/source/drivers/mozab/mozillasrc/MTypeConverter.hxx68
-rw-r--r--connectivity/source/drivers/mozab/mozillasrc/makefile.mk77
-rw-r--r--connectivity/source/drivers/mozab/post_include_mozilla.h61
-rw-r--r--connectivity/source/drivers/mozab/pre_include_mozilla.h72
-rw-r--r--connectivity/source/drivers/mysql/YCatalog.cxx176
-rw-r--r--connectivity/source/drivers/mysql/YColumns.cxx92
-rw-r--r--connectivity/source/drivers/mysql/YDriver.cxx484
-rw-r--r--connectivity/source/drivers/mysql/YTable.cxx387
-rw-r--r--connectivity/source/drivers/mysql/YTables.cxx246
-rw-r--r--connectivity/source/drivers/mysql/YUser.cxx352
-rw-r--r--connectivity/source/drivers/mysql/YUsers.cxx121
-rw-r--r--connectivity/source/drivers/mysql/YViews.cxx165
-rw-r--r--connectivity/source/drivers/mysql/Yservices.cxx178
-rw-r--r--connectivity/source/drivers/mysql/exports.dxp3
-rw-r--r--connectivity/source/drivers/mysql/makefile.mk84
-rwxr-xr-xconnectivity/source/drivers/mysql/mysql.xcu258
-rw-r--r--connectivity/source/drivers/mysql/mysql.xml27
-rw-r--r--connectivity/source/drivers/odbc/OFunctions.cxx287
-rw-r--r--connectivity/source/drivers/odbc/ORealDriver.cxx371
-rw-r--r--connectivity/source/drivers/odbc/ORealDriver.hxx53
-rw-r--r--connectivity/source/drivers/odbc/makefile.mk79
-rwxr-xr-xconnectivity/source/drivers/odbc/odbc.xcu175
-rw-r--r--connectivity/source/drivers/odbc/odbc.xml26
-rw-r--r--connectivity/source/drivers/odbc/oservices.cxx179
-rw-r--r--connectivity/source/drivers/odbcbase/OConnection.cxx672
-rw-r--r--connectivity/source/drivers/odbcbase/ODatabaseMetaData.cxx1744
-rw-r--r--connectivity/source/drivers/odbcbase/ODatabaseMetaDataResultSet.cxx1323
-rw-r--r--connectivity/source/drivers/odbcbase/ODriver.cxx231
-rw-r--r--connectivity/source/drivers/odbcbase/OPreparedStatement.cxx976
-rw-r--r--connectivity/source/drivers/odbcbase/OResultSet.cxx1757
-rw-r--r--connectivity/source/drivers/odbcbase/OResultSetMetaData.cxx314
-rw-r--r--connectivity/source/drivers/odbcbase/OStatement.cxx1157
-rw-r--r--connectivity/source/drivers/odbcbase/OTools.cxx948
-rw-r--r--connectivity/source/drivers/odbcbase/makefile.mk90
-rw-r--r--connectivity/source/inc/AutoRetrievingBase.hxx61
-rw-r--r--connectivity/source/inc/FDatabaseMetaDataResultSet.hxx281
-rw-r--r--connectivity/source/inc/FDatabaseMetaDataResultSetMetaData.hxx116
-rw-r--r--connectivity/source/inc/OColumn.hxx148
-rw-r--r--connectivity/source/inc/OSubComponent.hxx94
-rw-r--r--connectivity/source/inc/OTypeInfo.hxx94
-rw-r--r--connectivity/source/inc/ParameterSubstitution.hxx74
-rw-r--r--connectivity/source/inc/RowFunctionParser.hxx153
-rw-r--r--connectivity/source/inc/TConnection.hxx94
-rw-r--r--connectivity/source/inc/TDatabaseMetaDataBase.hxx145
-rw-r--r--connectivity/source/inc/TKeyValue.hxx84
-rw-r--r--connectivity/source/inc/TPrivilegesResultSet.hxx57
-rw-r--r--connectivity/source/inc/TResultSetHelper.hxx60
-rw-r--r--connectivity/source/inc/TSkipDeletedSet.hxx107
-rw-r--r--connectivity/source/inc/TSortIndex.hxx142
-rw-r--r--connectivity/source/inc/UStringDescription_Impl.hxx108
-rw-r--r--connectivity/source/inc/adabas/BCatalog.hxx79
-rw-r--r--connectivity/source/inc/adabas/BColumn.hxx56
-rw-r--r--connectivity/source/inc/adabas/BColumns.hxx63
-rw-r--r--connectivity/source/inc/adabas/BConnection.hxx80
-rw-r--r--connectivity/source/inc/adabas/BDatabaseMetaData.hxx57
-rw-r--r--connectivity/source/inc/adabas/BDriver.hxx178
-rw-r--r--connectivity/source/inc/adabas/BGroup.hxx52
-rw-r--r--connectivity/source/inc/adabas/BGroups.hxx68
-rw-r--r--connectivity/source/inc/adabas/BIndex.hxx60
-rw-r--r--connectivity/source/inc/adabas/BIndexColumn.hxx60
-rw-r--r--connectivity/source/inc/adabas/BIndexColumns.hxx60
-rw-r--r--connectivity/source/inc/adabas/BIndexes.hxx60
-rw-r--r--connectivity/source/inc/adabas/BKeys.hxx57
-rw-r--r--connectivity/source/inc/adabas/BPreparedStatement.hxx54
-rw-r--r--connectivity/source/inc/adabas/BResultSet.hxx62
-rw-r--r--connectivity/source/inc/adabas/BResultSetMetaData.hxx59
-rw-r--r--connectivity/source/inc/adabas/BStatement.hxx62
-rw-r--r--connectivity/source/inc/adabas/BTable.hxx112
-rw-r--r--connectivity/source/inc/adabas/BTables.hxx82
-rw-r--r--connectivity/source/inc/adabas/BUser.hxx84
-rw-r--r--connectivity/source/inc/adabas/BUsers.hxx68
-rw-r--r--connectivity/source/inc/adabas/BViews.hxx66
-rw-r--r--connectivity/source/inc/ado/ACallableStatement.hxx90
-rw-r--r--connectivity/source/inc/ado/ACatalog.hxx63
-rw-r--r--connectivity/source/inc/ado/ACollection.hxx233
-rw-r--r--connectivity/source/inc/ado/AColumn.hxx72
-rw-r--r--connectivity/source/inc/ado/AColumns.hxx70
-rw-r--r--connectivity/source/inc/ado/AConnection.hxx153
-rw-r--r--connectivity/source/inc/ado/ADatabaseMetaData.hxx232
-rw-r--r--connectivity/source/inc/ado/ADatabaseMetaDataResultSet.hxx226
-rw-r--r--connectivity/source/inc/ado/ADatabaseMetaDataResultSetMetaData.hxx117
-rw-r--r--connectivity/source/inc/ado/ADriver.hxx95
-rw-r--r--connectivity/source/inc/ado/AGroup.hxx78
-rw-r--r--connectivity/source/inc/ado/AGroups.hxx71
-rw-r--r--connectivity/source/inc/ado/AIndex.hxx67
-rw-r--r--connectivity/source/inc/ado/AIndexColumn.hxx60
-rw-r--r--connectivity/source/inc/ado/AIndexColumns.hxx57
-rw-r--r--connectivity/source/inc/ado/AIndexes.hxx68
-rw-r--r--connectivity/source/inc/ado/AKey.hxx75
-rw-r--r--connectivity/source/inc/ado/AKeyColumn.hxx60
-rw-r--r--connectivity/source/inc/ado/AKeyColumns.hxx57
-rw-r--r--connectivity/source/inc/ado/AKeys.hxx68
-rw-r--r--connectivity/source/inc/ado/APreparedStatement.hxx126
-rw-r--r--connectivity/source/inc/ado/AResultSet.hxx236
-rw-r--r--connectivity/source/inc/ado/AResultSetMetaData.hxx95
-rw-r--r--connectivity/source/inc/ado/AStatement.hxx203
-rw-r--r--connectivity/source/inc/ado/ATable.hxx90
-rw-r--r--connectivity/source/inc/ado/ATables.hxx67
-rw-r--r--connectivity/source/inc/ado/AUser.hxx104
-rw-r--r--connectivity/source/inc/ado/AUsers.hxx72
-rw-r--r--connectivity/source/inc/ado/AView.hxx68
-rw-r--r--connectivity/source/inc/ado/AViews.hxx66
-rw-r--r--connectivity/source/inc/ado/Aolevariant.hxx177
-rw-r--r--connectivity/source/inc/ado/Aolewrap.hxx247
-rw-r--r--connectivity/source/inc/ado/Awrapado.hxx421
-rw-r--r--connectivity/source/inc/ado/Awrapadox.hxx151
-rw-r--r--connectivity/source/inc/ado/WrapCatalog.hxx61
-rw-r--r--connectivity/source/inc/ado/WrapColumn.hxx75
-rw-r--r--connectivity/source/inc/ado/WrapIndex.hxx63
-rw-r--r--connectivity/source/inc/ado/WrapKey.hxx65
-rw-r--r--connectivity/source/inc/ado/WrapTable.hxx68
-rw-r--r--connectivity/source/inc/ado/WrapTypeDefs.hxx56
-rw-r--r--connectivity/source/inc/ado/adoimp.hxx114
-rw-r--r--connectivity/source/inc/calc/CCatalog.hxx52
-rw-r--r--connectivity/source/inc/calc/CColumns.hxx55
-rw-r--r--connectivity/source/inc/calc/CConnection.hxx99
-rw-r--r--connectivity/source/inc/calc/CDatabaseMetaData.hxx63
-rw-r--r--connectivity/source/inc/calc/CDriver.hxx67
-rw-r--r--connectivity/source/inc/calc/CPreparedStatement.hxx52
-rw-r--r--connectivity/source/inc/calc/CResultSet.hxx92
-rw-r--r--connectivity/source/inc/calc/CStatement.hxx52
-rw-r--r--connectivity/source/inc/calc/CTable.hxx109
-rw-r--r--connectivity/source/inc/calc/CTables.hxx54
-rw-r--r--connectivity/source/inc/dbase/DCatalog.hxx51
-rw-r--r--connectivity/source/inc/dbase/DCode.hxx71
-rw-r--r--connectivity/source/inc/dbase/DColumns.hxx57
-rw-r--r--connectivity/source/inc/dbase/DConnection.hxx60
-rw-r--r--connectivity/source/inc/dbase/DDatabaseMetaData.hxx70
-rw-r--r--connectivity/source/inc/dbase/DDatabaseMetaDataResultSet.hxx196
-rw-r--r--connectivity/source/inc/dbase/DDatabaseMetaDataResultSetMetaData.hxx110
-rw-r--r--connectivity/source/inc/dbase/DDriver.hxx63
-rw-r--r--connectivity/source/inc/dbase/DIndex.hxx162
-rw-r--r--connectivity/source/inc/dbase/DIndexColumns.hxx62
-rw-r--r--connectivity/source/inc/dbase/DIndexIter.hxx87
-rw-r--r--connectivity/source/inc/dbase/DIndexPage.hxx40
-rw-r--r--connectivity/source/inc/dbase/DIndexes.hxx63
-rw-r--r--connectivity/source/inc/dbase/DPreparedStatement.hxx52
-rw-r--r--connectivity/source/inc/dbase/DResultSet.hxx92
-rw-r--r--connectivity/source/inc/dbase/DStatement.hxx52
-rw-r--r--connectivity/source/inc/dbase/DTable.hxx187
-rw-r--r--connectivity/source/inc/dbase/DTables.hxx60
-rw-r--r--connectivity/source/inc/dbase/dindexnode.hxx349
-rw-r--r--connectivity/source/inc/diagnose_ex.h49
-rw-r--r--connectivity/source/inc/file/FCatalog.hxx73
-rw-r--r--connectivity/source/inc/file/FColumns.hxx61
-rw-r--r--connectivity/source/inc/file/FConnection.hxx162
-rw-r--r--connectivity/source/inc/file/FDatabaseMetaData.hxx199
-rw-r--r--connectivity/source/inc/file/FDateFunctions.hxx244
-rw-r--r--connectivity/source/inc/file/FDriver.hxx89
-rw-r--r--connectivity/source/inc/file/FNumericFunctions.hxx378
-rw-r--r--connectivity/source/inc/file/FPreparedStatement.hxx137
-rw-r--r--connectivity/source/inc/file/FResultSet.hxx343
-rw-r--r--connectivity/source/inc/file/FResultSetMetaData.hxx93
-rw-r--r--connectivity/source/inc/file/FStatement.hxx225
-rw-r--r--connectivity/source/inc/file/FStringFunctions.hxx285
-rw-r--r--connectivity/source/inc/file/FTable.hxx120
-rw-r--r--connectivity/source/inc/file/FTables.hxx63
-rw-r--r--connectivity/source/inc/file/fanalyzer.hxx98
-rw-r--r--connectivity/source/inc/file/fcode.hxx398
-rw-r--r--connectivity/source/inc/file/fcomp.hxx122
-rw-r--r--connectivity/source/inc/file/filedllapi.hxx43
-rw-r--r--connectivity/source/inc/file/quotedstring.hxx58
-rw-r--r--connectivity/source/inc/flat/ECatalog.hxx51
-rw-r--r--connectivity/source/inc/flat/EColumns.hxx54
-rw-r--r--connectivity/source/inc/flat/EConnection.hxx73
-rw-r--r--connectivity/source/inc/flat/EDatabaseMetaData.hxx57
-rw-r--r--connectivity/source/inc/flat/EDriver.hxx63
-rw-r--r--connectivity/source/inc/flat/EPreparedStatement.hxx52
-rw-r--r--connectivity/source/inc/flat/EResultSet.hxx83
-rw-r--r--connectivity/source/inc/flat/EStatement.hxx52
-rw-r--r--connectivity/source/inc/flat/ETable.hxx105
-rw-r--r--connectivity/source/inc/flat/ETables.hxx54
-rw-r--r--connectivity/source/inc/hsqldb/HCatalog.hxx74
-rw-r--r--connectivity/source/inc/hsqldb/HColumns.hxx72
-rw-r--r--connectivity/source/inc/hsqldb/HConnection.hxx160
-rw-r--r--connectivity/source/inc/hsqldb/HDriver.hxx146
-rw-r--r--connectivity/source/inc/hsqldb/HStorageAccess.h98
-rw-r--r--connectivity/source/inc/hsqldb/HStorageAccess.hxx46
-rw-r--r--connectivity/source/inc/hsqldb/HStorageMap.hxx94
-rw-r--r--connectivity/source/inc/hsqldb/HTable.hxx130
-rw-r--r--connectivity/source/inc/hsqldb/HTables.hxx80
-rw-r--r--connectivity/source/inc/hsqldb/HTools.hxx68
-rw-r--r--connectivity/source/inc/hsqldb/HUser.hxx84
-rw-r--r--connectivity/source/inc/hsqldb/HUsers.hxx64
-rw-r--r--connectivity/source/inc/hsqldb/HView.hxx100
-rw-r--r--connectivity/source/inc/hsqldb/HViews.hxx65
-rw-r--r--connectivity/source/inc/hsqldb/StorageFileAccess.h40
-rw-r--r--connectivity/source/inc/hsqldb/StorageNativeInputStream.h73
-rw-r--r--connectivity/source/inc/internalnode.hxx63
-rw-r--r--connectivity/source/inc/java/ContextClassLoader.hxx106
-rw-r--r--connectivity/source/inc/java/GlobalRef.hxx125
-rw-r--r--connectivity/source/inc/java/LocalRef.hxx109
-rw-r--r--connectivity/source/inc/java/io/InputStream.hxx62
-rw-r--r--connectivity/source/inc/java/io/Reader.hxx63
-rw-r--r--connectivity/source/inc/java/lang/Boolean.hxx55
-rw-r--r--connectivity/source/inc/java/lang/Class.hxx57
-rw-r--r--connectivity/source/inc/java/lang/Exception.hxx53
-rw-r--r--connectivity/source/inc/java/lang/Object.hxx177
-rw-r--r--connectivity/source/inc/java/lang/String.hxx55
-rw-r--r--connectivity/source/inc/java/lang/Throwable.hxx56
-rw-r--r--connectivity/source/inc/java/math/BigDecimal.hxx55
-rw-r--r--connectivity/source/inc/java/sql/Array.hxx65
-rw-r--r--connectivity/source/inc/java/sql/Blob.hxx65
-rw-r--r--connectivity/source/inc/java/sql/CallableStatement.hxx93
-rw-r--r--connectivity/source/inc/java/sql/Clob.hxx65
-rw-r--r--connectivity/source/inc/java/sql/Connection.hxx153
-rw-r--r--connectivity/source/inc/java/sql/ConnectionLog.hxx145
-rw-r--r--connectivity/source/inc/java/sql/DatabaseMetaData.hxx226
-rw-r--r--connectivity/source/inc/java/sql/Driver.hxx78
-rw-r--r--connectivity/source/inc/java/sql/DriverPropertyInfo.hxx63
-rw-r--r--connectivity/source/inc/java/sql/JStatement.hxx221
-rw-r--r--connectivity/source/inc/java/sql/PreparedStatement.hxx115
-rw-r--r--connectivity/source/inc/java/sql/Ref.hxx60
-rw-r--r--connectivity/source/inc/java/sql/ResultSet.hxx210
-rw-r--r--connectivity/source/inc/java/sql/ResultSetMetaData.hxx84
-rw-r--r--connectivity/source/inc/java/sql/SQLException.hxx70
-rw-r--r--connectivity/source/inc/java/sql/SQLWarning.hxx63
-rw-r--r--connectivity/source/inc/java/sql/Timestamp.hxx101
-rw-r--r--connectivity/source/inc/java/tools.hxx92
-rw-r--r--connectivity/source/inc/java/util/Date.hxx56
-rw-r--r--connectivity/source/inc/java/util/Property.hxx52
-rw-r--r--connectivity/source/inc/mysql/YCatalog.hxx75
-rw-r--r--connectivity/source/inc/mysql/YColumns.hxx72
-rw-r--r--connectivity/source/inc/mysql/YDriver.hxx128
-rw-r--r--connectivity/source/inc/mysql/YTable.hxx130
-rw-r--r--connectivity/source/inc/mysql/YTables.hxx90
-rw-r--r--connectivity/source/inc/mysql/YUser.hxx84
-rw-r--r--connectivity/source/inc/mysql/YUsers.hxx64
-rw-r--r--connectivity/source/inc/mysql/YViews.hxx66
-rw-r--r--connectivity/source/inc/odbc/OBoundParam.hxx224
-rw-r--r--connectivity/source/inc/odbc/OConnection.hxx162
-rw-r--r--connectivity/source/inc/odbc/ODatabaseMetaData.hxx226
-rw-r--r--connectivity/source/inc/odbc/ODatabaseMetaDataResultSet.hxx244
-rw-r--r--connectivity/source/inc/odbc/ODefs3.hxx94
-rw-r--r--connectivity/source/inc/odbc/ODriver.hxx92
-rw-r--r--connectivity/source/inc/odbc/OFunctiondefs.hxx177
-rw-r--r--connectivity/source/inc/odbc/OFunctions.hxx558
-rw-r--r--connectivity/source/inc/odbc/OPreparedStatement.hxx173
-rw-r--r--connectivity/source/inc/odbc/OResultSet.hxx329
-rw-r--r--connectivity/source/inc/odbc/OResultSetMetaData.hxx128
-rw-r--r--connectivity/source/inc/odbc/OStatement.hxx250
-rw-r--r--connectivity/source/inc/odbc/OTools.hxx278
-rw-r--r--connectivity/source/inc/odbc/odbcbasedllapi.hxx43
-rw-r--r--connectivity/source/inc/propertyids.hxx162
-rw-r--r--connectivity/source/inc/resource/adabas_res.hrc43
-rw-r--r--connectivity/source/inc/resource/ado_res.hrc50
-rw-r--r--connectivity/source/inc/resource/calc_res.hrc41
-rw-r--r--connectivity/source/inc/resource/common_res.hrc78
-rw-r--r--connectivity/source/inc/resource/conn_shared_res.hrc73
-rw-r--r--connectivity/source/inc/resource/dbase_res.hrc61
-rw-r--r--connectivity/source/inc/resource/evoab2_res.hrc42
-rw-r--r--connectivity/source/inc/resource/file_res.hrc48
-rw-r--r--connectivity/source/inc/resource/hsqldb_res.hrc47
-rw-r--r--connectivity/source/inc/resource/jdbc_log.hrc90
-rw-r--r--connectivity/source/inc/resource/kab_res.hrc43
-rw-r--r--connectivity/source/inc/resource/macab_res.hrc41
-rw-r--r--connectivity/source/inc/resource/mozab_res.hrc74
-rw-r--r--connectivity/source/inc/resource/sharedresources.hxx166
-rw-r--r--connectivity/source/inc/sqlscan.hxx93
-rw-r--r--connectivity/source/manager/exports.dxp3
-rw-r--r--connectivity/source/manager/makefile.mk79
-rw-r--r--connectivity/source/manager/mdrivermanager.cxx744
-rw-r--r--connectivity/source/manager/mdrivermanager.hxx148
-rw-r--r--connectivity/source/manager/mregistration.cxx114
-rw-r--r--connectivity/source/manager/sdbc.mxp.map53
-rw-r--r--connectivity/source/parse/PColumn.cxx250
-rw-r--r--connectivity/source/parse/internalnode.cxx88
-rw-r--r--connectivity/source/parse/makefile.mk67
-rw-r--r--connectivity/source/parse/sqlbison.y4382
-rw-r--r--connectivity/source/parse/sqlflex.l809
-rw-r--r--connectivity/source/parse/sqliterator.cxx2249
-rw-r--r--connectivity/source/parse/sqlnode.cxx2838
-rw-r--r--connectivity/source/parse/wrap_sqlbison.cxx34
-rw-r--r--connectivity/source/parse/wrap_sqlflex.cxx38
-rw-r--r--connectivity/source/resource/conn_error_message.src99
-rw-r--r--connectivity/source/resource/conn_log_res.src312
-rw-r--r--connectivity/source/resource/conn_shared_res.src649
-rw-r--r--connectivity/source/resource/makefile.mk108
-rw-r--r--connectivity/source/resource/sharedresources.cxx244
-rw-r--r--connectivity/source/sdbcx/VCatalog.cxx243
-rw-r--r--connectivity/source/sdbcx/VCollection.cxx606
-rw-r--r--connectivity/source/sdbcx/VColumn.cxx231
-rw-r--r--connectivity/source/sdbcx/VDescriptor.cxx157
-rw-r--r--connectivity/source/sdbcx/VGroup.cxx185
-rw-r--r--connectivity/source/sdbcx/VIndex.cxx225
-rw-r--r--connectivity/source/sdbcx/VIndexColumn.cxx122
-rw-r--r--connectivity/source/sdbcx/VKey.cxx230
-rw-r--r--connectivity/source/sdbcx/VKeyColumn.cxx127
-rw-r--r--connectivity/source/sdbcx/VTable.cxx339
-rw-r--r--connectivity/source/sdbcx/VUser.cxx196
-rw-r--r--connectivity/source/sdbcx/VView.cxx152
-rw-r--r--connectivity/source/sdbcx/makefile.mk63
-rw-r--r--connectivity/source/simpledbt/charset_s.cxx75
-rw-r--r--connectivity/source/simpledbt/charset_s.hxx70
-rw-r--r--connectivity/source/simpledbt/dbtfactory.cxx116
-rw-r--r--connectivity/source/simpledbt/dbtfactory.hxx83
-rw-r--r--connectivity/source/simpledbt/makefile.mk53
-rw-r--r--connectivity/source/simpledbt/parsenode_s.cxx95
-rw-r--r--connectivity/source/simpledbt/parsenode_s.hxx83
-rw-r--r--connectivity/source/simpledbt/parser_s.cxx88
-rw-r--r--connectivity/source/simpledbt/parser_s.hxx76
-rw-r--r--connectivity/source/simpledbt/refbase.cxx66
-rw-r--r--connectivity/source/simpledbt/refbase.hxx63
-rw-r--r--connectivity/source/simpledbt/staticdbtools_s.cxx214
-rw-r--r--connectivity/source/simpledbt/staticdbtools_s.hxx209
-rwxr-xr-xconnectivity/target.pmk36
-rwxr-xr-xconnectivity/util/makefile.mk62
-rw-r--r--connectivity/version.mk119
-rw-r--r--connectivity/workben/TT/StartTest.classbin0 -> 183 bytes-rw-r--r--connectivity/workben/TT/StartTest.java293
-rw-r--r--connectivity/workben/iniParser/main.cxx192
-rw-r--r--connectivity/workben/iniParser/makefile.mk61
-rw-r--r--connectivity/workben/little/main.cxx119
-rw-r--r--connectivity/workben/little/makefile.mk59
-rw-r--r--connectivity/workben/skeleton/SResultSet.hxx249
-rw-r--r--connectivity/workben/skeleton/how_to_write_a_driver.txt51
-rw-r--r--connectivity/workben/testmoz/initUNO.cxx48
-rw-r--r--connectivity/workben/testmoz/main.cxx726
-rw-r--r--connectivity/workben/testmoz/makefile.mk70
-rw-r--r--connectivity/workben/testmoz/mozthread.cxx479
-rw-r--r--cosv/inc/cosv/bstream.hxx152
-rw-r--r--cosv/inc/cosv/comdline.hxx72
-rw-r--r--cosv/inc/cosv/comfunc.hxx128
-rw-r--r--cosv/inc/cosv/commandline.hxx183
-rw-r--r--cosv/inc/cosv/csv_env.hxx157
-rw-r--r--cosv/inc/cosv/csv_ostream.hxx136
-rw-r--r--cosv/inc/cosv/csv_precomp.h49
-rw-r--r--cosv/inc/cosv/datetime.hxx86
-rw-r--r--cosv/inc/cosv/dirchain.hxx182
-rw-r--r--cosv/inc/cosv/file.hxx139
-rw-r--r--cosv/inc/cosv/mbstream.hxx95
-rw-r--r--cosv/inc/cosv/openclose.hxx146
-rw-r--r--cosv/inc/cosv/persist.hxx107
-rw-r--r--cosv/inc/cosv/ploc.hxx132
-rw-r--r--cosv/inc/cosv/ploc_dir.hxx120
-rw-r--r--cosv/inc/cosv/plocroot.hxx82
-rw-r--r--cosv/inc/cosv/std_outp.hxx138
-rw-r--r--cosv/inc/cosv/str_types.hxx97
-rw-r--r--cosv/inc/cosv/streamstr.hxx394
-rw-r--r--cosv/inc/cosv/string.hxx582
-rw-r--r--cosv/inc/cosv/stringdata.hxx137
-rw-r--r--cosv/inc/cosv/tpl/dyn.hxx241
-rw-r--r--cosv/inc/cosv/tpl/funcall.hxx310
-rw-r--r--cosv/inc/cosv/tpl/processor.hxx186
-rw-r--r--cosv/inc/cosv/tpl/range.hxx194
-rw-r--r--cosv/inc/cosv/tpl/swelist.hxx371
-rw-r--r--cosv/inc/cosv/tpl/tpltools.hxx231
-rw-r--r--cosv/inc/cosv/tpl/vvector.hxx542
-rw-r--r--cosv/inc/cosv/x.hxx73
-rw-r--r--cosv/prj/build.lst16
-rw-r--r--cosv/prj/d.lst8
-rw-r--r--cosv/source/comphelp/badcast.cxx47
-rw-r--r--cosv/source/comphelp/makefile.mk55
-rw-r--r--cosv/source/fullcpp.mk57
-rw-r--r--cosv/source/inc/precomp.h38
-rw-r--r--cosv/source/service/comdline.cxx59
-rw-r--r--cosv/source/service/comfunc.cxx157
-rw-r--r--cosv/source/service/commandline.cxx345
-rw-r--r--cosv/source/service/csv_ostream.cxx94
-rw-r--r--cosv/source/service/datetime.cxx86
-rw-r--r--cosv/source/service/makefile.mk59
-rw-r--r--cosv/source/service/std_outp.cxx83
-rw-r--r--cosv/source/storage/dirchain.cxx158
-rw-r--r--cosv/source/storage/file.cxx244
-rw-r--r--cosv/source/storage/makefile.mk69
-rw-r--r--cosv/source/storage/mbstream.cxx121
-rw-r--r--cosv/source/storage/persist.cxx115
-rw-r--r--cosv/source/storage/ploc.cxx160
-rw-r--r--cosv/source/storage/ploc_dir.cxx366
-rw-r--r--cosv/source/storage/plocroot.cxx527
-rw-r--r--cosv/source/strings/makefile.mk58
-rw-r--r--cosv/source/strings/str_types.cxx46
-rw-r--r--cosv/source/strings/streamstr.cxx984
-rw-r--r--cosv/source/strings/string.cxx417
-rw-r--r--cosv/source/unittest/file_ut.cxx123
-rw-r--r--cosv/source/unittest/makefile.mk80
-rw-r--r--cosv/source/unittest/string_ut.cxx76
-rw-r--r--cosv/source/unittest/ut.hxx55
-rw-r--r--cosv/source/unittest/ut_main.cxx49
-rw-r--r--cosv/util/makefile.mk58
-rw-r--r--cppcanvas/inc/cppcanvas/basegfxfactory.hxx107
-rw-r--r--cppcanvas/inc/cppcanvas/bitmap.hxx83
-rw-r--r--cppcanvas/inc/cppcanvas/bitmapcanvas.hxx69
-rw-r--r--cppcanvas/inc/cppcanvas/canvas.hxx119
-rw-r--r--cppcanvas/inc/cppcanvas/canvasgraphic.hxx173
-rw-r--r--cppcanvas/inc/cppcanvas/color.hxx98
-rw-r--r--cppcanvas/inc/cppcanvas/customsprite.hxx56
-rw-r--r--cppcanvas/inc/cppcanvas/font.hxx68
-rw-r--r--cppcanvas/inc/cppcanvas/polypolygon.hxx96
-rw-r--r--cppcanvas/inc/cppcanvas/renderer.hxx153
-rw-r--r--cppcanvas/inc/cppcanvas/sprite.hxx119
-rw-r--r--cppcanvas/inc/cppcanvas/spritecanvas.hxx84
-rw-r--r--cppcanvas/inc/cppcanvas/text.hxx58
-rw-r--r--cppcanvas/inc/cppcanvas/vclfactory.hxx150
-rw-r--r--cppcanvas/inc/makefile.mk47
-rw-r--r--cppcanvas/inc/pch/precompiled_cppcanvas.cxx31
-rw-r--r--cppcanvas/inc/pch/precompiled_cppcanvas.hxx34
-rw-r--r--cppcanvas/prj/build.lst8
-rw-r--r--cppcanvas/prj/d.lst20
-rw-r--r--cppcanvas/source/inc/action.hxx165
-rw-r--r--cppcanvas/source/inc/canvasgraphichelper.hxx89
-rw-r--r--cppcanvas/source/inc/implrenderer.hxx327
-rw-r--r--cppcanvas/source/inc/tools.hxx59
-rw-r--r--cppcanvas/source/mtfrenderer/bitmapaction.cxx241
-rw-r--r--cppcanvas/source/mtfrenderer/bitmapaction.hxx84
-rw-r--r--cppcanvas/source/mtfrenderer/cachedprimitivebase.cxx96
-rw-r--r--cppcanvas/source/mtfrenderer/cachedprimitivebase.hxx98
-rw-r--r--cppcanvas/source/mtfrenderer/emfplus.cxx1617
-rw-r--r--cppcanvas/source/mtfrenderer/implrenderer.cxx3212
-rw-r--r--cppcanvas/source/mtfrenderer/lineaction.cxx170
-rw-r--r--cppcanvas/source/mtfrenderer/lineaction.hxx76
-rw-r--r--cppcanvas/source/mtfrenderer/makefile.mk58
-rw-r--r--cppcanvas/source/mtfrenderer/mtftools.cxx696
-rw-r--r--cppcanvas/source/mtfrenderer/mtftools.hxx273
-rw-r--r--cppcanvas/source/mtfrenderer/outdevstate.hxx136
-rw-r--r--cppcanvas/source/mtfrenderer/pointaction.cxx190
-rw-r--r--cppcanvas/source/mtfrenderer/pointaction.hxx81
-rw-r--r--cppcanvas/source/mtfrenderer/polypolyaction.cxx541
-rw-r--r--cppcanvas/source/mtfrenderer/polypolyaction.hxx104
-rw-r--r--cppcanvas/source/mtfrenderer/textaction.cxx2318
-rw-r--r--cppcanvas/source/mtfrenderer/textaction.hxx105
-rw-r--r--cppcanvas/source/mtfrenderer/transparencygroupaction.cxx595
-rw-r--r--cppcanvas/source/mtfrenderer/transparencygroupaction.hxx143
-rw-r--r--cppcanvas/source/tools/canvasgraphichelper.cxx154
-rw-r--r--cppcanvas/source/tools/makefile.mk50
-rw-r--r--cppcanvas/source/tools/tools.cxx65
-rw-r--r--cppcanvas/source/uno/exports.dxp3
-rw-r--r--cppcanvas/source/uno/exports.map9
-rw-r--r--cppcanvas/source/uno/makefile.mk62
-rw-r--r--cppcanvas/source/uno/uno_mtfrenderer.cxx83
-rw-r--r--cppcanvas/source/uno/uno_mtfrenderer.hxx63
-rw-r--r--cppcanvas/source/wrapper/basegfxfactory.cxx167
-rw-r--r--cppcanvas/source/wrapper/implbitmap.cxx129
-rw-r--r--cppcanvas/source/wrapper/implbitmap.hxx81
-rw-r--r--cppcanvas/source/wrapper/implbitmapcanvas.cxx76
-rw-r--r--cppcanvas/source/wrapper/implbitmapcanvas.hxx73
-rw-r--r--cppcanvas/source/wrapper/implcanvas.cxx144
-rw-r--r--cppcanvas/source/wrapper/implcanvas.hxx107
-rw-r--r--cppcanvas/source/wrapper/implcolor.cxx71
-rw-r--r--cppcanvas/source/wrapper/implcolor.hxx65
-rw-r--r--cppcanvas/source/wrapper/implcustomsprite.cxx85
-rw-r--r--cppcanvas/source/wrapper/implcustomsprite.hxx72
-rw-r--r--cppcanvas/source/wrapper/implfont.cxx94
-rw-r--r--cppcanvas/source/wrapper/implfont.hxx82
-rw-r--r--cppcanvas/source/wrapper/implpolypolygon.cxx204
-rw-r--r--cppcanvas/source/wrapper/implpolypolygon.hxx96
-rw-r--r--cppcanvas/source/wrapper/implsprite.cxx239
-rw-r--r--cppcanvas/source/wrapper/implsprite.hxx96
-rw-r--r--cppcanvas/source/wrapper/implspritecanvas.cxx162
-rw-r--r--cppcanvas/source/wrapper/implspritecanvas.hxx109
-rw-r--r--cppcanvas/source/wrapper/impltext.cxx98
-rw-r--r--cppcanvas/source/wrapper/impltext.hxx73
-rw-r--r--cppcanvas/source/wrapper/makefile.mk60
-rw-r--r--cppcanvas/source/wrapper/vclfactory.cxx366
-rw-r--r--cppcanvas/util/cppcanvas.flt4
-rw-r--r--cppcanvas/util/makefile.mk70
-rw-r--r--cppu/inc/com/sun/star/uno/Any.h386
-rw-r--r--cppu/inc/com/sun/star/uno/Any.hxx583
-rw-r--r--cppu/inc/com/sun/star/uno/Reference.h536
-rw-r--r--cppu/inc/com/sun/star/uno/Reference.hxx432
-rw-r--r--cppu/inc/com/sun/star/uno/Sequence.h291
-rw-r--r--cppu/inc/com/sun/star/uno/Sequence.hxx310
-rw-r--r--cppu/inc/com/sun/star/uno/Type.h461
-rw-r--r--cppu/inc/com/sun/star/uno/Type.hxx330
-rw-r--r--cppu/inc/com/sun/star/uno/genfunc.h72
-rw-r--r--cppu/inc/com/sun/star/uno/genfunc.hxx91
-rw-r--r--cppu/inc/cppu/Enterable.hxx117
-rw-r--r--cppu/inc/cppu/EnvDcp.hxx78
-rw-r--r--cppu/inc/cppu/EnvGuards.hxx116
-rw-r--r--cppu/inc/cppu/FreeReference.hxx169
-rw-r--r--cppu/inc/cppu/Map.hxx116
-rw-r--r--cppu/inc/cppu/Shield.hxx93
-rw-r--r--cppu/inc/cppu/helper/purpenv/Environment.hxx49
-rw-r--r--cppu/inc/cppu/helper/purpenv/Mapping.hxx71
-rw-r--r--cppu/inc/cppu/macros.hxx67
-rw-r--r--cppu/inc/cppu/unotype.hxx380
-rw-r--r--cppu/inc/makefile.mk48
-rw-r--r--cppu/inc/pch/precompiled_cppu.cxx31
-rw-r--r--cppu/inc/pch/precompiled_cppu.hxx34
-rw-r--r--cppu/inc/typelib/typeclass.h107
-rw-r--r--cppu/inc/typelib/typedescription.h1163
-rw-r--r--cppu/inc/typelib/typedescription.hxx227
-rw-r--r--cppu/inc/typelib/uik.h56
-rw-r--r--cppu/inc/uno/Enterable.h115
-rw-r--r--cppu/inc/uno/EnvDcp.h66
-rw-r--r--cppu/inc/uno/any2.h181
-rw-r--r--cppu/inc/uno/cuno.h52
-rw-r--r--cppu/inc/uno/current_context.h71
-rw-r--r--cppu/inc/uno/current_context.hxx130
-rw-r--r--cppu/inc/uno/data.h260
-rw-r--r--cppu/inc/uno/dispatcher.h100
-rw-r--r--cppu/inc/uno/dispatcher.hxx177
-rw-r--r--cppu/inc/uno/environment.h388
-rw-r--r--cppu/inc/uno/environment.hxx281
-rw-r--r--cppu/inc/uno/lbnames.h61
-rw-r--r--cppu/inc/uno/mapping.h206
-rw-r--r--cppu/inc/uno/mapping.hxx357
-rw-r--r--cppu/inc/uno/sequence2.h190
-rw-r--r--cppu/inc/uno/threadpool.h192
-rw-r--r--cppu/prj/build.lst12
-rw-r--r--cppu/prj/d.lst74
-rw-r--r--cppu/qa/makefile.mk96
-rw-r--r--cppu/qa/test_any.cxx2333
-rw-r--r--cppu/qa/test_recursion.cxx60
-rw-r--r--cppu/qa/test_reference.cxx159
-rw-r--r--cppu/qa/test_unotype.cxx815
-rw-r--r--cppu/qa/types.idl63
-rw-r--r--cppu/qa/version.map34
-rw-r--r--cppu/source/AffineBridge/AffineBridge.cxx366
-rw-r--r--cppu/source/AffineBridge/makefile.mk44
-rw-r--r--cppu/source/LogBridge/LogBridge.cxx280
-rwxr-xr-xcppu/source/LogBridge/makefile.mk44
-rw-r--r--cppu/source/UnsafeBridge/UnsafeBridge.cxx165
-rw-r--r--cppu/source/UnsafeBridge/makefile.mk44
-rw-r--r--cppu/source/cppu/cppu_opt.cxx84
-rw-r--r--cppu/source/cppu/makefile.mk45
-rw-r--r--cppu/source/helper/purpenv/Proxy.hxx92
-rw-r--r--cppu/source/helper/purpenv/export.mk19
-rw-r--r--cppu/source/helper/purpenv/helper_purpenv_Environment.cxx540
-rw-r--r--cppu/source/helper/purpenv/helper_purpenv_Mapping.cxx236
-rw-r--r--cppu/source/helper/purpenv/helper_purpenv_Proxy.cxx532
-rw-r--r--cppu/source/helper/purpenv/makefile.mk46
-rw-r--r--cppu/source/threadpool/current.cxx300
-rw-r--r--cppu/source/threadpool/current.hxx51
-rw-r--r--cppu/source/threadpool/jobqueue.cxx195
-rw-r--r--cppu/source/threadpool/jobqueue.hxx88
-rw-r--r--cppu/source/threadpool/makefile.mk49
-rw-r--r--cppu/source/threadpool/thread.cxx222
-rw-r--r--cppu/source/threadpool/thread.hxx93
-rw-r--r--cppu/source/threadpool/threadident.cxx138
-rw-r--r--cppu/source/threadpool/threadpool.cxx509
-rw-r--r--cppu/source/threadpool/threadpool.hxx143
-rw-r--r--cppu/source/typelib/makefile.mk45
-rw-r--r--cppu/source/typelib/static_types.cxx659
-rw-r--r--cppu/source/typelib/typelib.cxx2678
-rw-r--r--cppu/source/uno/EnvDcp.c52
-rw-r--r--cppu/source/uno/EnvStack.cxx389
-rw-r--r--cppu/source/uno/IdentityMapping.cxx109
-rw-r--r--cppu/source/uno/IdentityMapping.hxx42
-rw-r--r--cppu/source/uno/any.cxx153
-rw-r--r--cppu/source/uno/assign.hxx638
-rw-r--r--cppu/source/uno/cascade_mapping.cxx339
-rw-r--r--cppu/source/uno/cascade_mapping.hxx44
-rw-r--r--cppu/source/uno/constr.hxx270
-rw-r--r--cppu/source/uno/copy.hxx889
-rw-r--r--cppu/source/uno/data.cxx622
-rw-r--r--cppu/source/uno/destr.hxx441
-rw-r--r--cppu/source/uno/env_subst.cxx57
-rw-r--r--cppu/source/uno/env_subst.hxx44
-rw-r--r--cppu/source/uno/eq.hxx671
-rw-r--r--cppu/source/uno/lbenv.cxx1189
-rw-r--r--cppu/source/uno/lbmap.cxx694
-rw-r--r--cppu/source/uno/loadmodule.cxx58
-rw-r--r--cppu/source/uno/loadmodule.hxx54
-rw-r--r--cppu/source/uno/makefile.mk55
-rw-r--r--cppu/source/uno/prim.hxx203
-rw-r--r--cppu/source/uno/sequence.cxx1019
-rwxr-xr-xcppu/util/cppu.map127
-rw-r--r--cppu/util/empty.def6
-rw-r--r--cppu/util/extra.mk89
-rw-r--r--cppu/util/makefile.mk105
-rw-r--r--cppu/util/makefile.pmk32
-rw-r--r--cppu/util/purpenvhelper3MSC.map8
-rw-r--r--cppu/util/target.pmk63
-rw-r--r--cppu/util/uno_purpenvhelperC52.map9
-rw-r--r--cppu/util/uno_purpenvhelpergcc3.map8
-rw-r--r--cppu/util/uno_purpenvhelperwntgcc.map8
-rw-r--r--cppu/util/unsafe_os2.map7
-rw-r--r--cppuhelper/inc/cppuhelper/access_control.hxx127
-rw-r--r--cppuhelper/inc/cppuhelper/basemutex.hxx52
-rw-r--r--cppuhelper/inc/cppuhelper/bootstrap.hxx226
-rw-r--r--cppuhelper/inc/cppuhelper/compbase.hxx118
-rw-r--r--cppuhelper/inc/cppuhelper/compbase1.hxx140
-rw-r--r--cppuhelper/inc/cppuhelper/compbase10.hxx140
-rw-r--r--cppuhelper/inc/cppuhelper/compbase11.hxx140
-rw-r--r--cppuhelper/inc/cppuhelper/compbase12.hxx140
-rw-r--r--cppuhelper/inc/cppuhelper/compbase2.hxx140
-rw-r--r--cppuhelper/inc/cppuhelper/compbase3.hxx140
-rw-r--r--cppuhelper/inc/cppuhelper/compbase4.hxx140
-rw-r--r--cppuhelper/inc/cppuhelper/compbase5.hxx140
-rw-r--r--cppuhelper/inc/cppuhelper/compbase6.hxx140
-rw-r--r--cppuhelper/inc/cppuhelper/compbase7.hxx140
-rw-r--r--cppuhelper/inc/cppuhelper/compbase8.hxx140
-rw-r--r--cppuhelper/inc/cppuhelper/compbase9.hxx139
-rw-r--r--cppuhelper/inc/cppuhelper/compbase_ex.hxx179
-rw-r--r--cppuhelper/inc/cppuhelper/component.hxx121
-rw-r--r--cppuhelper/inc/cppuhelper/component_context.hxx99
-rw-r--r--cppuhelper/inc/cppuhelper/exc_hlp.hxx100
-rw-r--r--cppuhelper/inc/cppuhelper/factory.hxx278
-rw-r--r--cppuhelper/inc/cppuhelper/findsofficepath.h48
-rw-r--r--cppuhelper/inc/cppuhelper/implbase.hxx300
-rw-r--r--cppuhelper/inc/cppuhelper/implbase1.hxx302
-rw-r--r--cppuhelper/inc/cppuhelper/implbase10.hxx303
-rw-r--r--cppuhelper/inc/cppuhelper/implbase11.hxx304
-rw-r--r--cppuhelper/inc/cppuhelper/implbase12.hxx305
-rw-r--r--cppuhelper/inc/cppuhelper/implbase2.hxx294
-rw-r--r--cppuhelper/inc/cppuhelper/implbase3.hxx296
-rw-r--r--cppuhelper/inc/cppuhelper/implbase4.hxx297
-rw-r--r--cppuhelper/inc/cppuhelper/implbase5.hxx298
-rw-r--r--cppuhelper/inc/cppuhelper/implbase6.hxx299
-rw-r--r--cppuhelper/inc/cppuhelper/implbase7.hxx301
-rw-r--r--cppuhelper/inc/cppuhelper/implbase8.hxx301
-rw-r--r--cppuhelper/inc/cppuhelper/implbase9.hxx303
-rw-r--r--cppuhelper/inc/cppuhelper/implbase_ex.hxx177
-rw-r--r--cppuhelper/inc/cppuhelper/implbase_ex_post.hxx234
-rw-r--r--cppuhelper/inc/cppuhelper/implbase_ex_pre.hxx39
-rw-r--r--cppuhelper/inc/cppuhelper/implementationentry.hxx114
-rw-r--r--cppuhelper/inc/cppuhelper/interfacecontainer.h619
-rw-r--r--cppuhelper/inc/cppuhelper/interfacecontainer.hxx204
-rw-r--r--cppuhelper/inc/cppuhelper/propertysetmixin.hxx491
-rw-r--r--cppuhelper/inc/cppuhelper/propshlp.hxx642
-rw-r--r--cppuhelper/inc/cppuhelper/proptypehlp.h79
-rw-r--r--cppuhelper/inc/cppuhelper/proptypehlp.hxx532
-rw-r--r--cppuhelper/inc/cppuhelper/queryinterface.hxx543
-rw-r--r--cppuhelper/inc/cppuhelper/servicefactory.hxx124
-rw-r--r--cppuhelper/inc/cppuhelper/shlib.hxx85
-rw-r--r--cppuhelper/inc/cppuhelper/stdidlclass.hxx392
-rw-r--r--cppuhelper/inc/cppuhelper/typeprovider.hxx245
-rw-r--r--cppuhelper/inc/cppuhelper/unourl.hxx195
-rw-r--r--cppuhelper/inc/cppuhelper/weak.hxx172
-rw-r--r--cppuhelper/inc/cppuhelper/weakagg.hxx114
-rw-r--r--cppuhelper/inc/cppuhelper/weakref.hxx172
-rw-r--r--cppuhelper/inc/makefile.mk47
-rw-r--r--cppuhelper/inc/pch/precompiled_cppuhelper.cxx31
-rw-r--r--cppuhelper/inc/pch/precompiled_cppuhelper.hxx34
-rw-r--r--cppuhelper/prj/build.lst6
-rw-r--r--cppuhelper/prj/d.lst74
-rw-r--r--cppuhelper/qa/ifcontainer/cppu_ifcontainer.cxx286
-rw-r--r--cppuhelper/qa/ifcontainer/export.map7
-rw-r--r--cppuhelper/qa/ifcontainer/makefile.mk61
-rw-r--r--cppuhelper/qa/propertysetmixin/JavaSupplier.java322
-rw-r--r--cppuhelper/qa/propertysetmixin/comp_propertysetmixin.cxx439
-rw-r--r--cppuhelper/qa/propertysetmixin/makefile.mk125
-rw-r--r--cppuhelper/qa/propertysetmixin/manifest2
-rw-r--r--cppuhelper/qa/propertysetmixin/test.map34
-rw-r--r--cppuhelper/qa/propertysetmixin/test_propertysetmixin.cxx683
-rw-r--r--cppuhelper/qa/propertysetmixin/types.idl85
-rw-r--r--cppuhelper/qa/sce/test_unourl.sce1
-rw-r--r--cppuhelper/qa/unourl/cppu_unourl.cxx483
-rw-r--r--cppuhelper/qa/unourl/export.map7
-rw-r--r--cppuhelper/qa/unourl/makefile.mk61
-rw-r--r--cppuhelper/qa/weak/makefile.mk53
-rw-r--r--cppuhelper/qa/weak/test_weak.cxx112
-rw-r--r--cppuhelper/qa/weak/version.map34
-rw-r--r--cppuhelper/source/access_control.cxx152
-rw-r--r--cppuhelper/source/bootstrap.cxx667
-rwxr-xr-xcppuhelper/source/cc5_solaris_sparc.map389
-rw-r--r--cppuhelper/source/component.cxx250
-rw-r--r--cppuhelper/source/component_context.cxx902
-rw-r--r--cppuhelper/source/exc_thrower.cxx301
-rw-r--r--cppuhelper/source/factory.cxx1138
-rw-r--r--cppuhelper/source/findsofficepath.c208
-rw-r--r--cppuhelper/source/gcc3.map384
-rw-r--r--cppuhelper/source/gcc3os2.map377
-rw-r--r--cppuhelper/source/implbase.cxx474
-rw-r--r--cppuhelper/source/implbase_ex.cxx472
-rw-r--r--cppuhelper/source/implementationentry.cxx105
-rw-r--r--cppuhelper/source/interfacecontainer.cxx730
-rw-r--r--cppuhelper/source/macro_expander.cxx201
-rw-r--r--cppuhelper/source/macro_expander.hxx63
-rw-r--r--cppuhelper/source/makefile.mk192
-rw-r--r--cppuhelper/source/msvc_win32_intel.map280
-rw-r--r--cppuhelper/source/propertysetmixin.cxx1431
-rw-r--r--cppuhelper/source/propshlp.cxx1243
-rw-r--r--cppuhelper/source/servicefactory.cxx663
-rw-r--r--cppuhelper/source/shlib.cxx612
-rw-r--r--cppuhelper/source/stdidlclass.cxx262
-rw-r--r--cppuhelper/source/tdmgr.cxx764
-rw-r--r--cppuhelper/source/typeprovider.cxx328
-rw-r--r--cppuhelper/source/unorc30
-rw-r--r--cppuhelper/source/unourl.cxx301
-rw-r--r--cppuhelper/source/weak.cxx541
-rw-r--r--cppuhelper/test/bootstrap/TestEnv.cxx130
-rw-r--r--cppuhelper/test/bootstrap/TestEnv.def8
-rw-r--r--cppuhelper/test/bootstrap/bootstrap.test.cxx323
-rw-r--r--cppuhelper/test/bootstrap/makefile.mk61
-rw-r--r--cppuhelper/test/cfg_data/instance/uno/components.xml76
-rw-r--r--cppuhelper/test/cfg_data/template/uno/components.xml24
-rw-r--r--cppuhelper/test/cfg_test.cxx306
-rw-r--r--cppuhelper/test/helpertest.idl84
-rw-r--r--cppuhelper/test/loader/loader.test.cxx208
-rw-r--r--cppuhelper/test/loader/makefile.mk59
-rw-r--r--cppuhelper/test/makefile.mk168
-rw-r--r--cppuhelper/test/testcmp/TestComponent.cxx250
-rw-r--r--cppuhelper/test/testcmp/TestComponent.hxx59
-rwxr-xr-xcppuhelper/test/testcmp/TestComponent.uno.def11
-rw-r--r--cppuhelper/test/testcmp/makefile.mk49
-rw-r--r--cppuhelper/test/testcontainer.cxx156
-rw-r--r--cppuhelper/test/testdefaultbootstrapping.cxx87
-rw-r--r--cppuhelper/test/testdefaultbootstrapping.pl277
-rw-r--r--cppuhelper/test/testhelper.cxx107
-rw-r--r--cppuhelper/test/testhelper.hxx34
-rw-r--r--cppuhelper/test/testidlclass.cxx230
-rw-r--r--cppuhelper/test/testimplhelper.cxx583
-rw-r--r--cppuhelper/test/testlib/UNO.pm68
-rwxr-xr-xcppuhelper/test/testlib/defbootstrap.map8
-rw-r--r--cppuhelper/test/testlib/defbootstrap_lib.cxx120
-rwxr-xr-xcppuhelper/test/testlib/makefile.mk103
-rw-r--r--cppuhelper/test/testpropshlp.cxx1184
-rw-r--r--cppuhelper/test/testproptyphlp.cxx87
-rw-r--r--cppuhelper/unotypes/cppuhelper/detail/XExceptionThrower.idl47
-rw-r--r--cppuhelper/unotypes/makefile.mk52
-rw-r--r--cppunit/aix.patch21
-rw-r--r--cppunit/ldflags.patch10
-rw-r--r--cppunit/makefile.mk196
-rw-r--r--cppunit/ooo-DllPlugInTester.mk50
-rw-r--r--cppunit/ooo-cppunit_dll.mk100
-rw-r--r--cppunit/prj/build.lst2
-rw-r--r--cppunit/prj/d.lst35
-rw-r--r--cppunit/solarisfinite.patch14
-rw-r--r--cppunit/warnings.patch22
-rw-r--r--cppunit/windows.patch12
-rw-r--r--cpputools/prj/build.lst8
-rw-r--r--cpputools/prj/d.lst12
-rwxr-xr-xcpputools/source/regcomplazy/makefile.mk54
-rw-r--r--cpputools/source/regcomplazy/regcomplazy.cxx285
-rw-r--r--cpputools/source/registercomponent/makefile.mk75
-rw-r--r--cpputools/source/registercomponent/registercomponent.cxx848
-rw-r--r--cpputools/source/regsingleton/makefile.mk79
-rw-r--r--cpputools/source/regsingleton/regsingleton.cxx176
-rw-r--r--cpputools/source/sp2bv/makefile.mk56
-rw-r--r--cpputools/source/sp2bv/readme.txt10
-rw-r--r--cpputools/source/sp2bv/sp2bv.cxx143
-rw-r--r--cpputools/source/unoexe/makefile.mk91
-rw-r--r--cpputools/source/unoexe/unoexe.cxx901
-rwxr-xr-xcrashrep/prj/build.lst5
-rwxr-xr-xcrashrep/prj/d.lst3
-rw-r--r--crashrep/source/all/crashrep.ulf220
-rw-r--r--crashrep/source/all/makefile.mk49
-rw-r--r--crashrep/source/unx/main.cxx1125
-rwxr-xr-xcrashrep/source/unx/makefile.mk74
-rw-r--r--crashrep/source/win32/base64.cpp86
-rw-r--r--crashrep/source/win32/base64.h47
-rwxr-xr-xcrashrep/source/win32/ctrylnglist.txt29
-rwxr-xr-xcrashrep/source/win32/makefile.mk89
-rwxr-xr-xcrashrep/source/win32/rcfooter.txt1
-rwxr-xr-xcrashrep/source/win32/rcheader.txt92
-rwxr-xr-xcrashrep/source/win32/rctemplate.txt192
-rw-r--r--crashrep/source/win32/resource.h123
-rw-r--r--crashrep/source/win32/soreport.cpp2984
-rw-r--r--cui/inc/makefile.mk48
-rw-r--r--cui/inc/pch/precompiled_cui.cxx31
-rw-r--r--cui/inc/pch/precompiled_cui.hxx964
-rw-r--r--cui/prj/build.lst9
-rwxr-xr-xcui/prj/d.lst8
-rw-r--r--cui/source/customize/acccfg.cxx1717
-rw-r--r--cui/source/customize/acccfg.hrc75
-rw-r--r--cui/source/customize/acccfg.src357
-rw-r--r--cui/source/customize/cfg.cxx6049
-rw-r--r--cui/source/customize/cfg.hrc105
-rw-r--r--cui/source/customize/cfg.src872
-rw-r--r--cui/source/customize/cfgutil.cxx1801
-rw-r--r--cui/source/customize/eventdlg.cxx249
-rw-r--r--cui/source/customize/eventdlg.hrc43
-rw-r--r--cui/source/customize/eventdlg.hxx80
-rw-r--r--cui/source/customize/eventdlg.src111
-rw-r--r--cui/source/customize/macropg.cxx1057
-rw-r--r--cui/source/customize/macropg.hrc101
-rw-r--r--cui/source/customize/macropg.src485
-rw-r--r--cui/source/customize/macropg_impl.hxx76
-rw-r--r--cui/source/customize/makefile.mk63
-rw-r--r--cui/source/customize/selector.cxx1256
-rw-r--r--cui/source/customize/selector.hrc57
-rw-r--r--cui/source/customize/selector.src212
-rw-r--r--cui/source/dialogs/SpellAttrib.cxx174
-rw-r--r--cui/source/dialogs/SpellAttrib.hxx176
-rw-r--r--cui/source/dialogs/SpellDialog.cxx2155
-rw-r--r--cui/source/dialogs/SpellDialog.hrc55
-rw-r--r--cui/source/dialogs/SpellDialog.src242
-rw-r--r--cui/source/dialogs/charmap.hrc51
-rw-r--r--cui/source/dialogs/charmap.src159
-rw-r--r--cui/source/dialogs/commonlingui.cxx293
-rw-r--r--cui/source/dialogs/commonlingui.hxx172
-rw-r--r--cui/source/dialogs/commonlingui.src153
-rw-r--r--cui/source/dialogs/cuicharmap.cxx592
-rw-r--r--cui/source/dialogs/cuifmsearch.cxx967
-rw-r--r--cui/source/dialogs/cuigaldlg.cxx1272
-rw-r--r--cui/source/dialogs/cuigrfflt.cxx485
-rw-r--r--cui/source/dialogs/cuihyperdlg.cxx418
-rw-r--r--cui/source/dialogs/cuiimapdlg.hrc44
-rw-r--r--cui/source/dialogs/cuiimapdlg.src148
-rw-r--r--cui/source/dialogs/cuiimapwnd.cxx100
-rw-r--r--cui/source/dialogs/cuitbxform.cxx68
-rw-r--r--cui/source/dialogs/dlgname.cxx235
-rw-r--r--cui/source/dialogs/dlgname.hrc46
-rw-r--r--cui/source/dialogs/dlgname.src269
-rw-r--r--cui/source/dialogs/fmsearch.hrc86
-rw-r--r--cui/source/dialogs/fmsearch.src329
-rw-r--r--cui/source/dialogs/gallery.src479
-rw-r--r--cui/source/dialogs/grfflt.hrc80
-rw-r--r--cui/source/dialogs/grfflt.src454
-rw-r--r--cui/source/dialogs/hangulhanjadlg.cxx1913
-rw-r--r--cui/source/dialogs/hangulhanjadlg.hrc197
-rw-r--r--cui/source/dialogs/hangulhanjadlg.src428
-rw-r--r--cui/source/dialogs/hldocntp.cxx520
-rw-r--r--cui/source/dialogs/hldoctp.cxx377
-rw-r--r--cui/source/dialogs/hlinettp.cxx547
-rw-r--r--cui/source/dialogs/hlmailtp.cxx363
-rw-r--r--cui/source/dialogs/hlmarkwn.cxx545
-rw-r--r--cui/source/dialogs/hlmarkwn.hrc34
-rw-r--r--cui/source/dialogs/hlmarkwn.src95
-rw-r--r--cui/source/dialogs/hltpbase.cxx749
-rw-r--r--cui/source/dialogs/hyperdlg.hrc100
-rw-r--r--cui/source/dialogs/hyperdlg.src968
-rw-r--r--cui/source/dialogs/hyphen.cxx659
-rwxr-xr-xcui/source/dialogs/hyphen.hrc46
-rwxr-xr-xcui/source/dialogs/hyphen.src126
-rw-r--r--cui/source/dialogs/iconcdlg.cxx1438
-rw-r--r--cui/source/dialogs/iconcdlg.src60
-rw-r--r--cui/source/dialogs/insdlg.cxx1059
-rw-r--r--cui/source/dialogs/insrc.cxx84
-rw-r--r--cui/source/dialogs/insrc.hrc40
-rw-r--r--cui/source/dialogs/insrc.src115
-rw-r--r--cui/source/dialogs/linkdlg.cxx717
-rwxr-xr-xcui/source/dialogs/makefile.mk120
-rw-r--r--cui/source/dialogs/multifil.cxx186
-rw-r--r--cui/source/dialogs/multipat.cxx362
-rw-r--r--cui/source/dialogs/multipat.hrc44
-rw-r--r--cui/source/dialogs/multipat.src150
-rw-r--r--cui/source/dialogs/newtabledlg.cxx74
-rw-r--r--cui/source/dialogs/newtabledlg.hrc35
-rw-r--r--cui/source/dialogs/newtabledlg.src135
-rw-r--r--cui/source/dialogs/passwdomdlg.cxx345
-rwxr-xr-xcui/source/dialogs/passwdomdlg.hrc61
-rwxr-xr-xcui/source/dialogs/passwdomdlg.src228
-rw-r--r--cui/source/dialogs/pastedlg.cxx309
-rw-r--r--cui/source/dialogs/plfilter.cxx128
-rw-r--r--cui/source/dialogs/postdlg.cxx261
-rw-r--r--cui/source/dialogs/postdlg.hrc51
-rw-r--r--cui/source/dialogs/postdlg.src157
-rw-r--r--cui/source/dialogs/scriptdlg.cxx1694
-rw-r--r--cui/source/dialogs/scriptdlg.hrc80
-rw-r--r--cui/source/dialogs/scriptdlg.src307
-rw-r--r--cui/source/dialogs/sdrcelldlg.cxx104
-rw-r--r--cui/source/dialogs/sdrcelldlg.src141
-rw-r--r--cui/source/dialogs/showcols.cxx136
-rw-r--r--cui/source/dialogs/showcols.src102
-rw-r--r--cui/source/dialogs/splitcelldlg.cxx114
-rw-r--r--cui/source/dialogs/splitcelldlg.hrc42
-rw-r--r--cui/source/dialogs/splitcelldlg.src132
-rw-r--r--cui/source/dialogs/srchxtra.cxx291
-rw-r--r--cui/source/dialogs/srchxtra.hrc51
-rw-r--r--cui/source/dialogs/srchxtra.src279
-rw-r--r--cui/source/dialogs/svuidlg.hrc134
-rw-r--r--cui/source/dialogs/svuidlg.src708
-rw-r--r--cui/source/dialogs/tbxform.src64
-rw-r--r--cui/source/dialogs/thesdlg.cxx782
-rwxr-xr-xcui/source/dialogs/thesdlg.hrc52
-rwxr-xr-xcui/source/dialogs/thesdlg.src146
-rw-r--r--cui/source/dialogs/thesdlg_impl.hxx229
-rw-r--r--cui/source/dialogs/winpluginlib.cpp229
-rw-r--r--cui/source/dialogs/zoom.cxx536
-rw-r--r--cui/source/dialogs/zoom.hrc53
-rw-r--r--cui/source/dialogs/zoom.src157
-rw-r--r--cui/source/factory/cuiexp.cxx54
-rw-r--r--cui/source/factory/cuiresmgr.cxx53
-rw-r--r--cui/source/factory/dlgfact.cxx1981
-rw-r--r--cui/source/factory/dlgfact.hxx819
-rw-r--r--cui/source/factory/init.cxx56
-rw-r--r--cui/source/factory/makefile.mk52
-rw-r--r--cui/source/inc/ControlFocusHelper.hxx51
-rw-r--r--cui/source/inc/SpellDialog.hxx265
-rw-r--r--cui/source/inc/acccfg.hxx285
-rw-r--r--cui/source/inc/align.hxx106
-rw-r--r--cui/source/inc/autocdlg.hxx519
-rw-r--r--cui/source/inc/backgrnd.hxx168
-rw-r--r--cui/source/inc/bbdlg.hxx58
-rw-r--r--cui/source/inc/border.hxx158
-rw-r--r--cui/source/inc/cfg.hxx836
-rw-r--r--cui/source/inc/cfgutil.hxx219
-rw-r--r--cui/source/inc/chardlg.hxx399
-rw-r--r--cui/source/inc/connect.hxx120
-rw-r--r--cui/source/inc/cuicharmap.hxx146
-rw-r--r--cui/source/inc/cuifmsearch.hxx222
-rw-r--r--cui/source/inc/cuigaldlg.hxx375
-rw-r--r--cui/source/inc/cuigrfflt.hxx254
-rw-r--r--cui/source/inc/cuihyperdlg.hxx117
-rw-r--r--cui/source/inc/cuiimapwnd.hxx57
-rw-r--r--cui/source/inc/cuioptgenrl.hxx129
-rwxr-xr-xcui/source/inc/cuires.hrc439
-rw-r--r--cui/source/inc/cuisrchdlg.hxx76
-rw-r--r--cui/source/inc/cuitabarea.hxx804
-rw-r--r--cui/source/inc/cuitabline.hxx432
-rw-r--r--cui/source/inc/cuitbxform.hxx30
-rw-r--r--cui/source/inc/dbregister.hxx161
-rw-r--r--cui/source/inc/defdlgname.hxx43
-rw-r--r--cui/source/inc/dialmgr.hxx50
-rw-r--r--cui/source/inc/dlgname.hxx198
-rw-r--r--cui/source/inc/dstribut.hxx127
-rw-r--r--cui/source/inc/gallery.hrc101
-rw-r--r--cui/source/inc/grfpage.hxx137
-rw-r--r--cui/source/inc/hangulhanjadlg.hxx353
-rw-r--r--cui/source/inc/headertablistbox.hxx71
-rwxr-xr-xcui/source/inc/helpid.hrc400
-rw-r--r--cui/source/inc/hldocntp.hxx81
-rw-r--r--cui/source/inc/hldoctp.hxx96
-rw-r--r--cui/source/inc/hlinettp.hxx110
-rw-r--r--cui/source/inc/hlmailtp.hxx80
-rw-r--r--cui/source/inc/hlmarkwn.hxx112
-rw-r--r--cui/source/inc/hlmarkwn_def.hxx38
-rw-r--r--cui/source/inc/hltpbase.hxx210
-rw-r--r--cui/source/inc/hyphen.hxx74
-rw-r--r--cui/source/inc/iconcdlg.hxx289
-rw-r--r--cui/source/inc/insdlg.hxx216
-rw-r--r--cui/source/inc/insrc.hxx71
-rw-r--r--cui/source/inc/internationaloptions.hxx60
-rw-r--r--cui/source/inc/labdlg.hxx140
-rw-r--r--cui/source/inc/linkdlg.hxx135
-rw-r--r--cui/source/inc/macroass.hxx146
-rw-r--r--cui/source/inc/macropg.hxx176
-rw-r--r--cui/source/inc/measure.hxx129
-rw-r--r--cui/source/inc/multifil.hxx61
-rw-r--r--cui/source/inc/multipat.hxx89
-rw-r--r--cui/source/inc/newtabledlg.hxx64
-rw-r--r--cui/source/inc/numfmt.hxx193
-rw-r--r--cui/source/inc/numpages.hxx463
-rw-r--r--cui/source/inc/optasian.hxx81
-rw-r--r--cui/source/inc/optdict.hxx188
-rw-r--r--cui/source/inc/optimprove.hxx140
-rw-r--r--cui/source/inc/optlingu.hxx183
-rw-r--r--cui/source/inc/optpath.hxx112
-rw-r--r--cui/source/inc/page.hxx240
-rw-r--r--cui/source/inc/paragrph.hxx329
-rw-r--r--cui/source/inc/passwdomdlg.hxx64
-rw-r--r--cui/source/inc/pastedlg.hxx96
-rw-r--r--cui/source/inc/postdlg.hxx122
-rw-r--r--cui/source/inc/radiobtnbox.hxx64
-rw-r--r--cui/source/inc/scriptdlg.hxx251
-rw-r--r--cui/source/inc/sdrcelldlg.hxx65
-rw-r--r--cui/source/inc/selector.hxx249
-rw-r--r--cui/source/inc/showcols.hxx66
-rw-r--r--cui/source/inc/splitcelldlg.hxx72
-rw-r--r--cui/source/inc/srchxtra.hxx110
-rw-r--r--cui/source/inc/tabstpge.hxx161
-rw-r--r--cui/source/inc/textanim.hxx130
-rw-r--r--cui/source/inc/textattr.hxx116
-rw-r--r--cui/source/inc/thesdlg.hxx63
-rw-r--r--cui/source/inc/transfrm.hxx305
-rw-r--r--cui/source/inc/treeopt.hxx361
-rw-r--r--cui/source/inc/zoom.hxx97
-rw-r--r--cui/source/options/cfgchart.cxx327
-rw-r--r--cui/source/options/cfgchart.hxx118
-rw-r--r--cui/source/options/connpoolconfig.cxx225
-rw-r--r--cui/source/options/connpoolconfig.hxx56
-rw-r--r--cui/source/options/connpooloptions.cxx509
-rw-r--r--cui/source/options/connpooloptions.hrc49
-rw-r--r--cui/source/options/connpooloptions.hxx94
-rw-r--r--cui/source/options/connpooloptions.src166
-rw-r--r--cui/source/options/connpoolsettings.cxx122
-rw-r--r--cui/source/options/connpoolsettings.hxx110
-rw-r--r--cui/source/options/cuisrchdlg.cxx103
-rw-r--r--cui/source/options/dbregister.cxx526
-rw-r--r--cui/source/options/dbregister.hrc42
-rw-r--r--cui/source/options/dbregister.src90
-rw-r--r--cui/source/options/dbregisterednamesconfig.cxx145
-rw-r--r--cui/source/options/dbregisterednamesconfig.hxx56
-rw-r--r--cui/source/options/dbregistersettings.cxx78
-rw-r--r--cui/source/options/dbregistersettings.hxx97
-rw-r--r--cui/source/options/doclinkdialog.cxx226
-rw-r--r--cui/source/options/doclinkdialog.hrc50
-rw-r--r--cui/source/options/doclinkdialog.hxx93
-rw-r--r--cui/source/options/doclinkdialog.src151
-rw-r--r--cui/source/options/fontsubs.cxx613
-rw-r--r--cui/source/options/fontsubs.hrc62
-rw-r--r--cui/source/options/fontsubs.hxx136
-rw-r--r--cui/source/options/fontsubs.src196
-rw-r--r--cui/source/options/internationaloptions.cxx166
-rw-r--r--cui/source/options/internationaloptions.hrc72
-rw-r--r--cui/source/options/internationaloptions.src103
-rw-r--r--cui/source/options/makefile.mk118
-rw-r--r--cui/source/options/optHeaderTabListbox.cxx90
-rw-r--r--cui/source/options/optHeaderTabListbox.hxx47
-rw-r--r--cui/source/options/optaccessibility.cxx188
-rw-r--r--cui/source/options/optaccessibility.hrc84
-rw-r--r--cui/source/options/optaccessibility.hxx67
-rw-r--r--cui/source/options/optaccessibility.src152
-rw-r--r--cui/source/options/optasian.cxx470
-rw-r--r--cui/source/options/optasian.hrc49
-rw-r--r--cui/source/options/optasian.src174
-rw-r--r--cui/source/options/optchart.cxx238
-rw-r--r--cui/source/options/optchart.hrc37
-rw-r--r--cui/source/options/optchart.hxx89
-rw-r--r--cui/source/options/optchart.src83
-rw-r--r--cui/source/options/optcolor.cxx1582
-rw-r--r--cui/source/options/optcolor.hrc219
-rw-r--r--cui/source/options/optcolor.hxx83
-rw-r--r--cui/source/options/optcolor.src549
-rw-r--r--cui/source/options/optctl.cxx172
-rw-r--r--cui/source/options/optctl.hrc58
-rw-r--r--cui/source/options/optctl.hxx70
-rw-r--r--cui/source/options/optctl.src116
-rw-r--r--cui/source/options/optdict.cxx805
-rw-r--r--cui/source/options/optdict.hrc65
-rw-r--r--cui/source/options/optdict.src279
-rw-r--r--cui/source/options/optfltr.cxx451
-rw-r--r--cui/source/options/optfltr.hrc56
-rw-r--r--cui/source/options/optfltr.hxx115
-rw-r--r--cui/source/options/optfltr.src208
-rw-r--r--cui/source/options/optgdlg.cxx2011
-rw-r--r--cui/source/options/optgdlg.hrc219
-rw-r--r--cui/source/options/optgdlg.hxx226
-rw-r--r--cui/source/options/optgdlg.src662
-rw-r--r--cui/source/options/optgenrl.cxx583
-rw-r--r--cui/source/options/optgenrl.hrc85
-rw-r--r--cui/source/options/optgenrl.src312
-rw-r--r--cui/source/options/opthtml.cxx269
-rw-r--r--cui/source/options/opthtml.hrc63
-rw-r--r--cui/source/options/opthtml.hxx91
-rw-r--r--cui/source/options/opthtml.src287
-rw-r--r--cui/source/options/optimprove.cxx229
-rw-r--r--cui/source/options/optimprove.hrc50
-rw-r--r--cui/source/options/optimprove.src121
-rw-r--r--cui/source/options/optimprove2.cxx271
-rw-r--r--cui/source/options/optinet2.cxx2129
-rwxr-xr-xcui/source/options/optinet2.hrc171
-rw-r--r--cui/source/options/optinet2.hxx342
-rwxr-xr-xcui/source/options/optinet2.src613
-rw-r--r--cui/source/options/optjava.cxx1137
-rw-r--r--cui/source/options/optjava.hrc83
-rw-r--r--cui/source/options/optjava.hxx216
-rw-r--r--cui/source/options/optjava.src287
-rw-r--r--cui/source/options/optjsearch.cxx384
-rw-r--r--cui/source/options/optjsearch.hrc50
-rw-r--r--cui/source/options/optjsearch.hxx93
-rw-r--r--cui/source/options/optjsearch.src220
-rw-r--r--cui/source/options/optlingu.cxx2556
-rw-r--r--cui/source/options/optlingu.hrc88
-rw-r--r--cui/source/options/optlingu.src354
-rw-r--r--cui/source/options/optmemory.cxx273
-rw-r--r--cui/source/options/optmemory.hrc86
-rw-r--r--cui/source/options/optmemory.hxx92
-rw-r--r--cui/source/options/optmemory.src207
-rw-r--r--cui/source/options/optpath.cxx864
-rw-r--r--cui/source/options/optpath.hrc43
-rw-r--r--cui/source/options/optpath.src200
-rw-r--r--cui/source/options/optsave.cxx829
-rw-r--r--cui/source/options/optsave.hrc81
-rw-r--r--cui/source/options/optsave.hxx107
-rw-r--r--cui/source/options/optsave.src322
-rw-r--r--cui/source/options/optspell.hrc42
-rw-r--r--cui/source/options/optspell.src125
-rw-r--r--cui/source/options/optupdt.cxx414
-rw-r--r--cui/source/options/optupdt.hrc49
-rw-r--r--cui/source/options/optupdt.hxx81
-rw-r--r--cui/source/options/optupdt.src111
-rw-r--r--cui/source/options/radiobtnbox.cxx117
-rw-r--r--cui/source/options/readonlyimage.cxx84
-rw-r--r--cui/source/options/readonlyimage.hxx45
-rw-r--r--cui/source/options/readonlyimage.src52
-rw-r--r--cui/source/options/sdbcdriverenum.cxx131
-rw-r--r--cui/source/options/sdbcdriverenum.hxx78
-rw-r--r--cui/source/options/securityoptions.cxx106
-rw-r--r--cui/source/options/securityoptions.hrc80
-rw-r--r--cui/source/options/securityoptions.hxx93
-rw-r--r--cui/source/options/securityoptions.src165
-rw-r--r--cui/source/options/treeopt.cxx2881
-rw-r--r--cui/source/options/treeopt.hrc100
-rw-r--r--cui/source/options/treeopt.src353
-rw-r--r--cui/source/options/webconninfo.cxx377
-rw-r--r--cui/source/options/webconninfo.hrc62
-rw-r--r--cui/source/options/webconninfo.hxx87
-rw-r--r--cui/source/options/webconninfo.src103
-rw-r--r--cui/source/tabpages/align.cxx400
-rw-r--r--cui/source/tabpages/align.hrc87
-rw-r--r--cui/source/tabpages/align.src251
-rw-r--r--cui/source/tabpages/autocdlg.cxx2872
-rw-r--r--cui/source/tabpages/autocdlg.hrc160
-rw-r--r--cui/source/tabpages/autocdlg.src868
-rw-r--r--cui/source/tabpages/backgrnd.cxx1980
-rw-r--r--cui/source/tabpages/backgrnd.hrc70
-rw-r--r--cui/source/tabpages/backgrnd.src306
-rw-r--r--cui/source/tabpages/bbdlg.cxx74
-rw-r--r--cui/source/tabpages/bbdlg.src85
-rw-r--r--cui/source/tabpages/border.cxx1286
-rw-r--r--cui/source/tabpages/border.hrc106
-rw-r--r--cui/source/tabpages/border.src428
-rw-r--r--cui/source/tabpages/borderconn.cxx313
-rw-r--r--cui/source/tabpages/borderconn.hxx78
-rw-r--r--cui/source/tabpages/chardlg.cxx4066
-rw-r--r--cui/source/tabpages/chardlg.h73
-rw-r--r--cui/source/tabpages/chardlg.hrc181
-rw-r--r--cui/source/tabpages/chardlg.src1125
-rw-r--r--cui/source/tabpages/connect.cxx566
-rw-r--r--cui/source/tabpages/connect.hrc45
-rw-r--r--cui/source/tabpages/connect.src267
-rw-r--r--cui/source/tabpages/dstribut.cxx246
-rw-r--r--cui/source/tabpages/dstribut.hrc55
-rw-r--r--cui/source/tabpages/dstribut.src291
-rw-r--r--cui/source/tabpages/frmdirlbox.src93
-rw-r--r--cui/source/tabpages/grfpage.cxx837
-rw-r--r--cui/source/tabpages/grfpage.hrc53
-rw-r--r--cui/source/tabpages/grfpage.src332
-rw-r--r--cui/source/tabpages/labdlg.cxx652
-rw-r--r--cui/source/tabpages/labdlg.hrc77
-rw-r--r--cui/source/tabpages/labdlg.src298
-rw-r--r--cui/source/tabpages/macroass.cxx718
-rw-r--r--cui/source/tabpages/macroass.hrc82
-rw-r--r--cui/source/tabpages/macroass.src142
-rw-r--r--cui/source/tabpages/makefile.mk110
-rw-r--r--cui/source/tabpages/measure.cxx876
-rw-r--r--cui/source/tabpages/measure.hrc53
-rw-r--r--cui/source/tabpages/measure.src309
-rw-r--r--cui/source/tabpages/numfmt.cxx1953
-rw-r--r--cui/source/tabpages/numfmt.hrc74
-rw-r--r--cui/source/tabpages/numfmt.src294
-rw-r--r--cui/source/tabpages/numpages.cxx3972
-rw-r--r--cui/source/tabpages/numpages.hrc132
-rw-r--r--cui/source/tabpages/numpages.src811
-rw-r--r--cui/source/tabpages/page.cxx1774
-rw-r--r--cui/source/tabpages/page.h73
-rw-r--r--cui/source/tabpages/page.hrc84
-rw-r--r--cui/source/tabpages/page.src504
-rw-r--r--cui/source/tabpages/paragrph.cxx2344
-rw-r--r--cui/source/tabpages/paragrph.hrc121
-rw-r--r--cui/source/tabpages/paragrph.src732
-rw-r--r--cui/source/tabpages/strings.src178
-rw-r--r--cui/source/tabpages/swpossizetabpage.cxx1974
-rw-r--r--cui/source/tabpages/swpossizetabpage.hrc59
-rw-r--r--cui/source/tabpages/swpossizetabpage.hxx161
-rw-r--r--cui/source/tabpages/swpossizetabpage.src295
-rw-r--r--cui/source/tabpages/tabarea.cxx354
-rw-r--r--cui/source/tabpages/tabarea.hrc187
-rw-r--r--cui/source/tabpages/tabarea.src1539
-rw-r--r--cui/source/tabpages/tabline.cxx298
-rw-r--r--cui/source/tabpages/tabline.hrc106
-rw-r--r--cui/source/tabpages/tabline.src801
-rw-r--r--cui/source/tabpages/tabstpge.cxx746
-rw-r--r--cui/source/tabpages/tabstpge.hrc63
-rw-r--r--cui/source/tabpages/tabstpge.src231
-rw-r--r--cui/source/tabpages/textanim.cxx759
-rw-r--r--cui/source/tabpages/textanim.hrc47
-rw-r--r--cui/source/tabpages/textanim.src320
-rw-r--r--cui/source/tabpages/textattr.cxx799
-rw-r--r--cui/source/tabpages/textattr.hrc46
-rw-r--r--cui/source/tabpages/textattr.src244
-rw-r--r--cui/source/tabpages/tparea.cxx2522
-rw-r--r--cui/source/tabpages/tpbitmap.cxx1161
-rw-r--r--cui/source/tabpages/tpcolor.cxx1268
-rw-r--r--cui/source/tabpages/tpgradnt.cxx935
-rw-r--r--cui/source/tabpages/tphatch.cxx893
-rw-r--r--cui/source/tabpages/tpline.cxx1837
-rw-r--r--cui/source/tabpages/tplnedef.cxx1012
-rw-r--r--cui/source/tabpages/tplneend.cxx749
-rw-r--r--cui/source/tabpages/tpshadow.cxx613
-rw-r--r--cui/source/tabpages/transfrm.cxx1700
-rw-r--r--cui/source/tabpages/transfrm.hrc76
-rw-r--r--cui/source/tabpages/transfrm.src609
-rw-r--r--cui/util/cui.map7
-rw-r--r--cui/util/hidother.src204
-rw-r--r--cui/util/makefile.mk105
-rw-r--r--cui/util/makefile.pmk40
-rw-r--r--curl/curl-7.19.7.patch83
-rw-r--r--curl/curl-7.19.7_mingw.patch24
-rw-r--r--curl/curl-7.19.7_win.patch19
-rw-r--r--curl/curl-aix.patch21
-rw-r--r--curl/makefile.mk168
-rw-r--r--curl/prj/build.lst3
-rw-r--r--curl/prj/d.lst15
-rw-r--r--dbaccess/inc/AsyncronousLink.hxx73
-rw-r--r--dbaccess/inc/IController.hxx137
-rw-r--r--dbaccess/inc/IEnvironment.hxx80
-rw-r--r--dbaccess/inc/IReference.hxx46
-rw-r--r--dbaccess/inc/ToolBoxHelper.hxx89
-rw-r--r--dbaccess/inc/controllerframe.hxx87
-rw-r--r--dbaccess/inc/dataview.hxx96
-rw-r--r--dbaccess/inc/dbaccess_helpid.hrc475
-rw-r--r--dbaccess/inc/dbaccess_slotid.hrc114
-rw-r--r--dbaccess/inc/dbaccessdllapi.h45
-rw-r--r--dbaccess/inc/genericcontroller.hxx544
-rw-r--r--dbaccess/inc/makefile.mk47
-rw-r--r--dbaccess/inc/pch/precompiled_dbaccess.cxx31
-rw-r--r--dbaccess/inc/pch/precompiled_dbaccess.hxx521
-rw-r--r--dbaccess/inc/singledoccontroller.hxx236
-rw-r--r--dbaccess/prj/build.lst31
-rw-r--r--dbaccess/prj/d.lst53
-rw-r--r--dbaccess/prj/dba.xml97
-rw-r--r--dbaccess/prj/dbu.xml134
-rw-r--r--dbaccess/qa/complex/dbaccess/ApplicationController.java176
-rw-r--r--dbaccess/qa/complex/dbaccess/Beamer.java191
-rw-r--r--dbaccess/qa/complex/dbaccess/CRMBasedTestCase.java83
-rwxr-xr-xdbaccess/qa/complex/dbaccess/CopyTableInterActionHandler.java50
-rwxr-xr-xdbaccess/qa/complex/dbaccess/CopyTableWizard.java236
-rw-r--r--dbaccess/qa/complex/dbaccess/DataSource.java110
-rwxr-xr-xdbaccess/qa/complex/dbaccess/DatabaseApplication.java101
-rw-r--r--dbaccess/qa/complex/dbaccess/DatabaseDocument.java1034
-rw-r--r--dbaccess/qa/complex/dbaccess/FileHelper.java44
-rw-r--r--dbaccess/qa/complex/dbaccess/Parser.java208
-rw-r--r--dbaccess/qa/complex/dbaccess/PropertyBag.java294
-rw-r--r--dbaccess/qa/complex/dbaccess/Query.java126
-rw-r--r--dbaccess/qa/complex/dbaccess/QueryInQuery.java192
-rw-r--r--dbaccess/qa/complex/dbaccess/RowSet.java1026
-rw-r--r--dbaccess/qa/complex/dbaccess/RowSetEventListener.java111
-rwxr-xr-xdbaccess/qa/complex/dbaccess/SingleSelectQueryComposer.java395
-rw-r--r--dbaccess/qa/complex/dbaccess/TestCase.java126
-rw-r--r--dbaccess/qa/complex/dbaccess/UISettings.java152
-rw-r--r--dbaccess/qa/complex/dbaccess/dbaccess.sce12
-rwxr-xr-xdbaccess/qa/complex/dbaccess/makefile.mk78
-rw-r--r--dbaccess/qa/unoapi/Test.java52
-rw-r--r--dbaccess/qa/unoapi/dbaccess.props6
-rw-r--r--dbaccess/qa/unoapi/dbaccess.sce15
-rw-r--r--dbaccess/qa/unoapi/knownissues.xcl62
-rw-r--r--dbaccess/qa/unoapi/makefile.mk48
-rwxr-xr-xdbaccess/qa/unoapi/testdocuments/TestDB/testDB.dbfbin0 -> 949 bytes-rwxr-xr-xdbaccess/qa/unoapi/testdocuments/TestDB/testDB.dbtbin0 -> 512 bytes-rw-r--r--dbaccess/source/core/api/BookmarkSet.cxx269
-rw-r--r--dbaccess/source/core/api/BookmarkSet.hxx73
-rw-r--r--dbaccess/source/core/api/CIndexColumn.hxx60
-rw-r--r--dbaccess/source/core/api/CIndexes.cxx104
-rw-r--r--dbaccess/source/core/api/CIndexes.hxx59
-rw-r--r--dbaccess/source/core/api/CRowSetColumn.cxx105
-rw-r--r--dbaccess/source/core/api/CRowSetColumn.hxx61
-rw-r--r--dbaccess/source/core/api/CRowSetDataColumn.cxx274
-rw-r--r--dbaccess/source/core/api/CRowSetDataColumn.hxx112
-rw-r--r--dbaccess/source/core/api/CacheSet.cxx702
-rw-r--r--dbaccess/source/core/api/CacheSet.hxx159
-rw-r--r--dbaccess/source/core/api/FilteredContainer.cxx486
-rw-r--r--dbaccess/source/core/api/HelperCollections.cxx118
-rw-r--r--dbaccess/source/core/api/HelperCollections.hxx121
-rw-r--r--dbaccess/source/core/api/KeySet.cxx1652
-rw-r--r--dbaccess/source/core/api/KeySet.hxx225
-rw-r--r--dbaccess/source/core/api/OptimisticSet.cxx743
-rw-r--r--dbaccess/source/core/api/OptimisticSet.hxx109
-rw-r--r--dbaccess/source/core/api/PrivateRow.cxx144
-rw-r--r--dbaccess/source/core/api/PrivateRow.hxx72
-rw-r--r--dbaccess/source/core/api/RowSet.cxx2980
-rw-r--r--dbaccess/source/core/api/RowSet.hxx548
-rw-r--r--dbaccess/source/core/api/RowSetBase.cxx1575
-rw-r--r--dbaccess/source/core/api/RowSetBase.hxx426
-rw-r--r--dbaccess/source/core/api/RowSetCache.cxx1676
-rw-r--r--dbaccess/source/core/api/RowSetCache.hxx227
-rw-r--r--dbaccess/source/core/api/RowSetCacheIterator.cxx149
-rw-r--r--dbaccess/source/core/api/RowSetCacheIterator.hxx89
-rw-r--r--dbaccess/source/core/api/RowSetRow.hxx98
-rw-r--r--dbaccess/source/core/api/SingleSelectQueryComposer.cxx1848
-rw-r--r--dbaccess/source/core/api/StaticSet.cxx373
-rw-r--r--dbaccess/source/core/api/StaticSet.hxx93
-rw-r--r--dbaccess/source/core/api/TableDeco.cxx699
-rw-r--r--dbaccess/source/core/api/View.cxx154
-rw-r--r--dbaccess/source/core/api/WrappedResultSet.cxx256
-rw-r--r--dbaccess/source/core/api/WrappedResultSet.hxx79
-rw-r--r--dbaccess/source/core/api/callablestatement.cxx304
-rw-r--r--dbaccess/source/core/api/column.cxx460
-rw-r--r--dbaccess/source/core/api/columnsettings.cxx181
-rw-r--r--dbaccess/source/core/api/datacolumn.cxx428
-rw-r--r--dbaccess/source/core/api/datacolumn.hxx119
-rw-r--r--dbaccess/source/core/api/datasettings.cxx223
-rw-r--r--dbaccess/source/core/api/definitioncolumn.cxx632
-rw-r--r--dbaccess/source/core/api/makefile.mk82
-rw-r--r--dbaccess/source/core/api/preparedstatement.cxx434
-rw-r--r--dbaccess/source/core/api/query.cxx383
-rw-r--r--dbaccess/source/core/api/query.hxx174
-rw-r--r--dbaccess/source/core/api/querycomposer.cxx355
-rw-r--r--dbaccess/source/core/api/querycontainer.cxx419
-rw-r--r--dbaccess/source/core/api/querydescriptor.cxx285
-rw-r--r--dbaccess/source/core/api/querydescriptor.hxx161
-rw-r--r--dbaccess/source/core/api/resultcolumn.cxx325
-rw-r--r--dbaccess/source/core/api/resultcolumn.hxx99
-rw-r--r--dbaccess/source/core/api/resultset.cxx1115
-rw-r--r--dbaccess/source/core/api/resultset.hxx240
-rw-r--r--dbaccess/source/core/api/statement.cxx640
-rw-r--r--dbaccess/source/core/api/table.cxx413
-rw-r--r--dbaccess/source/core/api/tablecontainer.cxx505
-rw-r--r--dbaccess/source/core/api/viewcontainer.cxx275
-rw-r--r--dbaccess/source/core/dataaccess/ComponentDefinition.cxx301
-rw-r--r--dbaccess/source/core/dataaccess/ComponentDefinition.hxx184
-rw-r--r--dbaccess/source/core/dataaccess/ContentHelper.cxx673
-rw-r--r--dbaccess/source/core/dataaccess/ModelImpl.cxx1435
-rw-r--r--dbaccess/source/core/dataaccess/ModelImpl.hxx644
-rw-r--r--dbaccess/source/core/dataaccess/SharedConnection.cxx168
-rw-r--r--dbaccess/source/core/dataaccess/SharedConnection.hxx144
-rw-r--r--dbaccess/source/core/dataaccess/bookmarkcontainer.cxx371
-rw-r--r--dbaccess/source/core/dataaccess/bookmarkcontainer.hxx179
-rw-r--r--dbaccess/source/core/dataaccess/commandcontainer.cxx101
-rw-r--r--dbaccess/source/core/dataaccess/commandcontainer.hxx85
-rw-r--r--dbaccess/source/core/dataaccess/commanddefinition.cxx167
-rw-r--r--dbaccess/source/core/dataaccess/commanddefinition.hxx123
-rw-r--r--dbaccess/source/core/dataaccess/connection.cxx894
-rw-r--r--dbaccess/source/core/dataaccess/connection.hxx254
-rw-r--r--dbaccess/source/core/dataaccess/dataaccessdescriptor.cxx328
-rw-r--r--dbaccess/source/core/dataaccess/databasecontext.cxx770
-rw-r--r--dbaccess/source/core/dataaccess/databasecontext.hxx214
-rw-r--r--dbaccess/source/core/dataaccess/databasedocument.cxx2092
-rw-r--r--dbaccess/source/core/dataaccess/databasedocument.hxx709
-rw-r--r--dbaccess/source/core/dataaccess/databaseregistrations.cxx377
-rw-r--r--dbaccess/source/core/dataaccess/databaseregistrations.hxx50
-rw-r--r--dbaccess/source/core/dataaccess/datasource.cxx1418
-rw-r--r--dbaccess/source/core/dataaccess/datasource.hxx239
-rw-r--r--dbaccess/source/core/dataaccess/definitioncontainer.cxx681
-rw-r--r--dbaccess/source/core/dataaccess/documentcontainer.cxx784
-rw-r--r--dbaccess/source/core/dataaccess/documentcontainer.hxx146
-rw-r--r--dbaccess/source/core/dataaccess/documentdefinition.cxx2211
-rw-r--r--dbaccess/source/core/dataaccess/documentdefinition.hxx386
-rw-r--r--dbaccess/source/core/dataaccess/documenteventexecutor.cxx222
-rw-r--r--dbaccess/source/core/dataaccess/documenteventexecutor.hxx77
-rw-r--r--dbaccess/source/core/dataaccess/documenteventnotifier.cxx300
-rw-r--r--dbaccess/source/core/dataaccess/documenteventnotifier.hxx143
-rw-r--r--dbaccess/source/core/dataaccess/documentevents.cxx250
-rw-r--r--dbaccess/source/core/dataaccess/documentevents.hxx89
-rw-r--r--dbaccess/source/core/dataaccess/intercept.cxx446
-rw-r--r--dbaccess/source/core/dataaccess/intercept.hxx169
-rw-r--r--dbaccess/source/core/dataaccess/makefile.mk69
-rw-r--r--dbaccess/source/core/dataaccess/myucp_datasupplier.cxx393
-rw-r--r--dbaccess/source/core/dataaccess/myucp_datasupplier.hxx80
-rw-r--r--dbaccess/source/core/dataaccess/myucp_resultset.cxx99
-rw-r--r--dbaccess/source/core/dataaccess/myucp_resultset.hxx64
-rw-r--r--dbaccess/source/core/inc/ContainerListener.hxx89
-rw-r--r--dbaccess/source/core/inc/ContainerMediator.hxx105
-rw-r--r--dbaccess/source/core/inc/ContentHelper.hxx207
-rw-r--r--dbaccess/source/core/inc/DatabaseDataProvider.hxx281
-rw-r--r--dbaccess/source/core/inc/FilteredContainer.hxx147
-rw-r--r--dbaccess/source/core/inc/PropertyForward.hxx83
-rw-r--r--dbaccess/source/core/inc/RefreshListener.hxx56
-rw-r--r--dbaccess/source/core/inc/SingleSelectQueryComposer.hxx256
-rw-r--r--dbaccess/source/core/inc/TableDeco.hxx186
-rw-r--r--dbaccess/source/core/inc/View.hxx90
-rw-r--r--dbaccess/source/core/inc/callablestatement.hxx91
-rw-r--r--dbaccess/source/core/inc/column.hxx259
-rw-r--r--dbaccess/source/core/inc/columnsettings.hxx108
-rw-r--r--dbaccess/source/core/inc/commandbase.hxx64
-rw-r--r--dbaccess/source/core/inc/composertools.hxx138
-rw-r--r--dbaccess/source/core/inc/containerapprove.hxx76
-rw-r--r--dbaccess/source/core/inc/core_resource.hrc110
-rw-r--r--dbaccess/source/core/inc/core_resource.hxx127
-rw-r--r--dbaccess/source/core/inc/datasettings.hxx95
-rw-r--r--dbaccess/source/core/inc/dbamiscres.hrc62
-rw-r--r--dbaccess/source/core/inc/definitioncolumn.hxx320
-rw-r--r--dbaccess/source/core/inc/definitioncontainer.hxx336
-rw-r--r--dbaccess/source/core/inc/module_dba.hxx43
-rw-r--r--dbaccess/source/core/inc/object.hxx42
-rw-r--r--dbaccess/source/core/inc/objectnameapproval.hxx90
-rw-r--r--dbaccess/source/core/inc/preparedstatement.hxx118
-rw-r--r--dbaccess/source/core/inc/querycomposer.hxx116
-rw-r--r--dbaccess/source/core/inc/querycontainer.hxx186
-rw-r--r--dbaccess/source/core/inc/recovery/dbdocrecovery.hxx91
-rw-r--r--dbaccess/source/core/inc/sdbcoretools.hxx82
-rw-r--r--dbaccess/source/core/inc/statement.hxx194
-rw-r--r--dbaccess/source/core/inc/table.hxx166
-rw-r--r--dbaccess/source/core/inc/tablecontainer.hxx119
-rw-r--r--dbaccess/source/core/inc/userinformation.hxx48
-rw-r--r--dbaccess/source/core/inc/veto.hxx73
-rw-r--r--dbaccess/source/core/inc/viewcontainer.hxx115
-rw-r--r--dbaccess/source/core/misc/ContainerListener.cxx132
-rw-r--r--dbaccess/source/core/misc/ContainerMediator.cxx264
-rw-r--r--dbaccess/source/core/misc/DatabaseDataProvider.cxx1173
-rw-r--r--dbaccess/source/core/misc/PropertyForward.cxx175
-rw-r--r--dbaccess/source/core/misc/apitools.cxx147
-rw-r--r--dbaccess/source/core/misc/dbastrings.cxx50
-rw-r--r--dbaccess/source/core/misc/dsntypes.cxx633
-rw-r--r--dbaccess/source/core/misc/makefile.mk60
-rw-r--r--dbaccess/source/core/misc/module_dba.cxx45
-rw-r--r--dbaccess/source/core/misc/objectnameapproval.cxx104
-rw-r--r--dbaccess/source/core/misc/sdbcoretools.cxx177
-rw-r--r--dbaccess/source/core/misc/services.cxx141
-rw-r--r--dbaccess/source/core/misc/userinformation.cxx51
-rw-r--r--dbaccess/source/core/misc/veto.cxx78
-rw-r--r--dbaccess/source/core/recovery/dbdocrecovery.cxx440
-rw-r--r--dbaccess/source/core/recovery/makefile.mk58
-rw-r--r--dbaccess/source/core/recovery/settingsimport.cxx297
-rw-r--r--dbaccess/source/core/recovery/settingsimport.hxx193
-rw-r--r--dbaccess/source/core/recovery/storagestream.cxx129
-rw-r--r--dbaccess/source/core/recovery/storagestream.hxx112
-rw-r--r--dbaccess/source/core/recovery/storagetextstream.cxx133
-rw-r--r--dbaccess/source/core/recovery/storagetextstream.hxx69
-rw-r--r--dbaccess/source/core/recovery/storagexmlstream.cxx200
-rw-r--r--dbaccess/source/core/recovery/storagexmlstream.hxx116
-rw-r--r--dbaccess/source/core/recovery/subcomponentloader.cxx203
-rw-r--r--dbaccess/source/core/recovery/subcomponentloader.hxx90
-rw-r--r--dbaccess/source/core/recovery/subcomponentrecovery.cxx705
-rw-r--r--dbaccess/source/core/recovery/subcomponentrecovery.hxx129
-rw-r--r--dbaccess/source/core/recovery/subcomponents.hxx91
-rw-r--r--dbaccess/source/core/resource/core_resource.cxx117
-rw-r--r--dbaccess/source/core/resource/makefile.mk48
-rw-r--r--dbaccess/source/core/resource/strings.src326
-rw-r--r--dbaccess/source/ext/adabas/ANewDb.cxx151
-rw-r--r--dbaccess/source/ext/adabas/ANewDb.hxx97
-rw-r--r--dbaccess/source/ext/adabas/ASQLNameEdit.hxx59
-rw-r--r--dbaccess/source/ext/adabas/ASqlNameEdit.cxx80
-rw-r--r--dbaccess/source/ext/adabas/Acomponentmodule.cxx343
-rw-r--r--dbaccess/source/ext/adabas/Acomponentmodule.hxx280
-rw-r--r--dbaccess/source/ext/adabas/AdabasNewDb.cxx750
-rw-r--r--dbaccess/source/ext/adabas/AdabasNewDb.hrc78
-rw-r--r--dbaccess/source/ext/adabas/AdabasNewDb.hxx151
-rw-r--r--dbaccess/source/ext/adabas/AdabasNewDb.src455
-rw-r--r--dbaccess/source/ext/adabas/Aservices.cxx111
-rw-r--r--dbaccess/source/ext/adabas/Astringconstants.cxx62
-rw-r--r--dbaccess/source/ext/adabas/Astringconstants.hrc103
-rw-r--r--dbaccess/source/ext/adabas/adabasui.dxp4
-rw-r--r--dbaccess/source/ext/adabas/adabasui_resource.hrc92
-rw-r--r--dbaccess/source/ext/adabas/adabasuistrings.cxx37
-rw-r--r--dbaccess/source/ext/adabas/adabasuistrings.hrc42
-rw-r--r--dbaccess/source/ext/adabas/exports.dxp3
-rw-r--r--dbaccess/source/ext/adabas/makefile.mk93
-rw-r--r--dbaccess/source/ext/macromigration/dbmm_global.hrc86
-rw-r--r--dbaccess/source/ext/macromigration/dbmm_module.cxx47
-rw-r--r--dbaccess/source/ext/macromigration/dbmm_module.hxx47
-rw-r--r--dbaccess/source/ext/macromigration/dbmm_services.cxx61
-rw-r--r--dbaccess/source/ext/macromigration/dbmm_types.cxx66
-rw-r--r--dbaccess/source/ext/macromigration/dbmm_types.hxx73
-rw-r--r--dbaccess/source/ext/macromigration/docinteraction.cxx145
-rw-r--r--dbaccess/source/ext/macromigration/docinteraction.hxx98
-rw-r--r--dbaccess/source/ext/macromigration/macromigration.hrc96
-rw-r--r--dbaccess/source/ext/macromigration/macromigration.src453
-rw-r--r--dbaccess/source/ext/macromigration/macromigrationdialog.cxx631
-rw-r--r--dbaccess/source/ext/macromigration/macromigrationdialog.hxx97
-rw-r--r--dbaccess/source/ext/macromigration/macromigrationpages.cxx364
-rw-r--r--dbaccess/source/ext/macromigration/macromigrationpages.hxx184
-rw-r--r--dbaccess/source/ext/macromigration/macromigrationwizard.cxx266
-rw-r--r--dbaccess/source/ext/macromigration/makefile.mk101
-rw-r--r--dbaccess/source/ext/macromigration/migrationengine.cxx1993
-rw-r--r--dbaccess/source/ext/macromigration/migrationengine.hxx103
-rw-r--r--dbaccess/source/ext/macromigration/migrationerror.hxx175
-rw-r--r--dbaccess/source/ext/macromigration/migrationlog.cxx515
-rw-r--r--dbaccess/source/ext/macromigration/migrationlog.hxx131
-rw-r--r--dbaccess/source/ext/macromigration/migrationprogress.hxx61
-rw-r--r--dbaccess/source/ext/macromigration/progresscapture.cxx138
-rw-r--r--dbaccess/source/ext/macromigration/progresscapture.hxx82
-rw-r--r--dbaccess/source/ext/macromigration/progressmixer.cxx219
-rw-r--r--dbaccess/source/ext/macromigration/progressmixer.hxx103
-rw-r--r--dbaccess/source/ext/macromigration/rangeprogressbar.hxx107
-rw-r--r--dbaccess/source/filter/migration/cfgimport.cxx1183
-rw-r--r--dbaccess/source/filter/migration/cfgimport.hxx202
-rw-r--r--dbaccess/source/filter/migration/cfgservices.cxx111
-rw-r--r--dbaccess/source/filter/migration/makefile.mk74
-rw-r--r--dbaccess/source/filter/xml/dbloader2.cxx660
-rw-r--r--dbaccess/source/filter/xml/makefile.mk114
-rw-r--r--dbaccess/source/filter/xml/xmlAutoStyle.cxx102
-rw-r--r--dbaccess/source/filter/xml/xmlAutoStyle.hxx60
-rw-r--r--dbaccess/source/filter/xml/xmlColumn.cxx196
-rw-r--r--dbaccess/source/filter/xml/xmlColumn.hxx69
-rw-r--r--dbaccess/source/filter/xml/xmlComponent.cxx136
-rw-r--r--dbaccess/source/filter/xml/xmlComponent.hxx63
-rw-r--r--dbaccess/source/filter/xml/xmlConnectionData.cxx122
-rw-r--r--dbaccess/source/filter/xml/xmlConnectionData.hxx59
-rw-r--r--dbaccess/source/filter/xml/xmlConnectionResource.cxx115
-rw-r--r--dbaccess/source/filter/xml/xmlConnectionResource.hxx53
-rw-r--r--dbaccess/source/filter/xml/xmlDataSource.cxx284
-rw-r--r--dbaccess/source/filter/xml/xmlDataSource.hxx65
-rw-r--r--dbaccess/source/filter/xml/xmlDataSourceInfo.cxx156
-rw-r--r--dbaccess/source/filter/xml/xmlDataSourceInfo.hxx53
-rw-r--r--dbaccess/source/filter/xml/xmlDataSourceSetting.cxx254
-rw-r--r--dbaccess/source/filter/xml/xmlDataSourceSetting.hxx78
-rw-r--r--dbaccess/source/filter/xml/xmlDataSourceSettings.cxx97
-rw-r--r--dbaccess/source/filter/xml/xmlDataSourceSettings.hxx54
-rw-r--r--dbaccess/source/filter/xml/xmlDatabase.cxx161
-rw-r--r--dbaccess/source/filter/xml/xmlDatabase.hxx57
-rw-r--r--dbaccess/source/filter/xml/xmlDatabaseDescription.cxx109
-rw-r--r--dbaccess/source/filter/xml/xmlDatabaseDescription.hxx59
-rw-r--r--dbaccess/source/filter/xml/xmlDocuments.cxx131
-rw-r--r--dbaccess/source/filter/xml/xmlDocuments.hxx76
-rw-r--r--dbaccess/source/filter/xml/xmlEnums.hxx175
-rw-r--r--dbaccess/source/filter/xml/xmlExport.cxx1459
-rw-r--r--dbaccess/source/filter/xml/xmlExport.hxx204
-rw-r--r--dbaccess/source/filter/xml/xmlFileBasedDatabase.cxx138
-rw-r--r--dbaccess/source/filter/xml/xmlFileBasedDatabase.hxx53
-rw-r--r--dbaccess/source/filter/xml/xmlHelper.cxx198
-rw-r--r--dbaccess/source/filter/xml/xmlHelper.hxx72
-rw-r--r--dbaccess/source/filter/xml/xmlHierarchyCollection.cxx180
-rw-r--r--dbaccess/source/filter/xml/xmlHierarchyCollection.hxx78
-rw-r--r--dbaccess/source/filter/xml/xmlLogin.cxx142
-rw-r--r--dbaccess/source/filter/xml/xmlLogin.hxx53
-rw-r--r--dbaccess/source/filter/xml/xmlQuery.cxx155
-rw-r--r--dbaccess/source/filter/xml/xmlQuery.hxx65
-rw-r--r--dbaccess/source/filter/xml/xmlServerDatabase.cxx178
-rw-r--r--dbaccess/source/filter/xml/xmlServerDatabase.hxx53
-rw-r--r--dbaccess/source/filter/xml/xmlStyleImport.cxx332
-rw-r--r--dbaccess/source/filter/xml/xmlStyleImport.hxx140
-rw-r--r--dbaccess/source/filter/xml/xmlTable.cxx270
-rw-r--r--dbaccess/source/filter/xml/xmlTable.hxx88
-rw-r--r--dbaccess/source/filter/xml/xmlTableFilterList.cxx111
-rw-r--r--dbaccess/source/filter/xml/xmlTableFilterList.hxx80
-rw-r--r--dbaccess/source/filter/xml/xmlTableFilterPattern.cxx73
-rw-r--r--dbaccess/source/filter/xml/xmlTableFilterPattern.hxx57
-rw-r--r--dbaccess/source/filter/xml/xmlfilter.cxx922
-rw-r--r--dbaccess/source/filter/xml/xmlfilter.hxx175
-rw-r--r--dbaccess/source/filter/xml/xmlservices.cxx122
-rw-r--r--dbaccess/source/inc/OAuthenticationContinuation.hxx84
-rw-r--r--dbaccess/source/inc/apitools.hxx443
-rw-r--r--dbaccess/source/inc/cfg_reghelper.hxx50
-rw-r--r--dbaccess/source/inc/cfgstrings.hrc99
-rw-r--r--dbaccess/source/inc/constasciistring.hxx64
-rw-r--r--dbaccess/source/inc/dbadllapi.hxx44
-rw-r--r--dbaccess/source/inc/dbastrings.hrc53
-rw-r--r--dbaccess/source/inc/dbu_reghelper.hxx50
-rw-r--r--dbaccess/source/inc/dbustrings.hrc78
-rw-r--r--dbaccess/source/inc/dsntypes.hxx243
-rw-r--r--dbaccess/source/inc/flt_reghelper.hxx50
-rw-r--r--dbaccess/source/inc/registrationhelper.hxx170
-rw-r--r--dbaccess/source/inc/sdbtstrings.hrc42
-rw-r--r--dbaccess/source/inc/stringconstants.hrc435
-rw-r--r--dbaccess/source/inc/stringconstants.inc270
-rw-r--r--dbaccess/source/inc/xmlstrings.hrc45
-rw-r--r--dbaccess/source/sdbtools/connection/connectiondependent.hxx158
-rw-r--r--dbaccess/source/sdbtools/connection/connectiontools.cxx189
-rw-r--r--dbaccess/source/sdbtools/connection/connectiontools.hxx111
-rw-r--r--dbaccess/source/sdbtools/connection/datasourcemetadata.cxx89
-rw-r--r--dbaccess/source/sdbtools/connection/datasourcemetadata.hxx94
-rw-r--r--dbaccess/source/sdbtools/connection/makefile.mk49
-rw-r--r--dbaccess/source/sdbtools/connection/objectnames.cxx494
-rw-r--r--dbaccess/source/sdbtools/connection/objectnames.hxx100
-rw-r--r--dbaccess/source/sdbtools/connection/tablename.cxx278
-rw-r--r--dbaccess/source/sdbtools/connection/tablename.hxx105
-rw-r--r--dbaccess/source/sdbtools/inc/module_sdbt.hxx47
-rw-r--r--dbaccess/source/sdbtools/inc/sdbt_resource.hrc48
-rw-r--r--dbaccess/source/sdbtools/misc/makefile.mk47
-rw-r--r--dbaccess/source/sdbtools/misc/module_sdbt.cxx45
-rw-r--r--dbaccess/source/sdbtools/misc/sdbt_services.cxx107
-rw-r--r--dbaccess/source/sdbtools/resource/makefile.mk45
-rw-r--r--dbaccess/source/sdbtools/resource/sdbt_strings.src65
-rw-r--r--dbaccess/source/shared/cfg_reghelper.cxx46
-rw-r--r--dbaccess/source/shared/cfgstrings.cxx93
-rw-r--r--dbaccess/source/shared/dbu_reghelper.cxx46
-rw-r--r--dbaccess/source/shared/dbustrings.cxx76
-rw-r--r--dbaccess/source/shared/flt_reghelper.cxx46
-rw-r--r--dbaccess/source/shared/makefile.mk76
-rw-r--r--dbaccess/source/shared/registrationhelper.cxx217
-rw-r--r--dbaccess/source/shared/sdbtstrings.cxx38
-rw-r--r--dbaccess/source/shared/xmlstrings.cxx38
-rw-r--r--dbaccess/source/ui/app/AppController.cxx3018
-rw-r--r--dbaccess/source/ui/app/AppController.hxx578
-rw-r--r--dbaccess/source/ui/app/AppControllerDnD.cxx818
-rw-r--r--dbaccess/source/ui/app/AppControllerGen.cxx845
-rw-r--r--dbaccess/source/ui/app/AppDetailPageHelper.cxx1439
-rw-r--r--dbaccess/source/ui/app/AppDetailPageHelper.hxx381
-rw-r--r--dbaccess/source/ui/app/AppDetailView.cxx963
-rw-r--r--dbaccess/source/ui/app/AppDetailView.hxx381
-rw-r--r--dbaccess/source/ui/app/AppIconControl.cxx122
-rw-r--r--dbaccess/source/ui/app/AppIconControl.hxx60
-rw-r--r--dbaccess/source/ui/app/AppSwapWindow.cxx217
-rw-r--r--dbaccess/source/ui/app/AppSwapWindow.hxx106
-rw-r--r--dbaccess/source/ui/app/AppTitleWindow.cxx183
-rw-r--r--dbaccess/source/ui/app/AppTitleWindow.hxx85
-rw-r--r--dbaccess/source/ui/app/AppView.cxx610
-rw-r--r--dbaccess/source/ui/app/AppView.hxx316
-rw-r--r--dbaccess/source/ui/app/IApplicationController.hxx103
-rw-r--r--dbaccess/source/ui/app/app.src476
-rw-r--r--dbaccess/source/ui/app/dbu_app.hrc78
-rw-r--r--dbaccess/source/ui/app/makefile.mk69
-rw-r--r--dbaccess/source/ui/app/subcomponentmanager.cxx615
-rw-r--r--dbaccess/source/ui/app/subcomponentmanager.hxx139
-rw-r--r--dbaccess/source/ui/app/window_layout.txt31
-rw-r--r--dbaccess/source/ui/browser/AsyncronousLink.cxx109
-rw-r--r--dbaccess/source/ui/browser/bcommon.src35
-rw-r--r--dbaccess/source/ui/browser/brwctrlr.cxx3084
-rw-r--r--dbaccess/source/ui/browser/brwview.cxx374
-rw-r--r--dbaccess/source/ui/browser/dataview.cxx251
-rw-r--r--dbaccess/source/ui/browser/dbexchange.cxx265
-rw-r--r--dbaccess/source/ui/browser/dbloader.cxx361
-rw-r--r--dbaccess/source/ui/browser/dbtreemodel.cxx52
-rw-r--r--dbaccess/source/ui/browser/dbtreemodel.hxx72
-rw-r--r--dbaccess/source/ui/browser/dbtreeview.cxx125
-rw-r--r--dbaccess/source/ui/browser/dbtreeview.hxx80
-rw-r--r--dbaccess/source/ui/browser/dsEntriesNoExp.cxx275
-rw-r--r--dbaccess/source/ui/browser/dsbrowserDnD.cxx297
-rw-r--r--dbaccess/source/ui/browser/exsrcbrw.cxx481
-rw-r--r--dbaccess/source/ui/browser/formadapter.cxx1776
-rw-r--r--dbaccess/source/ui/browser/genericcontroller.cxx1621
-rw-r--r--dbaccess/source/ui/browser/makefile.mk71
-rw-r--r--dbaccess/source/ui/browser/sbabrw.src205
-rw-r--r--dbaccess/source/ui/browser/sbagrid.cxx1669
-rw-r--r--dbaccess/source/ui/browser/sbagrid.src139
-rw-r--r--dbaccess/source/ui/browser/sbamultiplex.cxx111
-rw-r--r--dbaccess/source/ui/browser/unodatbr.cxx3786
-rw-r--r--dbaccess/source/ui/control/ColumnControlWindow.cxx189
-rw-r--r--dbaccess/source/ui/control/FieldDescControl.cxx1943
-rw-r--r--dbaccess/source/ui/control/RelationControl.cxx719
-rw-r--r--dbaccess/source/ui/control/ScrollHelper.cxx79
-rw-r--r--dbaccess/source/ui/control/SqlNameEdit.cxx100
-rw-r--r--dbaccess/source/ui/control/TableGrantCtrl.cxx500
-rw-r--r--dbaccess/source/ui/control/TableGrantCtrl.src96
-rw-r--r--dbaccess/source/ui/control/VertSplitView.cxx219
-rw-r--r--dbaccess/source/ui/control/charsetlistbox.cxx121
-rw-r--r--dbaccess/source/ui/control/curledit.cxx156
-rw-r--r--dbaccess/source/ui/control/dbtreelistbox.cxx727
-rw-r--r--dbaccess/source/ui/control/listviewitems.cxx84
-rw-r--r--dbaccess/source/ui/control/makefile.mk78
-rw-r--r--dbaccess/source/ui/control/marktree.cxx243
-rw-r--r--dbaccess/source/ui/control/opendoccontrols.cxx334
-rw-r--r--dbaccess/source/ui/control/sqledit.cxx227
-rw-r--r--dbaccess/source/ui/control/statusbarontroller.cxx51
-rw-r--r--dbaccess/source/ui/control/tabletree.cxx696
-rw-r--r--dbaccess/source/ui/control/tabletree.hrc37
-rw-r--r--dbaccess/source/ui/control/tabletree.src88
-rw-r--r--dbaccess/source/ui/control/toolboxcontroller.cxx283
-rw-r--r--dbaccess/source/ui/control/undosqledit.cxx48
-rw-r--r--dbaccess/source/ui/control/undosqledit.src66
-rw-r--r--dbaccess/source/ui/dlg/AdabasPage.hrc50
-rw-r--r--dbaccess/source/ui/dlg/AdabasStat.cxx305
-rw-r--r--dbaccess/source/ui/dlg/AdabasStat.hrc52
-rw-r--r--dbaccess/source/ui/dlg/AdabasStat.hxx86
-rw-r--r--dbaccess/source/ui/dlg/AdabasStat.src231
-rw-r--r--dbaccess/source/ui/dlg/AutoControls.src102
-rw-r--r--dbaccess/source/ui/dlg/AutoControls_tmpl.hrc516
-rw-r--r--dbaccess/source/ui/dlg/CollectionView.cxx343
-rw-r--r--dbaccess/source/ui/dlg/CollectionView.hrc50
-rw-r--r--dbaccess/source/ui/dlg/CollectionView.src167
-rw-r--r--dbaccess/source/ui/dlg/ConnectionHelper.cxx913
-rw-r--r--dbaccess/source/ui/dlg/ConnectionHelper.hxx135
-rw-r--r--dbaccess/source/ui/dlg/ConnectionPage.cxx382
-rw-r--r--dbaccess/source/ui/dlg/ConnectionPage.hrc59
-rw-r--r--dbaccess/source/ui/dlg/ConnectionPage.hxx109
-rw-r--r--dbaccess/source/ui/dlg/ConnectionPage.src187
-rw-r--r--dbaccess/source/ui/dlg/ConnectionPageSetup.cxx245
-rw-r--r--dbaccess/source/ui/dlg/ConnectionPageSetup.hxx110
-rw-r--r--dbaccess/source/ui/dlg/DBSetupConnectionPages.cxx986
-rw-r--r--dbaccess/source/ui/dlg/DBSetupConnectionPages.hxx345
-rw-r--r--dbaccess/source/ui/dlg/DbAdminImpl.cxx1221
-rw-r--r--dbaccess/source/ui/dlg/DbAdminImpl.hxx196
-rw-r--r--dbaccess/source/ui/dlg/DriverSettings.cxx119
-rw-r--r--dbaccess/source/ui/dlg/DriverSettings.hxx112
-rw-r--r--dbaccess/source/ui/dlg/ExtensionNotPresent.cxx222
-rw-r--r--dbaccess/source/ui/dlg/ExtensionNotPresent.hrc48
-rw-r--r--dbaccess/source/ui/dlg/ExtensionNotPresent.src89
-rw-r--r--dbaccess/source/ui/dlg/RelationDlg.cxx270
-rw-r--r--dbaccess/source/ui/dlg/RelationDlg.hrc54
-rw-r--r--dbaccess/source/ui/dlg/RelationDlg.src185
-rw-r--r--dbaccess/source/ui/dlg/TablesSingleDlg.cxx139
-rw-r--r--dbaccess/source/ui/dlg/TextConnectionHelper.cxx550
-rw-r--r--dbaccess/source/ui/dlg/TextConnectionHelper.hxx124
-rw-r--r--dbaccess/source/ui/dlg/UserAdmin.cxx354
-rw-r--r--dbaccess/source/ui/dlg/UserAdmin.hrc59
-rw-r--r--dbaccess/source/ui/dlg/UserAdmin.hxx92
-rw-r--r--dbaccess/source/ui/dlg/UserAdmin.src242
-rw-r--r--dbaccess/source/ui/dlg/UserAdminDlg.cxx209
-rw-r--r--dbaccess/source/ui/dlg/UserAdminDlg.hrc33
-rw-r--r--dbaccess/source/ui/dlg/UserAdminDlg.src60
-rw-r--r--dbaccess/source/ui/dlg/admincontrols.cxx314
-rwxr-xr-xdbaccess/source/ui/dlg/admincontrols.hrc49
-rw-r--r--dbaccess/source/ui/dlg/admincontrols.hxx85
-rwxr-xr-xdbaccess/source/ui/dlg/admincontrols.src131
-rw-r--r--dbaccess/source/ui/dlg/adminpages.cxx339
-rw-r--r--dbaccess/source/ui/dlg/adminpages.hxx289
-rw-r--r--dbaccess/source/ui/dlg/adodatalinks.cxx212
-rw-r--r--dbaccess/source/ui/dlg/adodatalinks.hxx37
-rw-r--r--dbaccess/source/ui/dlg/adtabdlg.cxx535
-rw-r--r--dbaccess/source/ui/dlg/adtabdlg.hrc47
-rw-r--r--dbaccess/source/ui/dlg/adtabdlg.src102
-rw-r--r--dbaccess/source/ui/dlg/advancedsettings.cxx568
-rw-r--r--dbaccess/source/ui/dlg/advancedsettings.hrc75
-rw-r--r--dbaccess/source/ui/dlg/advancedsettings.hxx153
-rw-r--r--dbaccess/source/ui/dlg/advancedsettings.src366
-rw-r--r--dbaccess/source/ui/dlg/dbadmin.cxx517
-rw-r--r--dbaccess/source/ui/dlg/dbadmin.hrc111
-rw-r--r--dbaccess/source/ui/dlg/dbadmin.src787
-rw-r--r--dbaccess/source/ui/dlg/dbadmin2.src188
-rw-r--r--dbaccess/source/ui/dlg/dbadminsetup.hrc135
-rw-r--r--dbaccess/source/ui/dlg/dbadminsetup.src673
-rw-r--r--dbaccess/source/ui/dlg/dbfindex.cxx561
-rw-r--r--dbaccess/source/ui/dlg/dbfindex.hrc26
-rw-r--r--dbaccess/source/ui/dlg/dbfindex.hxx156
-rw-r--r--dbaccess/source/ui/dlg/dbfindex.src246
-rw-r--r--dbaccess/source/ui/dlg/dbwiz.cxx386
-rw-r--r--dbaccess/source/ui/dlg/dbwizsetup.cxx1141
-rw-r--r--dbaccess/source/ui/dlg/detailpages.cxx1128
-rw-r--r--dbaccess/source/ui/dlg/detailpages.hxx373
-rw-r--r--dbaccess/source/ui/dlg/directsql.cxx351
-rw-r--r--dbaccess/source/ui/dlg/directsql.hrc43
-rw-r--r--dbaccess/source/ui/dlg/directsql.src134
-rw-r--r--dbaccess/source/ui/dlg/dlgattr.cxx116
-rw-r--r--dbaccess/source/ui/dlg/dlgattr.src122
-rw-r--r--dbaccess/source/ui/dlg/dlgsave.cxx448
-rw-r--r--dbaccess/source/ui/dlg/dlgsave.hrc53
-rw-r--r--dbaccess/source/ui/dlg/dlgsave.src141
-rw-r--r--dbaccess/source/ui/dlg/dlgsize.cxx124
-rw-r--r--dbaccess/source/ui/dlg/dlgsize.hrc39
-rw-r--r--dbaccess/source/ui/dlg/dlgsize.src189
-rw-r--r--dbaccess/source/ui/dlg/dsnItem.hxx71
-rw-r--r--dbaccess/source/ui/dlg/dsselect.cxx279
-rw-r--r--dbaccess/source/ui/dlg/dsselect.hrc41
-rw-r--r--dbaccess/source/ui/dlg/dsselect.hxx97
-rw-r--r--dbaccess/source/ui/dlg/dsselect.src107
-rw-r--r--dbaccess/source/ui/dlg/finteraction.cxx84
-rw-r--r--dbaccess/source/ui/dlg/finteraction.hxx73
-rw-r--r--dbaccess/source/ui/dlg/generalpage.cxx638
-rw-r--r--dbaccess/source/ui/dlg/generalpage.hxx170
-rw-r--r--dbaccess/source/ui/dlg/indexdialog.cxx940
-rw-r--r--dbaccess/source/ui/dlg/indexdialog.hrc49
-rw-r--r--dbaccess/source/ui/dlg/indexdialog.src236
-rw-r--r--dbaccess/source/ui/dlg/indexfieldscontrol.cxx510
-rw-r--r--dbaccess/source/ui/dlg/makefile.mk156
-rw-r--r--dbaccess/source/ui/dlg/odbcconfig.cxx388
-rw-r--r--dbaccess/source/ui/dlg/odbcconfig.hxx142
-rw-r--r--dbaccess/source/ui/dlg/optionalboolitem.cxx79
-rw-r--r--dbaccess/source/ui/dlg/optionalboolitem.hxx70
-rw-r--r--dbaccess/source/ui/dlg/paramdialog.cxx427
-rw-r--r--dbaccess/source/ui/dlg/paramdialog.hrc46
-rw-r--r--dbaccess/source/ui/dlg/paramdialog.src100
-rw-r--r--dbaccess/source/ui/dlg/queryfilter.cxx877
-rw-r--r--dbaccess/source/ui/dlg/queryfilter.hrc64
-rw-r--r--dbaccess/source/ui/dlg/queryfilter.src222
-rw-r--r--dbaccess/source/ui/dlg/queryorder.cxx310
-rw-r--r--dbaccess/source/ui/dlg/queryorder.hrc57
-rw-r--r--dbaccess/source/ui/dlg/queryorder.src211
-rw-r--r--dbaccess/source/ui/dlg/sqlmessage.cxx787
-rw-r--r--dbaccess/source/ui/dlg/sqlmessage.hrc50
-rw-r--r--dbaccess/source/ui/dlg/sqlmessage.src161
-rw-r--r--dbaccess/source/ui/dlg/tablespage.cxx634
-rw-r--r--dbaccess/source/ui/dlg/tablespage.hxx123
-rw-r--r--dbaccess/source/ui/dlg/textconnectionsettings.cxx109
-rw-r--r--dbaccess/source/ui/dlg/textconnectionsettings.src60
-rw-r--r--dbaccess/source/ui/imagelists/dbimagelists.src262
-rw-r--r--dbaccess/source/ui/imagelists/makefile.mk49
-rw-r--r--dbaccess/source/ui/inc/AccessibleBaseIFace.hxx55
-rw-r--r--dbaccess/source/ui/inc/AppElementType.hxx68
-rw-r--r--dbaccess/source/ui/inc/CollectionView.hxx90
-rw-r--r--dbaccess/source/ui/inc/ColumnControlWindow.hxx85
-rw-r--r--dbaccess/source/ui/inc/ConnectionLine.hxx112
-rw-r--r--dbaccess/source/ui/inc/ConnectionLineAccess.hxx110
-rw-r--r--dbaccess/source/ui/inc/ConnectionLineData.hxx102
-rw-r--r--dbaccess/source/ui/inc/DExport.hxx191
-rw-r--r--dbaccess/source/ui/inc/ExtensionNotPresent.hxx89
-rw-r--r--dbaccess/source/ui/inc/FieldControls.hxx191
-rw-r--r--dbaccess/source/ui/inc/FieldDescControl.hxx234
-rw-r--r--dbaccess/source/ui/inc/FieldDescriptions.hxx125
-rw-r--r--dbaccess/source/ui/inc/GeneralUndo.hxx57
-rw-r--r--dbaccess/source/ui/inc/HtmlReader.hxx92
-rw-r--r--dbaccess/source/ui/inc/IClipBoardTest.hxx50
-rw-r--r--dbaccess/source/ui/inc/IItemSetHelper.hxx72
-rw-r--r--dbaccess/source/ui/inc/IUpdateHelper.hxx54
-rw-r--r--dbaccess/source/ui/inc/JAccess.hxx89
-rw-r--r--dbaccess/source/ui/inc/JoinController.hxx180
-rw-r--r--dbaccess/source/ui/inc/JoinDesignView.hxx87
-rw-r--r--dbaccess/source/ui/inc/JoinExchange.hxx89
-rw-r--r--dbaccess/source/ui/inc/JoinTableView.hxx326
-rw-r--r--dbaccess/source/ui/inc/QEnumTypes.hxx92
-rw-r--r--dbaccess/source/ui/inc/QueryDesignView.hxx177
-rw-r--r--dbaccess/source/ui/inc/QueryTableView.hxx145
-rw-r--r--dbaccess/source/ui/inc/QueryTextView.hxx74
-rw-r--r--dbaccess/source/ui/inc/QueryViewSwitch.hxx106
-rw-r--r--dbaccess/source/ui/inc/RTableConnectionData.hxx102
-rw-r--r--dbaccess/source/ui/inc/RefFunctor.hxx60
-rw-r--r--dbaccess/source/ui/inc/RelControliFace.hxx61
-rw-r--r--dbaccess/source/ui/inc/RelationControl.hrc34
-rw-r--r--dbaccess/source/ui/inc/RelationControl.hxx105
-rw-r--r--dbaccess/source/ui/inc/RelationController.hxx99
-rw-r--r--dbaccess/source/ui/inc/RelationDesignView.hxx68
-rw-r--r--dbaccess/source/ui/inc/RelationDlg.hxx115
-rw-r--r--dbaccess/source/ui/inc/RelationTableView.hxx84
-rw-r--r--dbaccess/source/ui/inc/RtfReader.hxx80
-rw-r--r--dbaccess/source/ui/inc/ScrollHelper.hxx77
-rw-r--r--dbaccess/source/ui/inc/SqlNameEdit.hxx110
-rw-r--r--dbaccess/source/ui/inc/TableConnection.hxx111
-rw-r--r--dbaccess/source/ui/inc/TableConnectionData.hxx115
-rw-r--r--dbaccess/source/ui/inc/TableController.hxx160
-rw-r--r--dbaccess/source/ui/inc/TableCopyHelper.hxx200
-rw-r--r--dbaccess/source/ui/inc/TableDesignControl.hxx102
-rw-r--r--dbaccess/source/ui/inc/TableDesignHelpBar.hxx75
-rw-r--r--dbaccess/source/ui/inc/TableDesignView.hxx123
-rw-r--r--dbaccess/source/ui/inc/TableFieldDescription.hxx163
-rw-r--r--dbaccess/source/ui/inc/TableGrantCtrl.hxx117
-rw-r--r--dbaccess/source/ui/inc/TableRow.hxx93
-rw-r--r--dbaccess/source/ui/inc/TableRowExchange.hxx53
-rw-r--r--dbaccess/source/ui/inc/TableWindow.hxx211
-rw-r--r--dbaccess/source/ui/inc/TableWindowAccess.hxx121
-rw-r--r--dbaccess/source/ui/inc/TableWindowData.hxx106
-rw-r--r--dbaccess/source/ui/inc/TableWindowListBox.hxx111
-rw-r--r--dbaccess/source/ui/inc/TableWindowTitle.hxx59
-rw-r--r--dbaccess/source/ui/inc/TablesSingleDlg.hxx87
-rw-r--r--dbaccess/source/ui/inc/TokenWriter.hxx259
-rw-r--r--dbaccess/source/ui/inc/TypeInfo.hxx146
-rw-r--r--dbaccess/source/ui/inc/UITools.hxx464
-rw-r--r--dbaccess/source/ui/inc/UserAdminDlg.hxx93
-rw-r--r--dbaccess/source/ui/inc/VertSplitView.hxx60
-rw-r--r--dbaccess/source/ui/inc/WCPage.hxx110
-rw-r--r--dbaccess/source/ui/inc/WColumnSelect.hxx105
-rw-r--r--dbaccess/source/ui/inc/WCopyTable.hxx423
-rw-r--r--dbaccess/source/ui/inc/WExtendPages.hxx86
-rw-r--r--dbaccess/source/ui/inc/WNameMatch.hxx102
-rw-r--r--dbaccess/source/ui/inc/WTabPage.hxx60
-rw-r--r--dbaccess/source/ui/inc/WTypeSelect.hxx144
-rw-r--r--dbaccess/source/ui/inc/adtabdlg.hxx127
-rw-r--r--dbaccess/source/ui/inc/advancedsettingsdlg.hxx97
-rw-r--r--dbaccess/source/ui/inc/asyncmodaldialog.hxx67
-rw-r--r--dbaccess/source/ui/inc/browserids.hxx121
-rw-r--r--dbaccess/source/ui/inc/brwctrlr.hxx369
-rw-r--r--dbaccess/source/ui/inc/brwview.hxx117
-rw-r--r--dbaccess/source/ui/inc/callbacks.hxx129
-rw-r--r--dbaccess/source/ui/inc/charsetlistbox.hxx68
-rw-r--r--dbaccess/source/ui/inc/charsets.hxx144
-rw-r--r--dbaccess/source/ui/inc/commontypes.hxx58
-rw-r--r--dbaccess/source/ui/inc/curledit.hxx89
-rw-r--r--dbaccess/source/ui/inc/databaseobjectview.hxx264
-rw-r--r--dbaccess/source/ui/inc/datasourceconnector.hxx96
-rw-r--r--dbaccess/source/ui/inc/datasourcemap.hxx266
-rw-r--r--dbaccess/source/ui/inc/dbadmin.hxx139
-rw-r--r--dbaccess/source/ui/inc/dbexchange.hxx99
-rw-r--r--dbaccess/source/ui/inc/dbtreelistbox.hxx170
-rw-r--r--dbaccess/source/ui/inc/dbu_brw.hrc55
-rw-r--r--dbaccess/source/ui/inc/dbu_control.hrc56
-rw-r--r--dbaccess/source/ui/inc/dbu_dlg.hrc135
-rw-r--r--dbaccess/source/ui/inc/dbu_misc.hrc62
-rw-r--r--dbaccess/source/ui/inc/dbu_qry.hrc96
-rw-r--r--dbaccess/source/ui/inc/dbu_rel.hrc50
-rw-r--r--dbaccess/source/ui/inc/dbu_resource.hrc420
-rw-r--r--dbaccess/source/ui/inc/dbu_tbl.hrc99
-rw-r--r--dbaccess/source/ui/inc/dbu_uno.hrc56
-rw-r--r--dbaccess/source/ui/inc/dbwiz.hxx135
-rw-r--r--dbaccess/source/ui/inc/dbwizsetup.hxx197
-rw-r--r--dbaccess/source/ui/inc/defaultobjectnamecheck.hxx146
-rw-r--r--dbaccess/source/ui/inc/directsql.hxx141
-rw-r--r--dbaccess/source/ui/inc/dlgattr.hrc37
-rw-r--r--dbaccess/source/ui/inc/dlgattr.hxx64
-rw-r--r--dbaccess/source/ui/inc/dlgsave.hxx99
-rw-r--r--dbaccess/source/ui/inc/dlgsize.hxx72
-rw-r--r--dbaccess/source/ui/inc/dsitems.hxx107
-rw-r--r--dbaccess/source/ui/inc/dsmeta.hxx145
-rw-r--r--dbaccess/source/ui/inc/exsrcbrw.hxx115
-rw-r--r--dbaccess/source/ui/inc/formadapter.hxx449
-rw-r--r--dbaccess/source/ui/inc/imageprovider.hxx188
-rw-r--r--dbaccess/source/ui/inc/indexcollection.hxx119
-rw-r--r--dbaccess/source/ui/inc/indexdialog.hxx185
-rw-r--r--dbaccess/source/ui/inc/indexes.hxx105
-rw-r--r--dbaccess/source/ui/inc/indexfieldscontrol.hxx112
-rw-r--r--dbaccess/source/ui/inc/linkeddocuments.hxx141
-rw-r--r--dbaccess/source/ui/inc/listviewitems.hxx70
-rw-r--r--dbaccess/source/ui/inc/localresaccess.hxx62
-rw-r--r--dbaccess/source/ui/inc/makefile.mk43
-rw-r--r--dbaccess/source/ui/inc/marktree.hxx86
-rw-r--r--dbaccess/source/ui/inc/moduledbu.hxx106
-rw-r--r--dbaccess/source/ui/inc/objectnamecheck.hxx77
-rw-r--r--dbaccess/source/ui/inc/opendoccontrols.hxx95
-rw-r--r--dbaccess/source/ui/inc/paramdialog.hxx126
-rw-r--r--dbaccess/source/ui/inc/propertysetitem.hxx69
-rw-r--r--dbaccess/source/ui/inc/propertystorage.hxx97
-rw-r--r--dbaccess/source/ui/inc/querycontainerwindow.hxx126
-rw-r--r--dbaccess/source/ui/inc/querycontroller.hxx261
-rw-r--r--dbaccess/source/ui/inc/queryfilter.hxx149
-rw-r--r--dbaccess/source/ui/inc/queryorder.hxx130
-rw-r--r--dbaccess/source/ui/inc/queryview.hxx60
-rw-r--r--dbaccess/source/ui/inc/sbagrid.hrc107
-rw-r--r--dbaccess/source/ui/inc/sbagrid.hxx347
-rw-r--r--dbaccess/source/ui/inc/sbamultiplex.hxx438
-rw-r--r--dbaccess/source/ui/inc/sqledit.hxx91
-rw-r--r--dbaccess/source/ui/inc/sqlmessage.hxx137
-rw-r--r--dbaccess/source/ui/inc/statusbarontroller.hxx54
-rw-r--r--dbaccess/source/ui/inc/stringlistitem.hxx68
-rw-r--r--dbaccess/source/ui/inc/tabletree.hxx200
-rw-r--r--dbaccess/source/ui/inc/textconnectionsettings.hxx82
-rw-r--r--dbaccess/source/ui/inc/toolbox_tmpl.hrc100
-rw-r--r--dbaccess/source/ui/inc/toolboxcontroller.hxx75
-rw-r--r--dbaccess/source/ui/inc/undosqledit.hxx59
-rw-r--r--dbaccess/source/ui/inc/unoadmin.hxx81
-rw-r--r--dbaccess/source/ui/inc/unodatbr.hxx499
-rw-r--r--dbaccess/source/ui/inc/unosqlmessage.hxx90
-rw-r--r--dbaccess/source/ui/misc/DExport.cxx906
-rw-r--r--dbaccess/source/ui/misc/HtmlReader.cxx600
-rw-r--r--dbaccess/source/ui/misc/ModuleHelper.cxx44
-rw-r--r--dbaccess/source/ui/misc/RowSetDrop.cxx275
-rw-r--r--dbaccess/source/ui/misc/RtfReader.cxx379
-rw-r--r--dbaccess/source/ui/misc/TableCopyHelper.cxx345
-rw-r--r--dbaccess/source/ui/misc/TokenWriter.cxx1164
-rw-r--r--dbaccess/source/ui/misc/ToolBoxHelper.cxx130
-rw-r--r--dbaccess/source/ui/misc/UITools.cxx1722
-rw-r--r--dbaccess/source/ui/misc/UpdateHelperImpl.hxx151
-rw-r--r--dbaccess/source/ui/misc/WCPage.cxx387
-rw-r--r--dbaccess/source/ui/misc/WColumnSelect.cxx428
-rw-r--r--dbaccess/source/ui/misc/WCopyTable.cxx1694
-rw-r--r--dbaccess/source/ui/misc/WExtendPages.cxx86
-rw-r--r--dbaccess/source/ui/misc/WNameMatch.cxx432
-rw-r--r--dbaccess/source/ui/misc/WTypeSelect.cxx482
-rw-r--r--dbaccess/source/ui/misc/WizardPages.hrc81
-rw-r--r--dbaccess/source/ui/misc/WizardPages.src630
-rw-r--r--dbaccess/source/ui/misc/asyncmodaldialog.cxx115
-rw-r--r--dbaccess/source/ui/misc/charsets.cxx186
-rw-r--r--dbaccess/source/ui/misc/controllerframe.cxx446
-rw-r--r--dbaccess/source/ui/misc/databaseobjectview.cxx346
-rw-r--r--dbaccess/source/ui/misc/datasourceconnector.cxx235
-rw-r--r--dbaccess/source/ui/misc/dbumiscres.hrc62
-rw-r--r--dbaccess/source/ui/misc/dbumiscres.src100
-rw-r--r--dbaccess/source/ui/misc/defaultobjectnamecheck.cxx206
-rw-r--r--dbaccess/source/ui/misc/dsmeta.cxx216
-rw-r--r--dbaccess/source/ui/misc/imageprovider.cxx263
-rw-r--r--dbaccess/source/ui/misc/indexcollection.cxx408
-rw-r--r--dbaccess/source/ui/misc/linkeddocuments.cxx415
-rw-r--r--dbaccess/source/ui/misc/makefile.mk85
-rw-r--r--dbaccess/source/ui/misc/moduledbu.cxx140
-rw-r--r--dbaccess/source/ui/misc/propertysetitem.cxx86
-rw-r--r--dbaccess/source/ui/misc/propertystorage.cxx139
-rw-r--r--dbaccess/source/ui/misc/singledoccontroller.cxx751
-rw-r--r--dbaccess/source/ui/misc/stringlistitem.cxx87
-rw-r--r--dbaccess/source/ui/misc/uiservices.cxx161
-rw-r--r--dbaccess/source/ui/querydesign/ConnectionData.hxx66
-rw-r--r--dbaccess/source/ui/querydesign/ConnectionLine.cxx385
-rw-r--r--dbaccess/source/ui/querydesign/ConnectionLineAccess.cxx252
-rw-r--r--dbaccess/source/ui/querydesign/ConnectionLineData.cxx104
-rw-r--r--dbaccess/source/ui/querydesign/JAccess.cxx131
-rw-r--r--dbaccess/source/ui/querydesign/JoinController.cxx474
-rw-r--r--dbaccess/source/ui/querydesign/JoinDesignView.cxx130
-rw-r--r--dbaccess/source/ui/querydesign/JoinExchange.cxx179
-rw-r--r--dbaccess/source/ui/querydesign/JoinTableView.cxx1729
-rw-r--r--dbaccess/source/ui/querydesign/QTableConnection.cxx105
-rw-r--r--dbaccess/source/ui/querydesign/QTableConnection.hxx59
-rw-r--r--dbaccess/source/ui/querydesign/QTableConnectionData.cxx172
-rw-r--r--dbaccess/source/ui/querydesign/QTableConnectionData.hxx91
-rw-r--r--dbaccess/source/ui/querydesign/QTableWindow.cxx244
-rw-r--r--dbaccess/source/ui/querydesign/QTableWindow.hxx94
-rw-r--r--dbaccess/source/ui/querydesign/QTableWindowData.cxx60
-rw-r--r--dbaccess/source/ui/querydesign/QTableWindowData.hxx55
-rw-r--r--dbaccess/source/ui/querydesign/Query.hrc35
-rw-r--r--dbaccess/source/ui/querydesign/QueryAddTabConnUndoAction.hxx63
-rw-r--r--dbaccess/source/ui/querydesign/QueryDesignFieldUndoAct.hxx161
-rw-r--r--dbaccess/source/ui/querydesign/QueryDesignUndoAction.hxx50
-rw-r--r--dbaccess/source/ui/querydesign/QueryDesignView.cxx3233
-rw-r--r--dbaccess/source/ui/querydesign/QueryMoveTabWinUndoAct.cxx52
-rw-r--r--dbaccess/source/ui/querydesign/QueryMoveTabWinUndoAct.hxx68
-rw-r--r--dbaccess/source/ui/querydesign/QuerySizeTabWinUndoAct.hxx86
-rw-r--r--dbaccess/source/ui/querydesign/QueryTabConnUndoAction.cxx139
-rw-r--r--dbaccess/source/ui/querydesign/QueryTabConnUndoAction.hxx59
-rw-r--r--dbaccess/source/ui/querydesign/QueryTabWinShowUndoAct.hxx66
-rw-r--r--dbaccess/source/ui/querydesign/QueryTabWinUndoAct.cxx141
-rw-r--r--dbaccess/source/ui/querydesign/QueryTabWinUndoAct.hxx87
-rw-r--r--dbaccess/source/ui/querydesign/QueryTableView.cxx1041
-rw-r--r--dbaccess/source/ui/querydesign/QueryTextView.cxx154
-rw-r--r--dbaccess/source/ui/querydesign/QueryViewSwitch.cxx344
-rw-r--r--dbaccess/source/ui/querydesign/SelectionBrowseBox.cxx2841
-rw-r--r--dbaccess/source/ui/querydesign/SelectionBrowseBox.hxx347
-rw-r--r--dbaccess/source/ui/querydesign/TableConnection.cxx246
-rw-r--r--dbaccess/source/ui/querydesign/TableConnectionData.cxx198
-rw-r--r--dbaccess/source/ui/querydesign/TableFieldDescription.cxx242
-rw-r--r--dbaccess/source/ui/querydesign/TableFieldInfo.cxx57
-rw-r--r--dbaccess/source/ui/querydesign/TableFieldInfo.hxx55
-rw-r--r--dbaccess/source/ui/querydesign/TableWindow.cxx804
-rw-r--r--dbaccess/source/ui/querydesign/TableWindowAccess.cxx295
-rw-r--r--dbaccess/source/ui/querydesign/TableWindowData.cxx156
-rw-r--r--dbaccess/source/ui/querydesign/TableWindowListBox.cxx406
-rw-r--r--dbaccess/source/ui/querydesign/TableWindowTitle.cxx222
-rw-r--r--dbaccess/source/ui/querydesign/class.jpgbin0 -> 224242 bytes-rw-r--r--dbaccess/source/ui/querydesign/makefile.mk89
-rw-r--r--dbaccess/source/ui/querydesign/query.src423
-rw-r--r--dbaccess/source/ui/querydesign/querycontainerwindow.cxx266
-rw-r--r--dbaccess/source/ui/querydesign/querycontroller.cxx1870
-rw-r--r--dbaccess/source/ui/querydesign/querydlg.cxx377
-rw-r--r--dbaccess/source/ui/querydesign/querydlg.hrc61
-rw-r--r--dbaccess/source/ui/querydesign/querydlg.hxx108
-rw-r--r--dbaccess/source/ui/querydesign/querydlg.src194
-rw-r--r--dbaccess/source/ui/querydesign/queryview.cxx58
-rw-r--r--dbaccess/source/ui/relationdesign/RTableConnection.cxx150
-rw-r--r--dbaccess/source/ui/relationdesign/RTableConnection.hxx57
-rw-r--r--dbaccess/source/ui/relationdesign/RTableConnectionData.cxx468
-rw-r--r--dbaccess/source/ui/relationdesign/RTableWindow.hxx51
-rw-r--r--dbaccess/source/ui/relationdesign/RelationController.cxx617
-rw-r--r--dbaccess/source/ui/relationdesign/RelationDesignView.cxx115
-rw-r--r--dbaccess/source/ui/relationdesign/RelationTableView.cxx488
-rw-r--r--dbaccess/source/ui/relationdesign/makefile.mk58
-rw-r--r--dbaccess/source/ui/relationdesign/relation.src130
-rw-r--r--dbaccess/source/ui/tabledesign/FieldDescGenWin.cxx191
-rw-r--r--dbaccess/source/ui/tabledesign/FieldDescGenWin.hxx86
-rw-r--r--dbaccess/source/ui/tabledesign/FieldDescriptions.cxx682
-rw-r--r--dbaccess/source/ui/tabledesign/TEditControl.cxx1965
-rw-r--r--dbaccess/source/ui/tabledesign/TEditControl.hxx222
-rw-r--r--dbaccess/source/ui/tabledesign/TableController.cxx1616
-rw-r--r--dbaccess/source/ui/tabledesign/TableDesignControl.cxx227
-rw-r--r--dbaccess/source/ui/tabledesign/TableDesignHelpBar.cxx125
-rw-r--r--dbaccess/source/ui/tabledesign/TableDesignView.cxx376
-rw-r--r--dbaccess/source/ui/tabledesign/TableFieldControl.cxx159
-rw-r--r--dbaccess/source/ui/tabledesign/TableFieldControl.hxx72
-rw-r--r--dbaccess/source/ui/tabledesign/TableFieldDescWin.cxx321
-rw-r--r--dbaccess/source/ui/tabledesign/TableFieldDescWin.hxx111
-rw-r--r--dbaccess/source/ui/tabledesign/TableRow.cxx231
-rw-r--r--dbaccess/source/ui/tabledesign/TableRowExchange.cxx91
-rw-r--r--dbaccess/source/ui/tabledesign/TableUndo.cxx479
-rw-r--r--dbaccess/source/ui/tabledesign/TableUndo.hxx172
-rw-r--r--dbaccess/source/ui/tabledesign/makefile.mk65
-rw-r--r--dbaccess/source/ui/tabledesign/table.src413
-rw-r--r--dbaccess/source/ui/uno/AdabasSettingsDlg.cxx129
-rw-r--r--dbaccess/source/ui/uno/AdabasSettingsDlg.hxx82
-rw-r--r--dbaccess/source/ui/uno/AdvancedSettingsDlg.cxx162
-rw-r--r--dbaccess/source/ui/uno/ColumnControl.cxx142
-rw-r--r--dbaccess/source/ui/uno/ColumnControl.hxx57
-rw-r--r--dbaccess/source/ui/uno/ColumnModel.cxx170
-rw-r--r--dbaccess/source/ui/uno/ColumnModel.hxx115
-rw-r--r--dbaccess/source/ui/uno/ColumnPeer.cxx165
-rw-r--r--dbaccess/source/ui/uno/ColumnPeer.hxx64
-rw-r--r--dbaccess/source/ui/uno/DBTypeWizDlg.cxx128
-rw-r--r--dbaccess/source/ui/uno/DBTypeWizDlg.hxx82
-rw-r--r--dbaccess/source/ui/uno/DBTypeWizDlgSetup.cxx152
-rw-r--r--dbaccess/source/ui/uno/DBTypeWizDlgSetup.hxx86
-rw-r--r--dbaccess/source/ui/uno/TableFilterDlg.cxx129
-rw-r--r--dbaccess/source/ui/uno/TableFilterDlg.hxx82
-rw-r--r--dbaccess/source/ui/uno/UserSettingsDlg.cxx129
-rw-r--r--dbaccess/source/ui/uno/UserSettingsDlg.hxx82
-rw-r--r--dbaccess/source/ui/uno/admindlg.cxx135
-rw-r--r--dbaccess/source/ui/uno/admindlg.hxx82
-rw-r--r--dbaccess/source/ui/uno/composerdialogs.cxx211
-rw-r--r--dbaccess/source/ui/uno/composerdialogs.hxx146
-rw-r--r--dbaccess/source/ui/uno/copytablewizard.cxx1630
-rw-r--r--dbaccess/source/ui/uno/copytablewizard.src80
-rw-r--r--dbaccess/source/ui/uno/dbinteraction.cxx389
-rw-r--r--dbaccess/source/ui/uno/dbinteraction.hxx188
-rw-r--r--dbaccess/source/ui/uno/dbinteraction.src41
-rw-r--r--dbaccess/source/ui/uno/makefile.mk76
-rw-r--r--dbaccess/source/ui/uno/textconnectionsettings_uno.cxx265
-rw-r--r--dbaccess/source/ui/uno/unoDirectSql.cxx138
-rw-r--r--dbaccess/source/ui/uno/unoDirectSql.hxx82
-rw-r--r--dbaccess/source/ui/uno/unoadmin.cxx125
-rw-r--r--dbaccess/source/ui/uno/unosqlmessage.cxx166
-rw-r--r--dbaccess/uiconfig/dbapp/menubar/menubar.xml143
-rw-r--r--dbaccess/uiconfig/dbapp/statusbar/statusbar.xml8
-rw-r--r--dbaccess/uiconfig/dbapp/toolbar/formobjectbar.xml8
-rw-r--r--dbaccess/uiconfig/dbapp/toolbar/queryobjectbar.xml8
-rw-r--r--dbaccess/uiconfig/dbapp/toolbar/reportobjectbar.xml8
-rw-r--r--dbaccess/uiconfig/dbapp/toolbar/tableobjectbar.xml8
-rw-r--r--dbaccess/uiconfig/dbapp/toolbar/toolbar.xml19
-rw-r--r--dbaccess/uiconfig/dbbrowser/menubar/compat.xml1
-rw-r--r--dbaccess/uiconfig/dbbrowser/menubar/preserve.txt1
-rw-r--r--dbaccess/uiconfig/dbbrowser/toolbar/toolbar.xml33
-rw-r--r--dbaccess/uiconfig/dbquery/menubar/menubar.xml84
-rw-r--r--dbaccess/uiconfig/dbquery/toolbar/designobjectbar.xml10
-rw-r--r--dbaccess/uiconfig/dbquery/toolbar/sqlobjectbar.xml5
-rw-r--r--dbaccess/uiconfig/dbquery/toolbar/toolbar.xml20
-rw-r--r--dbaccess/uiconfig/dbrelation/menubar/menubar.xml67
-rw-r--r--dbaccess/uiconfig/dbrelation/toolbar/toolbar.xml13
-rw-r--r--dbaccess/uiconfig/dbtable/menubar/menubar.xml68
-rw-r--r--dbaccess/uiconfig/dbtable/toolbar/toolbar.xml17
-rw-r--r--dbaccess/uiconfig/dbtdata/menubar/menubar.xml76
-rw-r--r--dbaccess/uiconfig/dbtdata/toolbar/toolbar.xml27
-rw-r--r--dbaccess/util/dba.pmk29
-rw-r--r--dbaccess/util/hidother.src518
-rw-r--r--dbaccess/util/makefile.mk242
-rw-r--r--dbaccess/util/makefile.pmk31
-rw-r--r--dbaccess/win32/source/odbcconfig/makefile.mk54
-rw-r--r--dbaccess/win32/source/odbcconfig/odbcconfig.cxx161
-rw-r--r--default_images/README.txt8
-rw-r--r--default_images/avmedia/res/av02048.pngbin0 -> 437 bytes-rw-r--r--default_images/avmedia/res/av02049.pngbin0 -> 534 bytes-rw-r--r--default_images/avmedia/res/av02050.pngbin0 -> 455 bytes-rw-r--r--default_images/avmedia/res/av02051.pngbin0 -> 469 bytes-rw-r--r--default_images/avmedia/res/av02052.pngbin0 -> 578 bytes-rw-r--r--default_images/avmedia/res/av02053.pngbin0 -> 266 bytes-rw-r--r--default_images/avmedia/res/av02054.pngbin0 -> 772 bytes-rwxr-xr-xdefault_images/avmedia/res/avaudiologo.pngbin0 -> 2574 bytes-rwxr-xr-xdefault_images/avmedia/res/avemptylogo.pngbin0 -> 516 bytes-rw-r--r--default_images/avmedia/res/avh02048.pngbin0 -> 133 bytes-rw-r--r--default_images/avmedia/res/avh02049.pngbin0 -> 128 bytes-rw-r--r--default_images/avmedia/res/avh02050.pngbin0 -> 124 bytes-rw-r--r--default_images/avmedia/res/avh02051.pngbin0 -> 123 bytes-rw-r--r--default_images/avmedia/res/avh02052.pngbin0 -> 151 bytes-rw-r--r--default_images/avmedia/res/avh02053.pngbin0 -> 115 bytes-rw-r--r--default_images/avmedia/res/avh02054.pngbin0 -> 173 bytes-rw-r--r--default_images/avmedia/res/avl02048.pngbin0 -> 863 bytes-rw-r--r--default_images/avmedia/res/avl02049.pngbin0 -> 737 bytes-rw-r--r--default_images/avmedia/res/avl02050.pngbin0 -> 649 bytes-rw-r--r--default_images/avmedia/res/avl02051.pngbin0 -> 633 bytes-rw-r--r--default_images/avmedia/res/avl02052.pngbin0 -> 889 bytes-rw-r--r--default_images/avmedia/res/avl02053.pngbin0 -> 410 bytes-rw-r--r--default_images/avmedia/res/avl02054.pngbin0 -> 1359 bytes-rw-r--r--default_images/avmedia/res/avlh02048.pngbin0 -> 161 bytes-rw-r--r--default_images/avmedia/res/avlh02049.pngbin0 -> 162 bytes-rw-r--r--default_images/avmedia/res/avlh02050.pngbin0 -> 146 bytes-rw-r--r--default_images/avmedia/res/avlh02051.pngbin0 -> 144 bytes-rw-r--r--default_images/avmedia/res/avlh02052.pngbin0 -> 199 bytes-rw-r--r--default_images/avmedia/res/avlh02053.pngbin0 -> 128 bytes-rw-r--r--default_images/avmedia/res/avlh02054.pngbin0 -> 230 bytes-rw-r--r--default_images/basctl/res/im01.pngbin0 -> 458 bytes-rw-r--r--default_images/basctl/res/imh01.pngbin0 -> 182 bytes-rw-r--r--default_images/basctl/res/locked.pngbin0 -> 234 bytes-rw-r--r--default_images/basctl/res/locked_h.pngbin0 -> 116 bytes-rw-r--r--default_images/brand/about-pt_BR.pngbin0 -> 11941 bytes-rw-r--r--default_images/brand/about-pt_BR.svg948
-rwxr-xr-xdefault_images/brand/about.pngbin0 -> 12956 bytes-rw-r--r--default_images/brand/intro-pt_BR.pngbin0 -> 29187 bytes-rw-r--r--default_images/brand/intro-pt_BR.svg1814
-rwxr-xr-xdefault_images/brand/intro.pngbin0 -> 31528 bytes-rw-r--r--default_images/brand/shell/backing-pt_BR.pngbin0 -> 18149 bytes-rw-r--r--default_images/brand/shell/backing.pngbin0 -> 19498 bytes-rw-r--r--default_images/brand/shell/backing_hc-pt_BR.pngbin0 -> 18149 bytes-rw-r--r--default_images/brand/shell/backing_hc.pngbin0 -> 19498 bytes-rw-r--r--default_images/brand/shell/backing_left-pt_BR.pngbin0 -> 18149 bytes-rw-r--r--default_images/brand/shell/backing_left-pt_BR.svg1054
-rw-r--r--default_images/brand/shell/backing_left.pngbin0 -> 19498 bytes-rw-r--r--default_images/brand/shell/backing_left_hc-pt_BR.pngbin0 -> 18149 bytes-rw-r--r--default_images/brand/shell/backing_left_hc.pngbin0 -> 19498 bytes-rw-r--r--default_images/brand/shell/backing_right-pt_BR.pngbin0 -> 6396 bytes-rw-r--r--default_images/brand/shell/backing_right.pngbin0 -> 6396 bytes-rw-r--r--default_images/brand/shell/backing_right_hc-pt_BR.pngbin0 -> 6396 bytes-rw-r--r--default_images/brand/shell/backing_right_hc.pngbin0 -> 6396 bytes-rw-r--r--default_images/brand/shell/backing_rtl_left-pt_BR.pngbin0 -> 18149 bytes-rw-r--r--default_images/brand/shell/backing_rtl_left.pngbin0 -> 18149 bytes-rw-r--r--default_images/brand/shell/backing_rtl_left_hc-pt_BR.pngbin0 -> 18149 bytes-rw-r--r--default_images/brand/shell/backing_rtl_left_hc.pngbin0 -> 18149 bytes-rw-r--r--default_images/brand/shell/backing_rtl_right-pt_BR.pngbin0 -> 6396 bytes-rw-r--r--default_images/brand/shell/backing_rtl_right.pngbin0 -> 6396 bytes-rw-r--r--default_images/brand/shell/backing_rtl_right_hc-pt_BR.pngbin0 -> 6396 bytes-rw-r--r--default_images/brand/shell/backing_rtl_right_hc.pngbin0 -> 6396 bytes-rw-r--r--default_images/brand/shell/backing_space.pngbin0 -> 336 bytes-rw-r--r--default_images/brand/shell/backing_space_hc.pngbin0 -> 336 bytes-rwxr-xr-xdefault_images/brand_dev/about-pt_BR.pngbin0 -> 7923 bytes-rwxr-xr-xdefault_images/brand_dev/about.pngbin0 -> 9246 bytes-rw-r--r--default_images/brand_dev/intro-pt_BR.pngbin0 -> 19114 bytes-rwxr-xr-xdefault_images/brand_dev/intro.pngbin0 -> 24676 bytes-rw-r--r--default_images/chart2/res/areas3d_52x60.pngbin0 -> 459 bytes-rw-r--r--default_images/chart2/res/areas3d_52x60_h.pngbin0 -> 336 bytes-rw-r--r--default_images/chart2/res/areas_52x60.pngbin0 -> 400 bytes-rw-r--r--default_images/chart2/res/areas_52x60_h.pngbin0 -> 300 bytes-rw-r--r--default_images/chart2/res/areasfull3d_52x60.pngbin0 -> 319 bytes-rw-r--r--default_images/chart2/res/areasfull3d_52x60_h.pngbin0 -> 283 bytes-rw-r--r--default_images/chart2/res/areasfull_52x60.pngbin0 -> 287 bytes-rw-r--r--default_images/chart2/res/areasfull_52x60_h.pngbin0 -> 230 bytes-rw-r--r--default_images/chart2/res/areaspiled3d_52x60.pngbin0 -> 484 bytes-rw-r--r--default_images/chart2/res/areaspiled3d_52x60_h.pngbin0 -> 382 bytes-rw-r--r--default_images/chart2/res/areaspiled_52x60.pngbin0 -> 358 bytes-rw-r--r--default_images/chart2/res/areaspiled_52x60_h.pngbin0 -> 283 bytes-rw-r--r--default_images/chart2/res/bar3d_52x60.pngbin0 -> 337 bytes-rw-r--r--default_images/chart2/res/bar3d_52x60_h.pngbin0 -> 289 bytes-rw-r--r--default_images/chart2/res/bar3ddeep_52x60.pngbin0 -> 468 bytes-rw-r--r--default_images/chart2/res/bar3ddeep_52x60_h.pngbin0 -> 332 bytes-rw-r--r--default_images/chart2/res/bar_52x60.pngbin0 -> 227 bytes-rw-r--r--default_images/chart2/res/bar_52x60_h.pngbin0 -> 188 bytes-rw-r--r--default_images/chart2/res/barpercent3d_52x60.pngbin0 -> 303 bytes-rw-r--r--default_images/chart2/res/barpercent3d_52x60_h.pngbin0 -> 247 bytes-rw-r--r--default_images/chart2/res/barpercent_52x60.pngbin0 -> 218 bytes-rw-r--r--default_images/chart2/res/barpercent_52x60_h.pngbin0 -> 167 bytes-rw-r--r--default_images/chart2/res/barstack3d_52x60.pngbin0 -> 307 bytes-rw-r--r--default_images/chart2/res/barstack3d_52x60_h.pngbin0 -> 251 bytes-rw-r--r--default_images/chart2/res/barstack_52x60.pngbin0 -> 218 bytes-rw-r--r--default_images/chart2/res/barstack_52x60_h.pngbin0 -> 172 bytes-rw-r--r--default_images/chart2/res/bubble_52x60.pngbin0 -> 979 bytes-rw-r--r--default_images/chart2/res/bubble_52x60_h.pngbin0 -> 337 bytes-rw-r--r--default_images/chart2/res/columnline_52x60.pngbin0 -> 281 bytes-rw-r--r--default_images/chart2/res/columnline_52x60_h.pngbin0 -> 221 bytes-rw-r--r--default_images/chart2/res/columnpercent3d_52x60.pngbin0 -> 324 bytes-rw-r--r--default_images/chart2/res/columnpercent3d_52x60_h.pngbin0 -> 274 bytes-rw-r--r--default_images/chart2/res/columnpercent_52x60.pngbin0 -> 218 bytes-rw-r--r--default_images/chart2/res/columnpercent_52x60_h.pngbin0 -> 177 bytes-rw-r--r--default_images/chart2/res/columns3d_52x60.pngbin0 -> 345 bytes-rw-r--r--default_images/chart2/res/columns3d_52x60_h.pngbin0 -> 278 bytes-rw-r--r--default_images/chart2/res/columns3ddeep_52x60.pngbin0 -> 454 bytes-rw-r--r--default_images/chart2/res/columns3ddeep_52x60_h.pngbin0 -> 334 bytes-rw-r--r--default_images/chart2/res/columns_52x60.pngbin0 -> 214 bytes-rw-r--r--default_images/chart2/res/columns_52x60_h.pngbin0 -> 174 bytes-rw-r--r--default_images/chart2/res/columnstack3d_52x60.pngbin0 -> 326 bytes-rw-r--r--default_images/chart2/res/columnstack3d_52x60_h.pngbin0 -> 278 bytes-rw-r--r--default_images/chart2/res/columnstack_52x60.pngbin0 -> 218 bytes-rw-r--r--default_images/chart2/res/columnstack_52x60_h.pngbin0 -> 178 bytes-rw-r--r--default_images/chart2/res/columnstackline_52x60.pngbin0 -> 247 bytes-rw-r--r--default_images/chart2/res/columnstackline_52x60_h.pngbin0 -> 194 bytes-rw-r--r--default_images/chart2/res/cone_52x60.pngbin0 -> 717 bytes-rw-r--r--default_images/chart2/res/cone_52x60_h.pngbin0 -> 341 bytes-rw-r--r--default_images/chart2/res/conedeep_52x60.pngbin0 -> 742 bytes-rw-r--r--default_images/chart2/res/conedeep_52x60_h.pngbin0 -> 462 bytes-rw-r--r--default_images/chart2/res/conehori_52x60.pngbin0 -> 623 bytes-rw-r--r--default_images/chart2/res/conehori_52x60_h.pngbin0 -> 356 bytes-rw-r--r--default_images/chart2/res/conehorideep_52x60.pngbin0 -> 685 bytes-rw-r--r--default_images/chart2/res/conehorideep_52x60_h.pngbin0 -> 436 bytes-rw-r--r--default_images/chart2/res/conehoripercent_52x60.pngbin0 -> 605 bytes-rw-r--r--default_images/chart2/res/conehoripercent_52x60_h.pngbin0 -> 360 bytes-rw-r--r--default_images/chart2/res/conehoristack_52x60.pngbin0 -> 650 bytes-rw-r--r--default_images/chart2/res/conehoristack_52x60_h.pngbin0 -> 378 bytes-rw-r--r--default_images/chart2/res/conepercent_52x60.pngbin0 -> 628 bytes-rw-r--r--default_images/chart2/res/conepercent_52x60_h.pngbin0 -> 383 bytes-rw-r--r--default_images/chart2/res/conestack_52x60.pngbin0 -> 687 bytes-rw-r--r--default_images/chart2/res/conestack_52x60_h.pngbin0 -> 401 bytes-rw-r--r--default_images/chart2/res/cylinder_52x60.pngbin0 -> 489 bytes-rw-r--r--default_images/chart2/res/cylinder_52x60_h.pngbin0 -> 326 bytes-rw-r--r--default_images/chart2/res/cylinderdeep_52x60.pngbin0 -> 570 bytes-rw-r--r--default_images/chart2/res/cylinderdeep_52x60_h.pngbin0 -> 397 bytes-rw-r--r--default_images/chart2/res/cylinderhori_52x60.pngbin0 -> 457 bytes-rw-r--r--default_images/chart2/res/cylinderhori_52x60_h.pngbin0 -> 295 bytes-rw-r--r--default_images/chart2/res/cylinderhorideep_52x60.pngbin0 -> 666 bytes-rw-r--r--default_images/chart2/res/cylinderhorideep_52x60_h.pngbin0 -> 379 bytes-rw-r--r--default_images/chart2/res/cylinderhoriprocent_52x60.pngbin0 -> 608 bytes-rw-r--r--default_images/chart2/res/cylinderhoriprocent_52x60_h.pngbin0 -> 333 bytes-rw-r--r--default_images/chart2/res/cylinderhoristack_52x60.pngbin0 -> 614 bytes-rw-r--r--default_images/chart2/res/cylinderhoristack_52x60_h.pngbin0 -> 321 bytes-rw-r--r--default_images/chart2/res/cylinderpercent_52x60.pngbin0 -> 596 bytes-rw-r--r--default_images/chart2/res/cylinderpercent_52x60_h.pngbin0 -> 341 bytes-rw-r--r--default_images/chart2/res/cylinderstack_52x60.pngbin0 -> 602 bytes-rw-r--r--default_images/chart2/res/cylinderstack_52x60_h.pngbin0 -> 355 bytes-rw-r--r--default_images/chart2/res/dataeditor_icon01.pngbin0 -> 316 bytes-rw-r--r--default_images/chart2/res/dataeditor_icon02.pngbin0 -> 374 bytes-rw-r--r--default_images/chart2/res/dataeditor_icon03.pngbin0 -> 225 bytes-rw-r--r--default_images/chart2/res/dataeditor_icon04.pngbin0 -> 299 bytes-rw-r--r--default_images/chart2/res/dataeditor_icon05.pngbin0 -> 457 bytes-rw-r--r--default_images/chart2/res/dataeditor_icon06.pngbin0 -> 402 bytes-rw-r--r--default_images/chart2/res/dataeditor_icon07.pngbin0 -> 333 bytes-rw-r--r--default_images/chart2/res/dataeditor_icon_h01.pngbin0 -> 111 bytes-rw-r--r--default_images/chart2/res/dataeditor_icon_h02.pngbin0 -> 107 bytes-rw-r--r--default_images/chart2/res/dataeditor_icon_h03.pngbin0 -> 99 bytes-rw-r--r--default_images/chart2/res/dataeditor_icon_h04.pngbin0 -> 97 bytes-rw-r--r--default_images/chart2/res/dataeditor_icon_h05.pngbin0 -> 145 bytes-rw-r--r--default_images/chart2/res/dataeditor_icon_h06.pngbin0 -> 146 bytes-rw-r--r--default_images/chart2/res/dataeditor_icon_h07.pngbin0 -> 107 bytes-rw-r--r--default_images/chart2/res/donut3d_52x60.pngbin0 -> 538 bytes-rw-r--r--default_images/chart2/res/donut3d_52x60_h.pngbin0 -> 394 bytes-rw-r--r--default_images/chart2/res/donut3dexploded_52x60.pngbin0 -> 733 bytes-rw-r--r--default_images/chart2/res/donut3dexploded_52x60_h.pngbin0 -> 462 bytes-rw-r--r--default_images/chart2/res/donut_52x60.pngbin0 -> 481 bytes-rw-r--r--default_images/chart2/res/donut_52x60_h.pngbin0 -> 379 bytes-rw-r--r--default_images/chart2/res/donutexploded_52x60.pngbin0 -> 564 bytes-rw-r--r--default_images/chart2/res/donutexploded_52x60_h.pngbin0 -> 451 bytes-rw-r--r--default_images/chart2/res/errorbothhori_30.pngbin0 -> 264 bytes-rw-r--r--default_images/chart2/res/errorbothhori_30_h.pngbin0 -> 112 bytes-rw-r--r--default_images/chart2/res/errorbothverti_30.pngbin0 -> 297 bytes-rw-r--r--default_images/chart2/res/errorbothverti_30_h.pngbin0 -> 112 bytes-rw-r--r--default_images/chart2/res/errordown_30.pngbin0 -> 277 bytes-rw-r--r--default_images/chart2/res/errordown_30_h.pngbin0 -> 111 bytes-rw-r--r--default_images/chart2/res/errorleft_30.pngbin0 -> 257 bytes-rw-r--r--default_images/chart2/res/errorleft_30_h.pngbin0 -> 111 bytes-rw-r--r--default_images/chart2/res/errorright_30.pngbin0 -> 258 bytes-rw-r--r--default_images/chart2/res/errorright_30_h.pngbin0 -> 110 bytes-rw-r--r--default_images/chart2/res/errorup_30.pngbin0 -> 275 bytes-rw-r--r--default_images/chart2/res/errorup_30_h.pngbin0 -> 106 bytes-rw-r--r--default_images/chart2/res/net_52x60.pngbin0 -> 805 bytes-rw-r--r--default_images/chart2/res/net_52x60_h.pngbin0 -> 557 bytes-rw-r--r--default_images/chart2/res/netfill_52x60.pngbin0 -> 1008 bytes-rw-r--r--default_images/chart2/res/netfill_52x60_h.pngbin0 -> 473 bytes-rw-r--r--default_images/chart2/res/netlinepoint_52x60.pngbin0 -> 971 bytes-rw-r--r--default_images/chart2/res/netlinepoint_52x60_h.pngbin0 -> 571 bytes-rw-r--r--default_images/chart2/res/netlinepointstack_52x60.pngbin0 -> 1029 bytes-rw-r--r--default_images/chart2/res/netlinepointstack_52x60_h.pngbin0 -> 516 bytes-rw-r--r--default_images/chart2/res/netpoint_52x60.pngbin0 -> 789 bytes-rw-r--r--default_images/chart2/res/netpoint_52x60_h.pngbin0 -> 402 bytes-rw-r--r--default_images/chart2/res/netpointstack_52x60.pngbin0 -> 749 bytes-rw-r--r--default_images/chart2/res/netpointstack_52x60_h.pngbin0 -> 389 bytes-rw-r--r--default_images/chart2/res/netstack_52x60.pngbin0 -> 857 bytes-rw-r--r--default_images/chart2/res/netstack_52x60_h.pngbin0 -> 494 bytes-rw-r--r--default_images/chart2/res/netstackfill_52x60.pngbin0 -> 1575 bytes-rw-r--r--default_images/chart2/res/netstackfill_52x60_h.pngbin0 -> 441 bytes-rw-r--r--default_images/chart2/res/nostackdirect3d_52x60.pngbin0 -> 813 bytes-rw-r--r--default_images/chart2/res/nostackdirect3d_52x60_h.pngbin0 -> 347 bytes-rw-r--r--default_images/chart2/res/nostackdirectboth_52x60.pngbin0 -> 566 bytes-rw-r--r--default_images/chart2/res/nostackdirectboth_52x60_h.pngbin0 -> 318 bytes-rw-r--r--default_images/chart2/res/nostackdirectlines_52x60.pngbin0 -> 394 bytes-rw-r--r--default_images/chart2/res/nostackdirectlines_52x60_h.pngbin0 -> 299 bytes-rw-r--r--default_images/chart2/res/nostackdirectpoints_52x60.pngbin0 -> 343 bytes-rw-r--r--default_images/chart2/res/nostackdirectpoints_52x60_h.pngbin0 -> 206 bytes-rw-r--r--default_images/chart2/res/nostacksmooth3d_52x60.pngbin0 -> 1314 bytes-rw-r--r--default_images/chart2/res/nostacksmooth3d_52x60_h.pngbin0 -> 361 bytes-rw-r--r--default_images/chart2/res/nostacksmoothboth_52x60.pngbin0 -> 847 bytes-rw-r--r--default_images/chart2/res/nostacksmoothboth_52x60_h.pngbin0 -> 337 bytes-rw-r--r--default_images/chart2/res/nostacksmoothlines_52x60.pngbin0 -> 756 bytes-rw-r--r--default_images/chart2/res/nostacksmoothlines_52x60_h.pngbin0 -> 302 bytes-rw-r--r--default_images/chart2/res/pie3d_52x60.pngbin0 -> 461 bytes-rw-r--r--default_images/chart2/res/pie3d_52x60_h.pngbin0 -> 313 bytes-rw-r--r--default_images/chart2/res/pie3dexploded_52x60.pngbin0 -> 555 bytes-rw-r--r--default_images/chart2/res/pie3dexploded_52x60_h.pngbin0 -> 411 bytes-rw-r--r--default_images/chart2/res/pie_52x60.pngbin0 -> 403 bytes-rw-r--r--default_images/chart2/res/pie_52x60_h.pngbin0 -> 312 bytes-rw-r--r--default_images/chart2/res/pieexploded_52x60.pngbin0 -> 442 bytes-rw-r--r--default_images/chart2/res/pieexploded_52x60_h.pngbin0 -> 347 bytes-rw-r--r--default_images/chart2/res/pyramind_52x60.pngbin0 -> 571 bytes-rw-r--r--default_images/chart2/res/pyramind_52x60_h.pngbin0 -> 347 bytes-rw-r--r--default_images/chart2/res/pyraminddeep_52x60.pngbin0 -> 657 bytes-rw-r--r--default_images/chart2/res/pyraminddeep_52x60_h.pngbin0 -> 430 bytes-rw-r--r--default_images/chart2/res/pyramindhori_52x60.pngbin0 -> 441 bytes-rw-r--r--default_images/chart2/res/pyramindhori_52x60_h.pngbin0 -> 332 bytes-rw-r--r--default_images/chart2/res/pyramindhorideep_52x60.pngbin0 -> 584 bytes-rw-r--r--default_images/chart2/res/pyramindhorideep_52x60_h.pngbin0 -> 409 bytes-rw-r--r--default_images/chart2/res/pyramindhoripercent_52x60.pngbin0 -> 463 bytes-rw-r--r--default_images/chart2/res/pyramindhoripercent_52x60_h.pngbin0 -> 319 bytes-rw-r--r--default_images/chart2/res/pyramindhoristack_52x60.pngbin0 -> 469 bytes-rw-r--r--default_images/chart2/res/pyramindhoristack_52x60_h.pngbin0 -> 317 bytes-rw-r--r--default_images/chart2/res/pyramindpercent_52x60.pngbin0 -> 533 bytes-rw-r--r--default_images/chart2/res/pyramindpercent_52x60_h.pngbin0 -> 357 bytes-rw-r--r--default_images/chart2/res/pyramindstack_52x60.pngbin0 -> 564 bytes-rw-r--r--default_images/chart2/res/pyramindstack_52x60_h.pngbin0 -> 361 bytes-rw-r--r--default_images/chart2/res/regexp.pngbin0 -> 816 bytes-rw-r--r--default_images/chart2/res/regexp_h.pngbin0 -> 187 bytes-rw-r--r--default_images/chart2/res/reglin.pngbin0 -> 741 bytes-rw-r--r--default_images/chart2/res/reglin_h.pngbin0 -> 179 bytes-rw-r--r--default_images/chart2/res/reglog.pngbin0 -> 774 bytes-rw-r--r--default_images/chart2/res/reglog_h.pngbin0 -> 184 bytes-rw-r--r--default_images/chart2/res/regno.pngbin0 -> 284 bytes-rw-r--r--default_images/chart2/res/regno_h.pngbin0 -> 118 bytes-rw-r--r--default_images/chart2/res/regpow.pngbin0 -> 869 bytes-rw-r--r--default_images/chart2/res/regpow_h.pngbin0 -> 188 bytes-rw-r--r--default_images/chart2/res/selectrange.pngbin0 -> 428 bytes-rw-r--r--default_images/chart2/res/selectrange_h.pngbin0 -> 119 bytes-rw-r--r--default_images/chart2/res/stackdirect3d_52x60.pngbin0 -> 737 bytes-rw-r--r--default_images/chart2/res/stackdirect3d_52x60_h.pngbin0 -> 286 bytes-rw-r--r--default_images/chart2/res/stackdirectboth_52x60.pngbin0 -> 582 bytes-rw-r--r--default_images/chart2/res/stackdirectboth_52x60_h.pngbin0 -> 279 bytes-rw-r--r--default_images/chart2/res/stackdirectlines_52x60.pngbin0 -> 409 bytes-rw-r--r--default_images/chart2/res/stackdirectlines_52x60_h.pngbin0 -> 246 bytes-rw-r--r--default_images/chart2/res/stackdirectpoints_52x60.pngbin0 -> 336 bytes-rw-r--r--default_images/chart2/res/stackdirectpoints_52x60_h.pngbin0 -> 205 bytes-rw-r--r--default_images/chart2/res/stacksmooth3d_52x60.pngbin0 -> 946 bytes-rw-r--r--default_images/chart2/res/stacksmooth3d_52x60_h.pngbin0 -> 279 bytes-rw-r--r--default_images/chart2/res/stacksmoothboth_52x60.pngbin0 -> 598 bytes-rw-r--r--default_images/chart2/res/stacksmoothboth_52x60_h.pngbin0 -> 289 bytes-rw-r--r--default_images/chart2/res/stacksmoothlines_52x60.pngbin0 -> 878 bytes-rw-r--r--default_images/chart2/res/stacksmoothlines_52x60_h.pngbin0 -> 251 bytes-rw-r--r--default_images/chart2/res/stock_52x60.pngbin0 -> 296 bytes-rw-r--r--default_images/chart2/res/stock_52x60_h.pngbin0 -> 166 bytes-rw-r--r--default_images/chart2/res/stockblock_52x60.pngbin0 -> 366 bytes-rw-r--r--default_images/chart2/res/stockblock_52x60_h.pngbin0 -> 195 bytes-rw-r--r--default_images/chart2/res/stockcolumns_52x60.pngbin0 -> 489 bytes-rw-r--r--default_images/chart2/res/stockcolumns_52x60_h.pngbin0 -> 248 bytes-rw-r--r--default_images/chart2/res/stockcolumnsattach_52x60.pngbin0 -> 557 bytes-rw-r--r--default_images/chart2/res/stockcolumnsattach_52x60_h.pngbin0 -> 258 bytes-rw-r--r--default_images/chart2/res/typearea_16.pngbin0 -> 379 bytes-rw-r--r--default_images/chart2/res/typearea_16_h.pngbin0 -> 154 bytes-rw-r--r--default_images/chart2/res/typebar_16.pngbin0 -> 245 bytes-rw-r--r--default_images/chart2/res/typebar_16_h.pngbin0 -> 103 bytes-rw-r--r--default_images/chart2/res/typebubble_16.pngbin0 -> 345 bytes-rw-r--r--default_images/chart2/res/typebubble_16_h.pngbin0 -> 141 bytes-rw-r--r--default_images/chart2/res/typecolumn_16.pngbin0 -> 346 bytes-rw-r--r--default_images/chart2/res/typecolumn_16_h.pngbin0 -> 100 bytes-rw-r--r--default_images/chart2/res/typecolumnline_16.pngbin0 -> 295 bytes-rw-r--r--default_images/chart2/res/typecolumnline_16_h.pngbin0 -> 150 bytes-rw-r--r--default_images/chart2/res/typenet_16.pngbin0 -> 296 bytes-rw-r--r--default_images/chart2/res/typenet_16_h.pngbin0 -> 187 bytes-rw-r--r--default_images/chart2/res/typepie_16.pngbin0 -> 616 bytes-rw-r--r--default_images/chart2/res/typepie_16_h.pngbin0 -> 155 bytes-rw-r--r--default_images/chart2/res/typepointline_16.pngbin0 -> 411 bytes-rw-r--r--default_images/chart2/res/typepointline_16_h.pngbin0 -> 155 bytes-rw-r--r--default_images/chart2/res/typestock_16.pngbin0 -> 215 bytes-rw-r--r--default_images/chart2/res/typestock_16_h.pngbin0 -> 124 bytes-rw-r--r--default_images/chart2/res/typexy_16.pngbin0 -> 205 bytes-rw-r--r--default_images/chart2/res/typexy_16_h.pngbin0 -> 163 bytes-rw-r--r--default_images/chart2/res/valueaxisdirect3d_52x60.pngbin0 -> 524 bytes-rw-r--r--default_images/chart2/res/valueaxisdirect3d_52x60_h.pngbin0 -> 363 bytes-rw-r--r--default_images/chart2/res/valueaxisdirectboth_52x60.pngbin0 -> 572 bytes-rw-r--r--default_images/chart2/res/valueaxisdirectboth_52x60_h.pngbin0 -> 345 bytes-rw-r--r--default_images/chart2/res/valueaxisdirectlines_52x60.pngbin0 -> 375 bytes-rw-r--r--default_images/chart2/res/valueaxisdirectlines_52x60_h.pngbin0 -> 313 bytes-rw-r--r--default_images/chart2/res/valueaxisdirectpoints_52x60.pngbin0 -> 344 bytes-rw-r--r--default_images/chart2/res/valueaxisdirectpoints_52x60_h.pngbin0 -> 207 bytes-rw-r--r--default_images/chart2/res/valueaxissmooth3d_52x60.pngbin0 -> 1501 bytes-rw-r--r--default_images/chart2/res/valueaxissmooth3d_52x60_h.pngbin0 -> 354 bytes-rw-r--r--default_images/chart2/res/valueaxissmoothboth_52x60.pngbin0 -> 879 bytes-rw-r--r--default_images/chart2/res/valueaxissmoothboth_52x60_h.pngbin0 -> 344 bytes-rw-r--r--default_images/chart2/res/valueaxissmoothlines_52x60.pngbin0 -> 796 bytes-rw-r--r--default_images/chart2/res/valueaxissmoothlines_52x60_h.pngbin0 -> 313 bytes-rw-r--r--default_images/database/linked_text_table.pngbin0 -> 412 bytes-rw-r--r--default_images/database/linked_text_table_hc.pngbin0 -> 142 bytes-rw-r--r--default_images/dbaccess/res/all_left.pngbin0 -> 266 bytes-rw-r--r--default_images/dbaccess/res/all_left_h.pngbin0 -> 81 bytes-rw-r--r--default_images/dbaccess/res/all_right.pngbin0 -> 266 bytes-rw-r--r--default_images/dbaccess/res/all_right_h.pngbin0 -> 81 bytes-rw-r--r--default_images/dbaccess/res/db.pngbin0 -> 751 bytes-rw-r--r--default_images/dbaccess/res/db_sch.pngbin0 -> 174 bytes-rw-r--r--default_images/dbaccess/res/exerror.pngbin0 -> 296 bytes-rw-r--r--default_images/dbaccess/res/exerror_sch.pngbin0 -> 134 bytes-rw-r--r--default_images/dbaccess/res/exinfo.pngbin0 -> 520 bytes-rw-r--r--default_images/dbaccess/res/exinfo_sch.pngbin0 -> 162 bytes-rw-r--r--default_images/dbaccess/res/exwarning.pngbin0 -> 523 bytes-rw-r--r--default_images/dbaccess/res/exwarning_sch.pngbin0 -> 150 bytes-rw-r--r--default_images/dbaccess/res/form_16.pngbin0 -> 322 bytes-rw-r--r--default_images/dbaccess/res/form_16_h.pngbin0 -> 115 bytes-rw-r--r--default_images/dbaccess/res/forms_16.pngbin0 -> 380 bytes-rw-r--r--default_images/dbaccess/res/forms_16_h.pngbin0 -> 139 bytes-rw-r--r--default_images/dbaccess/res/forms_32.pngbin0 -> 1033 bytes-rw-r--r--default_images/dbaccess/res/forms_32_h.pngbin0 -> 209 bytes-rw-r--r--default_images/dbaccess/res/jo01.pngbin0 -> 239 bytes-rw-r--r--default_images/dbaccess/res/jo02.pngbin0 -> 267 bytes-rw-r--r--default_images/dbaccess/res/joh01.pngbin0 -> 109 bytes-rw-r--r--default_images/dbaccess/res/joh02.pngbin0 -> 104 bytes-rw-r--r--default_images/dbaccess/res/lc036.pngbin0 -> 656 bytes-rw-r--r--default_images/dbaccess/res/lc037.pngbin0 -> 770 bytes-rw-r--r--default_images/dbaccess/res/lc038.pngbin0 -> 726 bytes-rw-r--r--default_images/dbaccess/res/lc039.pngbin0 -> 733 bytes-rw-r--r--default_images/dbaccess/res/lc040.pngbin0 -> 1199 bytes-rw-r--r--default_images/dbaccess/res/lch036.pngbin0 -> 172 bytes-rw-r--r--default_images/dbaccess/res/lch037.pngbin0 -> 184 bytes-rw-r--r--default_images/dbaccess/res/lch038.pngbin0 -> 197 bytes-rw-r--r--default_images/dbaccess/res/lch039.pngbin0 -> 164 bytes-rw-r--r--default_images/dbaccess/res/lch040.pngbin0 -> 235 bytes-rw-r--r--default_images/dbaccess/res/nu07.pngbin0 -> 266 bytes-rw-r--r--default_images/dbaccess/res/nu08.pngbin0 -> 296 bytes-rw-r--r--default_images/dbaccess/res/nu09.pngbin0 -> 246 bytes-rw-r--r--default_images/dbaccess/res/nuh07.pngbin0 -> 135 bytes-rw-r--r--default_images/dbaccess/res/nuh08.pngbin0 -> 140 bytes-rw-r--r--default_images/dbaccess/res/nuh09.pngbin0 -> 126 bytes-rw-r--r--default_images/dbaccess/res/one_left.pngbin0 -> 251 bytes-rw-r--r--default_images/dbaccess/res/one_left_h.pngbin0 -> 79 bytes-rw-r--r--default_images/dbaccess/res/one_right.pngbin0 -> 253 bytes-rw-r--r--default_images/dbaccess/res/one_right_h.pngbin0 -> 79 bytes-rw-r--r--default_images/dbaccess/res/pkey.pngbin0 -> 235 bytes-rw-r--r--default_images/dbaccess/res/pkey_sch.pngbin0 -> 105 bytes-rw-r--r--default_images/dbaccess/res/queries_32.pngbin0 -> 740 bytes-rw-r--r--default_images/dbaccess/res/queries_32_h.pngbin0 -> 202 bytes-rw-r--r--default_images/dbaccess/res/report_16.pngbin0 -> 398 bytes-rw-r--r--default_images/dbaccess/res/report_16_h.pngbin0 -> 102 bytes-rw-r--r--default_images/dbaccess/res/reports_16.pngbin0 -> 382 bytes-rw-r--r--default_images/dbaccess/res/reports_16_h.pngbin0 -> 128 bytes-rw-r--r--default_images/dbaccess/res/reports_32.pngbin0 -> 1159 bytes-rw-r--r--default_images/dbaccess/res/reports_32_h.pngbin0 -> 210 bytes-rw-r--r--default_images/dbaccess/res/sc036.pngbin0 -> 459 bytes-rw-r--r--default_images/dbaccess/res/sc037.pngbin0 -> 515 bytes-rw-r--r--default_images/dbaccess/res/sc038.pngbin0 -> 493 bytes-rw-r--r--default_images/dbaccess/res/sc039.pngbin0 -> 516 bytes-rw-r--r--default_images/dbaccess/res/sc040.pngbin0 -> 655 bytes-rw-r--r--default_images/dbaccess/res/sch036.pngbin0 -> 142 bytes-rw-r--r--default_images/dbaccess/res/sch037.pngbin0 -> 160 bytes-rw-r--r--default_images/dbaccess/res/sch038.pngbin0 -> 176 bytes-rw-r--r--default_images/dbaccess/res/sch039.pngbin0 -> 146 bytes-rw-r--r--default_images/dbaccess/res/sch040.pngbin0 -> 175 bytes-rw-r--r--default_images/dbaccess/res/sortdown.pngbin0 -> 320 bytes-rw-r--r--default_images/dbaccess/res/sortdown_h.pngbin0 -> 136 bytes-rw-r--r--default_images/dbaccess/res/sortup.pngbin0 -> 334 bytes-rw-r--r--default_images/dbaccess/res/sortup_h.pngbin0 -> 135 bytes-rw-r--r--default_images/dbaccess/res/sxh03187.pngbin0 -> 141 bytes-rw-r--r--default_images/dbaccess/res/sxh16670.pngbin0 -> 167 bytes-rw-r--r--default_images/dbaccess/res/tables_32.pngbin0 -> 944 bytes-rw-r--r--default_images/dbaccess/res/tables_32_h.pngbin0 -> 220 bytes-rw-r--r--default_images/desktop/res/caution_12.pngbin0 -> 376 bytes-rw-r--r--default_images/desktop/res/caution_12_h.pngbin0 -> 137 bytes-rw-r--r--default_images/desktop/res/caution_16.pngbin0 -> 523 bytes-rw-r--r--default_images/desktop/res/caution_16_h.pngbin0 -> 150 bytes-rw-r--r--default_images/desktop/res/extension_16.pngbin0 -> 557 bytes-rw-r--r--default_images/desktop/res/extension_16_h.pngbin0 -> 148 bytes-rw-r--r--default_images/desktop/res/extension_32.pngbin0 -> 838 bytes-rw-r--r--default_images/desktop/res/extension_32_h.pngbin0 -> 223 bytes-rw-r--r--default_images/desktop/res/info_16.pngbin0 -> 801 bytes-rw-r--r--default_images/desktop/res/info_16_h.pngbin0 -> 370 bytes-rw-r--r--default_images/desktop/res/lock_16.pngbin0 -> 735 bytes-rw-r--r--default_images/desktop/res/lock_16_h.pngbin0 -> 149 bytes-rw-r--r--default_images/desktop/res/regkey.pngbin0 -> 1130 bytes-rw-r--r--default_images/desktop/res/shared_16.pngbin0 -> 390 bytes-rw-r--r--default_images/desktop/res/shared_16_h.pngbin0 -> 153 bytes-rw-r--r--default_images/extensions/res/addresspilot.pngbin0 -> 1304 bytes-rw-r--r--default_images/extensions/res/arrow.pngbin0 -> 320 bytes-rw-r--r--default_images/extensions/res/buttonminus.pngbin0 -> 278 bytes-rw-r--r--default_images/extensions/res/buttonminus_hc.pngbin0 -> 119 bytes-rw-r--r--default_images/extensions/res/buttonplus.pngbin0 -> 232 bytes-rw-r--r--default_images/extensions/res/buttonplus_hc.pngbin0 -> 84 bytes-rw-r--r--default_images/extensions/res/m_arrow.pngbin0 -> 328 bytes-rw-r--r--default_images/extensions/source/scanner/handle.pngbin0 -> 122 bytes-rw-r--r--default_images/extensions/source/scanner/minus.pngbin0 -> 175 bytes-rw-r--r--default_images/extensions/source/scanner/plus.pngbin0 -> 191 bytes-rw-r--r--default_images/extensions/source/update/ui/onlineupdate_16.pngbin0 -> 334 bytes-rw-r--r--default_images/extensions/source/update/ui/onlineupdate_16_h.pngbin0 -> 132 bytes-rw-r--r--default_images/extensions/source/update/ui/onlineupdate_26.pngbin0 -> 543 bytes-rw-r--r--default_images/extensions/source/update/ui/onlineupdate_26_h.pngbin0 -> 160 bytes-rw-r--r--default_images/formula/res/fapclose.pngbin0 -> 255 bytes-rw-r--r--default_images/formula/res/fapclose_h.pngbin0 -> 103 bytes-rw-r--r--default_images/formula/res/faperror.pngbin0 -> 257 bytes-rw-r--r--default_images/formula/res/faperror_h.pngbin0 -> 102 bytes-rw-r--r--default_images/formula/res/fapok.pngbin0 -> 248 bytes-rw-r--r--default_images/formula/res/fapok_h.pngbin0 -> 102 bytes-rw-r--r--default_images/formula/res/fapopen.pngbin0 -> 463 bytes-rw-r--r--default_images/formula/res/fapopen_h.pngbin0 -> 119 bytes-rw-r--r--default_images/formula/res/fx.pngbin0 -> 280 bytes-rw-r--r--default_images/formula/res/fx_h.pngbin0 -> 118 bytes-rw-r--r--default_images/formula/res/refinp1.pngbin0 -> 428 bytes-rw-r--r--default_images/formula/res/refinp1_h.pngbin0 -> 119 bytes-rw-r--r--default_images/formula/res/refinp2.pngbin0 -> 349 bytes-rw-r--r--default_images/formula/res/refinp2_h.pngbin0 -> 122 bytes-rw-r--r--default_images/fpicker/res/fp011.pngbin0 -> 446 bytes-rw-r--r--default_images/fpicker/res/fp014.pngbin0 -> 374 bytes-rw-r--r--default_images/fpicker/res/fph011.pngbin0 -> 135 bytes-rw-r--r--default_images/fpicker/res/fph014.pngbin0 -> 125 bytes-rw-r--r--default_images/fpicker/res/list.pngbin0 -> 202 bytes-rw-r--r--default_images/framework/res/addtemplate_32.pngbin0 -> 572 bytes-rw-r--r--default_images/framework/res/arrow.pngbin0 -> 320 bytes-rw-r--r--default_images/framework/res/backing.pngbin0 -> 19498 bytes-rw-r--r--default_images/framework/res/backing_hc.pngbin0 -> 19498 bytes-rw-r--r--default_images/framework/res/backing_right.pngbin0 -> 6396 bytes-rw-r--r--default_images/framework/res/backing_right_hc.pngbin0 -> 6396 bytes-rw-r--r--default_images/framework/res/backing_rtl_left.pngbin0 -> 19498 bytes-rw-r--r--default_images/framework/res/backing_rtl_left_hc.pngbin0 -> 19498 bytes-rw-r--r--default_images/framework/res/backing_rtl_right.pngbin0 -> 6396 bytes-rw-r--r--default_images/framework/res/backing_rtl_right_hc.pngbin0 -> 6396 bytes-rw-r--r--default_images/framework/res/backing_space.pngbin0 -> 336 bytes-rw-r--r--default_images/framework/res/backing_space_hc.pngbin0 -> 336 bytes-rw-r--r--default_images/framework/res/extension.pngbin0 -> 376 bytes-rw-r--r--default_images/framework/res/extension_hc.pngbin0 -> 181 bytes-rw-r--r--default_images/framework/res/folder_32.pngbin0 -> 723 bytes-rw-r--r--default_images/framework/res/folder_32_hc.pngbin0 -> 169 bytes-rw-r--r--default_images/framework/res/info_26.pngbin0 -> 490 bytes-rw-r--r--default_images/framework/res/info_hc.pngbin0 -> 122 bytes-rw-r--r--default_images/framework/res/logo.pngbin0 -> 492 bytes-rw-r--r--default_images/framework/res/register_32.pngbin0 -> 441 bytes-rw-r--r--default_images/framework/res/register_hc.pngbin0 -> 162 bytes-rw-r--r--default_images/framework/res/template_hc.pngbin0 -> 152 bytes-rw-r--r--default_images/framework/res/templates_32.pngbin0 -> 810 bytes-rw-r--r--default_images/framework/res/templates_32_hc.pngbin0 -> 209 bytes-rw-r--r--default_images/goodies/res/bombe.bmpbin0 -> 190 bytes-rw-r--r--default_images/goodies/res/explos1.bmpbin0 -> 190 bytes-rw-r--r--default_images/goodies/res/explos2.bmpbin0 -> 190 bytes-rw-r--r--default_images/goodies/res/explos3.bmpbin0 -> 190 bytes-rw-r--r--default_images/goodies/res/fighter1.bmpbin0 -> 190 bytes-rw-r--r--default_images/goodies/res/fighterl.bmpbin0 -> 190 bytes-rw-r--r--default_images/goodies/res/fighterr.bmpbin0 -> 190 bytes-rw-r--r--default_images/goodies/res/helden.bmpbin0 -> 4438 bytes-rw-r--r--default_images/goodies/res/monitio1.bmpbin0 -> 190 bytes-rw-r--r--default_images/goodies/res/monitio2.bmpbin0 -> 190 bytes-rw-r--r--default_images/goodies/res/monstb1.bmpbin0 -> 190 bytes-rw-r--r--default_images/goodies/res/monstb2.bmpbin0 -> 190 bytes-rw-r--r--default_images/goodies/res/monstb3.bmpbin0 -> 190 bytes-rw-r--r--default_images/goodies/res/monstb4.bmpbin0 -> 190 bytes-rw-r--r--default_images/goodies/res/monster1.bmpbin0 -> 190 bytes-rw-r--r--default_images/goodies/res/monster2.bmpbin0 -> 190 bytes-rw-r--r--default_images/goodies/res/monster3.bmpbin0 -> 190 bytes-rw-r--r--default_images/goodies/res/monster4.bmpbin0 -> 190 bytes-rw-r--r--default_images/goodies/res/scores.bmpbin0 -> 66 bytes-rw-r--r--default_images/goodies/res/swars.bmpbin0 -> 2142 bytes-rw-r--r--default_images/goodies/res/uvisibl1.bmpbin0 -> 190 bytes-rw-r--r--default_images/goodies/res/uvisibl2.bmpbin0 -> 190 bytes-rw-r--r--default_images/goodies/res/uvisibl3.bmpbin0 -> 190 bytes-rw-r--r--default_images/goodies/res/wall1.bmpbin0 -> 190 bytes-rw-r--r--default_images/goodies/res/wall10.bmpbin0 -> 190 bytes-rw-r--r--default_images/goodies/res/wall2.bmpbin0 -> 190 bytes-rw-r--r--default_images/goodies/res/wall3.bmpbin0 -> 190 bytes-rw-r--r--default_images/goodies/res/wall4.bmpbin0 -> 190 bytes-rw-r--r--default_images/goodies/res/wall5.bmpbin0 -> 190 bytes-rw-r--r--default_images/goodies/res/wall6.bmpbin0 -> 190 bytes-rw-r--r--default_images/goodies/res/wall7.bmpbin0 -> 190 bytes-rw-r--r--default_images/goodies/res/wall8.bmpbin0 -> 190 bytes-rw-r--r--default_images/goodies/res/wall9.bmpbin0 -> 190 bytes-rw-r--r--default_images/goodies/res/wlcome2.bmpbin0 -> 190 bytes-rw-r--r--default_images/introabout/about.bmpbin0 -> 147114 bytes-rwxr-xr-xdefault_images/introabout/about.pngbin0 -> 12956 bytes-rw-r--r--default_images/introabout/intro.bmpbin0 -> 806718 bytes-rwxr-xr-xdefault_images/introabout/intro.pngbin0 -> 31528 bytes-rw-r--r--default_images/minimizer/minimizepresi_80.pngbin0 -> 6716 bytes-rw-r--r--default_images/minimizer/minimizepresi_80_h.pngbin0 -> 4233 bytes-rw-r--r--default_images/minimizer/opt_16.pngbin0 -> 4033 bytes-rw-r--r--default_images/minimizer/opt_16_h.pngbin0 -> 3683 bytes-rw-r--r--default_images/minimizer/opt_26.pngbin0 -> 4401 bytes-rw-r--r--default_images/minimizer/opt_26_h.pngbin0 -> 3845 bytes-rw-r--r--default_images/oracleirm/res/irmprotecteditem.bmp0
-rw-r--r--default_images/padmin/source/butter.pngbin0 -> 1013 bytes-rw-r--r--default_images/padmin/source/fax.pngbin0 -> 457 bytes-rw-r--r--default_images/padmin/source/fax_16_h.pngbin0 -> 151 bytes-rw-r--r--default_images/padmin/source/pdf.pngbin0 -> 381 bytes-rw-r--r--default_images/padmin/source/print.pngbin0 -> 346 bytes-rw-r--r--default_images/padmin/source/printer_16_h.pngbin0 -> 132 bytes-rw-r--r--default_images/padmin/source/printer_40x48_h.pngbin0 -> 297 bytes-rw-r--r--default_images/padmin/source/printer_large.pngbin0 -> 480 bytes-rw-r--r--default_images/padmin/source/printpdf_16_h.pngbin0 -> 149 bytes-rw-r--r--default_images/reportdesign/res/report_16.pngbin0 -> 398 bytes-rw-r--r--default_images/reportdesign/res/sc20557.pngbin0 -> 510 bytes-rw-r--r--default_images/reportdesign/res/sc30768.pngbin0 -> 336 bytes-rw-r--r--default_images/reportdesign/res/sc30769.pngbin0 -> 323 bytes-rw-r--r--default_images/reportdesign/res/sc30770.pngbin0 -> 296 bytes-rw-r--r--default_images/reportdesign/res/sch30768.pngbin0 -> 137 bytes-rw-r--r--default_images/reportdesign/res/sch30769.pngbin0 -> 139 bytes-rw-r--r--default_images/reportdesign/res/sch30770.pngbin0 -> 134 bytes-rw-r--r--default_images/reportdesign/res/sortdown.pngbin0 -> 583 bytes-rw-r--r--default_images/reportdesign/res/sortdown_h.pngbin0 -> 174 bytes-rw-r--r--default_images/reportdesign/res/sortup.pngbin0 -> 574 bytes-rw-r--r--default_images/reportdesign/res/sortup_h.pngbin0 -> 176 bytes-rw-r--r--default_images/reportdesign/res/sx10454.pngbin0 -> 326 bytes-rw-r--r--default_images/reportdesign/res/sx10928.pngbin0 -> 149 bytes-rw-r--r--default_images/reportdesign/res/sx10929.pngbin0 -> 205 bytes-rw-r--r--default_images/reportdesign/res/sx11047.pngbin0 -> 387 bytes-rw-r--r--default_images/reportdesign/res/sx12452.pngbin0 -> 570 bytes-rw-r--r--default_images/reportdesign/res/sx12453.pngbin0 -> 570 bytes-rw-r--r--default_images/reportdesign/res/sx12454.pngbin0 -> 362 bytes-rw-r--r--default_images/reportdesign/res/sx12464.pngbin0 -> 398 bytes-rw-r--r--default_images/reportdesign/res/sx12466.pngbin0 -> 339 bytes-rw-r--r--default_images/reportdesign/res/sx12468.pngbin0 -> 331 bytes-rw-r--r--default_images/reportdesign/res/sx12477.pngbin0 -> 394 bytes-rw-r--r--default_images/reportdesign/res/sx12594.pngbin0 -> 287 bytes-rw-r--r--default_images/reportdesign/res/sx12602.pngbin0 -> 498 bytes-rw-r--r--default_images/reportdesign/res/sx12603.pngbin0 -> 326 bytes-rw-r--r--default_images/reportdesign/res/sxh10454.pngbin0 -> 82 bytes-rw-r--r--default_images/reportdesign/res/sxh10928.pngbin0 -> 96 bytes-rw-r--r--default_images/reportdesign/res/sxh10929.pngbin0 -> 101 bytes-rw-r--r--default_images/reportdesign/res/sxh11047.pngbin0 -> 126 bytes-rw-r--r--default_images/reportdesign/res/sxh12452.pngbin0 -> 570 bytes-rw-r--r--default_images/reportdesign/res/sxh12453.pngbin0 -> 570 bytes-rw-r--r--default_images/reportdesign/res/sxh12454.pngbin0 -> 83 bytes-rw-r--r--default_images/reportdesign/res/sxh12464.pngbin0 -> 398 bytes-rw-r--r--default_images/reportdesign/res/sxh12466.pngbin0 -> 99 bytes-rw-r--r--default_images/reportdesign/res/sxh12468.pngbin0 -> 96 bytes-rw-r--r--default_images/reportdesign/res/sxh12477.pngbin0 -> 101 bytes-rw-r--r--default_images/reportdesign/res/sxh12594.pngbin0 -> 124 bytes-rw-r--r--default_images/reportdesign/res/sxh12602.pngbin0 -> 259 bytes-rw-r--r--default_images/reportdesign/res/sxh12603.pngbin0 -> 91 bytes-rw-r--r--default_images/res/adrbook.pngbin0 -> 763 bytes-rw-r--r--default_images/res/adrbook_hc.pngbin0 -> 127 bytes-rw-r--r--default_images/res/arrow_move_down.pngbin0 -> 583 bytes-rw-r--r--default_images/res/arrow_move_down_hc.pngbin0 -> 136 bytes-rw-r--r--default_images/res/arrow_move_up.pngbin0 -> 574 bytes-rw-r--r--default_images/res/arrow_move_up_hc.pngbin0 -> 135 bytes-rw-r--r--default_images/res/arrowup_16.pngbin0 -> 583 bytes-rw-r--r--default_images/res/ballgreen_7.pngbin0 -> 140 bytes-rw-r--r--default_images/res/ballred_7.pngbin0 -> 141 bytes-rw-r--r--default_images/res/basbrk.pngbin0 -> 385 bytes-rw-r--r--default_images/res/basgocl.pngbin0 -> 203 bytes-rw-r--r--default_images/res/basobj2.pngbin0 -> 115 bytes-rw-r--r--default_images/res/baswatr.pngbin0 -> 517 bytes-rw-r--r--default_images/res/baswatr_h.pngbin0 -> 180 bytes-rw-r--r--default_images/res/browse.pngbin0 -> 562 bytes-rw-r--r--default_images/res/browse_hc.pngbin0 -> 159 bytes-rw-r--r--default_images/res/commandimagelist/ar/lc_bold.pngbin0 -> 228 bytes-rw-r--r--default_images/res/commandimagelist/ar/lc_italic.pngbin0 -> 238 bytes-rw-r--r--default_images/res/commandimagelist/ar/lc_underline.pngbin0 -> 213 bytes-rw-r--r--default_images/res/commandimagelist/ar/lch_bold.pngbin0 -> 143 bytes-rw-r--r--default_images/res/commandimagelist/ar/lch_italic.pngbin0 -> 210 bytes-rw-r--r--default_images/res/commandimagelist/ar/lch_underline.pngbin0 -> 176 bytes-rw-r--r--default_images/res/commandimagelist/ar/sc_bold.pngbin0 -> 170 bytes-rw-r--r--default_images/res/commandimagelist/ar/sc_italic.pngbin0 -> 183 bytes-rw-r--r--default_images/res/commandimagelist/ar/sc_underline.pngbin0 -> 190 bytes-rw-r--r--default_images/res/commandimagelist/ar/sch_bold.pngbin0 -> 118 bytes-rw-r--r--default_images/res/commandimagelist/ar/sch_italic.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/ar/sch_underline.pngbin0 -> 120 bytes-rw-r--r--default_images/res/commandimagelist/bg/lc_backcolor.pngbin0 -> 336 bytes-rw-r--r--default_images/res/commandimagelist/bg/lc_bold.pngbin0 -> 354 bytes-rw-r--r--default_images/res/commandimagelist/bg/lc_dbqueryrename.pngbin0 -> 197 bytes-rw-r--r--default_images/res/commandimagelist/bg/lc_dbtablerename.pngbin0 -> 198 bytes-rw-r--r--default_images/res/commandimagelist/bg/lc_doubleclicktextedit.pngbin0 -> 223 bytes-rw-r--r--default_images/res/commandimagelist/bg/lc_edit.pngbin0 -> 179 bytes-rw-r--r--default_images/res/commandimagelist/bg/lc_editglossary.pngbin0 -> 252 bytes-rw-r--r--default_images/res/commandimagelist/bg/lc_hyphenate.pngbin0 -> 190 bytes-rw-r--r--default_images/res/commandimagelist/bg/lc_hyphenation.pngbin0 -> 190 bytes-rw-r--r--default_images/res/commandimagelist/bg/lc_insertedit.pngbin0 -> 179 bytes-rw-r--r--default_images/res/commandimagelist/bg/lc_italic.pngbin0 -> 388 bytes-rw-r--r--default_images/res/commandimagelist/bg/lc_label.pngbin0 -> 163 bytes-rw-r--r--default_images/res/commandimagelist/bg/lc_ordercrit.pngbin0 -> 356 bytes-rw-r--r--default_images/res/commandimagelist/bg/lc_pickthrough.pngbin0 -> 195 bytes-rw-r--r--default_images/res/commandimagelist/bg/lc_shadowed.pngbin0 -> 600 bytes-rw-r--r--default_images/res/commandimagelist/bg/lc_sortascending.pngbin0 -> 431 bytes-rw-r--r--default_images/res/commandimagelist/bg/lc_sortdescending.pngbin0 -> 432 bytes-rw-r--r--default_images/res/commandimagelist/bg/lc_sortdown.pngbin0 -> 431 bytes-rw-r--r--default_images/res/commandimagelist/bg/lc_sortup.pngbin0 -> 431 bytes-rw-r--r--default_images/res/commandimagelist/bg/lc_spelldialog.pngbin0 -> 225 bytes-rw-r--r--default_images/res/commandimagelist/bg/lc_spelling.pngbin0 -> 225 bytes-rw-r--r--default_images/res/commandimagelist/bg/lc_spellonline.pngbin0 -> 190 bytes-rw-r--r--default_images/res/commandimagelist/bg/lc_strikeout.pngbin0 -> 199 bytes-rw-r--r--default_images/res/commandimagelist/bg/lc_tablesort.pngbin0 -> 356 bytes-rw-r--r--default_images/res/commandimagelist/bg/lc_textdraft.pngbin0 -> 247 bytes-rw-r--r--default_images/res/commandimagelist/bg/lc_thesaurus.pngbin0 -> 248 bytes-rw-r--r--default_images/res/commandimagelist/bg/lc_thesaurusdialog.pngbin0 -> 249 bytes-rw-r--r--default_images/res/commandimagelist/bg/lc_underline.pngbin0 -> 341 bytes-rw-r--r--default_images/res/commandimagelist/bg/lc_underlinedouble.pngbin0 -> 342 bytes-rw-r--r--default_images/res/commandimagelist/bg/lch_backcolor.pngbin0 -> 215 bytes-rw-r--r--default_images/res/commandimagelist/bg/lch_bold.pngbin0 -> 312 bytes-rw-r--r--default_images/res/commandimagelist/bg/lch_doubleclicktextedit.pngbin0 -> 180 bytes-rw-r--r--default_images/res/commandimagelist/bg/lch_edit.pngbin0 -> 149 bytes-rw-r--r--default_images/res/commandimagelist/bg/lch_editglossary.pngbin0 -> 218 bytes-rw-r--r--default_images/res/commandimagelist/bg/lch_hyphenate.pngbin0 -> 152 bytes-rw-r--r--default_images/res/commandimagelist/bg/lch_hyphenation.pngbin0 -> 153 bytes-rw-r--r--default_images/res/commandimagelist/bg/lch_insertedit.pngbin0 -> 149 bytes-rw-r--r--default_images/res/commandimagelist/bg/lch_insertfixedtext.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/bg/lch_italic.pngbin0 -> 330 bytes-rw-r--r--default_images/res/commandimagelist/bg/lch_label.pngbin0 -> 143 bytes-rw-r--r--default_images/res/commandimagelist/bg/lch_ordercrit.pngbin0 -> 302 bytes-rw-r--r--default_images/res/commandimagelist/bg/lch_pickthrough.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/bg/lch_quickedit.pngbin0 -> 140 bytes-rw-r--r--default_images/res/commandimagelist/bg/lch_sortascending.pngbin0 -> 368 bytes-rw-r--r--default_images/res/commandimagelist/bg/lch_sortdescending.pngbin0 -> 373 bytes-rw-r--r--default_images/res/commandimagelist/bg/lch_sortdown.pngbin0 -> 376 bytes-rw-r--r--default_images/res/commandimagelist/bg/lch_sortup.pngbin0 -> 368 bytes-rw-r--r--default_images/res/commandimagelist/bg/lch_spelldialog.pngbin0 -> 183 bytes-rw-r--r--default_images/res/commandimagelist/bg/lch_spelling.pngbin0 -> 181 bytes-rw-r--r--default_images/res/commandimagelist/bg/lch_spellonline.pngbin0 -> 149 bytes-rw-r--r--default_images/res/commandimagelist/bg/lch_strikeout.pngbin0 -> 195 bytes-rw-r--r--default_images/res/commandimagelist/bg/lch_tablesort.pngbin0 -> 302 bytes-rw-r--r--default_images/res/commandimagelist/bg/lch_thesaurus.pngbin0 -> 165 bytes-rw-r--r--default_images/res/commandimagelist/bg/lch_thesaurusdialog.pngbin0 -> 164 bytes-rw-r--r--default_images/res/commandimagelist/bg/lch_toggleaxistitle.pngbin0 -> 145 bytes-rw-r--r--default_images/res/commandimagelist/bg/lch_toggletitle.pngbin0 -> 151 bytes-rw-r--r--default_images/res/commandimagelist/bg/lch_underline.pngbin0 -> 285 bytes-rw-r--r--default_images/res/commandimagelist/bg/lch_underlinedouble.pngbin0 -> 287 bytes-rw-r--r--default_images/res/commandimagelist/bg/sc_backcolor.pngbin0 -> 203 bytes-rw-r--r--default_images/res/commandimagelist/bg/sc_bold.pngbin0 -> 221 bytes-rw-r--r--default_images/res/commandimagelist/bg/sc_dbqueryrename.pngbin0 -> 152 bytes-rw-r--r--default_images/res/commandimagelist/bg/sc_dbtablerename.pngbin0 -> 152 bytes-rw-r--r--default_images/res/commandimagelist/bg/sc_doubleclicktextedit.pngbin0 -> 178 bytes-rw-r--r--default_images/res/commandimagelist/bg/sc_edit.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/bg/sc_editglossary.pngbin0 -> 194 bytes-rw-r--r--default_images/res/commandimagelist/bg/sc_hyphenate.pngbin0 -> 143 bytes-rw-r--r--default_images/res/commandimagelist/bg/sc_hyphenation.pngbin0 -> 143 bytes-rw-r--r--default_images/res/commandimagelist/bg/sc_insertedit.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/bg/sc_insertfixedtext.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/bg/sc_italic.pngbin0 -> 232 bytes-rw-r--r--default_images/res/commandimagelist/bg/sc_label.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/bg/sc_ordercrit.pngbin0 -> 237 bytes-rw-r--r--default_images/res/commandimagelist/bg/sc_quickedit.pngbin0 -> 128 bytes-rw-r--r--default_images/res/commandimagelist/bg/sc_shadowed.pngbin0 -> 440 bytes-rw-r--r--default_images/res/commandimagelist/bg/sc_sortascending.pngbin0 -> 286 bytes-rw-r--r--default_images/res/commandimagelist/bg/sc_sortdescending.pngbin0 -> 279 bytes-rw-r--r--default_images/res/commandimagelist/bg/sc_sortdown.pngbin0 -> 279 bytes-rw-r--r--default_images/res/commandimagelist/bg/sc_sortup.pngbin0 -> 281 bytes-rw-r--r--default_images/res/commandimagelist/bg/sc_spelldialog.pngbin0 -> 176 bytes-rw-r--r--default_images/res/commandimagelist/bg/sc_spelling.pngbin0 -> 176 bytes-rw-r--r--default_images/res/commandimagelist/bg/sc_spellonline.pngbin0 -> 136 bytes-rw-r--r--default_images/res/commandimagelist/bg/sc_strikeout.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/bg/sc_tablesort.pngbin0 -> 237 bytes-rw-r--r--default_images/res/commandimagelist/bg/sc_textdraft.pngbin0 -> 192 bytes-rw-r--r--default_images/res/commandimagelist/bg/sc_thesaurus.pngbin0 -> 196 bytes-rw-r--r--default_images/res/commandimagelist/bg/sc_thesaurusdialog.pngbin0 -> 196 bytes-rw-r--r--default_images/res/commandimagelist/bg/sc_underline.pngbin0 -> 233 bytes-rw-r--r--default_images/res/commandimagelist/bg/sc_underlinedouble.pngbin0 -> 251 bytes-rw-r--r--default_images/res/commandimagelist/bg/sch_backcolor.pngbin0 -> 182 bytes-rw-r--r--default_images/res/commandimagelist/bg/sch_bold.pngbin0 -> 203 bytes-rw-r--r--default_images/res/commandimagelist/bg/sch_editglossary.pngbin0 -> 165 bytes-rw-r--r--default_images/res/commandimagelist/bg/sch_hyphenate.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/bg/sch_hyphenation.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/bg/sch_insertedit.pngbin0 -> 116 bytes-rw-r--r--default_images/res/commandimagelist/bg/sch_italic.pngbin0 -> 213 bytes-rw-r--r--default_images/res/commandimagelist/bg/sch_label.pngbin0 -> 104 bytes-rw-r--r--default_images/res/commandimagelist/bg/sch_ordercrit.pngbin0 -> 209 bytes-rw-r--r--default_images/res/commandimagelist/bg/sch_pickthrough.pngbin0 -> 129 bytes-rw-r--r--default_images/res/commandimagelist/bg/sch_sortascending.pngbin0 -> 248 bytes-rw-r--r--default_images/res/commandimagelist/bg/sch_sortdescending.pngbin0 -> 246 bytes-rw-r--r--default_images/res/commandimagelist/bg/sch_sortdown.pngbin0 -> 246 bytes-rw-r--r--default_images/res/commandimagelist/bg/sch_sortup.pngbin0 -> 248 bytes-rw-r--r--default_images/res/commandimagelist/bg/sch_spelldialog.pngbin0 -> 141 bytes-rw-r--r--default_images/res/commandimagelist/bg/sch_spelling.pngbin0 -> 142 bytes-rw-r--r--default_images/res/commandimagelist/bg/sch_spellonline.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/bg/sch_strikeout.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/bg/sch_tablesort.pngbin0 -> 209 bytes-rw-r--r--default_images/res/commandimagelist/bg/sch_thesaurus.pngbin0 -> 137 bytes-rw-r--r--default_images/res/commandimagelist/bg/sch_thesaurusdialog.pngbin0 -> 137 bytes-rw-r--r--default_images/res/commandimagelist/bg/sch_underline.pngbin0 -> 209 bytes-rw-r--r--default_images/res/commandimagelist/bg/sch_underlinedouble.pngbin0 -> 212 bytes-rw-r--r--default_images/res/commandimagelist/ca/lc_bold.pngbin0 -> 200 bytes-rw-r--r--default_images/res/commandimagelist/ca/lc_italic.pngbin0 -> 288 bytes-rw-r--r--default_images/res/commandimagelist/ca/lc_underline.pngbin0 -> 274 bytes-rw-r--r--default_images/res/commandimagelist/ca/lc_underlinedouble.pngbin0 -> 276 bytes-rw-r--r--default_images/res/commandimagelist/ca/lch_bold.pngbin0 -> 130 bytes-rw-r--r--default_images/res/commandimagelist/ca/lch_italic.pngbin0 -> 248 bytes-rw-r--r--default_images/res/commandimagelist/ca/lch_underline.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/ca/lch_underlinedouble.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/ca/sc_bold.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/ca/sc_italic.pngbin0 -> 213 bytes-rw-r--r--default_images/res/commandimagelist/ca/sc_underline.pngbin0 -> 220 bytes-rw-r--r--default_images/res/commandimagelist/ca/sc_underlinedouble.pngbin0 -> 221 bytes-rw-r--r--default_images/res/commandimagelist/ca/sch_bold.pngbin0 -> 105 bytes-rw-r--r--default_images/res/commandimagelist/ca/sch_italic.pngbin0 -> 182 bytes-rw-r--r--default_images/res/commandimagelist/ca/sch_underline.pngbin0 -> 115 bytes-rw-r--r--default_images/res/commandimagelist/ca/sch_underlinedouble.pngbin0 -> 115 bytes-rw-r--r--default_images/res/commandimagelist/cs/lc_bold.pngbin0 -> 228 bytes-rw-r--r--default_images/res/commandimagelist/cs/lc_italic.pngbin0 -> 239 bytes-rw-r--r--default_images/res/commandimagelist/cs/lc_numberformatdecimal.pngbin0 -> 355 bytes-rw-r--r--default_images/res/commandimagelist/cs/lc_underline.pngbin0 -> 215 bytes-rw-r--r--default_images/res/commandimagelist/cs/lc_underlinedouble.pngbin0 -> 213 bytes-rw-r--r--default_images/res/commandimagelist/cs/lch_bold.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/cs/lch_italic.pngbin0 -> 209 bytes-rw-r--r--default_images/res/commandimagelist/cs/lch_numberformatdecimal.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/cs/lch_underline.pngbin0 -> 176 bytes-rw-r--r--default_images/res/commandimagelist/cs/lch_underlinedouble.pngbin0 -> 176 bytes-rw-r--r--default_images/res/commandimagelist/cs/sc_bold.pngbin0 -> 170 bytes-rw-r--r--default_images/res/commandimagelist/cs/sc_italic.pngbin0 -> 184 bytes-rw-r--r--default_images/res/commandimagelist/cs/sc_numberformatdecimal.pngbin0 -> 266 bytes-rw-r--r--default_images/res/commandimagelist/cs/sc_underline.pngbin0 -> 189 bytes-rw-r--r--default_images/res/commandimagelist/cs/sc_underlinedouble.pngbin0 -> 190 bytes-rw-r--r--default_images/res/commandimagelist/cs/sch_bold.pngbin0 -> 118 bytes-rw-r--r--default_images/res/commandimagelist/cs/sch_italic.pngbin0 -> 162 bytes-rw-r--r--default_images/res/commandimagelist/cs/sch_numberformatdecimal.pngbin0 -> 119 bytes-rw-r--r--default_images/res/commandimagelist/cs/sch_underline.pngbin0 -> 120 bytes-rw-r--r--default_images/res/commandimagelist/cs/sch_underlinedouble.pngbin0 -> 120 bytes-rw-r--r--default_images/res/commandimagelist/de/lc_bold.pngbin0 -> 256 bytes-rw-r--r--default_images/res/commandimagelist/de/lc_italic.pngbin0 -> 440 bytes-rw-r--r--default_images/res/commandimagelist/de/lc_numberformatdecimal.pngbin0 -> 373 bytes-rw-r--r--default_images/res/commandimagelist/de/lc_underline.pngbin0 -> 361 bytes-rw-r--r--default_images/res/commandimagelist/de/lc_underlinedouble.pngbin0 -> 357 bytes-rw-r--r--default_images/res/commandimagelist/de/lch_bold.pngbin0 -> 97 bytes-rw-r--r--default_images/res/commandimagelist/de/lch_italic.pngbin0 -> 188 bytes-rw-r--r--default_images/res/commandimagelist/de/lch_numberformatdecimal.pngbin0 -> 149 bytes-rw-r--r--default_images/res/commandimagelist/de/lch_underline.pngbin0 -> 176 bytes-rw-r--r--default_images/res/commandimagelist/de/lch_underlinedouble.pngbin0 -> 176 bytes-rw-r--r--default_images/res/commandimagelist/de/sc_bold.pngbin0 -> 206 bytes-rw-r--r--default_images/res/commandimagelist/de/sc_italic.pngbin0 -> 304 bytes-rw-r--r--default_images/res/commandimagelist/de/sc_numberformatdecimal.pngbin0 -> 280 bytes-rw-r--r--default_images/res/commandimagelist/de/sc_underline.pngbin0 -> 257 bytes-rw-r--r--default_images/res/commandimagelist/de/sc_underlinedouble.pngbin0 -> 258 bytes-rw-r--r--default_images/res/commandimagelist/de/sch_bold.pngbin0 -> 90 bytes-rw-r--r--default_images/res/commandimagelist/de/sch_italic.pngbin0 -> 142 bytes-rw-r--r--default_images/res/commandimagelist/de/sch_numberformatdecimal.pngbin0 -> 125 bytes-rw-r--r--default_images/res/commandimagelist/de/sch_underline.pngbin0 -> 120 bytes-rw-r--r--default_images/res/commandimagelist/de/sch_underlinedouble.pngbin0 -> 120 bytes-rw-r--r--default_images/res/commandimagelist/en-GB/lc_bold.pngbin0 -> 366 bytes-rw-r--r--default_images/res/commandimagelist/en-GB/lc_italic.pngbin0 -> 320 bytes-rw-r--r--default_images/res/commandimagelist/en-GB/lc_numberformatdecimal.pngbin0 -> 355 bytes-rw-r--r--default_images/res/commandimagelist/en-GB/lc_underline.pngbin0 -> 361 bytes-rw-r--r--default_images/res/commandimagelist/en-GB/lc_underlinedouble.pngbin0 -> 356 bytes-rw-r--r--default_images/res/commandimagelist/en-GB/lch_bold.pngbin0 -> 143 bytes-rw-r--r--default_images/res/commandimagelist/en-GB/lch_italic.pngbin0 -> 148 bytes-rw-r--r--default_images/res/commandimagelist/en-GB/lch_numberformatdecimal.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/en-GB/lch_underline.pngbin0 -> 175 bytes-rw-r--r--default_images/res/commandimagelist/en-GB/lch_underlinedouble.pngbin0 -> 176 bytes-rw-r--r--default_images/res/commandimagelist/en-GB/sc_bold.pngbin0 -> 275 bytes-rw-r--r--default_images/res/commandimagelist/en-GB/sc_italic.pngbin0 -> 236 bytes-rw-r--r--default_images/res/commandimagelist/en-GB/sc_numberformatdecimal.pngbin0 -> 266 bytes-rw-r--r--default_images/res/commandimagelist/en-GB/sc_underline.pngbin0 -> 257 bytes-rw-r--r--default_images/res/commandimagelist/en-GB/sc_underlinedouble.pngbin0 -> 258 bytes-rw-r--r--default_images/res/commandimagelist/en-GB/sch_bold.pngbin0 -> 118 bytes-rw-r--r--default_images/res/commandimagelist/en-GB/sch_italic.pngbin0 -> 126 bytes-rw-r--r--default_images/res/commandimagelist/en-GB/sch_numberformatdecimal.pngbin0 -> 119 bytes-rw-r--r--default_images/res/commandimagelist/en-GB/sch_underline.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/en-GB/sch_underlinedouble.pngbin0 -> 120 bytes-rw-r--r--default_images/res/commandimagelist/es/lc_bold.pngbin0 -> 200 bytes-rw-r--r--default_images/res/commandimagelist/es/lc_italic.pngbin0 -> 288 bytes-rw-r--r--default_images/res/commandimagelist/es/lc_numberformatdecimal.pngbin0 -> 372 bytes-rw-r--r--default_images/res/commandimagelist/es/lc_underline.pngbin0 -> 274 bytes-rw-r--r--default_images/res/commandimagelist/es/lc_underlinedouble.pngbin0 -> 276 bytes-rw-r--r--default_images/res/commandimagelist/es/lch_bold.pngbin0 -> 130 bytes-rw-r--r--default_images/res/commandimagelist/es/lch_italic.pngbin0 -> 248 bytes-rw-r--r--default_images/res/commandimagelist/es/lch_numberformatdecimal.pngbin0 -> 149 bytes-rw-r--r--default_images/res/commandimagelist/es/lch_underline.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/es/lch_underlinedouble.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/es/sc_bold.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/es/sc_italic.pngbin0 -> 214 bytes-rw-r--r--default_images/res/commandimagelist/es/sc_numberformatdecimal.pngbin0 -> 280 bytes-rw-r--r--default_images/res/commandimagelist/es/sc_underline.pngbin0 -> 220 bytes-rw-r--r--default_images/res/commandimagelist/es/sc_underlinedouble.pngbin0 -> 221 bytes-rw-r--r--default_images/res/commandimagelist/es/sch_bold.pngbin0 -> 105 bytes-rw-r--r--default_images/res/commandimagelist/es/sch_italic.pngbin0 -> 182 bytes-rw-r--r--default_images/res/commandimagelist/es/sch_numberformatdecimal.pngbin0 -> 125 bytes-rw-r--r--default_images/res/commandimagelist/es/sch_underline.pngbin0 -> 114 bytes-rw-r--r--default_images/res/commandimagelist/es/sch_underlinedouble.pngbin0 -> 115 bytes-rw-r--r--default_images/res/commandimagelist/et/lc_bold.pngbin0 -> 228 bytes-rw-r--r--default_images/res/commandimagelist/et/lc_italic.pngbin0 -> 238 bytes-rw-r--r--default_images/res/commandimagelist/et/lc_numberformatdecimal.pngbin0 -> 355 bytes-rw-r--r--default_images/res/commandimagelist/et/lc_underline.pngbin0 -> 213 bytes-rw-r--r--default_images/res/commandimagelist/et/lc_underlinedouble.pngbin0 -> 214 bytes-rw-r--r--default_images/res/commandimagelist/et/lch_bold.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/et/lch_italic.pngbin0 -> 209 bytes-rw-r--r--default_images/res/commandimagelist/et/lch_numberformatdecimal.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/et/lch_underline.pngbin0 -> 175 bytes-rw-r--r--default_images/res/commandimagelist/et/lch_underlinedouble.pngbin0 -> 176 bytes-rw-r--r--default_images/res/commandimagelist/et/sc_bold.pngbin0 -> 170 bytes-rw-r--r--default_images/res/commandimagelist/et/sc_italic.pngbin0 -> 183 bytes-rw-r--r--default_images/res/commandimagelist/et/sc_numberformatdecimal.pngbin0 -> 266 bytes-rw-r--r--default_images/res/commandimagelist/et/sc_underline.pngbin0 -> 187 bytes-rw-r--r--default_images/res/commandimagelist/et/sc_underlinedouble.pngbin0 -> 190 bytes-rw-r--r--default_images/res/commandimagelist/et/sch_bold.pngbin0 -> 118 bytes-rw-r--r--default_images/res/commandimagelist/et/sch_italic.pngbin0 -> 162 bytes-rw-r--r--default_images/res/commandimagelist/et/sch_numberformatdecimal.pngbin0 -> 119 bytes-rw-r--r--default_images/res/commandimagelist/et/sch_underline.pngbin0 -> 120 bytes-rw-r--r--default_images/res/commandimagelist/et/sch_underlinedouble.pngbin0 -> 120 bytes-rw-r--r--default_images/res/commandimagelist/fr/lc_bold.pngbin0 -> 249 bytes-rw-r--r--default_images/res/commandimagelist/fr/lc_italic.pngbin0 -> 212 bytes-rw-r--r--default_images/res/commandimagelist/fr/lc_underline.pngbin0 -> 257 bytes-rw-r--r--default_images/res/commandimagelist/fr/lc_underlinedouble.pngbin0 -> 259 bytes-rw-r--r--default_images/res/commandimagelist/fr/lch_bold.pngbin0 -> 115 bytes-rw-r--r--default_images/res/commandimagelist/fr/lch_italic.pngbin0 -> 188 bytes-rw-r--r--default_images/res/commandimagelist/fr/lch_underline.pngbin0 -> 115 bytes-rw-r--r--default_images/res/commandimagelist/fr/lch_underlinedouble.pngbin0 -> 115 bytes-rw-r--r--default_images/res/commandimagelist/fr/sc_bold.pngbin0 -> 189 bytes-rw-r--r--default_images/res/commandimagelist/fr/sc_italic.pngbin0 -> 163 bytes-rw-r--r--default_images/res/commandimagelist/fr/sc_underline.pngbin0 -> 209 bytes-rw-r--r--default_images/res/commandimagelist/fr/sc_underlinedouble.pngbin0 -> 211 bytes-rw-r--r--default_images/res/commandimagelist/fr/sch_bold.pngbin0 -> 104 bytes-rw-r--r--default_images/res/commandimagelist/fr/sch_italic.pngbin0 -> 154 bytes-rw-r--r--default_images/res/commandimagelist/fr/sch_underline.pngbin0 -> 97 bytes-rw-r--r--default_images/res/commandimagelist/fr/sch_underlinedouble.pngbin0 -> 98 bytes-rw-r--r--default_images/res/commandimagelist/hu/lc_bold.pngbin0 -> 148 bytes-rw-r--r--default_images/res/commandimagelist/hu/lc_italic.pngbin0 -> 316 bytes-rw-r--r--default_images/res/commandimagelist/hu/lc_underline.pngbin0 -> 304 bytes-rw-r--r--default_images/res/commandimagelist/hu/lc_underlinedouble.pngbin0 -> 304 bytes-rw-r--r--default_images/res/commandimagelist/hu/lch_bold.pngbin0 -> 97 bytes-rw-r--r--default_images/res/commandimagelist/hu/lch_italic.pngbin0 -> 180 bytes-rw-r--r--default_images/res/commandimagelist/hu/lch_underline.pngbin0 -> 183 bytes-rw-r--r--default_images/res/commandimagelist/hu/lch_underlinedouble.pngbin0 -> 182 bytes-rw-r--r--default_images/res/commandimagelist/hu/sc_bold.pngbin0 -> 126 bytes-rw-r--r--default_images/res/commandimagelist/hu/sc_italic.pngbin0 -> 233 bytes-rw-r--r--default_images/res/commandimagelist/hu/sc_underline.pngbin0 -> 219 bytes-rw-r--r--default_images/res/commandimagelist/hu/sc_underlinedouble.pngbin0 -> 260 bytes-rw-r--r--default_images/res/commandimagelist/hu/sch_bold.pngbin0 -> 90 bytes-rw-r--r--default_images/res/commandimagelist/hu/sch_italic.pngbin0 -> 139 bytes-rw-r--r--default_images/res/commandimagelist/hu/sch_underline.pngbin0 -> 136 bytes-rw-r--r--default_images/res/commandimagelist/hu/sch_underlinedouble.pngbin0 -> 136 bytes-rw-r--r--default_images/res/commandimagelist/it/lc_bold.pngbin0 -> 260 bytes-rw-r--r--default_images/res/commandimagelist/it/lc_italic.pngbin0 -> 289 bytes-rw-r--r--default_images/res/commandimagelist/it/lc_underline.pngbin0 -> 274 bytes-rw-r--r--default_images/res/commandimagelist/it/lc_underlinedouble.pngbin0 -> 276 bytes-rw-r--r--default_images/res/commandimagelist/it/lch_bold.pngbin0 -> 128 bytes-rw-r--r--default_images/res/commandimagelist/it/lch_italic.pngbin0 -> 248 bytes-rw-r--r--default_images/res/commandimagelist/it/lch_underline.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/it/lch_underlinedouble.pngbin0 -> 143 bytes-rw-r--r--default_images/res/commandimagelist/it/sc_bold.pngbin0 -> 199 bytes-rw-r--r--default_images/res/commandimagelist/it/sc_italic.pngbin0 -> 213 bytes-rw-r--r--default_images/res/commandimagelist/it/sc_underline.pngbin0 -> 219 bytes-rw-r--r--default_images/res/commandimagelist/it/sc_underlinedouble.pngbin0 -> 221 bytes-rw-r--r--default_images/res/commandimagelist/it/sch_bold.pngbin0 -> 120 bytes-rw-r--r--default_images/res/commandimagelist/it/sch_italic.pngbin0 -> 182 bytes-rw-r--r--default_images/res/commandimagelist/it/sch_underline.pngbin0 -> 114 bytes-rw-r--r--default_images/res/commandimagelist/it/sch_underlinedouble.pngbin0 -> 115 bytes-rw-r--r--default_images/res/commandimagelist/ja/lc_bold.pngbin0 -> 228 bytes-rw-r--r--default_images/res/commandimagelist/ja/lc_italic.pngbin0 -> 240 bytes-rw-r--r--default_images/res/commandimagelist/ja/lc_underline.pngbin0 -> 213 bytes-rw-r--r--default_images/res/commandimagelist/ja/lc_underlinedouble.pngbin0 -> 214 bytes-rw-r--r--default_images/res/commandimagelist/ja/lch_bold.pngbin0 -> 143 bytes-rw-r--r--default_images/res/commandimagelist/ja/lch_italic.pngbin0 -> 209 bytes-rw-r--r--default_images/res/commandimagelist/ja/lch_underline.pngbin0 -> 175 bytes-rw-r--r--default_images/res/commandimagelist/ja/lch_underlinedouble.pngbin0 -> 177 bytes-rw-r--r--default_images/res/commandimagelist/ja/sc_bold.pngbin0 -> 170 bytes-rw-r--r--default_images/res/commandimagelist/ja/sc_italic.pngbin0 -> 183 bytes-rw-r--r--default_images/res/commandimagelist/ja/sc_underline.pngbin0 -> 190 bytes-rw-r--r--default_images/res/commandimagelist/ja/sc_underlinedouble.pngbin0 -> 190 bytes-rw-r--r--default_images/res/commandimagelist/ja/sch_bold.pngbin0 -> 118 bytes-rw-r--r--default_images/res/commandimagelist/ja/sch_italic.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/ja/sch_underline.pngbin0 -> 120 bytes-rw-r--r--default_images/res/commandimagelist/ja/sch_underlinedouble.pngbin0 -> 120 bytes-rw-r--r--default_images/res/commandimagelist/km/lc_bold.pngbin0 -> 156 bytes-rw-r--r--default_images/res/commandimagelist/km/lc_italic.pngbin0 -> 293 bytes-rw-r--r--default_images/res/commandimagelist/km/lc_numberformatdecimal.pngbin0 -> 356 bytes-rw-r--r--default_images/res/commandimagelist/km/lc_underline.pngbin0 -> 309 bytes-rw-r--r--default_images/res/commandimagelist/km/lc_underlinedouble.pngbin0 -> 308 bytes-rw-r--r--default_images/res/commandimagelist/km/lch_bold.pngbin0 -> 150 bytes-rw-r--r--default_images/res/commandimagelist/km/lch_italic.pngbin0 -> 257 bytes-rw-r--r--default_images/res/commandimagelist/km/lch_numberformatdecimal.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/km/lch_underline.pngbin0 -> 146 bytes-rw-r--r--default_images/res/commandimagelist/km/lch_underlinedouble.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/km/sc_bold.pngbin0 -> 183 bytes-rw-r--r--default_images/res/commandimagelist/km/sc_italic.pngbin0 -> 288 bytes-rw-r--r--default_images/res/commandimagelist/km/sc_numberformatdecimal.pngbin0 -> 266 bytes-rw-r--r--default_images/res/commandimagelist/km/sc_underline.pngbin0 -> 294 bytes-rw-r--r--default_images/res/commandimagelist/km/sc_underlinedouble.pngbin0 -> 298 bytes-rw-r--r--default_images/res/commandimagelist/km/sch_bold.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/km/sch_italic.pngbin0 -> 259 bytes-rw-r--r--default_images/res/commandimagelist/km/sch_numberformatdecimal.pngbin0 -> 119 bytes-rw-r--r--default_images/res/commandimagelist/km/sch_underline.pngbin0 -> 130 bytes-rw-r--r--default_images/res/commandimagelist/km/sch_underlinedouble.pngbin0 -> 129 bytes-rw-r--r--default_images/res/commandimagelist/ko/lc_bold.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/ko/lc_charfontname.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/ko/lc_color.pngbin0 -> 160 bytes-rw-r--r--default_images/res/commandimagelist/ko/lc_drawtext.pngbin0 -> 120 bytes-rw-r--r--default_images/res/commandimagelist/ko/lc_fontcolor.pngbin0 -> 160 bytes-rw-r--r--default_images/res/commandimagelist/ko/lc_fontheight.pngbin0 -> 195 bytes-rw-r--r--default_images/res/commandimagelist/ko/lc_italic.pngbin0 -> 139 bytes-rw-r--r--default_images/res/commandimagelist/ko/lc_ordercrit.pngbin0 -> 120 bytes-rw-r--r--default_images/res/commandimagelist/ko/lc_outlinefont.pngbin0 -> 167 bytes-rw-r--r--default_images/res/commandimagelist/ko/lc_shadowed.pngbin0 -> 188 bytes-rw-r--r--default_images/res/commandimagelist/ko/lc_sortdown.pngbin0 -> 157 bytes-rw-r--r--default_images/res/commandimagelist/ko/lc_sortup.pngbin0 -> 163 bytes-rw-r--r--default_images/res/commandimagelist/ko/lc_strikeout.pngbin0 -> 159 bytes-rw-r--r--default_images/res/commandimagelist/ko/lc_tablesort.pngbin0 -> 120 bytes-rw-r--r--default_images/res/commandimagelist/ko/lc_text.pngbin0 -> 120 bytes-rw-r--r--default_images/res/commandimagelist/ko/lc_text_marquee.pngbin0 -> 192 bytes-rw-r--r--default_images/res/commandimagelist/ko/lc_textdirectionlefttoright.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/ko/lc_textdirectiontoptobottom.pngbin0 -> 156 bytes-rw-r--r--default_images/res/commandimagelist/ko/lc_texttoolbox.pngbin0 -> 120 bytes-rw-r--r--default_images/res/commandimagelist/ko/lc_underline.pngbin0 -> 171 bytes-rw-r--r--default_images/res/commandimagelist/ko/lc_underlinedouble.pngbin0 -> 172 bytes-rw-r--r--default_images/res/commandimagelist/ko/lc_verticaltext.pngbin0 -> 117 bytes-rw-r--r--default_images/res/commandimagelist/ko/lch_bold.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/ko/lch_charfontname.pngbin0 -> 133 bytes-rw-r--r--default_images/res/commandimagelist/ko/lch_color.pngbin0 -> 159 bytes-rw-r--r--default_images/res/commandimagelist/ko/lch_drawtext.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/ko/lch_fontcolor.pngbin0 -> 159 bytes-rw-r--r--default_images/res/commandimagelist/ko/lch_fontheight.pngbin0 -> 216 bytes-rw-r--r--default_images/res/commandimagelist/ko/lch_italic.pngbin0 -> 126 bytes-rw-r--r--default_images/res/commandimagelist/ko/lch_ordercrit.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/ko/lch_outlinefont.pngbin0 -> 152 bytes-rw-r--r--default_images/res/commandimagelist/ko/lch_shadowed.pngbin0 -> 160 bytes-rw-r--r--default_images/res/commandimagelist/ko/lch_sortdown.pngbin0 -> 146 bytes-rw-r--r--default_images/res/commandimagelist/ko/lch_sortup.pngbin0 -> 152 bytes-rw-r--r--default_images/res/commandimagelist/ko/lch_strikeout.pngbin0 -> 151 bytes-rw-r--r--default_images/res/commandimagelist/ko/lch_tablesort.pngbin0 -> 116 bytes-rw-r--r--default_images/res/commandimagelist/ko/lch_text.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/ko/lch_text_marquee.pngbin0 -> 168 bytes-rw-r--r--default_images/res/commandimagelist/ko/lch_textdirectionlefttoright.pngbin0 -> 155 bytes-rw-r--r--default_images/res/commandimagelist/ko/lch_textdirectiontoptobottom.pngbin0 -> 147 bytes-rw-r--r--default_images/res/commandimagelist/ko/lch_texttoolbox.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/ko/lch_underline.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/ko/lch_underlinedouble.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/ko/lch_verticaltext.pngbin0 -> 118 bytes-rw-r--r--default_images/res/commandimagelist/ko/sc_bold.pngbin0 -> 118 bytes-rw-r--r--default_images/res/commandimagelist/ko/sc_charfontname.pngbin0 -> 111 bytes-rw-r--r--default_images/res/commandimagelist/ko/sc_color.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/ko/sc_drawtext.pngbin0 -> 105 bytes-rw-r--r--default_images/res/commandimagelist/ko/sc_fontcolor.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/ko/sc_fontheight.pngbin0 -> 148 bytes-rw-r--r--default_images/res/commandimagelist/ko/sc_italic.pngbin0 -> 120 bytes-rw-r--r--default_images/res/commandimagelist/ko/sc_ordercrit.pngbin0 -> 102 bytes-rw-r--r--default_images/res/commandimagelist/ko/sc_outlinefont.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/ko/sc_shadowed.pngbin0 -> 148 bytes-rw-r--r--default_images/res/commandimagelist/ko/sc_sortdown.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/ko/sc_sortup.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/ko/sc_strikeout.pngbin0 -> 137 bytes-rw-r--r--default_images/res/commandimagelist/ko/sc_tablesort.pngbin0 -> 102 bytes-rw-r--r--default_images/res/commandimagelist/ko/sc_text.pngbin0 -> 105 bytes-rw-r--r--default_images/res/commandimagelist/ko/sc_text_marquee.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/ko/sc_textdirectionlefttoright.pngbin0 -> 139 bytes-rw-r--r--default_images/res/commandimagelist/ko/sc_textdirectiontoptobottom.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/ko/sc_texttoolbox.pngbin0 -> 105 bytes-rw-r--r--default_images/res/commandimagelist/ko/sc_underline.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/ko/sc_underlinedouble.pngbin0 -> 126 bytes-rw-r--r--default_images/res/commandimagelist/ko/sc_verticaltext.pngbin0 -> 106 bytes-rw-r--r--default_images/res/commandimagelist/ko/sch_bold.pngbin0 -> 113 bytes-rw-r--r--default_images/res/commandimagelist/ko/sch_charfontname.pngbin0 -> 105 bytes-rw-r--r--default_images/res/commandimagelist/ko/sch_color.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/ko/sch_drawtext.pngbin0 -> 105 bytes-rw-r--r--default_images/res/commandimagelist/ko/sch_fontcolor.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/ko/sch_fontheight.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/ko/sch_italic.pngbin0 -> 115 bytes-rw-r--r--default_images/res/commandimagelist/ko/sch_ordercrit.pngbin0 -> 99 bytes-rw-r--r--default_images/res/commandimagelist/ko/sch_outlinefont.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/ko/sch_shadowed.pngbin0 -> 133 bytes-rw-r--r--default_images/res/commandimagelist/ko/sch_sortdown.pngbin0 -> 124 bytes-rw-r--r--default_images/res/commandimagelist/ko/sch_sortup.pngbin0 -> 118 bytes-rw-r--r--default_images/res/commandimagelist/ko/sch_strikeout.pngbin0 -> 133 bytes-rw-r--r--default_images/res/commandimagelist/ko/sch_tablesort.pngbin0 -> 99 bytes-rw-r--r--default_images/res/commandimagelist/ko/sch_text.pngbin0 -> 105 bytes-rw-r--r--default_images/res/commandimagelist/ko/sch_text_marquee.pngbin0 -> 124 bytes-rw-r--r--default_images/res/commandimagelist/ko/sch_textdirectionlefttoright.pngbin0 -> 126 bytes-rw-r--r--default_images/res/commandimagelist/ko/sch_textdirectiontoptobottom.pngbin0 -> 125 bytes-rw-r--r--default_images/res/commandimagelist/ko/sch_texttoolbox.pngbin0 -> 105 bytes-rw-r--r--default_images/res/commandimagelist/ko/sch_underline.pngbin0 -> 116 bytes-rw-r--r--default_images/res/commandimagelist/ko/sch_underlinedouble.pngbin0 -> 114 bytes-rw-r--r--default_images/res/commandimagelist/ko/sch_verticaltext.pngbin0 -> 107 bytes-rw-r--r--default_images/res/commandimagelist/lc_absoluterecord.pngbin0 -> 1055 bytes-rw-r--r--default_images/res/commandimagelist/lc_actionmode.pngbin0 -> 854 bytes-rw-r--r--default_images/res/commandimagelist/lc_addbookmark.pngbin0 -> 276 bytes-rw-r--r--default_images/res/commandimagelist/lc_adddatefield.pngbin0 -> 591 bytes-rw-r--r--default_images/res/commandimagelist/lc_adddirect.pngbin0 -> 445 bytes-rw-r--r--default_images/res/commandimagelist/lc_addfield.pngbin0 -> 429 bytes-rw-r--r--default_images/res/commandimagelist/lc_addons.pngbin0 -> 546 bytes-rw-r--r--default_images/res/commandimagelist/lc_addprintarea.pngbin0 -> 561 bytes-rw-r--r--default_images/res/commandimagelist/lc_addtable.pngbin0 -> 490 bytes-rw-r--r--default_images/res/commandimagelist/lc_addwatch.pngbin0 -> 542 bytes-rw-r--r--default_images/res/commandimagelist/lc_adjust.pngbin0 -> 963 bytes-rw-r--r--default_images/res/commandimagelist/lc_advancedmode.pngbin0 -> 1054 bytes-rw-r--r--default_images/res/commandimagelist/lc_alignblock.pngbin0 -> 227 bytes-rw-r--r--default_images/res/commandimagelist/lc_alignbottom.pngbin0 -> 584 bytes-rw-r--r--default_images/res/commandimagelist/lc_aligncenter.pngbin0 -> 624 bytes-rw-r--r--default_images/res/commandimagelist/lc_aligndown.pngbin0 -> 432 bytes-rw-r--r--default_images/res/commandimagelist/lc_alignhorizontalcenter.pngbin0 -> 235 bytes-rw-r--r--default_images/res/commandimagelist/lc_alignleft.pngbin0 -> 232 bytes-rw-r--r--default_images/res/commandimagelist/lc_alignmiddle.pngbin0 -> 517 bytes-rw-r--r--default_images/res/commandimagelist/lc_alignright.pngbin0 -> 234 bytes-rw-r--r--default_images/res/commandimagelist/lc_aligntop.pngbin0 -> 572 bytes-rw-r--r--default_images/res/commandimagelist/lc_alignup.pngbin0 -> 426 bytes-rw-r--r--default_images/res/commandimagelist/lc_alignvcenter.pngbin0 -> 671 bytes-rw-r--r--default_images/res/commandimagelist/lc_alignverticalcenter.pngbin0 -> 672 bytes-rw-r--r--default_images/res/commandimagelist/lc_animationeffects.pngbin0 -> 619 bytes-rw-r--r--default_images/res/commandimagelist/lc_animationmode.pngbin0 -> 962 bytes-rw-r--r--default_images/res/commandimagelist/lc_animationobjects.pngbin0 -> 680 bytes-rw-r--r--default_images/res/commandimagelist/lc_apply.pngbin0 -> 1329 bytes-rw-r--r--default_images/res/commandimagelist/lc_arc.pngbin0 -> 680 bytes-rw-r--r--default_images/res/commandimagelist/lc_arrowshapes.chevron.pngbin0 -> 547 bytes-rw-r--r--default_images/res/commandimagelist/lc_arrowshapes.circular-arrow.pngbin0 -> 787 bytes-rw-r--r--default_images/res/commandimagelist/lc_arrowshapes.corner-right-arrow.pngbin0 -> 413 bytes-rw-r--r--default_images/res/commandimagelist/lc_arrowshapes.down-arrow-callout.pngbin0 -> 515 bytes-rw-r--r--default_images/res/commandimagelist/lc_arrowshapes.down-arrow.pngbin0 -> 527 bytes-rw-r--r--default_images/res/commandimagelist/lc_arrowshapes.left-arrow-callout.pngbin0 -> 550 bytes-rw-r--r--default_images/res/commandimagelist/lc_arrowshapes.left-arrow.pngbin0 -> 508 bytes-rw-r--r--default_images/res/commandimagelist/lc_arrowshapes.left-right-arrow-callout.pngbin0 -> 564 bytes-rw-r--r--default_images/res/commandimagelist/lc_arrowshapes.left-right-arrow.pngbin0 -> 466 bytes-rw-r--r--default_images/res/commandimagelist/lc_arrowshapes.notched-right-arrow.pngbin0 -> 532 bytes-rw-r--r--default_images/res/commandimagelist/lc_arrowshapes.pentagon-right.pngbin0 -> 487 bytes-rw-r--r--default_images/res/commandimagelist/lc_arrowshapes.pngbin0 -> 466 bytes-rw-r--r--default_images/res/commandimagelist/lc_arrowshapes.quad-arrow-callout.pngbin0 -> 779 bytes-rw-r--r--default_images/res/commandimagelist/lc_arrowshapes.quad-arrow.pngbin0 -> 648 bytes-rw-r--r--default_images/res/commandimagelist/lc_arrowshapes.right-arrow-callout.pngbin0 -> 543 bytes-rw-r--r--default_images/res/commandimagelist/lc_arrowshapes.right-arrow.pngbin0 -> 489 bytes-rw-r--r--default_images/res/commandimagelist/lc_arrowshapes.s-sharped-arrow.pngbin0 -> 867 bytes-rw-r--r--default_images/res/commandimagelist/lc_arrowshapes.split-arrow.pngbin0 -> 611 bytes-rw-r--r--default_images/res/commandimagelist/lc_arrowshapes.split-round-arrow.pngbin0 -> 730 bytes-rw-r--r--default_images/res/commandimagelist/lc_arrowshapes.striped-right-arrow.pngbin0 -> 554 bytes-rw-r--r--default_images/res/commandimagelist/lc_arrowshapes.up-arrow-callout.pngbin0 -> 480 bytes-rw-r--r--default_images/res/commandimagelist/lc_arrowshapes.up-arrow.pngbin0 -> 487 bytes-rw-r--r--default_images/res/commandimagelist/lc_arrowshapes.up-down-arrow-callout.pngbin0 -> 598 bytes-rw-r--r--default_images/res/commandimagelist/lc_arrowshapes.up-down-arrow.pngbin0 -> 586 bytes-rw-r--r--default_images/res/commandimagelist/lc_arrowshapes.up-right-arrow-callout.pngbin0 -> 642 bytes-rw-r--r--default_images/res/commandimagelist/lc_arrowshapes.up-right-arrow.pngbin0 -> 534 bytes-rw-r--r--default_images/res/commandimagelist/lc_arrowshapes.up-right-down-arrow.pngbin0 -> 613 bytes-rw-r--r--default_images/res/commandimagelist/lc_arrowstoolbox.pngbin0 -> 301 bytes-rw-r--r--default_images/res/commandimagelist/lc_assignlayout.pngbin0 -> 517 bytes-rw-r--r--default_images/res/commandimagelist/lc_autocontrolfocus.pngbin0 -> 731 bytes-rw-r--r--default_images/res/commandimagelist/lc_autofilter.pngbin0 -> 854 bytes-rw-r--r--default_images/res/commandimagelist/lc_autoformat.pngbin0 -> 810 bytes-rw-r--r--default_images/res/commandimagelist/lc_autosum.pngbin0 -> 518 bytes-rw-r--r--default_images/res/commandimagelist/lc_avmediaplayer.pngbin0 -> 501 bytes-rw-r--r--default_images/res/commandimagelist/lc_backcolor.pngbin0 -> 769 bytes-rw-r--r--default_images/res/commandimagelist/lc_backgroundcolor.pngbin0 -> 713 bytes-rw-r--r--default_images/res/commandimagelist/lc_backgroundpatterncontroller.pngbin0 -> 712 bytes-rw-r--r--default_images/res/commandimagelist/lc_backward.pngbin0 -> 368 bytes-rw-r--r--default_images/res/commandimagelist/lc_basicshapes.block-arc.pngbin0 -> 665 bytes-rw-r--r--default_images/res/commandimagelist/lc_basicshapes.can.pngbin0 -> 752 bytes-rw-r--r--default_images/res/commandimagelist/lc_basicshapes.circle-pie.pngbin0 -> 804 bytes-rw-r--r--default_images/res/commandimagelist/lc_basicshapes.circle.pngbin0 -> 822 bytes-rw-r--r--default_images/res/commandimagelist/lc_basicshapes.cross.pngbin0 -> 448 bytes-rw-r--r--default_images/res/commandimagelist/lc_basicshapes.cube.pngbin0 -> 590 bytes-rw-r--r--default_images/res/commandimagelist/lc_basicshapes.diamond.pngbin0 -> 574 bytes-rw-r--r--default_images/res/commandimagelist/lc_basicshapes.ellipse.pngbin0 -> 693 bytes-rw-r--r--default_images/res/commandimagelist/lc_basicshapes.frame.pngbin0 -> 463 bytes-rw-r--r--default_images/res/commandimagelist/lc_basicshapes.hexagon.pngbin0 -> 485 bytes-rw-r--r--default_images/res/commandimagelist/lc_basicshapes.isosceles-triangle.pngbin0 -> 462 bytes-rw-r--r--default_images/res/commandimagelist/lc_basicshapes.octagon.pngbin0 -> 490 bytes-rw-r--r--default_images/res/commandimagelist/lc_basicshapes.paper.pngbin0 -> 522 bytes-rw-r--r--default_images/res/commandimagelist/lc_basicshapes.parallelogram.pngbin0 -> 507 bytes-rw-r--r--default_images/res/commandimagelist/lc_basicshapes.pentagon.pngbin0 -> 466 bytes-rw-r--r--default_images/res/commandimagelist/lc_basicshapes.pngbin0 -> 572 bytes-rw-r--r--default_images/res/commandimagelist/lc_basicshapes.quadrat.pngbin0 -> 310 bytes-rw-r--r--default_images/res/commandimagelist/lc_basicshapes.rectangle.pngbin0 -> 271 bytes-rw-r--r--default_images/res/commandimagelist/lc_basicshapes.right-triangle.pngbin0 -> 461 bytes-rw-r--r--default_images/res/commandimagelist/lc_basicshapes.ring.pngbin0 -> 1146 bytes-rw-r--r--default_images/res/commandimagelist/lc_basicshapes.round-quadrat.pngbin0 -> 505 bytes-rw-r--r--default_images/res/commandimagelist/lc_basicshapes.round-rectangle.pngbin0 -> 408 bytes-rw-r--r--default_images/res/commandimagelist/lc_basicshapes.trapezoid.pngbin0 -> 397 bytes-rw-r--r--default_images/res/commandimagelist/lc_basicstepinto.pngbin0 -> 801 bytes-rw-r--r--default_images/res/commandimagelist/lc_basicstepout.pngbin0 -> 771 bytes-rw-r--r--default_images/res/commandimagelist/lc_basicstepover.pngbin0 -> 739 bytes-rw-r--r--default_images/res/commandimagelist/lc_basicstop.pngbin0 -> 616 bytes-rw-r--r--default_images/res/commandimagelist/lc_beamer.pngbin0 -> 276 bytes-rw-r--r--default_images/res/commandimagelist/lc_beforeobject.pngbin0 -> 654 bytes-rw-r--r--default_images/res/commandimagelist/lc_behindobject.pngbin0 -> 726 bytes-rw-r--r--default_images/res/commandimagelist/lc_bezier_unfilled.pngbin0 -> 605 bytes-rw-r--r--default_images/res/commandimagelist/lc_bezierappend.pngbin0 -> 395 bytes-rw-r--r--default_images/res/commandimagelist/lc_bezierclose.pngbin0 -> 245 bytes-rw-r--r--default_images/res/commandimagelist/lc_bezierconvert.pngbin0 -> 665 bytes-rw-r--r--default_images/res/commandimagelist/lc_beziercutline.pngbin0 -> 1078 bytes-rw-r--r--default_images/res/commandimagelist/lc_bezierdelete.pngbin0 -> 416 bytes-rw-r--r--default_images/res/commandimagelist/lc_bezieredge.pngbin0 -> 194 bytes-rw-r--r--default_images/res/commandimagelist/lc_beziereliminatepoints.pngbin0 -> 447 bytes-rw-r--r--default_images/res/commandimagelist/lc_bezierfill.pngbin0 -> 725 bytes-rw-r--r--default_images/res/commandimagelist/lc_bezierinsert.pngbin0 -> 429 bytes-rw-r--r--default_images/res/commandimagelist/lc_beziermove.pngbin0 -> 429 bytes-rw-r--r--default_images/res/commandimagelist/lc_beziersmooth.pngbin0 -> 294 bytes-rw-r--r--default_images/res/commandimagelist/lc_beziersymmetric.pngbin0 -> 437 bytes-rw-r--r--default_images/res/commandimagelist/lc_bighandles.pngbin0 -> 197 bytes-rw-r--r--default_images/res/commandimagelist/lc_bold.pngbin0 -> 358 bytes-rw-r--r--default_images/res/commandimagelist/lc_borderdialog.pngbin0 -> 113 bytes-rw-r--r--default_images/res/commandimagelist/lc_bringtofront.pngbin0 -> 436 bytes-rw-r--r--default_images/res/commandimagelist/lc_browsebackward.pngbin0 -> 731 bytes-rw-r--r--default_images/res/commandimagelist/lc_browseforward.pngbin0 -> 716 bytes-rw-r--r--default_images/res/commandimagelist/lc_browseview.pngbin0 -> 1139 bytes-rw-r--r--default_images/res/commandimagelist/lc_bullet.pngbin0 -> 1067 bytes-rw-r--r--default_images/res/commandimagelist/lc_bulletsandnumberingdialog.pngbin0 -> 603 bytes-rw-r--r--default_images/res/commandimagelist/lc_calloutshapes.cloud-callout.pngbin0 -> 1140 bytes-rw-r--r--default_images/res/commandimagelist/lc_calloutshapes.line-callout-1.pngbin0 -> 497 bytes-rw-r--r--default_images/res/commandimagelist/lc_calloutshapes.line-callout-2.pngbin0 -> 480 bytes-rw-r--r--default_images/res/commandimagelist/lc_calloutshapes.line-callout-3.pngbin0 -> 350 bytes-rw-r--r--default_images/res/commandimagelist/lc_calloutshapes.pngbin0 -> 759 bytes-rw-r--r--default_images/res/commandimagelist/lc_calloutshapes.rectangular-callout.pngbin0 -> 536 bytes-rw-r--r--default_images/res/commandimagelist/lc_calloutshapes.round-callout.pngbin0 -> 867 bytes-rw-r--r--default_images/res/commandimagelist/lc_calloutshapes.round-rectangular-callout.pngbin0 -> 759 bytes-rw-r--r--default_images/res/commandimagelist/lc_cancel.pngbin0 -> 853 bytes-rw-r--r--default_images/res/commandimagelist/lc_cellvertbottom.pngbin0 -> 584 bytes-rw-r--r--default_images/res/commandimagelist/lc_cellvertcenter.pngbin0 -> 671 bytes-rw-r--r--default_images/res/commandimagelist/lc_cellverttop.pngbin0 -> 571 bytes-rw-r--r--default_images/res/commandimagelist/lc_centerpara.pngbin0 -> 235 bytes-rw-r--r--default_images/res/commandimagelist/lc_chainframes.pngbin0 -> 513 bytes-rw-r--r--default_images/res/commandimagelist/lc_changebezier.pngbin0 -> 913 bytes-rw-r--r--default_images/res/commandimagelist/lc_changepolygon.pngbin0 -> 833 bytes-rw-r--r--default_images/res/commandimagelist/lc_charfontname.pngbin0 -> 925 bytes-rw-r--r--default_images/res/commandimagelist/lc_checkbox.pngbin0 -> 608 bytes-rw-r--r--default_images/res/commandimagelist/lc_choosecontrols.pngbin0 -> 958 bytes-rw-r--r--default_images/res/commandimagelist/lc_choosedesign.pngbin0 -> 827 bytes-rw-r--r--default_images/res/commandimagelist/lc_choosemacro.pngbin0 -> 1444 bytes-rw-r--r--default_images/res/commandimagelist/lc_choosepolygon.pngbin0 -> 417 bytes-rw-r--r--default_images/res/commandimagelist/lc_circle.pngbin0 -> 822 bytes-rw-r--r--default_images/res/commandimagelist/lc_circle_unfilled.pngbin0 -> 834 bytes-rw-r--r--default_images/res/commandimagelist/lc_circlearc.pngbin0 -> 733 bytes-rw-r--r--default_images/res/commandimagelist/lc_circlecut.pngbin0 -> 866 bytes-rw-r--r--default_images/res/commandimagelist/lc_circlecut_unfilled.pngbin0 -> 927 bytes-rw-r--r--default_images/res/commandimagelist/lc_circlepie.pngbin0 -> 804 bytes-rw-r--r--default_images/res/commandimagelist/lc_circlepie_unfilled.pngbin0 -> 801 bytes-rw-r--r--default_images/res/commandimagelist/lc_clickchangerotation.pngbin0 -> 1062 bytes-rw-r--r--default_images/res/commandimagelist/lc_closedoc.pngbin0 -> 772 bytes-rw-r--r--default_images/res/commandimagelist/lc_closedocs.pngbin0 -> 373 bytes-rw-r--r--default_images/res/commandimagelist/lc_closemasterview.pngbin0 -> 870 bytes-rw-r--r--default_images/res/commandimagelist/lc_closewin.pngbin0 -> 772 bytes-rw-r--r--default_images/res/commandimagelist/lc_color.pngbin0 -> 630 bytes-rw-r--r--default_images/res/commandimagelist/lc_colorsettings.pngbin0 -> 812 bytes-rw-r--r--default_images/res/commandimagelist/lc_colorview.pngbin0 -> 469 bytes-rw-r--r--default_images/res/commandimagelist/lc_combobox.pngbin0 -> 866 bytes-rw-r--r--default_images/res/commandimagelist/lc_commontaskbarvisible.pngbin0 -> 761 bytes-rw-r--r--default_images/res/commandimagelist/lc_compilebasic.pngbin0 -> 630 bytes-rw-r--r--default_images/res/commandimagelist/lc_cone.pngbin0 -> 611 bytes-rw-r--r--default_images/res/commandimagelist/lc_config.pngbin0 -> 958 bytes-rw-r--r--default_images/res/commandimagelist/lc_connector.pngbin0 -> 358 bytes-rw-r--r--default_images/res/commandimagelist/lc_connectorarrowend.pngbin0 -> 498 bytes-rw-r--r--default_images/res/commandimagelist/lc_connectorarrows.pngbin0 -> 434 bytes-rw-r--r--default_images/res/commandimagelist/lc_connectorarrowstart.pngbin0 -> 500 bytes-rw-r--r--default_images/res/commandimagelist/lc_connectorcircleend.pngbin0 -> 504 bytes-rw-r--r--default_images/res/commandimagelist/lc_connectorcircles.pngbin0 -> 408 bytes-rw-r--r--default_images/res/commandimagelist/lc_connectorcirclestart.pngbin0 -> 512 bytes-rw-r--r--default_images/res/commandimagelist/lc_connectorcurve.pngbin0 -> 450 bytes-rw-r--r--default_images/res/commandimagelist/lc_connectorcurvearrowend.pngbin0 -> 580 bytes-rw-r--r--default_images/res/commandimagelist/lc_connectorcurvearrows.pngbin0 -> 518 bytes-rw-r--r--default_images/res/commandimagelist/lc_connectorcurvearrowstart.pngbin0 -> 578 bytes-rw-r--r--default_images/res/commandimagelist/lc_connectorcurvecircleend.pngbin0 -> 589 bytes-rw-r--r--default_images/res/commandimagelist/lc_connectorcurvecircles.pngbin0 -> 480 bytes-rw-r--r--default_images/res/commandimagelist/lc_connectorcurvecirclestart.pngbin0 -> 591 bytes-rw-r--r--default_images/res/commandimagelist/lc_connectorline.pngbin0 -> 373 bytes-rw-r--r--default_images/res/commandimagelist/lc_connectorlinearrowend.pngbin0 -> 492 bytes-rw-r--r--default_images/res/commandimagelist/lc_connectorlinearrows.pngbin0 -> 460 bytes-rw-r--r--default_images/res/commandimagelist/lc_connectorlinearrowstart.pngbin0 -> 492 bytes-rw-r--r--default_images/res/commandimagelist/lc_connectorlinecircleend.pngbin0 -> 538 bytes-rw-r--r--default_images/res/commandimagelist/lc_connectorlinecircles.pngbin0 -> 425 bytes-rw-r--r--default_images/res/commandimagelist/lc_connectorlinecirclestart.pngbin0 -> 523 bytes-rw-r--r--default_images/res/commandimagelist/lc_connectorlines.pngbin0 -> 409 bytes-rw-r--r--default_images/res/commandimagelist/lc_connectorlinesarrowend.pngbin0 -> 522 bytes-rw-r--r--default_images/res/commandimagelist/lc_connectorlinesarrows.pngbin0 -> 466 bytes-rw-r--r--default_images/res/commandimagelist/lc_connectorlinesarrowstart.pngbin0 -> 540 bytes-rw-r--r--default_images/res/commandimagelist/lc_connectorlinescircleend.pngbin0 -> 549 bytes-rw-r--r--default_images/res/commandimagelist/lc_connectorlinescircles.pngbin0 -> 438 bytes-rw-r--r--default_images/res/commandimagelist/lc_connectorlinescirclestart.pngbin0 -> 554 bytes-rw-r--r--default_images/res/commandimagelist/lc_connectortoolbox.pngbin0 -> 408 bytes-rw-r--r--default_images/res/commandimagelist/lc_contourdialog.pngbin0 -> 648 bytes-rw-r--r--default_images/res/commandimagelist/lc_controlcodes.pngbin0 -> 486 bytes-rw-r--r--default_images/res/commandimagelist/lc_controlproperties.pngbin0 -> 737 bytes-rw-r--r--default_images/res/commandimagelist/lc_convertinto3d.pngbin0 -> 818 bytes-rw-r--r--default_images/res/commandimagelist/lc_convertinto3dlathe.pngbin0 -> 883 bytes-rw-r--r--default_images/res/commandimagelist/lc_convertinto3dlathefast.pngbin0 -> 957 bytes-rw-r--r--default_images/res/commandimagelist/lc_copy.pngbin0 -> 542 bytes-rw-r--r--default_images/res/commandimagelist/lc_countall.pngbin0 -> 276 bytes-rw-r--r--default_images/res/commandimagelist/lc_crookrotate.pngbin0 -> 865 bytes-rw-r--r--default_images/res/commandimagelist/lc_crookslant.pngbin0 -> 1034 bytes-rw-r--r--default_images/res/commandimagelist/lc_crop.pngbin0 -> 1398 bytes-rw-r--r--default_images/res/commandimagelist/lc_cube.pngbin0 -> 626 bytes-rw-r--r--default_images/res/commandimagelist/lc_currencyfield.pngbin0 -> 785 bytes-rw-r--r--default_images/res/commandimagelist/lc_customanimation.pngbin0 -> 883 bytes-rw-r--r--default_images/res/commandimagelist/lc_cut.pngbin0 -> 1120 bytes-rw-r--r--default_images/res/commandimagelist/lc_cylinder.pngbin0 -> 834 bytes-rw-r--r--default_images/res/commandimagelist/lc_cyramid.pngbin0 -> 743 bytes-rw-r--r--default_images/res/commandimagelist/lc_datadatapilotrun.pngbin0 -> 826 bytes-rw-r--r--default_images/res/commandimagelist/lc_datafilterautofilter.pngbin0 -> 855 bytes-rw-r--r--default_images/res/commandimagelist/lc_datafilterspecialfilter.pngbin0 -> 569 bytes-rw-r--r--default_images/res/commandimagelist/lc_datafilterstandardfilter.pngbin0 -> 520 bytes-rw-r--r--default_images/res/commandimagelist/lc_dataimport.pngbin0 -> 348 bytes-rw-r--r--default_images/res/commandimagelist/lc_dataincolumns.pngbin0 -> 293 bytes-rw-r--r--default_images/res/commandimagelist/lc_datainrows.pngbin0 -> 375 bytes-rw-r--r--default_images/res/commandimagelist/lc_datefield.pngbin0 -> 591 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbaddrelation.pngbin0 -> 455 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbchangedesignmode.pngbin0 -> 847 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbclearquery.pngbin0 -> 920 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbdistinctvalues.pngbin0 -> 706 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbdtableedit.pngbin0 -> 599 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbformdelete.pngbin0 -> 754 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbformedit.pngbin0 -> 724 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbformopen.pngbin0 -> 777 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbformrename.pngbin0 -> 558 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbindexdesign.pngbin0 -> 780 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbnewform.pngbin0 -> 660 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbnewformautopilot.pngbin0 -> 884 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbnewquery.pngbin0 -> 812 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbnewqueryautopilot.pngbin0 -> 1048 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbnewquerysql.pngbin0 -> 569 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbnewreport.pngbin0 -> 751 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbnewreportautopilot.pngbin0 -> 1001 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbnewtable.pngbin0 -> 535 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbnewtableautopilot.pngbin0 -> 803 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbnewview.pngbin0 -> 751 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbnewviewsql.pngbin0 -> 801 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbquerydelete.pngbin0 -> 647 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbqueryedit.pngbin0 -> 896 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbqueryopen.pngbin0 -> 997 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbqueryrename.pngbin0 -> 331 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbreportdelete.pngbin0 -> 863 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbreportedit.pngbin0 -> 809 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbreportopen.pngbin0 -> 923 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbreportrename.pngbin0 -> 626 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbsortingandgrouping.pngbin0 -> 558 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbtabledelete.pngbin0 -> 647 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbtableedit.pngbin0 -> 600 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbtableopen.pngbin0 -> 743 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbtablerename.pngbin0 -> 331 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbviewaliases.pngbin0 -> 424 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbviewfunctions.pngbin0 -> 367 bytes-rw-r--r--default_images/res/commandimagelist/lc_dbviewtablenames.pngbin0 -> 432 bytes-rw-r--r--default_images/res/commandimagelist/lc_decrementindent.pngbin0 -> 540 bytes-rw-r--r--default_images/res/commandimagelist/lc_decrementlevel.pngbin0 -> 581 bytes-rw-r--r--default_images/res/commandimagelist/lc_decrementsublevels.pngbin0 -> 728 bytes-rw-r--r--default_images/res/commandimagelist/lc_defaultbullet.pngbin0 -> 277 bytes-rw-r--r--default_images/res/commandimagelist/lc_defaultnumbering.pngbin0 -> 331 bytes-rw-r--r--default_images/res/commandimagelist/lc_definename.pngbin0 -> 406 bytes-rw-r--r--default_images/res/commandimagelist/lc_defineprintarea.pngbin0 -> 602 bytes-rw-r--r--default_images/res/commandimagelist/lc_delete.pngbin0 -> 551 bytes-rw-r--r--default_images/res/commandimagelist/lc_deleteallannotation.pngbin0 -> 824 bytes-rw-r--r--default_images/res/commandimagelist/lc_deleteannotation.pngbin0 -> 843 bytes-rw-r--r--default_images/res/commandimagelist/lc_deletecolumns.pngbin0 -> 486 bytes-rw-r--r--default_images/res/commandimagelist/lc_deletemasterpage.pngbin0 -> 891 bytes-rw-r--r--default_images/res/commandimagelist/lc_deleteprintarea.pngbin0 -> 707 bytes-rw-r--r--default_images/res/commandimagelist/lc_deleterecord.pngbin0 -> 790 bytes-rw-r--r--default_images/res/commandimagelist/lc_deleterows.pngbin0 -> 329 bytes-rw-r--r--default_images/res/commandimagelist/lc_designerdialog.pngbin0 -> 746 bytes-rw-r--r--default_images/res/commandimagelist/lc_dia.pngbin0 -> 846 bytes-rw-r--r--default_images/res/commandimagelist/lc_diaauto.pngbin0 -> 846 bytes-rw-r--r--default_images/res/commandimagelist/lc_diaeffect.pngbin0 -> 846 bytes-rw-r--r--default_images/res/commandimagelist/lc_diagramdata.pngbin0 -> 341 bytes-rw-r--r--default_images/res/commandimagelist/lc_diagramtype.pngbin0 -> 803 bytes-rw-r--r--default_images/res/commandimagelist/lc_diaspeed.pngbin0 -> 850 bytes-rw-r--r--default_images/res/commandimagelist/lc_diatime.pngbin0 -> 846 bytes-rw-r--r--default_images/res/commandimagelist/lc_distributecolumns.pngbin0 -> 672 bytes-rw-r--r--default_images/res/commandimagelist/lc_distributerows.pngbin0 -> 333 bytes-rw-r--r--default_images/res/commandimagelist/lc_doubleclicktextedit.pngbin0 -> 809 bytes-rw-r--r--default_images/res/commandimagelist/lc_downsearch.pngbin0 -> 620 bytes-rw-r--r--default_images/res/commandimagelist/lc_draw.pngbin0 -> 1147 bytes-rw-r--r--default_images/res/commandimagelist/lc_drawcaption.pngbin0 -> 926 bytes-rw-r--r--default_images/res/commandimagelist/lc_drawchart.pngbin0 -> 636 bytes-rw-r--r--default_images/res/commandimagelist/lc_drawselect.pngbin0 -> 502 bytes-rw-r--r--default_images/res/commandimagelist/lc_drawtext.pngbin0 -> 439 bytes-rw-r--r--default_images/res/commandimagelist/lc_dsbdocumentdatasource.pngbin0 -> 1399 bytes-rw-r--r--default_images/res/commandimagelist/lc_dsbeditdoc.pngbin0 -> 753 bytes-rw-r--r--default_images/res/commandimagelist/lc_dsbformletter.pngbin0 -> 736 bytes-rw-r--r--default_images/res/commandimagelist/lc_dsbinsertcolumns.pngbin0 -> 495 bytes-rw-r--r--default_images/res/commandimagelist/lc_dsbinsertcontent.pngbin0 -> 485 bytes-rw-r--r--default_images/res/commandimagelist/lc_dsbrowserexplorer.pngbin0 -> 666 bytes-rw-r--r--default_images/res/commandimagelist/lc_duplicatepage.pngbin0 -> 976 bytes-rw-r--r--default_images/res/commandimagelist/lc_edit.pngbin0 -> 514 bytes-rw-r--r--default_images/res/commandimagelist/lc_editdoc.pngbin0 -> 753 bytes-rw-r--r--default_images/res/commandimagelist/lc_editframeset.pngbin0 -> 276 bytes-rw-r--r--default_images/res/commandimagelist/lc_editglossary.pngbin0 -> 705 bytes-rw-r--r--default_images/res/commandimagelist/lc_editheaderandfooter.pngbin0 -> 432 bytes-rw-r--r--default_images/res/commandimagelist/lc_editprintarea.pngbin0 -> 704 bytes-rw-r--r--default_images/res/commandimagelist/lc_ellipse.pngbin0 -> 692 bytes-rw-r--r--default_images/res/commandimagelist/lc_ellipse_unfilled.pngbin0 -> 718 bytes-rw-r--r--default_images/res/commandimagelist/lc_ellipsecut.pngbin0 -> 715 bytes-rw-r--r--default_images/res/commandimagelist/lc_ellipsecut_unfilled.pngbin0 -> 743 bytes-rw-r--r--default_images/res/commandimagelist/lc_ellipsetoolbox.pngbin0 -> 693 bytes-rw-r--r--default_images/res/commandimagelist/lc_entergroup.pngbin0 -> 682 bytes-rw-r--r--default_images/res/commandimagelist/lc_entirecolumn.pngbin0 -> 789 bytes-rw-r--r--default_images/res/commandimagelist/lc_entirerow.pngbin0 -> 616 bytes-rw-r--r--default_images/res/commandimagelist/lc_euroconverter.pngbin0 -> 515 bytes-rw-r--r--default_images/res/commandimagelist/lc_executereport.pngbin0 -> 752 bytes-rw-r--r--default_images/res/commandimagelist/lc_expandpage.pngbin0 -> 352 bytes-rw-r--r--default_images/res/commandimagelist/lc_exportdialog.pngbin0 -> 656 bytes-rw-r--r--default_images/res/commandimagelist/lc_exportdirecttopdf.pngbin0 -> 571 bytes-rw-r--r--default_images/res/commandimagelist/lc_exportto.pngbin0 -> 847 bytes-rw-r--r--default_images/res/commandimagelist/lc_extendedhelp.pngbin0 -> 1585 bytes-rw-r--r--default_images/res/commandimagelist/lc_extrusion3dcolor.pngbin0 -> 474 bytes-rw-r--r--default_images/res/commandimagelist/lc_extrusiondepthfloater.pngbin0 -> 890 bytes-rw-r--r--default_images/res/commandimagelist/lc_extrusiondirectionfloater.pngbin0 -> 798 bytes-rw-r--r--default_images/res/commandimagelist/lc_extrusionlightingfloater.pngbin0 -> 292 bytes-rw-r--r--default_images/res/commandimagelist/lc_extrusionsurfacefloater.pngbin0 -> 1353 bytes-rw-r--r--default_images/res/commandimagelist/lc_extrusiontiltdown.pngbin0 -> 1106 bytes-rw-r--r--default_images/res/commandimagelist/lc_extrusiontiltleft.pngbin0 -> 1271 bytes-rw-r--r--default_images/res/commandimagelist/lc_extrusiontiltright.pngbin0 -> 1271 bytes-rw-r--r--default_images/res/commandimagelist/lc_extrusiontiltup.pngbin0 -> 1118 bytes-rw-r--r--default_images/res/commandimagelist/lc_extrusiontoggle.pngbin0 -> 894 bytes-rw-r--r--default_images/res/commandimagelist/lc_fieldnames.pngbin0 -> 481 bytes-rw-r--r--default_images/res/commandimagelist/lc_fields.pngbin0 -> 481 bytes-rw-r--r--default_images/res/commandimagelist/lc_filecontrol.pngbin0 -> 774 bytes-rw-r--r--default_images/res/commandimagelist/lc_filedocument.pngbin0 -> 276 bytes-rw-r--r--default_images/res/commandimagelist/lc_fillshadow.pngbin0 -> 303 bytes-rw-r--r--default_images/res/commandimagelist/lc_fillstyle.pngbin0 -> 708 bytes-rw-r--r--default_images/res/commandimagelist/lc_filtercrit.pngbin0 -> 519 bytes-rw-r--r--default_images/res/commandimagelist/lc_firstpage.pngbin0 -> 735 bytes-rw-r--r--default_images/res/commandimagelist/lc_firstrecord.pngbin0 -> 565 bytes-rw-r--r--default_images/res/commandimagelist/lc_fliphorizontal.pngbin0 -> 569 bytes-rw-r--r--default_images/res/commandimagelist/lc_flipvertical.pngbin0 -> 635 bytes-rw-r--r--default_images/res/commandimagelist/lc_flowchartshapes.flowchart-alternate-process.pngbin0 -> 505 bytes-rw-r--r--default_images/res/commandimagelist/lc_flowchartshapes.flowchart-card.pngbin0 -> 386 bytes-rw-r--r--default_images/res/commandimagelist/lc_flowchartshapes.flowchart-collate.pngbin0 -> 557 bytes-rw-r--r--default_images/res/commandimagelist/lc_flowchartshapes.flowchart-connector.pngbin0 -> 822 bytes-rw-r--r--default_images/res/commandimagelist/lc_flowchartshapes.flowchart-data.pngbin0 -> 507 bytes-rw-r--r--default_images/res/commandimagelist/lc_flowchartshapes.flowchart-decision.pngbin0 -> 573 bytes-rw-r--r--default_images/res/commandimagelist/lc_flowchartshapes.flowchart-delay.pngbin0 -> 764 bytes-rw-r--r--default_images/res/commandimagelist/lc_flowchartshapes.flowchart-direct-access-storage.pngbin0 -> 780 bytes-rw-r--r--default_images/res/commandimagelist/lc_flowchartshapes.flowchart-display.pngbin0 -> 587 bytes-rw-r--r--default_images/res/commandimagelist/lc_flowchartshapes.flowchart-document.pngbin0 -> 732 bytes-rw-r--r--default_images/res/commandimagelist/lc_flowchartshapes.flowchart-extract.pngbin0 -> 462 bytes-rw-r--r--default_images/res/commandimagelist/lc_flowchartshapes.flowchart-internal-storage.pngbin0 -> 399 bytes-rw-r--r--default_images/res/commandimagelist/lc_flowchartshapes.flowchart-magnetic-disk.pngbin0 -> 751 bytes-rw-r--r--default_images/res/commandimagelist/lc_flowchartshapes.flowchart-manual-input.pngbin0 -> 413 bytes-rw-r--r--default_images/res/commandimagelist/lc_flowchartshapes.flowchart-manual-operation.pngbin0 -> 397 bytes-rw-r--r--default_images/res/commandimagelist/lc_flowchartshapes.flowchart-merge.pngbin0 -> 485 bytes-rw-r--r--default_images/res/commandimagelist/lc_flowchartshapes.flowchart-multidocument.pngbin0 -> 723 bytes-rw-r--r--default_images/res/commandimagelist/lc_flowchartshapes.flowchart-off-page-connector.pngbin0 -> 468 bytes-rw-r--r--default_images/res/commandimagelist/lc_flowchartshapes.flowchart-or.pngbin0 -> 953 bytes-rw-r--r--default_images/res/commandimagelist/lc_flowchartshapes.flowchart-predefined-process.pngbin0 -> 382 bytes-rw-r--r--default_images/res/commandimagelist/lc_flowchartshapes.flowchart-preparation.pngbin0 -> 485 bytes-rw-r--r--default_images/res/commandimagelist/lc_flowchartshapes.flowchart-process.pngbin0 -> 310 bytes-rw-r--r--default_images/res/commandimagelist/lc_flowchartshapes.flowchart-punched-tape.pngbin0 -> 1031 bytes-rw-r--r--default_images/res/commandimagelist/lc_flowchartshapes.flowchart-sequential-access.pngbin0 -> 843 bytes-rw-r--r--default_images/res/commandimagelist/lc_flowchartshapes.flowchart-sort.pngbin0 -> 563 bytes-rw-r--r--default_images/res/commandimagelist/lc_flowchartshapes.flowchart-stored-data.pngbin0 -> 651 bytes-rw-r--r--default_images/res/commandimagelist/lc_flowchartshapes.flowchart-summing-junction.pngbin0 -> 1061 bytes-rw-r--r--default_images/res/commandimagelist/lc_flowchartshapes.flowchart-terminator.pngbin0 -> 382 bytes-rw-r--r--default_images/res/commandimagelist/lc_flowchartshapes.pngbin0 -> 398 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontcolor.pngbin0 -> 630 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontdialog.pngbin0 -> 1035 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontheight.pngbin0 -> 1180 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontwork.pngbin0 -> 443 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkalignmentfloater.pngbin0 -> 235 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkcharacterspacingfloater.pngbin0 -> 689 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkgalleryfloater.pngbin0 -> 590 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworksameletterheights.pngbin0 -> 401 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.fontwork-arch-down-curve.pngbin0 -> 283 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.fontwork-arch-down-pour.pngbin0 -> 272 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.fontwork-arch-left-curve.pngbin0 -> 237 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.fontwork-arch-left-pour.pngbin0 -> 233 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.fontwork-arch-right-curve.pngbin0 -> 234 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.fontwork-arch-right-pour.pngbin0 -> 226 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.fontwork-arch-up-curve.pngbin0 -> 280 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.fontwork-arch-up-pour.pngbin0 -> 263 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.fontwork-chevron-down.pngbin0 -> 154 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.fontwork-chevron-up.pngbin0 -> 148 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.fontwork-circle-curve.pngbin0 -> 312 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.fontwork-circle-pour.pngbin0 -> 296 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.fontwork-curve-down.pngbin0 -> 225 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.fontwork-curve-up.pngbin0 -> 227 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.fontwork-fade-down.pngbin0 -> 147 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.fontwork-fade-left.pngbin0 -> 140 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.fontwork-fade-right.pngbin0 -> 136 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.fontwork-fade-up-and-left.pngbin0 -> 166 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.fontwork-fade-up-and-right.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.fontwork-fade-up.pngbin0 -> 141 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.fontwork-inflate.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.fontwork-open-circle-curve.pngbin0 -> 310 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.fontwork-open-circle-pour.pngbin0 -> 292 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.fontwork-plain-text.pngbin0 -> 95 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.fontwork-slant-down.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.fontwork-slant-up.pngbin0 -> 143 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.fontwork-stop.pngbin0 -> 124 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.fontwork-triangle-down.pngbin0 -> 155 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.fontwork-triangle-up.pngbin0 -> 153 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.fontwork-wave.pngbin0 -> 244 bytes-rw-r--r--default_images/res/commandimagelist/lc_fontworkshapetype.pngbin0 -> 447 bytes-rw-r--r--default_images/res/commandimagelist/lc_formatarea.pngbin0 -> 709 bytes-rw-r--r--default_images/res/commandimagelist/lc_formatgroup.pngbin0 -> 524 bytes-rw-r--r--default_images/res/commandimagelist/lc_formatline.pngbin0 -> 474 bytes-rw-r--r--default_images/res/commandimagelist/lc_formatpaintbrush.pngbin0 -> 1245 bytes-rw-r--r--default_images/res/commandimagelist/lc_formattedfield.pngbin0 -> 557 bytes-rw-r--r--default_images/res/commandimagelist/lc_formatungroup.pngbin0 -> 428 bytes-rw-r--r--default_images/res/commandimagelist/lc_formdesigntools.pngbin0 -> 671 bytes-rw-r--r--default_images/res/commandimagelist/lc_formelcursor.pngbin0 -> 424 bytes-rw-r--r--default_images/res/commandimagelist/lc_formfilter.pngbin0 -> 677 bytes-rw-r--r--default_images/res/commandimagelist/lc_formfiltered.pngbin0 -> 683 bytes-rw-r--r--default_images/res/commandimagelist/lc_formfilterexecute.pngbin0 -> 519 bytes-rw-r--r--default_images/res/commandimagelist/lc_formfilternavigator.pngbin0 -> 1044 bytes-rw-r--r--default_images/res/commandimagelist/lc_formproperties.pngbin0 -> 710 bytes-rw-r--r--default_images/res/commandimagelist/lc_forward.pngbin0 -> 363 bytes-rw-r--r--default_images/res/commandimagelist/lc_framedialog.pngbin0 -> 636 bytes-rw-r--r--default_images/res/commandimagelist/lc_framelinecolor.pngbin0 -> 227 bytes-rw-r--r--default_images/res/commandimagelist/lc_freeline.pngbin0 -> 801 bytes-rw-r--r--default_images/res/commandimagelist/lc_freeline_unfilled.pngbin0 -> 752 bytes-rw-r--r--default_images/res/commandimagelist/lc_fullscreen.pngbin0 -> 510 bytes-rw-r--r--default_images/res/commandimagelist/lc_gallery.pngbin0 -> 768 bytes-rw-r--r--default_images/res/commandimagelist/lc_getactivetask.pngbin0 -> 276 bytes-rw-r--r--default_images/res/commandimagelist/lc_glueeditmode.pngbin0 -> 758 bytes-rw-r--r--default_images/res/commandimagelist/lc_glueescapedirectionbottom.pngbin0 -> 531 bytes-rw-r--r--default_images/res/commandimagelist/lc_glueescapedirectionleft.pngbin0 -> 532 bytes-rw-r--r--default_images/res/commandimagelist/lc_glueescapedirectionright.pngbin0 -> 540 bytes-rw-r--r--default_images/res/commandimagelist/lc_glueescapedirectiontop.pngbin0 -> 540 bytes-rw-r--r--default_images/res/commandimagelist/lc_gluehorzaligncenter.pngbin0 -> 577 bytes-rw-r--r--default_images/res/commandimagelist/lc_gluehorzalignleft.pngbin0 -> 603 bytes-rw-r--r--default_images/res/commandimagelist/lc_gluehorzalignright.pngbin0 -> 608 bytes-rw-r--r--default_images/res/commandimagelist/lc_glueinsertpoint.pngbin0 -> 636 bytes-rw-r--r--default_images/res/commandimagelist/lc_gluepercent.pngbin0 -> 743 bytes-rw-r--r--default_images/res/commandimagelist/lc_gluevertalignbottom.pngbin0 -> 635 bytes-rw-r--r--default_images/res/commandimagelist/lc_gluevertaligncenter.pngbin0 -> 556 bytes-rw-r--r--default_images/res/commandimagelist/lc_gluevertaligntop.pngbin0 -> 641 bytes-rw-r--r--default_images/res/commandimagelist/lc_goalseekdialog.pngbin0 -> 894 bytes-rw-r--r--default_images/res/commandimagelist/lc_gotoend.pngbin0 -> 622 bytes-rw-r--r--default_images/res/commandimagelist/lc_gotoendofdoc.pngbin0 -> 736 bytes-rw-r--r--default_images/res/commandimagelist/lc_gotostartofdoc.pngbin0 -> 735 bytes-rw-r--r--default_images/res/commandimagelist/lc_gotostartoftable.pngbin0 -> 625 bytes-rw-r--r--default_images/res/commandimagelist/lc_grafattrcrop.pngbin0 -> 1399 bytes-rw-r--r--default_images/res/commandimagelist/lc_grafblue.pngbin0 -> 604 bytes-rw-r--r--default_images/res/commandimagelist/lc_grafcontrast.pngbin0 -> 862 bytes-rw-r--r--default_images/res/commandimagelist/lc_grafgamma.pngbin0 -> 1091 bytes-rw-r--r--default_images/res/commandimagelist/lc_grafgreen.pngbin0 -> 604 bytes-rw-r--r--default_images/res/commandimagelist/lc_grafinvert.pngbin0 -> 544 bytes-rw-r--r--default_images/res/commandimagelist/lc_grafluminance.pngbin0 -> 538 bytes-rw-r--r--default_images/res/commandimagelist/lc_grafmode.pngbin0 -> 869 bytes-rw-r--r--default_images/res/commandimagelist/lc_grafred.pngbin0 -> 592 bytes-rw-r--r--default_images/res/commandimagelist/lc_graftransparence.pngbin0 -> 602 bytes-rw-r--r--default_images/res/commandimagelist/lc_graphic.pngbin0 -> 521 bytes-rw-r--r--default_images/res/commandimagelist/lc_graphicfilterinvert.pngbin0 -> 544 bytes-rw-r--r--default_images/res/commandimagelist/lc_graphicfiltermosaic.pngbin0 -> 158 bytes-rw-r--r--default_images/res/commandimagelist/lc_graphicfilterpopart.pngbin0 -> 236 bytes-rw-r--r--default_images/res/commandimagelist/lc_graphicfilterposter.pngbin0 -> 994 bytes-rw-r--r--default_images/res/commandimagelist/lc_graphicfilterrelief.pngbin0 -> 848 bytes-rw-r--r--default_images/res/commandimagelist/lc_graphicfilterremovenoise.pngbin0 -> 489 bytes-rw-r--r--default_images/res/commandimagelist/lc_graphicfiltersepia.pngbin0 -> 984 bytes-rw-r--r--default_images/res/commandimagelist/lc_graphicfiltersharpen.pngbin0 -> 393 bytes-rw-r--r--default_images/res/commandimagelist/lc_graphicfiltersmooth.pngbin0 -> 480 bytes-rw-r--r--default_images/res/commandimagelist/lc_graphicfiltersobel.pngbin0 -> 298 bytes-rw-r--r--default_images/res/commandimagelist/lc_graphicfiltersolarize.pngbin0 -> 517 bytes-rw-r--r--default_images/res/commandimagelist/lc_graphicfiltertoolbox.pngbin0 -> 657 bytes-rw-r--r--default_images/res/commandimagelist/lc_greatestheight.pngbin0 -> 592 bytes-rw-r--r--default_images/res/commandimagelist/lc_greatestwidth.pngbin0 -> 410 bytes-rw-r--r--default_images/res/commandimagelist/lc_grid.pngbin0 -> 341 bytes-rw-r--r--default_images/res/commandimagelist/lc_griduse.pngbin0 -> 439 bytes-rw-r--r--default_images/res/commandimagelist/lc_gridvisible.pngbin0 -> 205 bytes-rw-r--r--default_images/res/commandimagelist/lc_group.pngbin0 -> 348 bytes-rw-r--r--default_images/res/commandimagelist/lc_groupbox.pngbin0 -> 619 bytes-rw-r--r--default_images/res/commandimagelist/lc_grow.pngbin0 -> 1044 bytes-rw-r--r--default_images/res/commandimagelist/lc_halfsphere.pngbin0 -> 1127 bytes-rw-r--r--default_images/res/commandimagelist/lc_handlesdraft.pngbin0 -> 190 bytes-rw-r--r--default_images/res/commandimagelist/lc_help.pngbin0 -> 1327 bytes-rw-r--r--default_images/res/commandimagelist/lc_helpannotate.pngbin0 -> 672 bytes-rw-r--r--default_images/res/commandimagelist/lc_helpbookmark.pngbin0 -> 479 bytes-rw-r--r--default_images/res/commandimagelist/lc_helpdownload.pngbin0 -> 276 bytes-rw-r--r--default_images/res/commandimagelist/lc_helperdialog.pngbin0 -> 1343 bytes-rw-r--r--default_images/res/commandimagelist/lc_helpindex.pngbin0 -> 1343 bytes-rw-r--r--default_images/res/commandimagelist/lc_helplinesmove.pngbin0 -> 449 bytes-rw-r--r--default_images/res/commandimagelist/lc_helplinesuse.pngbin0 -> 518 bytes-rw-r--r--default_images/res/commandimagelist/lc_helplinesvisible.pngbin0 -> 266 bytes-rw-r--r--default_images/res/commandimagelist/lc_helpmenu.pngbin0 -> 1118 bytes-rw-r--r--default_images/res/commandimagelist/lc_helpsearch.pngbin0 -> 402 bytes-rw-r--r--default_images/res/commandimagelist/lc_helpzoomin.pngbin0 -> 1008 bytes-rw-r--r--default_images/res/commandimagelist/lc_helpzoomout.pngbin0 -> 976 bytes-rw-r--r--default_images/res/commandimagelist/lc_hfixedline.pngbin0 -> 254 bytes-rw-r--r--default_images/res/commandimagelist/lc_hideslide.pngbin0 -> 587 bytes-rw-r--r--default_images/res/commandimagelist/lc_hscrollbar.pngbin0 -> 680 bytes-rw-r--r--default_images/res/commandimagelist/lc_hyperlinkdialog.pngbin0 -> 1944 bytes-rw-r--r--default_images/res/commandimagelist/lc_hyphenate.pngbin0 -> 405 bytes-rw-r--r--default_images/res/commandimagelist/lc_hyphenation.pngbin0 -> 404 bytes-rw-r--r--default_images/res/commandimagelist/lc_imagebutton.pngbin0 -> 701 bytes-rw-r--r--default_images/res/commandimagelist/lc_imagecontrol.pngbin0 -> 718 bytes-rw-r--r--default_images/res/commandimagelist/lc_imagemapdialog.pngbin0 -> 899 bytes-rw-r--r--default_images/res/commandimagelist/lc_importdialog.pngbin0 -> 546 bytes-rw-r--r--default_images/res/commandimagelist/lc_importfromfile.pngbin0 -> 961 bytes-rw-r--r--default_images/res/commandimagelist/lc_incrementindent.pngbin0 -> 538 bytes-rw-r--r--default_images/res/commandimagelist/lc_incrementlevel.pngbin0 -> 597 bytes-rw-r--r--default_images/res/commandimagelist/lc_incrementsublevels.pngbin0 -> 751 bytes-rw-r--r--default_images/res/commandimagelist/lc_inscellsctrl.pngbin0 -> 559 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertannotation.pngbin0 -> 722 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertauthorfield.pngbin0 -> 812 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertavmedia.pngbin0 -> 641 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertbookmark.pngbin0 -> 751 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertcaptiondialog.pngbin0 -> 455 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertcellsdown.pngbin0 -> 695 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertcellsright.pngbin0 -> 614 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertcolumns.pngbin0 -> 616 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertctrl.pngbin0 -> 200 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertcurrencyfield.pngbin0 -> 785 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertdatefield.pngbin0 -> 591 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertdoc.pngbin0 -> 912 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertdraw.pngbin0 -> 732 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertedit.pngbin0 -> 514 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertendnote.pngbin0 -> 919 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertfield.pngbin0 -> 495 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertfieldctrl.pngbin0 -> 495 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertfilecontrol.pngbin0 -> 773 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertfixedtext.pngbin0 -> 298 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertfootnote.pngbin0 -> 992 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertformattedfield.pngbin0 -> 557 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertformula.pngbin0 -> 584 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertframe.pngbin0 -> 355 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertframeinteract.pngbin0 -> 355 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertframeinteractnocolumns.pngbin0 -> 355 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertgraphic.pngbin0 -> 810 bytes-rw-r--r--default_images/res/commandimagelist/lc_inserthyperlink.pngbin0 -> 1139 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertimagecontrol.pngbin0 -> 719 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertindexesentry.pngbin0 -> 470 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertlistbox.pngbin0 -> 758 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertmasterpage.pngbin0 -> 757 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertmath.pngbin0 -> 459 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertneutralparagraph.pngbin0 -> 288 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertnumericfield.pngbin0 -> 333 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertobjctrl.pngbin0 -> 681 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertobject.pngbin0 -> 681 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertobjectchart.pngbin0 -> 636 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertobjectdialog.pngbin0 -> 681 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertobjectfloatingframe.pngbin0 -> 304 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertobjectstarmath.pngbin0 -> 459 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertpage.pngbin0 -> 665 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertpagecountfield.pngbin0 -> 895 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertpagenumberfield.pngbin0 -> 727 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertpatternfield.pngbin0 -> 551 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertplugin.pngbin0 -> 908 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertpushbutton.pngbin0 -> 476 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertreferencefield.pngbin0 -> 636 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertrows.pngbin0 -> 485 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertsection.pngbin0 -> 432 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertsound.pngbin0 -> 645 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertspreadsheet.pngbin0 -> 341 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertsymbol.pngbin0 -> 1068 bytes-rw-r--r--default_images/res/commandimagelist/lc_inserttable.pngbin0 -> 341 bytes-rw-r--r--default_images/res/commandimagelist/lc_inserttextframe.pngbin0 -> 355 bytes-rw-r--r--default_images/res/commandimagelist/lc_inserttimefield.pngbin0 -> 1280 bytes-rw-r--r--default_images/res/commandimagelist/lc_inserttitlefield.pngbin0 -> 456 bytes-rw-r--r--default_images/res/commandimagelist/lc_inserttoolbox.pngbin0 -> 961 bytes-rw-r--r--default_images/res/commandimagelist/lc_inserttopicfield.pngbin0 -> 529 bytes-rw-r--r--default_images/res/commandimagelist/lc_inserttreecontrol.pngbin0 -> 304 bytes-rw-r--r--default_images/res/commandimagelist/lc_insertvideo.pngbin0 -> 680 bytes-rw-r--r--default_images/res/commandimagelist/lc_insobjctrl.pngbin0 -> 681 bytes-rw-r--r--default_images/res/commandimagelist/lc_interactivegradient.pngbin0 -> 1237 bytes-rw-r--r--default_images/res/commandimagelist/lc_interactivetransparence.pngbin0 -> 639 bytes-rw-r--r--default_images/res/commandimagelist/lc_internetonline.pngbin0 -> 276 bytes-rw-r--r--default_images/res/commandimagelist/lc_italic.pngbin0 -> 303 bytes-rw-r--r--default_images/res/commandimagelist/lc_justifypara.pngbin0 -> 227 bytes-rw-r--r--default_images/res/commandimagelist/lc_label.pngbin0 -> 298 bytes-rw-r--r--default_images/res/commandimagelist/lc_lastpage.pngbin0 -> 736 bytes-rw-r--r--default_images/res/commandimagelist/lc_lastrecord.pngbin0 -> 561 bytes-rw-r--r--default_images/res/commandimagelist/lc_leaveallgroups.pngbin0 -> 811 bytes-rw-r--r--default_images/res/commandimagelist/lc_leavegroup.pngbin0 -> 677 bytes-rw-r--r--default_images/res/commandimagelist/lc_leftpara.pngbin0 -> 232 bytes-rw-r--r--default_images/res/commandimagelist/lc_line.pngbin0 -> 355 bytes-rw-r--r--default_images/res/commandimagelist/lc_line_diagonal.pngbin0 -> 348 bytes-rw-r--r--default_images/res/commandimagelist/lc_linearrowcircle.pngbin0 -> 443 bytes-rw-r--r--default_images/res/commandimagelist/lc_linearrowend.pngbin0 -> 301 bytes-rw-r--r--default_images/res/commandimagelist/lc_linearrows.pngbin0 -> 339 bytes-rw-r--r--default_images/res/commandimagelist/lc_linearrowsquare.pngbin0 -> 351 bytes-rw-r--r--default_images/res/commandimagelist/lc_linearrowstart.pngbin0 -> 301 bytes-rw-r--r--default_images/res/commandimagelist/lc_linecirclearrow.pngbin0 -> 444 bytes-rw-r--r--default_images/res/commandimagelist/lc_lineendstyle.pngbin0 -> 515 bytes-rw-r--r--default_images/res/commandimagelist/lc_linesquarearrow.pngbin0 -> 350 bytes-rw-r--r--default_images/res/commandimagelist/lc_linestyle.pngbin0 -> 113 bytes-rw-r--r--default_images/res/commandimagelist/lc_linetoolbox.pngbin0 -> 754 bytes-rw-r--r--default_images/res/commandimagelist/lc_linewidth.pngbin0 -> 708 bytes-rw-r--r--default_images/res/commandimagelist/lc_listbox.pngbin0 -> 758 bytes-rw-r--r--default_images/res/commandimagelist/lc_loadbasic.pngbin0 -> 549 bytes-rw-r--r--default_images/res/commandimagelist/lc_macrorecorder.pngbin0 -> 879 bytes-rw-r--r--default_images/res/commandimagelist/lc_macrorecordingfloat.pngbin0 -> 276 bytes-rw-r--r--default_images/res/commandimagelist/lc_mailwindow.pngbin0 -> 276 bytes-rw-r--r--default_images/res/commandimagelist/lc_managebreakpoints.pngbin0 -> 899 bytes-rw-r--r--default_images/res/commandimagelist/lc_managelanguage.pngbin0 -> 1417 bytes-rw-r--r--default_images/res/commandimagelist/lc_marks.pngbin0 -> 268 bytes-rw-r--r--default_images/res/commandimagelist/lc_matchgroup.pngbin0 -> 413 bytes-rw-r--r--default_images/res/commandimagelist/lc_measureline.pngbin0 -> 498 bytes-rw-r--r--default_images/res/commandimagelist/lc_mergecells.pngbin0 -> 364 bytes-rw-r--r--default_images/res/commandimagelist/lc_mergedialog.pngbin0 -> 735 bytes-rw-r--r--default_images/res/commandimagelist/lc_mirror.pngbin0 -> 1496 bytes-rw-r--r--default_images/res/commandimagelist/lc_modifyframe.pngbin0 -> 771 bytes-rw-r--r--default_images/res/commandimagelist/lc_modifypage.pngbin0 -> 538 bytes-rw-r--r--default_images/res/commandimagelist/lc_moduledialog.pngbin0 -> 816 bytes-rw-r--r--default_images/res/commandimagelist/lc_morecontrols.pngbin0 -> 520 bytes-rw-r--r--default_images/res/commandimagelist/lc_movedown.pngbin0 -> 629 bytes-rw-r--r--default_images/res/commandimagelist/lc_movedownsubitems.pngbin0 -> 811 bytes-rw-r--r--default_images/res/commandimagelist/lc_moveup.pngbin0 -> 637 bytes-rw-r--r--default_images/res/commandimagelist/lc_moveupsubitems.pngbin0 -> 811 bytes-rw-r--r--default_images/res/commandimagelist/lc_navigationbar.pngbin0 -> 675 bytes-rw-r--r--default_images/res/commandimagelist/lc_navigator.pngbin0 -> 1136 bytes-rw-r--r--default_images/res/commandimagelist/lc_newarrangement.pngbin0 -> 871 bytes-rw-r--r--default_images/res/commandimagelist/lc_newdoc.pngbin0 -> 445 bytes-rw-r--r--default_images/res/commandimagelist/lc_newrecord.pngbin0 -> 525 bytes-rw-r--r--default_images/res/commandimagelist/lc_nextannotation.pngbin0 -> 906 bytes-rw-r--r--default_images/res/commandimagelist/lc_nextpage.pngbin0 -> 693 bytes-rw-r--r--default_images/res/commandimagelist/lc_nextrecord.pngbin0 -> 470 bytes-rw-r--r--default_images/res/commandimagelist/lc_no.pngbin0 -> 1305 bytes-rw-r--r--default_images/res/commandimagelist/lc_numberformatcurrency.pngbin0 -> 785 bytes-rw-r--r--default_images/res/commandimagelist/lc_numberformatdate.pngbin0 -> 591 bytes-rw-r--r--default_images/res/commandimagelist/lc_numberformatdecdecimals.pngbin0 -> 671 bytes-rw-r--r--default_images/res/commandimagelist/lc_numberformatdecimal.pngbin0 -> 332 bytes-rw-r--r--default_images/res/commandimagelist/lc_numberformatincdecimals.pngbin0 -> 551 bytes-rw-r--r--default_images/res/commandimagelist/lc_numberformatpercent.pngbin0 -> 365 bytes-rw-r--r--default_images/res/commandimagelist/lc_numberformatscientific.pngbin0 -> 349 bytes-rw-r--r--default_images/res/commandimagelist/lc_numberformatstandard.pngbin0 -> 600 bytes-rw-r--r--default_images/res/commandimagelist/lc_numberingstart.pngbin0 -> 769 bytes-rw-r--r--default_images/res/commandimagelist/lc_numericfield.pngbin0 -> 332 bytes-rw-r--r--default_images/res/commandimagelist/lc_objectalign.pngbin0 -> 590 bytes-rw-r--r--default_images/res/commandimagelist/lc_objectalignleft.pngbin0 -> 590 bytes-rw-r--r--default_images/res/commandimagelist/lc_objectalignright.pngbin0 -> 592 bytes-rw-r--r--default_images/res/commandimagelist/lc_objectcatalog.pngbin0 -> 810 bytes-rw-r--r--default_images/res/commandimagelist/lc_objectposition.pngbin0 -> 417 bytes-rw-r--r--default_images/res/commandimagelist/lc_objects3dtoolbox.pngbin0 -> 627 bytes-rw-r--r--default_images/res/commandimagelist/lc_ok.pngbin0 -> 901 bytes-rw-r--r--default_images/res/commandimagelist/lc_open.pngbin0 -> 863 bytes-rw-r--r--default_images/res/commandimagelist/lc_openreadonly.pngbin0 -> 983 bytes-rw-r--r--default_images/res/commandimagelist/lc_openurl.pngbin0 -> 1139 bytes-rw-r--r--default_images/res/commandimagelist/lc_optimizetable.pngbin0 -> 545 bytes-rw-r--r--default_images/res/commandimagelist/lc_ordercrit.pngbin0 -> 331 bytes-rw-r--r--default_images/res/commandimagelist/lc_outlinebullet.pngbin0 -> 601 bytes-rw-r--r--default_images/res/commandimagelist/lc_outlinecollapse.pngbin0 -> 514 bytes-rw-r--r--default_images/res/commandimagelist/lc_outlinecollapseall.pngbin0 -> 503 bytes-rw-r--r--default_images/res/commandimagelist/lc_outlinedown.pngbin0 -> 629 bytes-rw-r--r--default_images/res/commandimagelist/lc_outlineexpand.pngbin0 -> 505 bytes-rw-r--r--default_images/res/commandimagelist/lc_outlineexpandall.pngbin0 -> 499 bytes-rw-r--r--default_images/res/commandimagelist/lc_outlinefont.pngbin0 -> 757 bytes-rw-r--r--default_images/res/commandimagelist/lc_outlineformat.pngbin0 -> 1035 bytes-rw-r--r--default_images/res/commandimagelist/lc_outlineleft.pngbin0 -> 597 bytes-rw-r--r--default_images/res/commandimagelist/lc_outlineright.pngbin0 -> 581 bytes-rw-r--r--default_images/res/commandimagelist/lc_outlineup.pngbin0 -> 637 bytes-rw-r--r--default_images/res/commandimagelist/lc_overline.pngbin0 -> 323 bytes-rw-r--r--default_images/res/commandimagelist/lc_pagedown.pngbin0 -> 693 bytes-rw-r--r--default_images/res/commandimagelist/lc_pageup.pngbin0 -> 703 bytes-rw-r--r--default_images/res/commandimagelist/lc_paragraphdialog.pngbin0 -> 730 bytes-rw-r--r--default_images/res/commandimagelist/lc_paralefttoright.pngbin0 -> 695 bytes-rw-r--r--default_images/res/commandimagelist/lc_pararighttoleft.pngbin0 -> 688 bytes-rw-r--r--default_images/res/commandimagelist/lc_paraspacedecrease.pngbin0 -> 478 bytes-rw-r--r--default_images/res/commandimagelist/lc_paraspaceincrease.pngbin0 -> 490 bytes-rw-r--r--default_images/res/commandimagelist/lc_paste.pngbin0 -> 850 bytes-rw-r--r--default_images/res/commandimagelist/lc_patternfield.pngbin0 -> 551 bytes-rw-r--r--default_images/res/commandimagelist/lc_pickthrough.pngbin0 -> 1039 bytes-rw-r--r--default_images/res/commandimagelist/lc_pie.pngbin0 -> 679 bytes-rw-r--r--default_images/res/commandimagelist/lc_pie_unfilled.pngbin0 -> 693 bytes-rw-r--r--default_images/res/commandimagelist/lc_playmacro.pngbin0 -> 276 bytes-rw-r--r--default_images/res/commandimagelist/lc_pluginsactive.pngbin0 -> 907 bytes-rw-r--r--default_images/res/commandimagelist/lc_polygon.pngbin0 -> 693 bytes-rw-r--r--default_images/res/commandimagelist/lc_polygon_diagonal.pngbin0 -> 351 bytes-rw-r--r--default_images/res/commandimagelist/lc_polygon_diagonal_unfilled.pngbin0 -> 272 bytes-rw-r--r--default_images/res/commandimagelist/lc_polygon_unfilled.pngbin0 -> 528 bytes-rw-r--r--default_images/res/commandimagelist/lc_presentation.pngbin0 -> 666 bytes-rw-r--r--default_images/res/commandimagelist/lc_presentationlayout.pngbin0 -> 854 bytes-rw-r--r--default_images/res/commandimagelist/lc_preview.pngbin0 -> 276 bytes-rw-r--r--default_images/res/commandimagelist/lc_previewprintoptions.pngbin0 -> 804 bytes-rw-r--r--default_images/res/commandimagelist/lc_previewzoom.pngbin0 -> 963 bytes-rw-r--r--default_images/res/commandimagelist/lc_previousannotation.pngbin0 -> 917 bytes-rw-r--r--default_images/res/commandimagelist/lc_previouspage.pngbin0 -> 703 bytes-rw-r--r--default_images/res/commandimagelist/lc_prevrecord.pngbin0 -> 473 bytes-rw-r--r--default_images/res/commandimagelist/lc_print.pngbin0 -> 594 bytes-rw-r--r--default_images/res/commandimagelist/lc_printdefault.pngbin0 -> 594 bytes-rw-r--r--default_images/res/commandimagelist/lc_printersetup.pngbin0 -> 804 bytes-rw-r--r--default_images/res/commandimagelist/lc_printlayout.pngbin0 -> 879 bytes-rw-r--r--default_images/res/commandimagelist/lc_printpagepreview.pngbin0 -> 643 bytes-rw-r--r--default_images/res/commandimagelist/lc_printpreview.pngbin0 -> 832 bytes-rw-r--r--default_images/res/commandimagelist/lc_progressbar.pngbin0 -> 352 bytes-rw-r--r--default_images/res/commandimagelist/lc_pushbutton.pngbin0 -> 476 bytes-rw-r--r--default_images/res/commandimagelist/lc_quickedit.pngbin0 -> 687 bytes-rw-r--r--default_images/res/commandimagelist/lc_quit.pngbin0 -> 793 bytes-rw-r--r--default_images/res/commandimagelist/lc_radiobutton.pngbin0 -> 615 bytes-rw-r--r--default_images/res/commandimagelist/lc_recsave.pngbin0 -> 757 bytes-rw-r--r--default_images/res/commandimagelist/lc_recsearch.pngbin0 -> 399 bytes-rw-r--r--default_images/res/commandimagelist/lc_rect.pngbin0 -> 271 bytes-rw-r--r--default_images/res/commandimagelist/lc_rect_rounded.pngbin0 -> 408 bytes-rw-r--r--default_images/res/commandimagelist/lc_rect_rounded_unfilled.pngbin0 -> 437 bytes-rw-r--r--default_images/res/commandimagelist/lc_rect_unfilled.pngbin0 -> 226 bytes-rw-r--r--default_images/res/commandimagelist/lc_rectangletoolbox.pngbin0 -> 271 bytes-rw-r--r--default_images/res/commandimagelist/lc_recundo.pngbin0 -> 1309 bytes-rw-r--r--default_images/res/commandimagelist/lc_redo.pngbin0 -> 1117 bytes-rw-r--r--default_images/res/commandimagelist/lc_refresh.pngbin0 -> 1147 bytes-rw-r--r--default_images/res/commandimagelist/lc_refreshformcontrol.pngbin0 -> 1201 bytes-rw-r--r--default_images/res/commandimagelist/lc_rehearsetimings.pngbin0 -> 1107 bytes-rw-r--r--default_images/res/commandimagelist/lc_reload.pngbin0 -> 1147 bytes-rw-r--r--default_images/res/commandimagelist/lc_removebullets.pngbin0 -> 237 bytes-rw-r--r--default_images/res/commandimagelist/lc_removefilter.pngbin0 -> 717 bytes-rw-r--r--default_images/res/commandimagelist/lc_removefiltersort.pngbin0 -> 717 bytes-rw-r--r--default_images/res/commandimagelist/lc_renamemasterpage.pngbin0 -> 719 bytes-rw-r--r--default_images/res/commandimagelist/lc_repeat.pngbin0 -> 1177 bytes-rw-r--r--default_images/res/commandimagelist/lc_reportnavigator.pngbin0 -> 1178 bytes-rw-r--r--default_images/res/commandimagelist/lc_reverseorder.pngbin0 -> 814 bytes-rw-r--r--default_images/res/commandimagelist/lc_rightpara.pngbin0 -> 234 bytes-rw-r--r--default_images/res/commandimagelist/lc_rulerrows.pngbin0 -> 1273 bytes-rw-r--r--default_images/res/commandimagelist/lc_rulerrowsvertical.pngbin0 -> 1272 bytes-rw-r--r--default_images/res/commandimagelist/lc_runbasic.pngbin0 -> 740 bytes-rw-r--r--default_images/res/commandimagelist/lc_save.pngbin0 -> 535 bytes-rw-r--r--default_images/res/commandimagelist/lc_saveas.pngbin0 -> 605 bytes-rw-r--r--default_images/res/commandimagelist/lc_saveastemplate.pngbin0 -> 775 bytes-rw-r--r--default_images/res/commandimagelist/lc_savebasicas.pngbin0 -> 687 bytes-rw-r--r--default_images/res/commandimagelist/lc_sbabrwinsert.pngbin0 -> 495 bytes-rw-r--r--default_images/res/commandimagelist/lc_sbaexecutesql.pngbin0 -> 819 bytes-rw-r--r--default_images/res/commandimagelist/lc_sbanativesql.pngbin0 -> 569 bytes-rw-r--r--default_images/res/commandimagelist/lc_scaletext.pngbin0 -> 934 bytes-rw-r--r--default_images/res/commandimagelist/lc_scrollbar.pngbin0 -> 695 bytes-rw-r--r--default_images/res/commandimagelist/lc_searchdialog.pngbin0 -> 398 bytes-rw-r--r--default_images/res/commandimagelist/lc_sectionalignbottom.pngbin0 -> 471 bytes-rw-r--r--default_images/res/commandimagelist/lc_sectionalignleft.pngbin0 -> 623 bytes-rw-r--r--default_images/res/commandimagelist/lc_sectionalignright.pngbin0 -> 615 bytes-rw-r--r--default_images/res/commandimagelist/lc_sectionaligntop.pngbin0 -> 468 bytes-rw-r--r--default_images/res/commandimagelist/lc_sectionshrink.pngbin0 -> 433 bytes-rw-r--r--default_images/res/commandimagelist/lc_sectionshrinkbottom.pngbin0 -> 354 bytes-rw-r--r--default_images/res/commandimagelist/lc_sectionshrinktop.pngbin0 -> 368 bytes-rw-r--r--default_images/res/commandimagelist/lc_selectall.pngbin0 -> 595 bytes-rw-r--r--default_images/res/commandimagelist/lc_selectmode.pngbin0 -> 502 bytes-rw-r--r--default_images/res/commandimagelist/lc_selectobject.pngbin0 -> 502 bytes-rw-r--r--default_images/res/commandimagelist/lc_selecttable.pngbin0 -> 605 bytes-rw-r--r--default_images/res/commandimagelist/lc_sendfax.pngbin0 -> 716 bytes-rw-r--r--default_images/res/commandimagelist/lc_sendmail.pngbin0 -> 470 bytes-rw-r--r--default_images/res/commandimagelist/lc_sendtoback.pngbin0 -> 418 bytes-rw-r--r--default_images/res/commandimagelist/lc_setborderstyle.pngbin0 -> 239 bytes-rw-r--r--default_images/res/commandimagelist/lc_setdocumentproperties.pngbin0 -> 744 bytes-rw-r--r--default_images/res/commandimagelist/lc_setobjecttobackground.pngbin0 -> 556 bytes-rw-r--r--default_images/res/commandimagelist/lc_setobjecttoforeground.pngbin0 -> 543 bytes-rw-r--r--default_images/res/commandimagelist/lc_setoptimalcolumnwidth.pngbin0 -> 407 bytes-rw-r--r--default_images/res/commandimagelist/lc_setoptimalcolumnwidthdirect.pngbin0 -> 408 bytes-rw-r--r--default_images/res/commandimagelist/lc_setoptimalrowheight.pngbin0 -> 319 bytes-rw-r--r--default_images/res/commandimagelist/lc_shadowcursor.pngbin0 -> 518 bytes-rw-r--r--default_images/res/commandimagelist/lc_shadowed.pngbin0 -> 519 bytes-rw-r--r--default_images/res/commandimagelist/lc_shear.pngbin0 -> 303 bytes-rw-r--r--default_images/res/commandimagelist/lc_shell3d.pngbin0 -> 1026 bytes-rw-r--r--default_images/res/commandimagelist/lc_showannotation.pngbin0 -> 611 bytes-rw-r--r--default_images/res/commandimagelist/lc_showbookview.pngbin0 -> 433 bytes-rw-r--r--default_images/res/commandimagelist/lc_showbrowser.pngbin0 -> 737 bytes-rw-r--r--default_images/res/commandimagelist/lc_showdatanavigator.pngbin0 -> 618 bytes-rw-r--r--default_images/res/commandimagelist/lc_showfmexplorer.pngbin0 -> 1075 bytes-rw-r--r--default_images/res/commandimagelist/lc_showmultiplepages.pngbin0 -> 332 bytes-rw-r--r--default_images/res/commandimagelist/lc_showpropbrowser.pngbin0 -> 737 bytes-rw-r--r--default_images/res/commandimagelist/lc_showslide.pngbin0 -> 599 bytes-rw-r--r--default_images/res/commandimagelist/lc_showtwopages.pngbin0 -> 394 bytes-rw-r--r--default_images/res/commandimagelist/lc_shrink.pngbin0 -> 978 bytes-rw-r--r--default_images/res/commandimagelist/lc_smallestheight.pngbin0 -> 462 bytes-rw-r--r--default_images/res/commandimagelist/lc_smallestwidth.pngbin0 -> 448 bytes-rw-r--r--default_images/res/commandimagelist/lc_snapborder.pngbin0 -> 761 bytes-rw-r--r--default_images/res/commandimagelist/lc_snapframe.pngbin0 -> 517 bytes-rw-r--r--default_images/res/commandimagelist/lc_snappoints.pngbin0 -> 438 bytes-rw-r--r--default_images/res/commandimagelist/lc_solidcreate.pngbin0 -> 701 bytes-rw-r--r--default_images/res/commandimagelist/lc_sortascending.pngbin0 -> 574 bytes-rw-r--r--default_images/res/commandimagelist/lc_sortdescending.pngbin0 -> 575 bytes-rw-r--r--default_images/res/commandimagelist/lc_sortdown.pngbin0 -> 575 bytes-rw-r--r--default_images/res/commandimagelist/lc_sortup.pngbin0 -> 575 bytes-rw-r--r--default_images/res/commandimagelist/lc_sourceview.pngbin0 -> 753 bytes-rw-r--r--default_images/res/commandimagelist/lc_spacepara1.pngbin0 -> 227 bytes-rw-r--r--default_images/res/commandimagelist/lc_spacepara15.pngbin0 -> 202 bytes-rw-r--r--default_images/res/commandimagelist/lc_spacepara2.pngbin0 -> 185 bytes-rw-r--r--default_images/res/commandimagelist/lc_spelldialog.pngbin0 -> 666 bytes-rw-r--r--default_images/res/commandimagelist/lc_spelling.pngbin0 -> 667 bytes-rw-r--r--default_images/res/commandimagelist/lc_spellingandgrammardialog.pngbin0 -> 668 bytes-rw-r--r--default_images/res/commandimagelist/lc_spellonline.pngbin0 -> 385 bytes-rw-r--r--default_images/res/commandimagelist/lc_sphere.pngbin0 -> 1371 bytes-rw-r--r--default_images/res/commandimagelist/lc_spinbutton.pngbin0 -> 672 bytes-rw-r--r--default_images/res/commandimagelist/lc_splitcell.pngbin0 -> 375 bytes-rw-r--r--default_images/res/commandimagelist/lc_splithorizontal.pngbin0 -> 276 bytes-rw-r--r--default_images/res/commandimagelist/lc_splitparenthorizontal.pngbin0 -> 276 bytes-rw-r--r--default_images/res/commandimagelist/lc_splitparentvertical.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lc_splitvertical.pngbin0 -> 276 bytes-rw-r--r--default_images/res/commandimagelist/lc_square.pngbin0 -> 310 bytes-rw-r--r--default_images/res/commandimagelist/lc_square_rounded.pngbin0 -> 505 bytes-rw-r--r--default_images/res/commandimagelist/lc_square_rounded_unfilled.pngbin0 -> 464 bytes-rw-r--r--default_images/res/commandimagelist/lc_square_unfilled.pngbin0 -> 258 bytes-rw-r--r--default_images/res/commandimagelist/lc_starchartdialog.pngbin0 -> 635 bytes-rw-r--r--default_images/res/commandimagelist/lc_starshapes.bang.pngbin0 -> 1018 bytes-rw-r--r--default_images/res/commandimagelist/lc_starshapes.concave-star6.pngbin0 -> 797 bytes-rw-r--r--default_images/res/commandimagelist/lc_starshapes.doorplate.pngbin0 -> 688 bytes-rw-r--r--default_images/res/commandimagelist/lc_starshapes.horizontal-scroll.pngbin0 -> 734 bytes-rw-r--r--default_images/res/commandimagelist/lc_starshapes.pngbin0 -> 771 bytes-rw-r--r--default_images/res/commandimagelist/lc_starshapes.signet.pngbin0 -> 1022 bytes-rw-r--r--default_images/res/commandimagelist/lc_starshapes.star12.pngbin0 -> 950 bytes-rw-r--r--default_images/res/commandimagelist/lc_starshapes.star24.pngbin0 -> 1167 bytes-rw-r--r--default_images/res/commandimagelist/lc_starshapes.star4.pngbin0 -> 589 bytes-rw-r--r--default_images/res/commandimagelist/lc_starshapes.star5.pngbin0 -> 770 bytes-rw-r--r--default_images/res/commandimagelist/lc_starshapes.star6.pngbin0 -> 631 bytes-rw-r--r--default_images/res/commandimagelist/lc_starshapes.star8.pngbin0 -> 796 bytes-rw-r--r--default_images/res/commandimagelist/lc_starshapes.vertical-scroll.pngbin0 -> 676 bytes-rw-r--r--default_images/res/commandimagelist/lc_strikeout.pngbin0 -> 363 bytes-rw-r--r--default_images/res/commandimagelist/lc_styleapply.pngbin0 -> 708 bytes-rw-r--r--default_images/res/commandimagelist/lc_stylenewbyexample.pngbin0 -> 705 bytes-rw-r--r--default_images/res/commandimagelist/lc_styleupdatebyexample.pngbin0 -> 276 bytes-rw-r--r--default_images/res/commandimagelist/lc_subscript.pngbin0 -> 1215 bytes-rw-r--r--default_images/res/commandimagelist/lc_superscript.pngbin0 -> 1187 bytes-rw-r--r--default_images/res/commandimagelist/lc_switchcontroldesignmode.pngbin0 -> 639 bytes-rw-r--r--default_images/res/commandimagelist/lc_switchxformsdesignmode.pngbin0 -> 640 bytes-rw-r--r--default_images/res/commandimagelist/lc_symbolcatalogue.pngbin0 -> 515 bytes-rw-r--r--default_images/res/commandimagelist/lc_symbolshapes.brace-pair.pngbin0 -> 766 bytes-rw-r--r--default_images/res/commandimagelist/lc_symbolshapes.bracket-pair.pngbin0 -> 603 bytes-rw-r--r--default_images/res/commandimagelist/lc_symbolshapes.cloud.pngbin0 -> 941 bytes-rw-r--r--default_images/res/commandimagelist/lc_symbolshapes.diamond-bevel.pngbin0 -> 838 bytes-rw-r--r--default_images/res/commandimagelist/lc_symbolshapes.flower.pngbin0 -> 1364 bytes-rw-r--r--default_images/res/commandimagelist/lc_symbolshapes.forbidden.pngbin0 -> 1309 bytes-rw-r--r--default_images/res/commandimagelist/lc_symbolshapes.heart.pngbin0 -> 1246 bytes-rw-r--r--default_images/res/commandimagelist/lc_symbolshapes.left-brace.pngbin0 -> 564 bytes-rw-r--r--default_images/res/commandimagelist/lc_symbolshapes.left-bracket.pngbin0 -> 458 bytes-rw-r--r--default_images/res/commandimagelist/lc_symbolshapes.lightning.pngbin0 -> 699 bytes-rw-r--r--default_images/res/commandimagelist/lc_symbolshapes.moon.pngbin0 -> 1012 bytes-rw-r--r--default_images/res/commandimagelist/lc_symbolshapes.octagon-bevel.pngbin0 -> 726 bytes-rw-r--r--default_images/res/commandimagelist/lc_symbolshapes.pngbin0 -> 1128 bytes-rw-r--r--default_images/res/commandimagelist/lc_symbolshapes.puzzle.pngbin0 -> 903 bytes-rw-r--r--default_images/res/commandimagelist/lc_symbolshapes.quad-bevel.pngbin0 -> 620 bytes-rw-r--r--default_images/res/commandimagelist/lc_symbolshapes.right-brace.pngbin0 -> 555 bytes-rw-r--r--default_images/res/commandimagelist/lc_symbolshapes.right-bracket.pngbin0 -> 444 bytes-rw-r--r--default_images/res/commandimagelist/lc_symbolshapes.smiley.pngbin0 -> 1128 bytes-rw-r--r--default_images/res/commandimagelist/lc_symbolshapes.sun.pngbin0 -> 901 bytes-rw-r--r--default_images/res/commandimagelist/lc_tabdialog.pngbin0 -> 918 bytes-rw-r--r--default_images/res/commandimagelist/lc_tabledesign.pngbin0 -> 661 bytes-rw-r--r--default_images/res/commandimagelist/lc_tabledialog.pngbin0 -> 663 bytes-rw-r--r--default_images/res/commandimagelist/lc_tablemodefix.pngbin0 -> 367 bytes-rw-r--r--default_images/res/commandimagelist/lc_tablemodefixprop.pngbin0 -> 450 bytes-rw-r--r--default_images/res/commandimagelist/lc_tablemodevariable.pngbin0 -> 401 bytes-rw-r--r--default_images/res/commandimagelist/lc_tablesort.pngbin0 -> 331 bytes-rw-r--r--default_images/res/commandimagelist/lc_testmode.pngbin0 -> 636 bytes-rw-r--r--default_images/res/commandimagelist/lc_text.pngbin0 -> 439 bytes-rw-r--r--default_images/res/commandimagelist/lc_text_marquee.pngbin0 -> 654 bytes-rw-r--r--default_images/res/commandimagelist/lc_textdirectionlefttoright.pngbin0 -> 440 bytes-rw-r--r--default_images/res/commandimagelist/lc_textdirectiontoptobottom.pngbin0 -> 426 bytes-rw-r--r--default_images/res/commandimagelist/lc_textfittosizetool.pngbin0 -> 754 bytes-rw-r--r--default_images/res/commandimagelist/lc_texttoolbox.pngbin0 -> 439 bytes-rw-r--r--default_images/res/commandimagelist/lc_thesaurus.pngbin0 -> 829 bytes-rw-r--r--default_images/res/commandimagelist/lc_thesaurusdialog.pngbin0 -> 829 bytes-rw-r--r--default_images/res/commandimagelist/lc_timefield.pngbin0 -> 1280 bytes-rw-r--r--default_images/res/commandimagelist/lc_toggleanchortype.pngbin0 -> 675 bytes-rw-r--r--default_images/res/commandimagelist/lc_toggleaxisdescr.pngbin0 -> 267 bytes-rw-r--r--default_images/res/commandimagelist/lc_toggleaxistitle.pngbin0 -> 585 bytes-rw-r--r--default_images/res/commandimagelist/lc_togglebreakpoint.pngbin0 -> 932 bytes-rw-r--r--default_images/res/commandimagelist/lc_togglegridhorizontal.pngbin0 -> 277 bytes-rw-r--r--default_images/res/commandimagelist/lc_togglegridvertical.pngbin0 -> 352 bytes-rw-r--r--default_images/res/commandimagelist/lc_togglelegend.pngbin0 -> 590 bytes-rw-r--r--default_images/res/commandimagelist/lc_togglemergecells.pngbin0 -> 364 bytes-rw-r--r--default_images/res/commandimagelist/lc_toggleobjectbeziermode.pngbin0 -> 367 bytes-rw-r--r--default_images/res/commandimagelist/lc_toggleobjectrotatemode.pngbin0 -> 1052 bytes-rw-r--r--default_images/res/commandimagelist/lc_togglesheetgrid.pngbin0 -> 651 bytes-rw-r--r--default_images/res/commandimagelist/lc_toggletitle.pngbin0 -> 480 bytes-rw-r--r--default_images/res/commandimagelist/lc_toolsmacroedit.pngbin0 -> 276 bytes-rw-r--r--default_images/res/commandimagelist/lc_toolsoptions.pngbin0 -> 276 bytes-rw-r--r--default_images/res/commandimagelist/lc_torus.pngbin0 -> 1128 bytes-rw-r--r--default_images/res/commandimagelist/lc_transformdialog.pngbin0 -> 1014 bytes-rw-r--r--default_images/res/commandimagelist/lc_underline.pngbin0 -> 342 bytes-rw-r--r--default_images/res/commandimagelist/lc_underlinedouble.pngbin0 -> 336 bytes-rw-r--r--default_images/res/commandimagelist/lc_undo.pngbin0 -> 1119 bytes-rw-r--r--default_images/res/commandimagelist/lc_ungroup.pngbin0 -> 358 bytes-rw-r--r--default_images/res/commandimagelist/lc_unhainframes.pngbin0 -> 718 bytes-rw-r--r--default_images/res/commandimagelist/lc_upsearch.pngbin0 -> 648 bytes-rw-r--r--default_images/res/commandimagelist/lc_urlbutton.pngbin0 -> 276 bytes-rw-r--r--default_images/res/commandimagelist/lc_usewizards.pngbin0 -> 798 bytes-rw-r--r--default_images/res/commandimagelist/lc_verticalcaption.pngbin0 -> 965 bytes-rw-r--r--default_images/res/commandimagelist/lc_verticaltext.pngbin0 -> 358 bytes-rw-r--r--default_images/res/commandimagelist/lc_verticaltextfittosizetool.pngbin0 -> 918 bytes-rw-r--r--default_images/res/commandimagelist/lc_vfixedline.pngbin0 -> 289 bytes-rw-r--r--default_images/res/commandimagelist/lc_view100.pngbin0 -> 766 bytes-rw-r--r--default_images/res/commandimagelist/lc_viewdatasourcebrowser.pngbin0 -> 1158 bytes-rw-r--r--default_images/res/commandimagelist/lc_viewformasgrid.pngbin0 -> 527 bytes-rw-r--r--default_images/res/commandimagelist/lc_vscrollbar.pngbin0 -> 695 bytes-rw-r--r--default_images/res/commandimagelist/lc_window3d.pngbin0 -> 199 bytes-rw-r--r--default_images/res/commandimagelist/lc_wrapcontour.pngbin0 -> 358 bytes-rw-r--r--default_images/res/commandimagelist/lc_wrapideal.pngbin0 -> 337 bytes-rw-r--r--default_images/res/commandimagelist/lc_wrapleft.pngbin0 -> 272 bytes-rw-r--r--default_images/res/commandimagelist/lc_wrapoff.pngbin0 -> 254 bytes-rw-r--r--default_images/res/commandimagelist/lc_wrapon.pngbin0 -> 274 bytes-rw-r--r--default_images/res/commandimagelist/lc_wrapright.pngbin0 -> 274 bytes-rw-r--r--default_images/res/commandimagelist/lc_wrapthrough.pngbin0 -> 227 bytes-rw-r--r--default_images/res/commandimagelist/lc_xlinecolor.pngbin0 -> 708 bytes-rw-r--r--default_images/res/commandimagelist/lc_xlinestyle.pngbin0 -> 709 bytes-rw-r--r--default_images/res/commandimagelist/lc_yes.pngbin0 -> 1320 bytes-rw-r--r--default_images/res/commandimagelist/lc_zoom.pngbin0 -> 963 bytes-rw-r--r--default_images/res/commandimagelist/lc_zoom100percent.pngbin0 -> 765 bytes-rw-r--r--default_images/res/commandimagelist/lc_zoomin.pngbin0 -> 1008 bytes-rw-r--r--default_images/res/commandimagelist/lc_zoomminus.pngbin0 -> 976 bytes-rw-r--r--default_images/res/commandimagelist/lc_zoomnext.pngbin0 -> 1343 bytes-rw-r--r--default_images/res/commandimagelist/lc_zoomobjects.pngbin0 -> 720 bytes-rw-r--r--default_images/res/commandimagelist/lc_zoomoptimal.pngbin0 -> 737 bytes-rw-r--r--default_images/res/commandimagelist/lc_zoomout.pngbin0 -> 976 bytes-rw-r--r--default_images/res/commandimagelist/lc_zoompage.pngbin0 -> 832 bytes-rw-r--r--default_images/res/commandimagelist/lc_zoompagewidth.pngbin0 -> 885 bytes-rw-r--r--default_images/res/commandimagelist/lc_zoompanning.pngbin0 -> 1269 bytes-rw-r--r--default_images/res/commandimagelist/lc_zoomplus.pngbin0 -> 1008 bytes-rw-r--r--default_images/res/commandimagelist/lc_zoomprevious.pngbin0 -> 1205 bytes-rw-r--r--default_images/res/commandimagelist/lc_zoomtoolbox.pngbin0 -> 963 bytes-rw-r--r--default_images/res/commandimagelist/lch_absoluterecord.pngbin0 -> 180 bytes-rw-r--r--default_images/res/commandimagelist/lch_actionmode.pngbin0 -> 231 bytes-rw-r--r--default_images/res/commandimagelist/lch_addbookmark.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lch_adddatefield.pngbin0 -> 155 bytes-rw-r--r--default_images/res/commandimagelist/lch_adddirect.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/lch_addfield.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/lch_addons.pngbin0 -> 178 bytes-rw-r--r--default_images/res/commandimagelist/lch_addprintarea.pngbin0 -> 186 bytes-rw-r--r--default_images/res/commandimagelist/lch_addtable.pngbin0 -> 153 bytes-rw-r--r--default_images/res/commandimagelist/lch_addwatch.pngbin0 -> 169 bytes-rw-r--r--default_images/res/commandimagelist/lch_adjust.pngbin0 -> 176 bytes-rw-r--r--default_images/res/commandimagelist/lch_advancedmode.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lch_alignblock.pngbin0 -> 87 bytes-rw-r--r--default_images/res/commandimagelist/lch_alignbottom.pngbin0 -> 145 bytes-rw-r--r--default_images/res/commandimagelist/lch_aligncenter.pngbin0 -> 169 bytes-rw-r--r--default_images/res/commandimagelist/lch_aligndown.pngbin0 -> 153 bytes-rw-r--r--default_images/res/commandimagelist/lch_alignhorizontalcenter.pngbin0 -> 90 bytes-rw-r--r--default_images/res/commandimagelist/lch_alignleft.pngbin0 -> 90 bytes-rw-r--r--default_images/res/commandimagelist/lch_alignmiddle.pngbin0 -> 175 bytes-rw-r--r--default_images/res/commandimagelist/lch_alignright.pngbin0 -> 90 bytes-rw-r--r--default_images/res/commandimagelist/lch_aligntop.pngbin0 -> 152 bytes-rw-r--r--default_images/res/commandimagelist/lch_alignup.pngbin0 -> 155 bytes-rw-r--r--default_images/res/commandimagelist/lch_alignvcenter.pngbin0 -> 162 bytes-rw-r--r--default_images/res/commandimagelist/lch_alignverticalcenter.pngbin0 -> 160 bytes-rw-r--r--default_images/res/commandimagelist/lch_animationeffects.pngbin0 -> 199 bytes-rw-r--r--default_images/res/commandimagelist/lch_animationmode.pngbin0 -> 240 bytes-rw-r--r--default_images/res/commandimagelist/lch_animationobjects.pngbin0 -> 140 bytes-rw-r--r--default_images/res/commandimagelist/lch_arc.pngbin0 -> 129 bytes-rw-r--r--default_images/res/commandimagelist/lch_arrowshapes.chevron.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/lch_arrowshapes.circular-arrow.pngbin0 -> 188 bytes-rw-r--r--default_images/res/commandimagelist/lch_arrowshapes.corner-right-arrow.pngbin0 -> 152 bytes-rw-r--r--default_images/res/commandimagelist/lch_arrowshapes.down-arrow-callout.pngbin0 -> 141 bytes-rw-r--r--default_images/res/commandimagelist/lch_arrowshapes.down-arrow.pngbin0 -> 147 bytes-rw-r--r--default_images/res/commandimagelist/lch_arrowshapes.left-arrow-callout.pngbin0 -> 157 bytes-rw-r--r--default_images/res/commandimagelist/lch_arrowshapes.left-arrow.pngbin0 -> 151 bytes-rw-r--r--default_images/res/commandimagelist/lch_arrowshapes.left-right-arrow-callout.pngbin0 -> 183 bytes-rw-r--r--default_images/res/commandimagelist/lch_arrowshapes.left-right-arrow.pngbin0 -> 160 bytes-rw-r--r--default_images/res/commandimagelist/lch_arrowshapes.notched-right-arrow.pngbin0 -> 141 bytes-rw-r--r--default_images/res/commandimagelist/lch_arrowshapes.pentagon-right.pngbin0 -> 145 bytes-rw-r--r--default_images/res/commandimagelist/lch_arrowshapes.pngbin0 -> 160 bytes-rw-r--r--default_images/res/commandimagelist/lch_arrowshapes.quad-arrow-callout.pngbin0 -> 207 bytes-rw-r--r--default_images/res/commandimagelist/lch_arrowshapes.quad-arrow.pngbin0 -> 182 bytes-rw-r--r--default_images/res/commandimagelist/lch_arrowshapes.right-arrow-callout.pngbin0 -> 154 bytes-rw-r--r--default_images/res/commandimagelist/lch_arrowshapes.right-arrow.pngbin0 -> 155 bytes-rw-r--r--default_images/res/commandimagelist/lch_arrowshapes.s-sharped-arrow.pngbin0 -> 196 bytes-rw-r--r--default_images/res/commandimagelist/lch_arrowshapes.split-arrow.pngbin0 -> 179 bytes-rw-r--r--default_images/res/commandimagelist/lch_arrowshapes.split-round-arrow.pngbin0 -> 193 bytes-rw-r--r--default_images/res/commandimagelist/lch_arrowshapes.striped-right-arrow.pngbin0 -> 158 bytes-rw-r--r--default_images/res/commandimagelist/lch_arrowshapes.up-arrow-callout.pngbin0 -> 142 bytes-rw-r--r--default_images/res/commandimagelist/lch_arrowshapes.up-arrow.pngbin0 -> 146 bytes-rw-r--r--default_images/res/commandimagelist/lch_arrowshapes.up-down-arrow-callout.pngbin0 -> 160 bytes-rw-r--r--default_images/res/commandimagelist/lch_arrowshapes.up-down-arrow.pngbin0 -> 156 bytes-rw-r--r--default_images/res/commandimagelist/lch_arrowshapes.up-right-arrow-callout.pngbin0 -> 185 bytes-rw-r--r--default_images/res/commandimagelist/lch_arrowshapes.up-right-arrow.pngbin0 -> 172 bytes-rw-r--r--default_images/res/commandimagelist/lch_arrowshapes.up-right-down-arrow.pngbin0 -> 172 bytes-rw-r--r--default_images/res/commandimagelist/lch_arrowstoolbox.pngbin0 -> 102 bytes-rw-r--r--default_images/res/commandimagelist/lch_assignlayout.pngbin0 -> 142 bytes-rw-r--r--default_images/res/commandimagelist/lch_autocontrolfocus.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/lch_autofilter.pngbin0 -> 209 bytes-rw-r--r--default_images/res/commandimagelist/lch_autoformat.pngbin0 -> 233 bytes-rw-r--r--default_images/res/commandimagelist/lch_autosum.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/lch_avmediaplayer.pngbin0 -> 156 bytes-rw-r--r--default_images/res/commandimagelist/lch_backcolor.pngbin0 -> 214 bytes-rw-r--r--default_images/res/commandimagelist/lch_backgroundcolor.pngbin0 -> 226 bytes-rw-r--r--default_images/res/commandimagelist/lch_backgroundpatterncontroller.pngbin0 -> 225 bytes-rw-r--r--default_images/res/commandimagelist/lch_backward.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/lch_basicshapes.block-arc.pngbin0 -> 174 bytes-rw-r--r--default_images/res/commandimagelist/lch_basicshapes.can.pngbin0 -> 158 bytes-rw-r--r--default_images/res/commandimagelist/lch_basicshapes.circle-pie.pngbin0 -> 173 bytes-rw-r--r--default_images/res/commandimagelist/lch_basicshapes.circle.pngbin0 -> 166 bytes-rw-r--r--default_images/res/commandimagelist/lch_basicshapes.cross.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/lch_basicshapes.cube.pngbin0 -> 148 bytes-rw-r--r--default_images/res/commandimagelist/lch_basicshapes.diamond.pngbin0 -> 156 bytes-rw-r--r--default_images/res/commandimagelist/lch_basicshapes.ellipse.pngbin0 -> 154 bytes-rw-r--r--default_images/res/commandimagelist/lch_basicshapes.frame.pngbin0 -> 113 bytes-rw-r--r--default_images/res/commandimagelist/lch_basicshapes.hexagon.pngbin0 -> 159 bytes-rw-r--r--default_images/res/commandimagelist/lch_basicshapes.isosceles-triangle.pngbin0 -> 155 bytes-rw-r--r--default_images/res/commandimagelist/lch_basicshapes.octagon.pngbin0 -> 141 bytes-rw-r--r--default_images/res/commandimagelist/lch_basicshapes.paper.pngbin0 -> 138 bytes-rw-r--r--default_images/res/commandimagelist/lch_basicshapes.parallelogram.pngbin0 -> 125 bytes-rw-r--r--default_images/res/commandimagelist/lch_basicshapes.pentagon.pngbin0 -> 170 bytes-rw-r--r--default_images/res/commandimagelist/lch_basicshapes.pngbin0 -> 155 bytes-rw-r--r--default_images/res/commandimagelist/lch_basicshapes.quadrat.pngbin0 -> 102 bytes-rw-r--r--default_images/res/commandimagelist/lch_basicshapes.rectangle.pngbin0 -> 101 bytes-rw-r--r--default_images/res/commandimagelist/lch_basicshapes.right-triangle.pngbin0 -> 146 bytes-rw-r--r--default_images/res/commandimagelist/lch_basicshapes.ring.pngbin0 -> 196 bytes-rw-r--r--default_images/res/commandimagelist/lch_basicshapes.round-quadrat.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/lch_basicshapes.round-rectangle.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/lch_basicshapes.trapezoid.pngbin0 -> 149 bytes-rw-r--r--default_images/res/commandimagelist/lch_basicstepinto.pngbin0 -> 167 bytes-rw-r--r--default_images/res/commandimagelist/lch_basicstepout.pngbin0 -> 175 bytes-rw-r--r--default_images/res/commandimagelist/lch_basicstepover.pngbin0 -> 172 bytes-rw-r--r--default_images/res/commandimagelist/lch_basicstop.pngbin0 -> 143 bytes-rw-r--r--default_images/res/commandimagelist/lch_beamer.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lch_beforeobject.pngbin0 -> 142 bytes-rw-r--r--default_images/res/commandimagelist/lch_behindobject.pngbin0 -> 154 bytes-rw-r--r--default_images/res/commandimagelist/lch_bezier_unfilled.pngbin0 -> 140 bytes-rw-r--r--default_images/res/commandimagelist/lch_bezierappend.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lch_bezierclose.pngbin0 -> 165 bytes-rw-r--r--default_images/res/commandimagelist/lch_bezierconvert.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/lch_beziercutline.pngbin0 -> 226 bytes-rw-r--r--default_images/res/commandimagelist/lch_bezierdelete.pngbin0 -> 207 bytes-rw-r--r--default_images/res/commandimagelist/lch_bezieredge.pngbin0 -> 133 bytes-rw-r--r--default_images/res/commandimagelist/lch_beziereliminatepoints.pngbin0 -> 185 bytes-rw-r--r--default_images/res/commandimagelist/lch_bezierfill.pngbin0 -> 150 bytes-rw-r--r--default_images/res/commandimagelist/lch_bezierinsert.pngbin0 -> 189 bytes-rw-r--r--default_images/res/commandimagelist/lch_beziermove.pngbin0 -> 165 bytes-rw-r--r--default_images/res/commandimagelist/lch_beziersmooth.pngbin0 -> 143 bytes-rw-r--r--default_images/res/commandimagelist/lch_beziersymmetric.pngbin0 -> 178 bytes-rw-r--r--default_images/res/commandimagelist/lch_bighandles.pngbin0 -> 138 bytes-rw-r--r--default_images/res/commandimagelist/lch_bold.pngbin0 -> 142 bytes-rw-r--r--default_images/res/commandimagelist/lch_borderdialog.pngbin0 -> 99 bytes-rw-r--r--default_images/res/commandimagelist/lch_bringtofront.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/lch_browsebackward.pngbin0 -> 124 bytes-rw-r--r--default_images/res/commandimagelist/lch_browseforward.pngbin0 -> 128 bytes-rw-r--r--default_images/res/commandimagelist/lch_browseview.pngbin0 -> 279 bytes-rw-r--r--default_images/res/commandimagelist/lch_bullet.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/lch_bulletsandnumberingdialog.pngbin0 -> 160 bytes-rw-r--r--default_images/res/commandimagelist/lch_calloutshapes.cloud-callout.pngbin0 -> 218 bytes-rw-r--r--default_images/res/commandimagelist/lch_calloutshapes.line-callout-1.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/lch_calloutshapes.line-callout-2.pngbin0 -> 148 bytes-rw-r--r--default_images/res/commandimagelist/lch_calloutshapes.line-callout-3.pngbin0 -> 113 bytes-rw-r--r--default_images/res/commandimagelist/lch_calloutshapes.pngbin0 -> 189 bytes-rw-r--r--default_images/res/commandimagelist/lch_calloutshapes.rectangular-callout.pngbin0 -> 130 bytes-rw-r--r--default_images/res/commandimagelist/lch_calloutshapes.round-callout.pngbin0 -> 168 bytes-rw-r--r--default_images/res/commandimagelist/lch_calloutshapes.round-rectangular-callout.pngbin0 -> 189 bytes-rw-r--r--default_images/res/commandimagelist/lch_cellvertbottom.pngbin0 -> 145 bytes-rw-r--r--default_images/res/commandimagelist/lch_cellvertcenter.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lch_cellverttop.pngbin0 -> 152 bytes-rw-r--r--default_images/res/commandimagelist/lch_centerpara.pngbin0 -> 90 bytes-rw-r--r--default_images/res/commandimagelist/lch_chainframes.pngbin0 -> 151 bytes-rw-r--r--default_images/res/commandimagelist/lch_changebezier.pngbin0 -> 181 bytes-rw-r--r--default_images/res/commandimagelist/lch_changepolygon.pngbin0 -> 200 bytes-rw-r--r--default_images/res/commandimagelist/lch_charfontname.pngbin0 -> 149 bytes-rw-r--r--default_images/res/commandimagelist/lch_checkbox.pngbin0 -> 163 bytes-rw-r--r--default_images/res/commandimagelist/lch_choosecontrols.pngbin0 -> 208 bytes-rw-r--r--default_images/res/commandimagelist/lch_choosedesign.pngbin0 -> 235 bytes-rw-r--r--default_images/res/commandimagelist/lch_choosemacro.pngbin0 -> 171 bytes-rw-r--r--default_images/res/commandimagelist/lch_choosepolygon.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/lch_circle.pngbin0 -> 166 bytes-rw-r--r--default_images/res/commandimagelist/lch_circle_unfilled.pngbin0 -> 156 bytes-rw-r--r--default_images/res/commandimagelist/lch_circlearc.pngbin0 -> 138 bytes-rw-r--r--default_images/res/commandimagelist/lch_circlecut.pngbin0 -> 174 bytes-rw-r--r--default_images/res/commandimagelist/lch_circlecut_unfilled.pngbin0 -> 175 bytes-rw-r--r--default_images/res/commandimagelist/lch_circlepie.pngbin0 -> 172 bytes-rw-r--r--default_images/res/commandimagelist/lch_circlepie_unfilled.pngbin0 -> 160 bytes-rw-r--r--default_images/res/commandimagelist/lch_clickchangerotation.pngbin0 -> 230 bytes-rw-r--r--default_images/res/commandimagelist/lch_closedoc.pngbin0 -> 189 bytes-rw-r--r--default_images/res/commandimagelist/lch_closedocs.pngbin0 -> 113 bytes-rw-r--r--default_images/res/commandimagelist/lch_closemasterview.pngbin0 -> 185 bytes-rw-r--r--default_images/res/commandimagelist/lch_closewin.pngbin0 -> 189 bytes-rw-r--r--default_images/res/commandimagelist/lch_color.pngbin0 -> 175 bytes-rw-r--r--default_images/res/commandimagelist/lch_colorsettings.pngbin0 -> 188 bytes-rw-r--r--default_images/res/commandimagelist/lch_colorview.pngbin0 -> 119 bytes-rw-r--r--default_images/res/commandimagelist/lch_combobox.pngbin0 -> 162 bytes-rw-r--r--default_images/res/commandimagelist/lch_commontaskbarvisible.pngbin0 -> 168 bytes-rw-r--r--default_images/res/commandimagelist/lch_compilebasic.pngbin0 -> 199 bytes-rw-r--r--default_images/res/commandimagelist/lch_cone.pngbin0 -> 177 bytes-rw-r--r--default_images/res/commandimagelist/lch_config.pngbin0 -> 211 bytes-rw-r--r--default_images/res/commandimagelist/lch_connector.pngbin0 -> 113 bytes-rw-r--r--default_images/res/commandimagelist/lch_connectorarrowend.pngbin0 -> 131 bytes-rw-r--r--default_images/res/commandimagelist/lch_connectorarrows.pngbin0 -> 133 bytes-rw-r--r--default_images/res/commandimagelist/lch_connectorarrowstart.pngbin0 -> 128 bytes-rw-r--r--default_images/res/commandimagelist/lch_connectorcircleend.pngbin0 -> 130 bytes-rw-r--r--default_images/res/commandimagelist/lch_connectorcircles.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/lch_connectorcirclestart.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/lch_connectorcurve.pngbin0 -> 149 bytes-rw-r--r--default_images/res/commandimagelist/lch_connectorcurvearrowend.pngbin0 -> 162 bytes-rw-r--r--default_images/res/commandimagelist/lch_connectorcurvearrows.pngbin0 -> 150 bytes-rw-r--r--default_images/res/commandimagelist/lch_connectorcurvearrowstart.pngbin0 -> 160 bytes-rw-r--r--default_images/res/commandimagelist/lch_connectorcurvecircleend.pngbin0 -> 158 bytes-rw-r--r--default_images/res/commandimagelist/lch_connectorcurvecircles.pngbin0 -> 147 bytes-rw-r--r--default_images/res/commandimagelist/lch_connectorcurvecirclestart.pngbin0 -> 159 bytes-rw-r--r--default_images/res/commandimagelist/lch_connectorline.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/lch_connectorlinearrowend.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/lch_connectorlinearrows.pngbin0 -> 140 bytes-rw-r--r--default_images/res/commandimagelist/lch_connectorlinearrowstart.pngbin0 -> 147 bytes-rw-r--r--default_images/res/commandimagelist/lch_connectorlinecircleend.pngbin0 -> 145 bytes-rw-r--r--default_images/res/commandimagelist/lch_connectorlinecircles.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/lch_connectorlinecirclestart.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/lch_connectorlines.pngbin0 -> 140 bytes-rw-r--r--default_images/res/commandimagelist/lch_connectorlinesarrowend.pngbin0 -> 154 bytes-rw-r--r--default_images/res/commandimagelist/lch_connectorlinesarrows.pngbin0 -> 148 bytes-rw-r--r--default_images/res/commandimagelist/lch_connectorlinesarrowstart.pngbin0 -> 152 bytes-rw-r--r--default_images/res/commandimagelist/lch_connectorlinescircleend.pngbin0 -> 153 bytes-rw-r--r--default_images/res/commandimagelist/lch_connectorlinescircles.pngbin0 -> 143 bytes-rw-r--r--default_images/res/commandimagelist/lch_connectorlinescirclestart.pngbin0 -> 153 bytes-rw-r--r--default_images/res/commandimagelist/lch_connectortoolbox.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/lch_contourdialog.pngbin0 -> 204 bytes-rw-r--r--default_images/res/commandimagelist/lch_controlcodes.pngbin0 -> 112 bytes-rw-r--r--default_images/res/commandimagelist/lch_controlproperties.pngbin0 -> 205 bytes-rw-r--r--default_images/res/commandimagelist/lch_convertinto3d.pngbin0 -> 162 bytes-rw-r--r--default_images/res/commandimagelist/lch_convertinto3dlathe.pngbin0 -> 197 bytes-rw-r--r--default_images/res/commandimagelist/lch_convertinto3dlathefast.pngbin0 -> 180 bytes-rw-r--r--default_images/res/commandimagelist/lch_copy.pngbin0 -> 155 bytes-rw-r--r--default_images/res/commandimagelist/lch_countall.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lch_crookrotate.pngbin0 -> 197 bytes-rw-r--r--default_images/res/commandimagelist/lch_crookslant.pngbin0 -> 207 bytes-rw-r--r--default_images/res/commandimagelist/lch_crop.pngbin0 -> 159 bytes-rw-r--r--default_images/res/commandimagelist/lch_cube.pngbin0 -> 140 bytes-rw-r--r--default_images/res/commandimagelist/lch_currencyfield.pngbin0 -> 173 bytes-rw-r--r--default_images/res/commandimagelist/lch_customanimation.pngbin0 -> 226 bytes-rw-r--r--default_images/res/commandimagelist/lch_cut.pngbin0 -> 204 bytes-rw-r--r--default_images/res/commandimagelist/lch_cylinder.pngbin0 -> 169 bytes-rw-r--r--default_images/res/commandimagelist/lch_cyramid.pngbin0 -> 167 bytes-rw-r--r--default_images/res/commandimagelist/lch_datadatapilotrun.pngbin0 -> 184 bytes-rw-r--r--default_images/res/commandimagelist/lch_datafilterautofilter.pngbin0 -> 209 bytes-rw-r--r--default_images/res/commandimagelist/lch_datafilterspecialfilter.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lch_datafilterstandardfilter.pngbin0 -> 133 bytes-rw-r--r--default_images/res/commandimagelist/lch_dataimport.pngbin0 -> 129 bytes-rw-r--r--default_images/res/commandimagelist/lch_dataincolumns.pngbin0 -> 114 bytes-rw-r--r--default_images/res/commandimagelist/lch_datainrows.pngbin0 -> 111 bytes-rw-r--r--default_images/res/commandimagelist/lch_datefield.pngbin0 -> 154 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbaddrelation.pngbin0 -> 203 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbchangedesignmode.pngbin0 -> 214 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbclearquery.pngbin0 -> 227 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbdistinctvalues.pngbin0 -> 174 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbformdelete.pngbin0 -> 203 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbformedit.pngbin0 -> 219 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbformopen.pngbin0 -> 215 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbformrename.pngbin0 -> 182 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbindexdesign.pngbin0 -> 195 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbnewform.pngbin0 -> 228 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbnewformautopilot.pngbin0 -> 284 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbnewquery.pngbin0 -> 212 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbnewqueryautopilot.pngbin0 -> 271 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbnewquerysql.pngbin0 -> 165 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbnewreport.pngbin0 -> 189 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbnewreportautopilot.pngbin0 -> 246 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbnewtable.pngbin0 -> 169 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbnewtableautopilot.pngbin0 -> 250 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbnewview.pngbin0 -> 205 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbnewviewsql.pngbin0 -> 218 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbquerydelete.pngbin0 -> 210 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbqueryedit.pngbin0 -> 241 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbqueryopen.pngbin0 -> 202 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbqueryrename.pngbin0 -> 139 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbreportdelete.pngbin0 -> 201 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbreportedit.pngbin0 -> 211 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbreportopen.pngbin0 -> 183 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbreportrename.pngbin0 -> 164 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbsortingandgrouping.pngbin0 -> 108 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbtabledelete.pngbin0 -> 210 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbtableedit.pngbin0 -> 195 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbtableopen.pngbin0 -> 175 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbtablerename.pngbin0 -> 139 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbviewaliases.pngbin0 -> 130 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbviewfunctions.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/lch_dbviewtablenames.pngbin0 -> 162 bytes-rw-r--r--default_images/res/commandimagelist/lch_decrementindent.pngbin0 -> 131 bytes-rw-r--r--default_images/res/commandimagelist/lch_decrementlevel.pngbin0 -> 125 bytes-rw-r--r--default_images/res/commandimagelist/lch_decrementsublevels.pngbin0 -> 158 bytes-rw-r--r--default_images/res/commandimagelist/lch_defaultbullet.pngbin0 -> 99 bytes-rw-r--r--default_images/res/commandimagelist/lch_defaultnumbering.pngbin0 -> 120 bytes-rw-r--r--default_images/res/commandimagelist/lch_definename.pngbin0 -> 133 bytes-rw-r--r--default_images/res/commandimagelist/lch_defineprintarea.pngbin0 -> 225 bytes-rw-r--r--default_images/res/commandimagelist/lch_delete.pngbin0 -> 158 bytes-rw-r--r--default_images/res/commandimagelist/lch_deleteallannotation.pngbin0 -> 180 bytes-rw-r--r--default_images/res/commandimagelist/lch_deleteannotation.pngbin0 -> 182 bytes-rw-r--r--default_images/res/commandimagelist/lch_deletecolumns.pngbin0 -> 111 bytes-rw-r--r--default_images/res/commandimagelist/lch_deletemasterpage.pngbin0 -> 230 bytes-rw-r--r--default_images/res/commandimagelist/lch_deleteprintarea.pngbin0 -> 245 bytes-rw-r--r--default_images/res/commandimagelist/lch_deleterecord.pngbin0 -> 177 bytes-rw-r--r--default_images/res/commandimagelist/lch_deleterows.pngbin0 -> 113 bytes-rw-r--r--default_images/res/commandimagelist/lch_designerdialog.pngbin0 -> 175 bytes-rw-r--r--default_images/res/commandimagelist/lch_dia.pngbin0 -> 187 bytes-rw-r--r--default_images/res/commandimagelist/lch_diaauto.pngbin0 -> 187 bytes-rw-r--r--default_images/res/commandimagelist/lch_diaeffect.pngbin0 -> 187 bytes-rw-r--r--default_images/res/commandimagelist/lch_diagramdata.pngbin0 -> 93 bytes-rw-r--r--default_images/res/commandimagelist/lch_diagramtype.pngbin0 -> 164 bytes-rw-r--r--default_images/res/commandimagelist/lch_diaspeed.pngbin0 -> 187 bytes-rw-r--r--default_images/res/commandimagelist/lch_diatime.pngbin0 -> 187 bytes-rw-r--r--default_images/res/commandimagelist/lch_distributecolumns.pngbin0 -> 145 bytes-rw-r--r--default_images/res/commandimagelist/lch_distributerows.pngbin0 -> 149 bytes-rw-r--r--default_images/res/commandimagelist/lch_doubleclicktextedit.pngbin0 -> 186 bytes-rw-r--r--default_images/res/commandimagelist/lch_downsearch.pngbin0 -> 155 bytes-rw-r--r--default_images/res/commandimagelist/lch_draw.pngbin0 -> 187 bytes-rw-r--r--default_images/res/commandimagelist/lch_drawcaption.pngbin0 -> 159 bytes-rw-r--r--default_images/res/commandimagelist/lch_drawchart.pngbin0 -> 114 bytes-rw-r--r--default_images/res/commandimagelist/lch_drawselect.pngbin0 -> 140 bytes-rw-r--r--default_images/res/commandimagelist/lch_drawtext.pngbin0 -> 114 bytes-rw-r--r--default_images/res/commandimagelist/lch_dsbdocumentdatasource.pngbin0 -> 214 bytes-rw-r--r--default_images/res/commandimagelist/lch_dsbeditdoc.pngbin0 -> 196 bytes-rw-r--r--default_images/res/commandimagelist/lch_dsbformletter.pngbin0 -> 194 bytes-rw-r--r--default_images/res/commandimagelist/lch_dsbinsertcolumns.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/lch_dsbinsertcontent.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/lch_dsbrowserexplorer.pngbin0 -> 153 bytes-rw-r--r--default_images/res/commandimagelist/lch_duplicatepage.pngbin0 -> 190 bytes-rw-r--r--default_images/res/commandimagelist/lch_edit.pngbin0 -> 150 bytes-rw-r--r--default_images/res/commandimagelist/lch_editdoc.pngbin0 -> 196 bytes-rw-r--r--default_images/res/commandimagelist/lch_editframeset.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lch_editglossary.pngbin0 -> 210 bytes-rw-r--r--default_images/res/commandimagelist/lch_editheaderandfooter.pngbin0 -> 119 bytes-rw-r--r--default_images/res/commandimagelist/lch_editprintarea.pngbin0 -> 231 bytes-rw-r--r--default_images/res/commandimagelist/lch_ellipse.pngbin0 -> 154 bytes-rw-r--r--default_images/res/commandimagelist/lch_ellipse_unfilled.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/lch_ellipsecut.pngbin0 -> 162 bytes-rw-r--r--default_images/res/commandimagelist/lch_ellipsecut_unfilled.pngbin0 -> 151 bytes-rw-r--r--default_images/res/commandimagelist/lch_ellipsetoolbox.pngbin0 -> 154 bytes-rw-r--r--default_images/res/commandimagelist/lch_entergroup.pngbin0 -> 174 bytes-rw-r--r--default_images/res/commandimagelist/lch_entirecolumn.pngbin0 -> 117 bytes-rw-r--r--default_images/res/commandimagelist/lch_entirerow.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/lch_euroconverter.pngbin0 -> 173 bytes-rw-r--r--default_images/res/commandimagelist/lch_executereport.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lch_expandpage.pngbin0 -> 175 bytes-rw-r--r--default_images/res/commandimagelist/lch_exportdialog.pngbin0 -> 187 bytes-rw-r--r--default_images/res/commandimagelist/lch_exportdirecttopdf.pngbin0 -> 169 bytes-rw-r--r--default_images/res/commandimagelist/lch_exportto.pngbin0 -> 169 bytes-rw-r--r--default_images/res/commandimagelist/lch_extendedhelp.pngbin0 -> 182 bytes-rw-r--r--default_images/res/commandimagelist/lch_extrusion3dcolor.pngbin0 -> 151 bytes-rw-r--r--default_images/res/commandimagelist/lch_extrusiondepthfloater.pngbin0 -> 194 bytes-rw-r--r--default_images/res/commandimagelist/lch_extrusiondirectionfloater.pngbin0 -> 183 bytes-rw-r--r--default_images/res/commandimagelist/lch_extrusionlightingfloater.pngbin0 -> 221 bytes-rw-r--r--default_images/res/commandimagelist/lch_extrusionsurfacefloater.pngbin0 -> 159 bytes-rw-r--r--default_images/res/commandimagelist/lch_extrusiontiltdown.pngbin0 -> 195 bytes-rw-r--r--default_images/res/commandimagelist/lch_extrusiontiltleft.pngbin0 -> 202 bytes-rw-r--r--default_images/res/commandimagelist/lch_extrusiontiltright.pngbin0 -> 204 bytes-rw-r--r--default_images/res/commandimagelist/lch_extrusiontiltup.pngbin0 -> 197 bytes-rw-r--r--default_images/res/commandimagelist/lch_extrusiontoggle.pngbin0 -> 173 bytes-rw-r--r--default_images/res/commandimagelist/lch_fieldnames.pngbin0 -> 131 bytes-rw-r--r--default_images/res/commandimagelist/lch_fields.pngbin0 -> 131 bytes-rw-r--r--default_images/res/commandimagelist/lch_filecontrol.pngbin0 -> 157 bytes-rw-r--r--default_images/res/commandimagelist/lch_filedocument.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lch_fillshadow.pngbin0 -> 116 bytes-rw-r--r--default_images/res/commandimagelist/lch_fillstyle.pngbin0 -> 225 bytes-rw-r--r--default_images/res/commandimagelist/lch_filtercrit.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/lch_firstpage.pngbin0 -> 183 bytes-rw-r--r--default_images/res/commandimagelist/lch_firstrecord.pngbin0 -> 128 bytes-rw-r--r--default_images/res/commandimagelist/lch_fliphorizontal.pngbin0 -> 140 bytes-rw-r--r--default_images/res/commandimagelist/lch_flipvertical.pngbin0 -> 142 bytes-rw-r--r--default_images/res/commandimagelist/lch_flowchartshapes.flowchart-alternate-process.pngbin0 -> 133 bytes-rw-r--r--default_images/res/commandimagelist/lch_flowchartshapes.flowchart-card.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/lch_flowchartshapes.flowchart-collate.pngbin0 -> 162 bytes-rw-r--r--default_images/res/commandimagelist/lch_flowchartshapes.flowchart-connector.pngbin0 -> 166 bytes-rw-r--r--default_images/res/commandimagelist/lch_flowchartshapes.flowchart-data.pngbin0 -> 125 bytes-rw-r--r--default_images/res/commandimagelist/lch_flowchartshapes.flowchart-decision.pngbin0 -> 156 bytes-rw-r--r--default_images/res/commandimagelist/lch_flowchartshapes.flowchart-delay.pngbin0 -> 149 bytes-rw-r--r--default_images/res/commandimagelist/lch_flowchartshapes.flowchart-direct-access-storage.pngbin0 -> 155 bytes-rw-r--r--default_images/res/commandimagelist/lch_flowchartshapes.flowchart-display.pngbin0 -> 158 bytes-rw-r--r--default_images/res/commandimagelist/lch_flowchartshapes.flowchart-document.pngbin0 -> 139 bytes-rw-r--r--default_images/res/commandimagelist/lch_flowchartshapes.flowchart-extract.pngbin0 -> 155 bytes-rw-r--r--default_images/res/commandimagelist/lch_flowchartshapes.flowchart-internal-storage.pngbin0 -> 109 bytes-rw-r--r--default_images/res/commandimagelist/lch_flowchartshapes.flowchart-magnetic-disk.pngbin0 -> 158 bytes-rw-r--r--default_images/res/commandimagelist/lch_flowchartshapes.flowchart-manual-input.pngbin0 -> 131 bytes-rw-r--r--default_images/res/commandimagelist/lch_flowchartshapes.flowchart-manual-operation.pngbin0 -> 149 bytes-rw-r--r--default_images/res/commandimagelist/lch_flowchartshapes.flowchart-merge.pngbin0 -> 163 bytes-rw-r--r--default_images/res/commandimagelist/lch_flowchartshapes.flowchart-multidocument.pngbin0 -> 177 bytes-rw-r--r--default_images/res/commandimagelist/lch_flowchartshapes.flowchart-off-page-connector.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/lch_flowchartshapes.flowchart-or.pngbin0 -> 180 bytes-rw-r--r--default_images/res/commandimagelist/lch_flowchartshapes.flowchart-predefined-process.pngbin0 -> 110 bytes-rw-r--r--default_images/res/commandimagelist/lch_flowchartshapes.flowchart-preparation.pngbin0 -> 160 bytes-rw-r--r--default_images/res/commandimagelist/lch_flowchartshapes.flowchart-process.pngbin0 -> 102 bytes-rw-r--r--default_images/res/commandimagelist/lch_flowchartshapes.flowchart-punched-tape.pngbin0 -> 193 bytes-rw-r--r--default_images/res/commandimagelist/lch_flowchartshapes.flowchart-sequential-access.pngbin0 -> 177 bytes-rw-r--r--default_images/res/commandimagelist/lch_flowchartshapes.flowchart-sort.pngbin0 -> 158 bytes-rw-r--r--default_images/res/commandimagelist/lch_flowchartshapes.flowchart-stored-data.pngbin0 -> 130 bytes-rw-r--r--default_images/res/commandimagelist/lch_flowchartshapes.flowchart-summing-junction.pngbin0 -> 194 bytes-rw-r--r--default_images/res/commandimagelist/lch_flowchartshapes.flowchart-terminator.pngbin0 -> 138 bytes-rw-r--r--default_images/res/commandimagelist/lch_flowchartshapes.pngbin0 -> 109 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontcolor.pngbin0 -> 174 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontdialog.pngbin0 -> 200 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontheight.pngbin0 -> 180 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontwork.pngbin0 -> 172 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkalignmentfloater.pngbin0 -> 90 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkcharacterspacingfloater.pngbin0 -> 188 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkgalleryfloater.pngbin0 -> 171 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworksameletterheights.pngbin0 -> 211 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.fontwork-arch-down-curve.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.fontwork-arch-down-pour.pngbin0 -> 136 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.fontwork-arch-left-curve.pngbin0 -> 140 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.fontwork-arch-left-pour.pngbin0 -> 145 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.fontwork-arch-right-curve.pngbin0 -> 138 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.fontwork-arch-right-pour.pngbin0 -> 141 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.fontwork-arch-up-curve.pngbin0 -> 138 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.fontwork-arch-up-pour.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.fontwork-chevron-down.pngbin0 -> 146 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.fontwork-chevron-up.pngbin0 -> 137 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.fontwork-circle-curve.pngbin0 -> 170 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.fontwork-circle-pour.pngbin0 -> 158 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.fontwork-curve-down.pngbin0 -> 165 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.fontwork-curve-up.pngbin0 -> 171 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.fontwork-fade-down.pngbin0 -> 133 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.fontwork-fade-left.pngbin0 -> 131 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.fontwork-fade-right.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.fontwork-fade-up-and-left.pngbin0 -> 151 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.fontwork-fade-up-and-right.pngbin0 -> 153 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.fontwork-fade-up.pngbin0 -> 133 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.fontwork-inflate.pngbin0 -> 124 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.fontwork-open-circle-curve.pngbin0 -> 176 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.fontwork-open-circle-pour.pngbin0 -> 168 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.fontwork-plain-text.pngbin0 -> 90 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.fontwork-slant-down.pngbin0 -> 139 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.fontwork-slant-up.pngbin0 -> 133 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.fontwork-stop.pngbin0 -> 117 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.fontwork-triangle-down.pngbin0 -> 146 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.fontwork-triangle-up.pngbin0 -> 147 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.fontwork-wave.pngbin0 -> 146 bytes-rw-r--r--default_images/res/commandimagelist/lch_fontworkshapetype.pngbin0 -> 172 bytes-rw-r--r--default_images/res/commandimagelist/lch_formatarea.pngbin0 -> 225 bytes-rw-r--r--default_images/res/commandimagelist/lch_formatgroup.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/lch_formatline.pngbin0 -> 189 bytes-rw-r--r--default_images/res/commandimagelist/lch_formatpaintbrush.pngbin0 -> 215 bytes-rw-r--r--default_images/res/commandimagelist/lch_formattedfield.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/lch_formatungroup.pngbin0 -> 191 bytes-rw-r--r--default_images/res/commandimagelist/lch_formdesigntools.pngbin0 -> 187 bytes-rw-r--r--default_images/res/commandimagelist/lch_formelcursor.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/lch_formfilter.pngbin0 -> 178 bytes-rw-r--r--default_images/res/commandimagelist/lch_formfiltered.pngbin0 -> 177 bytes-rw-r--r--default_images/res/commandimagelist/lch_formfilterexecute.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/lch_formfilternavigator.pngbin0 -> 212 bytes-rw-r--r--default_images/res/commandimagelist/lch_formproperties.pngbin0 -> 156 bytes-rw-r--r--default_images/res/commandimagelist/lch_forward.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/lch_framedialog.pngbin0 -> 169 bytes-rw-r--r--default_images/res/commandimagelist/lch_framelinecolor.pngbin0 -> 102 bytes-rw-r--r--default_images/res/commandimagelist/lch_freeline.pngbin0 -> 214 bytes-rw-r--r--default_images/res/commandimagelist/lch_freeline_unfilled.pngbin0 -> 200 bytes-rw-r--r--default_images/res/commandimagelist/lch_fullscreen.pngbin0 -> 193 bytes-rw-r--r--default_images/res/commandimagelist/lch_gallery.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lch_getactivetask.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lch_glueeditmode.pngbin0 -> 168 bytes-rw-r--r--default_images/res/commandimagelist/lch_glueescapedirectionbottom.pngbin0 -> 154 bytes-rw-r--r--default_images/res/commandimagelist/lch_glueescapedirectionleft.pngbin0 -> 143 bytes-rw-r--r--default_images/res/commandimagelist/lch_glueescapedirectionright.pngbin0 -> 143 bytes-rw-r--r--default_images/res/commandimagelist/lch_glueescapedirectiontop.pngbin0 -> 154 bytes-rw-r--r--default_images/res/commandimagelist/lch_gluehorzaligncenter.pngbin0 -> 155 bytes-rw-r--r--default_images/res/commandimagelist/lch_gluehorzalignleft.pngbin0 -> 165 bytes-rw-r--r--default_images/res/commandimagelist/lch_gluehorzalignright.pngbin0 -> 165 bytes-rw-r--r--default_images/res/commandimagelist/lch_glueinsertpoint.pngbin0 -> 155 bytes-rw-r--r--default_images/res/commandimagelist/lch_gluepercent.pngbin0 -> 159 bytes-rw-r--r--default_images/res/commandimagelist/lch_gluevertalignbottom.pngbin0 -> 160 bytes-rw-r--r--default_images/res/commandimagelist/lch_gluevertaligncenter.pngbin0 -> 147 bytes-rw-r--r--default_images/res/commandimagelist/lch_gluevertaligntop.pngbin0 -> 162 bytes-rw-r--r--default_images/res/commandimagelist/lch_goalseekdialog.pngbin0 -> 175 bytes-rw-r--r--default_images/res/commandimagelist/lch_gotoend.pngbin0 -> 126 bytes-rw-r--r--default_images/res/commandimagelist/lch_gotoendofdoc.pngbin0 -> 183 bytes-rw-r--r--default_images/res/commandimagelist/lch_gotostartofdoc.pngbin0 -> 182 bytes-rw-r--r--default_images/res/commandimagelist/lch_gotostartoftable.pngbin0 -> 130 bytes-rw-r--r--default_images/res/commandimagelist/lch_grafattrcrop.pngbin0 -> 158 bytes-rw-r--r--default_images/res/commandimagelist/lch_grafblue.pngbin0 -> 164 bytes-rw-r--r--default_images/res/commandimagelist/lch_grafcontrast.pngbin0 -> 141 bytes-rw-r--r--default_images/res/commandimagelist/lch_grafgamma.pngbin0 -> 194 bytes-rw-r--r--default_images/res/commandimagelist/lch_grafgreen.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lch_grafinvert.pngbin0 -> 114 bytes-rw-r--r--default_images/res/commandimagelist/lch_grafluminance.pngbin0 -> 174 bytes-rw-r--r--default_images/res/commandimagelist/lch_grafmode.pngbin0 -> 212 bytes-rw-r--r--default_images/res/commandimagelist/lch_grafred.pngbin0 -> 165 bytes-rw-r--r--default_images/res/commandimagelist/lch_graftransparence.pngbin0 -> 162 bytes-rw-r--r--default_images/res/commandimagelist/lch_graphic.pngbin0 -> 166 bytes-rw-r--r--default_images/res/commandimagelist/lch_graphicfilterinvert.pngbin0 -> 114 bytes-rw-r--r--default_images/res/commandimagelist/lch_graphicfiltermosaic.pngbin0 -> 150 bytes-rw-r--r--default_images/res/commandimagelist/lch_graphicfilterpopart.pngbin0 -> 174 bytes-rw-r--r--default_images/res/commandimagelist/lch_graphicfilterposter.pngbin0 -> 182 bytes-rw-r--r--default_images/res/commandimagelist/lch_graphicfilterrelief.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/lch_graphicfilterremovenoise.pngbin0 -> 229 bytes-rw-r--r--default_images/res/commandimagelist/lch_graphicfiltersepia.pngbin0 -> 164 bytes-rw-r--r--default_images/res/commandimagelist/lch_graphicfiltersharpen.pngbin0 -> 163 bytes-rw-r--r--default_images/res/commandimagelist/lch_graphicfiltersmooth.pngbin0 -> 170 bytes-rw-r--r--default_images/res/commandimagelist/lch_graphicfiltersobel.pngbin0 -> 167 bytes-rw-r--r--default_images/res/commandimagelist/lch_graphicfiltersolarize.pngbin0 -> 164 bytes-rw-r--r--default_images/res/commandimagelist/lch_graphicfiltertoolbox.pngbin0 -> 201 bytes-rw-r--r--default_images/res/commandimagelist/lch_greatestheight.pngbin0 -> 146 bytes-rw-r--r--default_images/res/commandimagelist/lch_greatestwidth.pngbin0 -> 140 bytes-rw-r--r--default_images/res/commandimagelist/lch_grid.pngbin0 -> 93 bytes-rw-r--r--default_images/res/commandimagelist/lch_griduse.pngbin0 -> 163 bytes-rw-r--r--default_images/res/commandimagelist/lch_gridvisible.pngbin0 -> 99 bytes-rw-r--r--default_images/res/commandimagelist/lch_group.pngbin0 -> 129 bytes-rw-r--r--default_images/res/commandimagelist/lch_groupbox.pngbin0 -> 130 bytes-rw-r--r--default_images/res/commandimagelist/lch_grow.pngbin0 -> 189 bytes-rw-r--r--default_images/res/commandimagelist/lch_halfsphere.pngbin0 -> 172 bytes-rw-r--r--default_images/res/commandimagelist/lch_handlesdraft.pngbin0 -> 138 bytes-rw-r--r--default_images/res/commandimagelist/lch_helpannotate.pngbin0 -> 149 bytes-rw-r--r--default_images/res/commandimagelist/lch_helpbookmark.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/lch_helpdownload.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lch_helperdialog.pngbin0 -> 199 bytes-rw-r--r--default_images/res/commandimagelist/lch_helpindex.pngbin0 -> 200 bytes-rw-r--r--default_images/res/commandimagelist/lch_helplinesmove.pngbin0 -> 140 bytes-rw-r--r--default_images/res/commandimagelist/lch_helplinesuse.pngbin0 -> 157 bytes-rw-r--r--default_images/res/commandimagelist/lch_helplinesvisible.pngbin0 -> 101 bytes-rw-r--r--default_images/res/commandimagelist/lch_helpmenu.pngbin0 -> 204 bytes-rw-r--r--default_images/res/commandimagelist/lch_helpsearch.pngbin0 -> 155 bytes-rw-r--r--default_images/res/commandimagelist/lch_helpzoomin.pngbin0 -> 180 bytes-rw-r--r--default_images/res/commandimagelist/lch_helpzoomout.pngbin0 -> 180 bytes-rw-r--r--default_images/res/commandimagelist/lch_hfixedline.pngbin0 -> 107 bytes-rw-r--r--default_images/res/commandimagelist/lch_hideslide.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/lch_hscrollbar.pngbin0 -> 129 bytes-rw-r--r--default_images/res/commandimagelist/lch_hyperlinkdialog.pngbin0 -> 311 bytes-rw-r--r--default_images/res/commandimagelist/lch_hyphenate.pngbin0 -> 136 bytes-rw-r--r--default_images/res/commandimagelist/lch_hyphenation.pngbin0 -> 136 bytes-rw-r--r--default_images/res/commandimagelist/lch_imagebutton.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/lch_imagecontrol.pngbin0 -> 179 bytes-rw-r--r--default_images/res/commandimagelist/lch_imagemapdialog.pngbin0 -> 184 bytes-rw-r--r--default_images/res/commandimagelist/lch_importdialog.pngbin0 -> 180 bytes-rw-r--r--default_images/res/commandimagelist/lch_importfromfile.pngbin0 -> 205 bytes-rw-r--r--default_images/res/commandimagelist/lch_incrementindent.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/lch_incrementlevel.pngbin0 -> 124 bytes-rw-r--r--default_images/res/commandimagelist/lch_incrementsublevels.pngbin0 -> 153 bytes-rw-r--r--default_images/res/commandimagelist/lch_inscellsctrl.pngbin0 -> 155 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertannotation.pngbin0 -> 147 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertauthorfield.pngbin0 -> 206 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertavmedia.pngbin0 -> 209 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertbookmark.pngbin0 -> 175 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertcaptiondialog.pngbin0 -> 133 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertcellsdown.pngbin0 -> 167 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertcellsright.pngbin0 -> 159 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertcolumns.pngbin0 -> 119 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertctrl.pngbin0 -> 130 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertcurrencyfield.pngbin0 -> 173 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertdatefield.pngbin0 -> 154 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertdoc.pngbin0 -> 179 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertdraw.pngbin0 -> 203 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertedit.pngbin0 -> 148 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertendnote.pngbin0 -> 181 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertfield.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertfieldctrl.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertfilecontrol.pngbin0 -> 157 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertfixedtext.pngbin0 -> 138 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertfootnote.pngbin0 -> 183 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertformattedfield.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertformula.pngbin0 -> 195 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertframe.pngbin0 -> 109 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertframeinteract.pngbin0 -> 109 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertframeinteractnocolumns.pngbin0 -> 109 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertgraphic.pngbin0 -> 157 bytes-rw-r--r--default_images/res/commandimagelist/lch_inserthyperlink.pngbin0 -> 245 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertimagecontrol.pngbin0 -> 178 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertindexesentry.pngbin0 -> 128 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertlistbox.pngbin0 -> 151 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertmasterpage.pngbin0 -> 198 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertmath.pngbin0 -> 129 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertneutralparagraph.pngbin0 -> 108 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertnumericfield.pngbin0 -> 140 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertobjctrl.pngbin0 -> 178 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertobject.pngbin0 -> 178 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertobjectchart.pngbin0 -> 114 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertobjectdialog.pngbin0 -> 178 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertobjectfloatingframe.pngbin0 -> 153 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertobjectstarmath.pngbin0 -> 129 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertpage.pngbin0 -> 163 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertpagecountfield.pngbin0 -> 146 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertpagenumberfield.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertpatternfield.pngbin0 -> 133 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertplugin.pngbin0 -> 179 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertpushbutton.pngbin0 -> 115 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertreferencefield.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertrows.pngbin0 -> 124 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertsection.pngbin0 -> 116 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertsound.pngbin0 -> 139 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertspreadsheet.pngbin0 -> 93 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertsymbol.pngbin0 -> 126 bytes-rw-r--r--default_images/res/commandimagelist/lch_inserttable.pngbin0 -> 93 bytes-rw-r--r--default_images/res/commandimagelist/lch_inserttextframe.pngbin0 -> 109 bytes-rw-r--r--default_images/res/commandimagelist/lch_inserttimefield.pngbin0 -> 206 bytes-rw-r--r--default_images/res/commandimagelist/lch_inserttitlefield.pngbin0 -> 147 bytes-rw-r--r--default_images/res/commandimagelist/lch_inserttoolbox.pngbin0 -> 205 bytes-rw-r--r--default_images/res/commandimagelist/lch_inserttopicfield.pngbin0 -> 148 bytes-rw-r--r--default_images/res/commandimagelist/lch_inserttreecontrol.pngbin0 -> 128 bytes-rw-r--r--default_images/res/commandimagelist/lch_insertvideo.pngbin0 -> 140 bytes-rw-r--r--default_images/res/commandimagelist/lch_insobjctrl.pngbin0 -> 176 bytes-rw-r--r--default_images/res/commandimagelist/lch_interactivegradient.pngbin0 -> 212 bytes-rw-r--r--default_images/res/commandimagelist/lch_interactivetransparence.pngbin0 -> 234 bytes-rw-r--r--default_images/res/commandimagelist/lch_internetonline.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lch_italic.pngbin0 -> 126 bytes-rw-r--r--default_images/res/commandimagelist/lch_justifypara.pngbin0 -> 87 bytes-rw-r--r--default_images/res/commandimagelist/lch_label.pngbin0 -> 138 bytes-rw-r--r--default_images/res/commandimagelist/lch_lastpage.pngbin0 -> 182 bytes-rw-r--r--default_images/res/commandimagelist/lch_lastrecord.pngbin0 -> 125 bytes-rw-r--r--default_images/res/commandimagelist/lch_leaveallgroups.pngbin0 -> 180 bytes-rw-r--r--default_images/res/commandimagelist/lch_leavegroup.pngbin0 -> 179 bytes-rw-r--r--default_images/res/commandimagelist/lch_leftpara.pngbin0 -> 90 bytes-rw-r--r--default_images/res/commandimagelist/lch_line.pngbin0 -> 94 bytes-rw-r--r--default_images/res/commandimagelist/lch_line_diagonal.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/lch_linearrowcircle.pngbin0 -> 118 bytes-rw-r--r--default_images/res/commandimagelist/lch_linearrowend.pngbin0 -> 102 bytes-rw-r--r--default_images/res/commandimagelist/lch_linearrows.pngbin0 -> 120 bytes-rw-r--r--default_images/res/commandimagelist/lch_linearrowsquare.pngbin0 -> 117 bytes-rw-r--r--default_images/res/commandimagelist/lch_linearrowstart.pngbin0 -> 101 bytes-rw-r--r--default_images/res/commandimagelist/lch_linecirclearrow.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/lch_lineendstyle.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/lch_linesquarearrow.pngbin0 -> 120 bytes-rw-r--r--default_images/res/commandimagelist/lch_linestyle.pngbin0 -> 99 bytes-rw-r--r--default_images/res/commandimagelist/lch_linetoolbox.pngbin0 -> 201 bytes-rw-r--r--default_images/res/commandimagelist/lch_linewidth.pngbin0 -> 225 bytes-rw-r--r--default_images/res/commandimagelist/lch_listbox.pngbin0 -> 151 bytes-rw-r--r--default_images/res/commandimagelist/lch_loadbasic.pngbin0 -> 143 bytes-rw-r--r--default_images/res/commandimagelist/lch_macrorecorder.pngbin0 -> 218 bytes-rw-r--r--default_images/res/commandimagelist/lch_macrorecordingfloat.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lch_mailwindow.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lch_managebreakpoints.pngbin0 -> 202 bytes-rw-r--r--default_images/res/commandimagelist/lch_managelanguage.pngbin0 -> 265 bytes-rw-r--r--default_images/res/commandimagelist/lch_marks.pngbin0 -> 120 bytes-rw-r--r--default_images/res/commandimagelist/lch_matchgroup.pngbin0 -> 143 bytes-rw-r--r--default_images/res/commandimagelist/lch_measureline.pngbin0 -> 116 bytes-rw-r--r--default_images/res/commandimagelist/lch_mergecells.pngbin0 -> 129 bytes-rw-r--r--default_images/res/commandimagelist/lch_mergedialog.pngbin0 -> 194 bytes-rw-r--r--default_images/res/commandimagelist/lch_mirror.pngbin0 -> 232 bytes-rw-r--r--default_images/res/commandimagelist/lch_modifyframe.pngbin0 -> 200 bytes-rw-r--r--default_images/res/commandimagelist/lch_modifypage.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/lch_moduledialog.pngbin0 -> 185 bytes-rw-r--r--default_images/res/commandimagelist/lch_morecontrols.pngbin0 -> 189 bytes-rw-r--r--default_images/res/commandimagelist/lch_movedown.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/lch_movedownsubitems.pngbin0 -> 174 bytes-rw-r--r--default_images/res/commandimagelist/lch_moveup.pngbin0 -> 125 bytes-rw-r--r--default_images/res/commandimagelist/lch_moveupsubitems.pngbin0 -> 170 bytes-rw-r--r--default_images/res/commandimagelist/lch_navigationbar.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/lch_navigator.pngbin0 -> 231 bytes-rw-r--r--default_images/res/commandimagelist/lch_newarrangement.pngbin0 -> 136 bytes-rw-r--r--default_images/res/commandimagelist/lch_newdoc.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/lch_newrecord.pngbin0 -> 165 bytes-rw-r--r--default_images/res/commandimagelist/lch_nextannotation.pngbin0 -> 153 bytes-rw-r--r--default_images/res/commandimagelist/lch_nextpage.pngbin0 -> 192 bytes-rw-r--r--default_images/res/commandimagelist/lch_nextrecord.pngbin0 -> 118 bytes-rw-r--r--default_images/res/commandimagelist/lch_numberformatcurrency.pngbin0 -> 173 bytes-rw-r--r--default_images/res/commandimagelist/lch_numberformatdate.pngbin0 -> 154 bytes-rw-r--r--default_images/res/commandimagelist/lch_numberformatdecdecimals.pngbin0 -> 195 bytes-rw-r--r--default_images/res/commandimagelist/lch_numberformatdecimal.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/lch_numberformatincdecimals.pngbin0 -> 153 bytes-rw-r--r--default_images/res/commandimagelist/lch_numberformatpercent.pngbin0 -> 139 bytes-rw-r--r--default_images/res/commandimagelist/lch_numberformatscientific.pngbin0 -> 109 bytes-rw-r--r--default_images/res/commandimagelist/lch_numberformatstandard.pngbin0 -> 162 bytes-rw-r--r--default_images/res/commandimagelist/lch_numberingstart.pngbin0 -> 171 bytes-rw-r--r--default_images/res/commandimagelist/lch_numericfield.pngbin0 -> 140 bytes-rw-r--r--default_images/res/commandimagelist/lch_objectalign.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/lch_objectalignleft.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/lch_objectalignright.pngbin0 -> 148 bytes-rw-r--r--default_images/res/commandimagelist/lch_objectcatalog.pngbin0 -> 157 bytes-rw-r--r--default_images/res/commandimagelist/lch_objectposition.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/lch_objects3dtoolbox.pngbin0 -> 140 bytes-rw-r--r--default_images/res/commandimagelist/lch_open.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lch_openreadonly.pngbin0 -> 228 bytes-rw-r--r--default_images/res/commandimagelist/lch_openurl.pngbin0 -> 246 bytes-rw-r--r--default_images/res/commandimagelist/lch_optimizetable.pngbin0 -> 178 bytes-rw-r--r--default_images/res/commandimagelist/lch_ordercrit.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lch_outlinebullet.pngbin0 -> 160 bytes-rw-r--r--default_images/res/commandimagelist/lch_outlinecollapse.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/lch_outlinecollapseall.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/lch_outlinedown.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/lch_outlineexpand.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/lch_outlineexpandall.pngbin0 -> 124 bytes-rw-r--r--default_images/res/commandimagelist/lch_outlinefont.pngbin0 -> 172 bytes-rw-r--r--default_images/res/commandimagelist/lch_outlineformat.pngbin0 -> 200 bytes-rw-r--r--default_images/res/commandimagelist/lch_outlineleft.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/lch_outlineright.pngbin0 -> 125 bytes-rw-r--r--default_images/res/commandimagelist/lch_outlineup.pngbin0 -> 125 bytes-rw-r--r--default_images/res/commandimagelist/lch_overline.pngbin0 -> 182 bytes-rw-r--r--default_images/res/commandimagelist/lch_pagedown.pngbin0 -> 191 bytes-rw-r--r--default_images/res/commandimagelist/lch_pageup.pngbin0 -> 192 bytes-rw-r--r--default_images/res/commandimagelist/lch_paragraphdialog.pngbin0 -> 165 bytes-rw-r--r--default_images/res/commandimagelist/lch_paralefttoright.pngbin0 -> 145 bytes-rw-r--r--default_images/res/commandimagelist/lch_pararighttoleft.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/lch_paraspacedecrease.pngbin0 -> 113 bytes-rw-r--r--default_images/res/commandimagelist/lch_paraspaceincrease.pngbin0 -> 117 bytes-rw-r--r--default_images/res/commandimagelist/lch_paste.pngbin0 -> 198 bytes-rw-r--r--default_images/res/commandimagelist/lch_patternfield.pngbin0 -> 133 bytes-rw-r--r--default_images/res/commandimagelist/lch_pickthrough.pngbin0 -> 149 bytes-rw-r--r--default_images/res/commandimagelist/lch_pie.pngbin0 -> 165 bytes-rw-r--r--default_images/res/commandimagelist/lch_pie_unfilled.pngbin0 -> 147 bytes-rw-r--r--default_images/res/commandimagelist/lch_playmacro.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lch_pluginsactive.pngbin0 -> 178 bytes-rw-r--r--default_images/res/commandimagelist/lch_polygon.pngbin0 -> 185 bytes-rw-r--r--default_images/res/commandimagelist/lch_polygon_diagonal.pngbin0 -> 110 bytes-rw-r--r--default_images/res/commandimagelist/lch_polygon_diagonal_unfilled.pngbin0 -> 99 bytes-rw-r--r--default_images/res/commandimagelist/lch_polygon_unfilled.pngbin0 -> 159 bytes-rw-r--r--default_images/res/commandimagelist/lch_presentation.pngbin0 -> 155 bytes-rw-r--r--default_images/res/commandimagelist/lch_presentationlayout.pngbin0 -> 187 bytes-rw-r--r--default_images/res/commandimagelist/lch_preview.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/lch_previewprintoptions.pngbin0 -> 189 bytes-rw-r--r--default_images/res/commandimagelist/lch_previewzoom.pngbin0 -> 177 bytes-rw-r--r--default_images/res/commandimagelist/lch_previousannotation.pngbin0 -> 153 bytes-rw-r--r--default_images/res/commandimagelist/lch_previouspage.pngbin0 -> 192 bytes-rw-r--r--default_images/res/commandimagelist/lch_prevrecord.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/lch_print.pngbin0 -> 156 bytes-rw-r--r--default_images/res/commandimagelist/lch_printdefault.pngbin0 -> 156 bytes-rw-r--r--default_images/res/commandimagelist/lch_printersetup.pngbin0 -> 188 bytes-rw-r--r--default_images/res/commandimagelist/lch_printlayout.pngbin0 -> 214 bytes-rw-r--r--default_images/res/commandimagelist/lch_printpagepreview.pngbin0 -> 182 bytes-rw-r--r--default_images/res/commandimagelist/lch_printpreview.pngbin0 -> 162 bytes-rw-r--r--default_images/res/commandimagelist/lch_progressbar.pngbin0 -> 106 bytes-rw-r--r--default_images/res/commandimagelist/lch_pushbutton.pngbin0 -> 115 bytes-rw-r--r--default_images/res/commandimagelist/lch_quickedit.pngbin0 -> 147 bytes-rw-r--r--default_images/res/commandimagelist/lch_quit.pngbin0 -> 145 bytes-rw-r--r--default_images/res/commandimagelist/lch_radiobutton.pngbin0 -> 172 bytes-rw-r--r--default_images/res/commandimagelist/lch_recsave.pngbin0 -> 165 bytes-rw-r--r--default_images/res/commandimagelist/lch_recsearch.pngbin0 -> 155 bytes-rw-r--r--default_images/res/commandimagelist/lch_rect.pngbin0 -> 101 bytes-rw-r--r--default_images/res/commandimagelist/lch_rect_rounded.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/lch_rect_rounded_unfilled.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/lch_rect_unfilled.pngbin0 -> 90 bytes-rw-r--r--default_images/res/commandimagelist/lch_rectangletoolbox.pngbin0 -> 101 bytes-rw-r--r--default_images/res/commandimagelist/lch_recundo.pngbin0 -> 207 bytes-rw-r--r--default_images/res/commandimagelist/lch_redo.pngbin0 -> 173 bytes-rw-r--r--default_images/res/commandimagelist/lch_refresh.pngbin0 -> 187 bytes-rw-r--r--default_images/res/commandimagelist/lch_refreshformcontrol.pngbin0 -> 247 bytes-rw-r--r--default_images/res/commandimagelist/lch_rehearsetimings.pngbin0 -> 202 bytes-rw-r--r--default_images/res/commandimagelist/lch_reload.pngbin0 -> 188 bytes-rw-r--r--default_images/res/commandimagelist/lch_removebullets.pngbin0 -> 84 bytes-rw-r--r--default_images/res/commandimagelist/lch_removefilter.pngbin0 -> 190 bytes-rw-r--r--default_images/res/commandimagelist/lch_removefiltersort.pngbin0 -> 190 bytes-rw-r--r--default_images/res/commandimagelist/lch_renamemasterpage.pngbin0 -> 190 bytes-rw-r--r--default_images/res/commandimagelist/lch_repeat.pngbin0 -> 206 bytes-rw-r--r--default_images/res/commandimagelist/lch_reportnavigator.pngbin0 -> 227 bytes-rw-r--r--default_images/res/commandimagelist/lch_reverseorder.pngbin0 -> 175 bytes-rw-r--r--default_images/res/commandimagelist/lch_rightpara.pngbin0 -> 90 bytes-rw-r--r--default_images/res/commandimagelist/lch_rulerrows.pngbin0 -> 200 bytes-rw-r--r--default_images/res/commandimagelist/lch_rulerrowsvertical.pngbin0 -> 204 bytes-rw-r--r--default_images/res/commandimagelist/lch_runbasic.pngbin0 -> 158 bytes-rw-r--r--default_images/res/commandimagelist/lch_save.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/lch_saveas.pngbin0 -> 138 bytes-rw-r--r--default_images/res/commandimagelist/lch_saveastemplate.pngbin0 -> 158 bytes-rw-r--r--default_images/res/commandimagelist/lch_savebasicas.pngbin0 -> 164 bytes-rw-r--r--default_images/res/commandimagelist/lch_sbabrwinsert.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/lch_sbaexecutesql.pngbin0 -> 213 bytes-rw-r--r--default_images/res/commandimagelist/lch_sbanativesql.pngbin0 -> 164 bytes-rw-r--r--default_images/res/commandimagelist/lch_scaletext.pngbin0 -> 216 bytes-rw-r--r--default_images/res/commandimagelist/lch_scrollbar.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/lch_searchdialog.pngbin0 -> 155 bytes-rw-r--r--default_images/res/commandimagelist/lch_sectionalignbottom.pngbin0 -> 164 bytes-rw-r--r--default_images/res/commandimagelist/lch_sectionalignleft.pngbin0 -> 154 bytes-rw-r--r--default_images/res/commandimagelist/lch_sectionalignright.pngbin0 -> 150 bytes-rw-r--r--default_images/res/commandimagelist/lch_sectionaligntop.pngbin0 -> 164 bytes-rw-r--r--default_images/res/commandimagelist/lch_sectionshrink.pngbin0 -> 155 bytes-rw-r--r--default_images/res/commandimagelist/lch_sectionshrinkbottom.pngbin0 -> 137 bytes-rw-r--r--default_images/res/commandimagelist/lch_sectionshrinktop.pngbin0 -> 141 bytes-rw-r--r--default_images/res/commandimagelist/lch_selectall.pngbin0 -> 149 bytes-rw-r--r--default_images/res/commandimagelist/lch_selectmode.pngbin0 -> 141 bytes-rw-r--r--default_images/res/commandimagelist/lch_selectobject.pngbin0 -> 140 bytes-rw-r--r--default_images/res/commandimagelist/lch_selecttable.pngbin0 -> 107 bytes-rw-r--r--default_images/res/commandimagelist/lch_sendfax.pngbin0 -> 195 bytes-rw-r--r--default_images/res/commandimagelist/lch_sendmail.pngbin0 -> 199 bytes-rw-r--r--default_images/res/commandimagelist/lch_sendtoback.pngbin0 -> 142 bytes-rw-r--r--default_images/res/commandimagelist/lch_setborderstyle.pngbin0 -> 95 bytes-rw-r--r--default_images/res/commandimagelist/lch_setdocumentproperties.pngbin0 -> 172 bytes-rw-r--r--default_images/res/commandimagelist/lch_setobjecttobackground.pngbin0 -> 141 bytes-rw-r--r--default_images/res/commandimagelist/lch_setobjecttoforeground.pngbin0 -> 141 bytes-rw-r--r--default_images/res/commandimagelist/lch_setoptimalcolumnwidth.pngbin0 -> 143 bytes-rw-r--r--default_images/res/commandimagelist/lch_setoptimalcolumnwidthdirect.pngbin0 -> 143 bytes-rw-r--r--default_images/res/commandimagelist/lch_setoptimalrowheight.pngbin0 -> 138 bytes-rw-r--r--default_images/res/commandimagelist/lch_shadowcursor.pngbin0 -> 162 bytes-rw-r--r--default_images/res/commandimagelist/lch_shadowed.pngbin0 -> 171 bytes-rw-r--r--default_images/res/commandimagelist/lch_shear.pngbin0 -> 172 bytes-rw-r--r--default_images/res/commandimagelist/lch_shell3d.pngbin0 -> 191 bytes-rw-r--r--default_images/res/commandimagelist/lch_showannotation.pngbin0 -> 115 bytes-rw-r--r--default_images/res/commandimagelist/lch_showbookview.pngbin0 -> 130 bytes-rw-r--r--default_images/res/commandimagelist/lch_showbrowser.pngbin0 -> 205 bytes-rw-r--r--default_images/res/commandimagelist/lch_showdatanavigator.pngbin0 -> 148 bytes-rw-r--r--default_images/res/commandimagelist/lch_showfmexplorer.pngbin0 -> 242 bytes-rw-r--r--default_images/res/commandimagelist/lch_showmultiplepages.pngbin0 -> 136 bytes-rw-r--r--default_images/res/commandimagelist/lch_showpropbrowser.pngbin0 -> 205 bytes-rw-r--r--default_images/res/commandimagelist/lch_showslide.pngbin0 -> 125 bytes-rw-r--r--default_images/res/commandimagelist/lch_showtwopages.pngbin0 -> 130 bytes-rw-r--r--default_images/res/commandimagelist/lch_shrink.pngbin0 -> 167 bytes-rw-r--r--default_images/res/commandimagelist/lch_smallestheight.pngbin0 -> 156 bytes-rw-r--r--default_images/res/commandimagelist/lch_smallestwidth.pngbin0 -> 145 bytes-rw-r--r--default_images/res/commandimagelist/lch_snapborder.pngbin0 -> 164 bytes-rw-r--r--default_images/res/commandimagelist/lch_snapframe.pngbin0 -> 131 bytes-rw-r--r--default_images/res/commandimagelist/lch_snappoints.pngbin0 -> 182 bytes-rw-r--r--default_images/res/commandimagelist/lch_solidcreate.pngbin0 -> 152 bytes-rw-r--r--default_images/res/commandimagelist/lch_sortascending.pngbin0 -> 190 bytes-rw-r--r--default_images/res/commandimagelist/lch_sortdescending.pngbin0 -> 206 bytes-rw-r--r--default_images/res/commandimagelist/lch_sortdown.pngbin0 -> 206 bytes-rw-r--r--default_images/res/commandimagelist/lch_sortup.pngbin0 -> 191 bytes-rw-r--r--default_images/res/commandimagelist/lch_sourceview.pngbin0 -> 154 bytes-rw-r--r--default_images/res/commandimagelist/lch_spacepara1.pngbin0 -> 87 bytes-rw-r--r--default_images/res/commandimagelist/lch_spacepara15.pngbin0 -> 86 bytes-rw-r--r--default_images/res/commandimagelist/lch_spacepara2.pngbin0 -> 90 bytes-rw-r--r--default_images/res/commandimagelist/lch_spelldialog.pngbin0 -> 185 bytes-rw-r--r--default_images/res/commandimagelist/lch_spelling.pngbin0 -> 185 bytes-rw-r--r--default_images/res/commandimagelist/lch_spellingandgrammardialog.pngbin0 -> 185 bytes-rw-r--r--default_images/res/commandimagelist/lch_spellonline.pngbin0 -> 139 bytes-rw-r--r--default_images/res/commandimagelist/lch_sphere.pngbin0 -> 204 bytes-rw-r--r--default_images/res/commandimagelist/lch_spinbutton.pngbin0 -> 116 bytes-rw-r--r--default_images/res/commandimagelist/lch_splitcell.pngbin0 -> 129 bytes-rw-r--r--default_images/res/commandimagelist/lch_splithorizontal.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lch_splitparenthorizontal.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lch_splitparentvertical.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lch_splitvertical.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lch_square.pngbin0 -> 102 bytes-rw-r--r--default_images/res/commandimagelist/lch_square_rounded.pngbin0 -> 133 bytes-rw-r--r--default_images/res/commandimagelist/lch_square_rounded_unfilled.pngbin0 -> 136 bytes-rw-r--r--default_images/res/commandimagelist/lch_square_unfilled.pngbin0 -> 91 bytes-rw-r--r--default_images/res/commandimagelist/lch_starchartdialog.pngbin0 -> 113 bytes-rw-r--r--default_images/res/commandimagelist/lch_starshapes.bang.pngbin0 -> 239 bytes-rw-r--r--default_images/res/commandimagelist/lch_starshapes.concave-star6.pngbin0 -> 201 bytes-rw-r--r--default_images/res/commandimagelist/lch_starshapes.doorplate.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/lch_starshapes.horizontal-scroll.pngbin0 -> 171 bytes-rw-r--r--default_images/res/commandimagelist/lch_starshapes.pngbin0 -> 207 bytes-rw-r--r--default_images/res/commandimagelist/lch_starshapes.signet.pngbin0 -> 218 bytes-rw-r--r--default_images/res/commandimagelist/lch_starshapes.star12.pngbin0 -> 240 bytes-rw-r--r--default_images/res/commandimagelist/lch_starshapes.star24.pngbin0 -> 235 bytes-rw-r--r--default_images/res/commandimagelist/lch_starshapes.star4.pngbin0 -> 185 bytes-rw-r--r--default_images/res/commandimagelist/lch_starshapes.star5.pngbin0 -> 208 bytes-rw-r--r--default_images/res/commandimagelist/lch_starshapes.star6.pngbin0 -> 179 bytes-rw-r--r--default_images/res/commandimagelist/lch_starshapes.star8.pngbin0 -> 203 bytes-rw-r--r--default_images/res/commandimagelist/lch_starshapes.vertical-scroll.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lch_strikeout.pngbin0 -> 159 bytes-rw-r--r--default_images/res/commandimagelist/lch_styleapply.pngbin0 -> 225 bytes-rw-r--r--default_images/res/commandimagelist/lch_stylenewbyexample.pngbin0 -> 183 bytes-rw-r--r--default_images/res/commandimagelist/lch_styleupdatebyexample.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lch_subscript.pngbin0 -> 217 bytes-rw-r--r--default_images/res/commandimagelist/lch_superscript.pngbin0 -> 224 bytes-rw-r--r--default_images/res/commandimagelist/lch_switchcontroldesignmode.pngbin0 -> 213 bytes-rw-r--r--default_images/res/commandimagelist/lch_switchxformsdesignmode.pngbin0 -> 213 bytes-rw-r--r--default_images/res/commandimagelist/lch_symbolcatalogue.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/lch_symbolshapes.brace-pair.pngbin0 -> 165 bytes-rw-r--r--default_images/res/commandimagelist/lch_symbolshapes.bracket-pair.pngbin0 -> 139 bytes-rw-r--r--default_images/res/commandimagelist/lch_symbolshapes.cloud.pngbin0 -> 210 bytes-rw-r--r--default_images/res/commandimagelist/lch_symbolshapes.diamond-bevel.pngbin0 -> 179 bytes-rw-r--r--default_images/res/commandimagelist/lch_symbolshapes.flower.pngbin0 -> 207 bytes-rw-r--r--default_images/res/commandimagelist/lch_symbolshapes.forbidden.pngbin0 -> 215 bytes-rw-r--r--default_images/res/commandimagelist/lch_symbolshapes.heart.pngbin0 -> 198 bytes-rw-r--r--default_images/res/commandimagelist/lch_symbolshapes.left-brace.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/lch_symbolshapes.left-bracket.pngbin0 -> 120 bytes-rw-r--r--default_images/res/commandimagelist/lch_symbolshapes.lightning.pngbin0 -> 179 bytes-rw-r--r--default_images/res/commandimagelist/lch_symbolshapes.moon.pngbin0 -> 177 bytes-rw-r--r--default_images/res/commandimagelist/lch_symbolshapes.octagon-bevel.pngbin0 -> 202 bytes-rw-r--r--default_images/res/commandimagelist/lch_symbolshapes.pngbin0 -> 201 bytes-rw-r--r--default_images/res/commandimagelist/lch_symbolshapes.puzzle.pngbin0 -> 204 bytes-rw-r--r--default_images/res/commandimagelist/lch_symbolshapes.quad-bevel.pngbin0 -> 155 bytes-rw-r--r--default_images/res/commandimagelist/lch_symbolshapes.right-brace.pngbin0 -> 130 bytes-rw-r--r--default_images/res/commandimagelist/lch_symbolshapes.right-bracket.pngbin0 -> 116 bytes-rw-r--r--default_images/res/commandimagelist/lch_symbolshapes.smiley.pngbin0 -> 202 bytes-rw-r--r--default_images/res/commandimagelist/lch_symbolshapes.sun.pngbin0 -> 231 bytes-rw-r--r--default_images/res/commandimagelist/lch_tabdialog.pngbin0 -> 197 bytes-rw-r--r--default_images/res/commandimagelist/lch_tabledesign.pngbin0 -> 197 bytes-rw-r--r--default_images/res/commandimagelist/lch_tabledialog.pngbin0 -> 167 bytes-rw-r--r--default_images/res/commandimagelist/lch_tablemodefix.pngbin0 -> 116 bytes-rw-r--r--default_images/res/commandimagelist/lch_tablemodefixprop.pngbin0 -> 159 bytes-rw-r--r--default_images/res/commandimagelist/lch_tablemodevariable.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/lch_tablesort.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lch_testmode.pngbin0 -> 213 bytes-rw-r--r--default_images/res/commandimagelist/lch_text.pngbin0 -> 114 bytes-rw-r--r--default_images/res/commandimagelist/lch_text_marquee.pngbin0 -> 139 bytes-rw-r--r--default_images/res/commandimagelist/lch_textdirectionlefttoright.pngbin0 -> 169 bytes-rw-r--r--default_images/res/commandimagelist/lch_textdirectiontoptobottom.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lch_textfittosizetool.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lch_texttoolbox.pngbin0 -> 114 bytes-rw-r--r--default_images/res/commandimagelist/lch_thesaurus.pngbin0 -> 151 bytes-rw-r--r--default_images/res/commandimagelist/lch_thesaurusdialog.pngbin0 -> 152 bytes-rw-r--r--default_images/res/commandimagelist/lch_timefield.pngbin0 -> 205 bytes-rw-r--r--default_images/res/commandimagelist/lch_toggleanchortype.pngbin0 -> 179 bytes-rw-r--r--default_images/res/commandimagelist/lch_toggleaxisdescr.pngbin0 -> 110 bytes-rw-r--r--default_images/res/commandimagelist/lch_toggleaxistitle.pngbin0 -> 140 bytes-rw-r--r--default_images/res/commandimagelist/lch_togglebreakpoint.pngbin0 -> 214 bytes-rw-r--r--default_images/res/commandimagelist/lch_togglegridhorizontal.pngbin0 -> 110 bytes-rw-r--r--default_images/res/commandimagelist/lch_togglegridvertical.pngbin0 -> 108 bytes-rw-r--r--default_images/res/commandimagelist/lch_togglelegend.pngbin0 -> 130 bytes-rw-r--r--default_images/res/commandimagelist/lch_togglemergecells.pngbin0 -> 129 bytes-rw-r--r--default_images/res/commandimagelist/lch_toggleobjectbeziermode.pngbin0 -> 168 bytes-rw-r--r--default_images/res/commandimagelist/lch_toggleobjectrotatemode.pngbin0 -> 162 bytes-rw-r--r--default_images/res/commandimagelist/lch_togglesheetgrid.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/lch_toggletitle.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/lch_toolsmacroedit.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lch_toolsoptions.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lch_torus.pngbin0 -> 186 bytes-rw-r--r--default_images/res/commandimagelist/lch_transformdialog.pngbin0 -> 175 bytes-rw-r--r--default_images/res/commandimagelist/lch_underline.pngbin0 -> 171 bytes-rw-r--r--default_images/res/commandimagelist/lch_underlinedouble.pngbin0 -> 172 bytes-rw-r--r--default_images/res/commandimagelist/lch_undo.pngbin0 -> 175 bytes-rw-r--r--default_images/res/commandimagelist/lch_ungroup.pngbin0 -> 154 bytes-rw-r--r--default_images/res/commandimagelist/lch_unhainframes.pngbin0 -> 221 bytes-rw-r--r--default_images/res/commandimagelist/lch_upsearch.pngbin0 -> 146 bytes-rw-r--r--default_images/res/commandimagelist/lch_urlbutton.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/lch_usewizards.pngbin0 -> 222 bytes-rw-r--r--default_images/res/commandimagelist/lch_verticalcaption.pngbin0 -> 152 bytes-rw-r--r--default_images/res/commandimagelist/lch_verticaltext.pngbin0 -> 118 bytes-rw-r--r--default_images/res/commandimagelist/lch_verticaltextfittosizetool.pngbin0 -> 160 bytes-rw-r--r--default_images/res/commandimagelist/lch_vfixedline.pngbin0 -> 115 bytes-rw-r--r--default_images/res/commandimagelist/lch_view100.pngbin0 -> 171 bytes-rw-r--r--default_images/res/commandimagelist/lch_viewdatasourcebrowser.pngbin0 -> 141 bytes-rw-r--r--default_images/res/commandimagelist/lch_viewformasgrid.pngbin0 -> 138 bytes-rw-r--r--default_images/res/commandimagelist/lch_vscrollbar.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/lch_window3d.pngbin0 -> 170 bytes-rw-r--r--default_images/res/commandimagelist/lch_wrapcontour.pngbin0 -> 149 bytes-rw-r--r--default_images/res/commandimagelist/lch_wrapideal.pngbin0 -> 146 bytes-rw-r--r--default_images/res/commandimagelist/lch_wrapleft.pngbin0 -> 119 bytes-rw-r--r--default_images/res/commandimagelist/lch_wrapoff.pngbin0 -> 110 bytes-rw-r--r--default_images/res/commandimagelist/lch_wrapon.pngbin0 -> 126 bytes-rw-r--r--default_images/res/commandimagelist/lch_wrapright.pngbin0 -> 118 bytes-rw-r--r--default_images/res/commandimagelist/lch_wrapthrough.pngbin0 -> 142 bytes-rw-r--r--default_images/res/commandimagelist/lch_xlinecolor.pngbin0 -> 225 bytes-rw-r--r--default_images/res/commandimagelist/lch_xlinestyle.pngbin0 -> 225 bytes-rw-r--r--default_images/res/commandimagelist/lch_zoom.pngbin0 -> 175 bytes-rw-r--r--default_images/res/commandimagelist/lch_zoom100percent.pngbin0 -> 171 bytes-rw-r--r--default_images/res/commandimagelist/lch_zoomin.pngbin0 -> 181 bytes-rw-r--r--default_images/res/commandimagelist/lch_zoomminus.pngbin0 -> 180 bytes-rw-r--r--default_images/res/commandimagelist/lch_zoomnext.pngbin0 -> 204 bytes-rw-r--r--default_images/res/commandimagelist/lch_zoomobjects.pngbin0 -> 202 bytes-rw-r--r--default_images/res/commandimagelist/lch_zoomoptimal.pngbin0 -> 191 bytes-rw-r--r--default_images/res/commandimagelist/lch_zoomout.pngbin0 -> 179 bytes-rw-r--r--default_images/res/commandimagelist/lch_zoompage.pngbin0 -> 162 bytes-rw-r--r--default_images/res/commandimagelist/lch_zoompagewidth.pngbin0 -> 200 bytes-rw-r--r--default_images/res/commandimagelist/lch_zoompanning.pngbin0 -> 231 bytes-rw-r--r--default_images/res/commandimagelist/lch_zoomplus.pngbin0 -> 181 bytes-rw-r--r--default_images/res/commandimagelist/lch_zoomprevious.pngbin0 -> 195 bytes-rw-r--r--default_images/res/commandimagelist/lch_zoomtoolbox.pngbin0 -> 176 bytes-rw-r--r--default_images/res/commandimagelist/nl/lc_bold.pngbin0 -> 278 bytes-rw-r--r--default_images/res/commandimagelist/nl/lc_italic.pngbin0 -> 288 bytes-rw-r--r--default_images/res/commandimagelist/nl/lc_underline.pngbin0 -> 293 bytes-rw-r--r--default_images/res/commandimagelist/nl/lc_underlinedouble.pngbin0 -> 294 bytes-rw-r--r--default_images/res/commandimagelist/nl/lch_bold.pngbin0 -> 149 bytes-rw-r--r--default_images/res/commandimagelist/nl/lch_italic.pngbin0 -> 248 bytes-rw-r--r--default_images/res/commandimagelist/nl/lch_underline.pngbin0 -> 186 bytes-rw-r--r--default_images/res/commandimagelist/nl/lch_underlinedouble.pngbin0 -> 188 bytes-rw-r--r--default_images/res/commandimagelist/nl/sc_bold.pngbin0 -> 206 bytes-rw-r--r--default_images/res/commandimagelist/nl/sc_italic.pngbin0 -> 213 bytes-rw-r--r--default_images/res/commandimagelist/nl/sc_underline.pngbin0 -> 219 bytes-rw-r--r--default_images/res/commandimagelist/nl/sc_underlinedouble.pngbin0 -> 220 bytes-rw-r--r--default_images/res/commandimagelist/nl/sch_bold.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/nl/sch_italic.pngbin0 -> 182 bytes-rw-r--r--default_images/res/commandimagelist/nl/sch_underline.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/nl/sch_underlinedouble.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/pl/lc_bold.pngbin0 -> 260 bytes-rw-r--r--default_images/res/commandimagelist/pl/lc_italic.pngbin0 -> 320 bytes-rw-r--r--default_images/res/commandimagelist/pl/lc_underline.pngbin0 -> 215 bytes-rw-r--r--default_images/res/commandimagelist/pl/lc_underlinedouble.pngbin0 -> 236 bytes-rw-r--r--default_images/res/commandimagelist/pl/lch_bold.pngbin0 -> 128 bytes-rw-r--r--default_images/res/commandimagelist/pl/lch_italic.pngbin0 -> 282 bytes-rw-r--r--default_images/res/commandimagelist/pl/lch_underline.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/pl/lch_underlinedouble.pngbin0 -> 143 bytes-rw-r--r--default_images/res/commandimagelist/pl/sc_bold.pngbin0 -> 199 bytes-rw-r--r--default_images/res/commandimagelist/pl/sc_italic.pngbin0 -> 236 bytes-rw-r--r--default_images/res/commandimagelist/pl/sc_underline.pngbin0 -> 179 bytes-rw-r--r--default_images/res/commandimagelist/pl/sc_underlinedouble.pngbin0 -> 220 bytes-rw-r--r--default_images/res/commandimagelist/pl/sch_bold.pngbin0 -> 118 bytes-rw-r--r--default_images/res/commandimagelist/pl/sch_italic.pngbin0 -> 201 bytes-rw-r--r--default_images/res/commandimagelist/pl/sch_underline.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/pl/sch_underlinedouble.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/pt-BR/lc_bold.pngbin0 -> 200 bytes-rw-r--r--default_images/res/commandimagelist/pt-BR/lc_italic.pngbin0 -> 240 bytes-rw-r--r--default_images/res/commandimagelist/pt-BR/lc_underline.pngbin0 -> 275 bytes-rw-r--r--default_images/res/commandimagelist/pt-BR/lc_underlinedouble.pngbin0 -> 276 bytes-rw-r--r--default_images/res/commandimagelist/pt-BR/lch_bold.pngbin0 -> 130 bytes-rw-r--r--default_images/res/commandimagelist/pt-BR/lch_italic.pngbin0 -> 209 bytes-rw-r--r--default_images/res/commandimagelist/pt-BR/lch_underline.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/pt-BR/lch_underlinedouble.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/pt-BR/sc_bold.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/pt-BR/sc_italic.pngbin0 -> 183 bytes-rw-r--r--default_images/res/commandimagelist/pt-BR/sc_underline.pngbin0 -> 219 bytes-rw-r--r--default_images/res/commandimagelist/pt-BR/sc_underlinedouble.pngbin0 -> 220 bytes-rw-r--r--default_images/res/commandimagelist/pt-BR/sch_bold.pngbin0 -> 105 bytes-rw-r--r--default_images/res/commandimagelist/pt-BR/sch_italic.pngbin0 -> 162 bytes-rw-r--r--default_images/res/commandimagelist/pt-BR/sch_underline.pngbin0 -> 114 bytes-rw-r--r--default_images/res/commandimagelist/pt-BR/sch_underlinedouble.pngbin0 -> 115 bytes-rw-r--r--default_images/res/commandimagelist/pt/lc_bold.pngbin0 -> 199 bytes-rw-r--r--default_images/res/commandimagelist/pt/lc_italic.pngbin0 -> 239 bytes-rw-r--r--default_images/res/commandimagelist/pt/lc_underline.pngbin0 -> 275 bytes-rw-r--r--default_images/res/commandimagelist/pt/lc_underlinedouble.pngbin0 -> 276 bytes-rw-r--r--default_images/res/commandimagelist/pt/lch_bold.pngbin0 -> 129 bytes-rw-r--r--default_images/res/commandimagelist/pt/lch_italic.pngbin0 -> 209 bytes-rw-r--r--default_images/res/commandimagelist/pt/lch_underline.pngbin0 -> 143 bytes-rw-r--r--default_images/res/commandimagelist/pt/lch_underlinedouble.pngbin0 -> 143 bytes-rw-r--r--default_images/res/commandimagelist/pt/sc_bold.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/pt/sc_italic.pngbin0 -> 184 bytes-rw-r--r--default_images/res/commandimagelist/pt/sc_underline.pngbin0 -> 220 bytes-rw-r--r--default_images/res/commandimagelist/pt/sc_underlinedouble.pngbin0 -> 221 bytes-rw-r--r--default_images/res/commandimagelist/pt/sch_bold.pngbin0 -> 105 bytes-rw-r--r--default_images/res/commandimagelist/pt/sch_italic.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/pt/sch_underline.pngbin0 -> 114 bytes-rw-r--r--default_images/res/commandimagelist/pt/sch_underlinedouble.pngbin0 -> 115 bytes-rw-r--r--default_images/res/commandimagelist/ru/lc_bold.pngbin0 -> 189 bytes-rw-r--r--default_images/res/commandimagelist/ru/lc_italic.pngbin0 -> 222 bytes-rw-r--r--default_images/res/commandimagelist/ru/lc_underline.pngbin0 -> 150 bytes-rw-r--r--default_images/res/commandimagelist/ru/lc_underlinedouble.pngbin0 -> 150 bytes-rw-r--r--default_images/res/commandimagelist/ru/lch_bold.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/ru/lch_italic.pngbin0 -> 341 bytes-rw-r--r--default_images/res/commandimagelist/ru/lch_underline.pngbin0 -> 112 bytes-rw-r--r--default_images/res/commandimagelist/ru/lch_underlinedouble.pngbin0 -> 113 bytes-rw-r--r--default_images/res/commandimagelist/ru/sc_bold.pngbin0 -> 148 bytes-rw-r--r--default_images/res/commandimagelist/ru/sc_italic.pngbin0 -> 143 bytes-rw-r--r--default_images/res/commandimagelist/ru/sc_underline.pngbin0 -> 131 bytes-rw-r--r--default_images/res/commandimagelist/ru/sc_underlinedouble.pngbin0 -> 130 bytes-rw-r--r--default_images/res/commandimagelist/ru/sch_bold.pngbin0 -> 116 bytes-rw-r--r--default_images/res/commandimagelist/ru/sch_italic.pngbin0 -> 124 bytes-rw-r--r--default_images/res/commandimagelist/ru/sch_underline.pngbin0 -> 106 bytes-rw-r--r--default_images/res/commandimagelist/ru/sch_underlinedouble.pngbin0 -> 104 bytes-rw-r--r--default_images/res/commandimagelist/sc_absoluterecord.pngbin0 -> 621 bytes-rw-r--r--default_images/res/commandimagelist/sc_actionmode.pngbin0 -> 570 bytes-rw-r--r--default_images/res/commandimagelist/sc_addbookmark.pngbin0 -> 202 bytes-rw-r--r--default_images/res/commandimagelist/sc_adddatefield.pngbin0 -> 404 bytes-rw-r--r--default_images/res/commandimagelist/sc_adddirect.pngbin0 -> 350 bytes-rw-r--r--default_images/res/commandimagelist/sc_addfield.pngbin0 -> 305 bytes-rw-r--r--default_images/res/commandimagelist/sc_addons.pngbin0 -> 360 bytes-rw-r--r--default_images/res/commandimagelist/sc_addprintarea.pngbin0 -> 346 bytes-rw-r--r--default_images/res/commandimagelist/sc_addtable.pngbin0 -> 370 bytes-rw-r--r--default_images/res/commandimagelist/sc_addwatch.pngbin0 -> 355 bytes-rw-r--r--default_images/res/commandimagelist/sc_adjust.pngbin0 -> 523 bytes-rw-r--r--default_images/res/commandimagelist/sc_advancedmode.pngbin0 -> 599 bytes-rw-r--r--default_images/res/commandimagelist/sc_alignblock.pngbin0 -> 130 bytes-rw-r--r--default_images/res/commandimagelist/sc_alignbottom.pngbin0 -> 433 bytes-rw-r--r--default_images/res/commandimagelist/sc_aligncenter.pngbin0 -> 457 bytes-rw-r--r--default_images/res/commandimagelist/sc_aligndown.pngbin0 -> 332 bytes-rw-r--r--default_images/res/commandimagelist/sc_alignhorizontalcenter.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/sc_alignleft.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/sc_alignmiddle.pngbin0 -> 462 bytes-rw-r--r--default_images/res/commandimagelist/sc_alignright.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/sc_aligntop.pngbin0 -> 425 bytes-rw-r--r--default_images/res/commandimagelist/sc_alignup.pngbin0 -> 337 bytes-rw-r--r--default_images/res/commandimagelist/sc_alignvcenter.pngbin0 -> 442 bytes-rw-r--r--default_images/res/commandimagelist/sc_alignverticalcenter.pngbin0 -> 442 bytes-rw-r--r--default_images/res/commandimagelist/sc_animationeffects.pngbin0 -> 429 bytes-rw-r--r--default_images/res/commandimagelist/sc_animationmode.pngbin0 -> 476 bytes-rw-r--r--default_images/res/commandimagelist/sc_animationobjects.pngbin0 -> 362 bytes-rw-r--r--default_images/res/commandimagelist/sc_apply.pngbin0 -> 850 bytes-rw-r--r--default_images/res/commandimagelist/sc_arc.pngbin0 -> 480 bytes-rw-r--r--default_images/res/commandimagelist/sc_arrowshapes.chevron.pngbin0 -> 359 bytes-rw-r--r--default_images/res/commandimagelist/sc_arrowshapes.circular-arrow.pngbin0 -> 482 bytes-rw-r--r--default_images/res/commandimagelist/sc_arrowshapes.corner-right-arrow.pngbin0 -> 289 bytes-rw-r--r--default_images/res/commandimagelist/sc_arrowshapes.down-arrow-callout.pngbin0 -> 337 bytes-rw-r--r--default_images/res/commandimagelist/sc_arrowshapes.down-arrow.pngbin0 -> 340 bytes-rw-r--r--default_images/res/commandimagelist/sc_arrowshapes.left-arrow-callout.pngbin0 -> 370 bytes-rw-r--r--default_images/res/commandimagelist/sc_arrowshapes.left-arrow.pngbin0 -> 305 bytes-rw-r--r--default_images/res/commandimagelist/sc_arrowshapes.left-right-arrow-callout.pngbin0 -> 390 bytes-rw-r--r--default_images/res/commandimagelist/sc_arrowshapes.left-right-arrow.pngbin0 -> 303 bytes-rw-r--r--default_images/res/commandimagelist/sc_arrowshapes.notched-right-arrow.pngbin0 -> 321 bytes-rw-r--r--default_images/res/commandimagelist/sc_arrowshapes.pentagon-right.pngbin0 -> 317 bytes-rw-r--r--default_images/res/commandimagelist/sc_arrowshapes.pngbin0 -> 303 bytes-rw-r--r--default_images/res/commandimagelist/sc_arrowshapes.quad-arrow-callout.pngbin0 -> 442 bytes-rw-r--r--default_images/res/commandimagelist/sc_arrowshapes.quad-arrow.pngbin0 -> 395 bytes-rw-r--r--default_images/res/commandimagelist/sc_arrowshapes.right-arrow-callout.pngbin0 -> 371 bytes-rw-r--r--default_images/res/commandimagelist/sc_arrowshapes.right-arrow.pngbin0 -> 302 bytes-rw-r--r--default_images/res/commandimagelist/sc_arrowshapes.s-sharped-arrow.pngbin0 -> 528 bytes-rw-r--r--default_images/res/commandimagelist/sc_arrowshapes.split-arrow.pngbin0 -> 379 bytes-rw-r--r--default_images/res/commandimagelist/sc_arrowshapes.split-round-arrow.pngbin0 -> 471 bytes-rw-r--r--default_images/res/commandimagelist/sc_arrowshapes.striped-right-arrow.pngbin0 -> 336 bytes-rw-r--r--default_images/res/commandimagelist/sc_arrowshapes.up-arrow-callout.pngbin0 -> 314 bytes-rw-r--r--default_images/res/commandimagelist/sc_arrowshapes.up-arrow.pngbin0 -> 323 bytes-rw-r--r--default_images/res/commandimagelist/sc_arrowshapes.up-down-arrow-callout.pngbin0 -> 365 bytes-rw-r--r--default_images/res/commandimagelist/sc_arrowshapes.up-down-arrow.pngbin0 -> 371 bytes-rw-r--r--default_images/res/commandimagelist/sc_arrowshapes.up-right-arrow-callout.pngbin0 -> 423 bytes-rw-r--r--default_images/res/commandimagelist/sc_arrowshapes.up-right-arrow.pngbin0 -> 354 bytes-rw-r--r--default_images/res/commandimagelist/sc_arrowshapes.up-right-down-arrow.pngbin0 -> 385 bytes-rw-r--r--default_images/res/commandimagelist/sc_arrowstoolbox.pngbin0 -> 333 bytes-rw-r--r--default_images/res/commandimagelist/sc_assignlayout.pngbin0 -> 383 bytes-rw-r--r--default_images/res/commandimagelist/sc_autocontrolfocus.pngbin0 -> 452 bytes-rw-r--r--default_images/res/commandimagelist/sc_autofilter.pngbin0 -> 481 bytes-rw-r--r--default_images/res/commandimagelist/sc_autoformat.pngbin0 -> 474 bytes-rw-r--r--default_images/res/commandimagelist/sc_autosum.pngbin0 -> 329 bytes-rw-r--r--default_images/res/commandimagelist/sc_avmediaplayer.pngbin0 -> 228 bytes-rw-r--r--default_images/res/commandimagelist/sc_backcolor.pngbin0 -> 387 bytes-rw-r--r--default_images/res/commandimagelist/sc_backgroundcolor.pngbin0 -> 485 bytes-rw-r--r--default_images/res/commandimagelist/sc_backgroundpatterncontroller.pngbin0 -> 485 bytes-rw-r--r--default_images/res/commandimagelist/sc_backward.pngbin0 -> 295 bytes-rw-r--r--default_images/res/commandimagelist/sc_basicshapes.block-arc.pngbin0 -> 421 bytes-rw-r--r--default_images/res/commandimagelist/sc_basicshapes.can.pngbin0 -> 544 bytes-rw-r--r--default_images/res/commandimagelist/sc_basicshapes.circle-pie.pngbin0 -> 527 bytes-rw-r--r--default_images/res/commandimagelist/sc_basicshapes.circle.pngbin0 -> 555 bytes-rw-r--r--default_images/res/commandimagelist/sc_basicshapes.cross.pngbin0 -> 330 bytes-rw-r--r--default_images/res/commandimagelist/sc_basicshapes.cube.pngbin0 -> 382 bytes-rw-r--r--default_images/res/commandimagelist/sc_basicshapes.diamond.pngbin0 -> 388 bytes-rw-r--r--default_images/res/commandimagelist/sc_basicshapes.ellipse.pngbin0 -> 459 bytes-rw-r--r--default_images/res/commandimagelist/sc_basicshapes.frame.pngbin0 -> 280 bytes-rw-r--r--default_images/res/commandimagelist/sc_basicshapes.hexagon.pngbin0 -> 326 bytes-rw-r--r--default_images/res/commandimagelist/sc_basicshapes.isosceles-triangle.pngbin0 -> 327 bytes-rw-r--r--default_images/res/commandimagelist/sc_basicshapes.octagon.pngbin0 -> 343 bytes-rw-r--r--default_images/res/commandimagelist/sc_basicshapes.paper.pngbin0 -> 357 bytes-rw-r--r--default_images/res/commandimagelist/sc_basicshapes.parallelogram.pngbin0 -> 358 bytes-rw-r--r--default_images/res/commandimagelist/sc_basicshapes.pentagon.pngbin0 -> 363 bytes-rw-r--r--default_images/res/commandimagelist/sc_basicshapes.pngbin0 -> 388 bytes-rw-r--r--default_images/res/commandimagelist/sc_basicshapes.quadrat.pngbin0 -> 250 bytes-rw-r--r--default_images/res/commandimagelist/sc_basicshapes.rectangle.pngbin0 -> 213 bytes-rw-r--r--default_images/res/commandimagelist/sc_basicshapes.right-triangle.pngbin0 -> 357 bytes-rw-r--r--default_images/res/commandimagelist/sc_basicshapes.ring.pngbin0 -> 663 bytes-rw-r--r--default_images/res/commandimagelist/sc_basicshapes.round-quadrat.pngbin0 -> 420 bytes-rw-r--r--default_images/res/commandimagelist/sc_basicshapes.round-rectangle.pngbin0 -> 358 bytes-rw-r--r--default_images/res/commandimagelist/sc_basicshapes.trapezoid.pngbin0 -> 317 bytes-rw-r--r--default_images/res/commandimagelist/sc_basicstepinto.pngbin0 -> 444 bytes-rw-r--r--default_images/res/commandimagelist/sc_basicstepout.pngbin0 -> 434 bytes-rw-r--r--default_images/res/commandimagelist/sc_basicstepover.pngbin0 -> 466 bytes-rw-r--r--default_images/res/commandimagelist/sc_basicstop.pngbin0 -> 397 bytes-rw-r--r--default_images/res/commandimagelist/sc_beamer.pngbin0 -> 202 bytes-rw-r--r--default_images/res/commandimagelist/sc_beforeobject.pngbin0 -> 432 bytes-rw-r--r--default_images/res/commandimagelist/sc_behindobject.pngbin0 -> 482 bytes-rw-r--r--default_images/res/commandimagelist/sc_bezier_unfilled.pngbin0 -> 442 bytes-rw-r--r--default_images/res/commandimagelist/sc_bezierappend.pngbin0 -> 289 bytes-rw-r--r--default_images/res/commandimagelist/sc_bezierclose.pngbin0 -> 185 bytes-rw-r--r--default_images/res/commandimagelist/sc_bezierconvert.pngbin0 -> 530 bytes-rw-r--r--default_images/res/commandimagelist/sc_beziercutline.pngbin0 -> 591 bytes-rw-r--r--default_images/res/commandimagelist/sc_bezierdelete.pngbin0 -> 314 bytes-rw-r--r--default_images/res/commandimagelist/sc_bezieredge.pngbin0 -> 143 bytes-rw-r--r--default_images/res/commandimagelist/sc_beziereliminatepoints.pngbin0 -> 288 bytes-rw-r--r--default_images/res/commandimagelist/sc_bezierfill.pngbin0 -> 475 bytes-rw-r--r--default_images/res/commandimagelist/sc_bezierinsert.pngbin0 -> 302 bytes-rw-r--r--default_images/res/commandimagelist/sc_beziermove.pngbin0 -> 332 bytes-rw-r--r--default_images/res/commandimagelist/sc_beziersmooth.pngbin0 -> 214 bytes-rw-r--r--default_images/res/commandimagelist/sc_beziersymmetric.pngbin0 -> 276 bytes-rw-r--r--default_images/res/commandimagelist/sc_bighandles.pngbin0 -> 181 bytes-rw-r--r--default_images/res/commandimagelist/sc_bmpmask.pngbin0 -> 344 bytes-rw-r--r--default_images/res/commandimagelist/sc_bmpmask_h.pngbin0 -> 140 bytes-rw-r--r--default_images/res/commandimagelist/sc_bold.pngbin0 -> 263 bytes-rw-r--r--default_images/res/commandimagelist/sc_borderdialog.pngbin0 -> 98 bytes-rw-r--r--default_images/res/commandimagelist/sc_bringtofront.pngbin0 -> 326 bytes-rw-r--r--default_images/res/commandimagelist/sc_browsebackward.pngbin0 -> 328 bytes-rw-r--r--default_images/res/commandimagelist/sc_browseforward.pngbin0 -> 320 bytes-rw-r--r--default_images/res/commandimagelist/sc_browseview.pngbin0 -> 622 bytes-rw-r--r--default_images/res/commandimagelist/sc_bullet.pngbin0 -> 473 bytes-rw-r--r--default_images/res/commandimagelist/sc_bulletsandnumberingdialog.pngbin0 -> 392 bytes-rw-r--r--default_images/res/commandimagelist/sc_calloutshapes.cloud-callout.pngbin0 -> 624 bytes-rw-r--r--default_images/res/commandimagelist/sc_calloutshapes.line-callout-1.pngbin0 -> 343 bytes-rw-r--r--default_images/res/commandimagelist/sc_calloutshapes.line-callout-2.pngbin0 -> 370 bytes-rw-r--r--default_images/res/commandimagelist/sc_calloutshapes.line-callout-3.pngbin0 -> 325 bytes-rw-r--r--default_images/res/commandimagelist/sc_calloutshapes.pngbin0 -> 459 bytes-rw-r--r--default_images/res/commandimagelist/sc_calloutshapes.rectangular-callout.pngbin0 -> 345 bytes-rw-r--r--default_images/res/commandimagelist/sc_calloutshapes.round-callout.pngbin0 -> 580 bytes-rw-r--r--default_images/res/commandimagelist/sc_calloutshapes.round-rectangular-callout.pngbin0 -> 459 bytes-rw-r--r--default_images/res/commandimagelist/sc_cancel.pngbin0 -> 606 bytes-rw-r--r--default_images/res/commandimagelist/sc_cellvertbottom.pngbin0 -> 433 bytes-rw-r--r--default_images/res/commandimagelist/sc_cellvertcenter.pngbin0 -> 442 bytes-rw-r--r--default_images/res/commandimagelist/sc_cellverttop.pngbin0 -> 426 bytes-rw-r--r--default_images/res/commandimagelist/sc_centerpara.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/sc_chainframes.pngbin0 -> 314 bytes-rw-r--r--default_images/res/commandimagelist/sc_changebezier.pngbin0 -> 532 bytes-rw-r--r--default_images/res/commandimagelist/sc_changecasetolower.pngbin0 -> 297 bytes-rw-r--r--default_images/res/commandimagelist/sc_changecasetoupper.pngbin0 -> 304 bytes-rw-r--r--default_images/res/commandimagelist/sc_changedatabasefield.pngbin0 -> 751 bytes-rw-r--r--default_images/res/commandimagelist/sc_changepolygon.pngbin0 -> 537 bytes-rw-r--r--default_images/res/commandimagelist/sc_charfontname.pngbin0 -> 558 bytes-rw-r--r--default_images/res/commandimagelist/sc_checkbox.pngbin0 -> 403 bytes-rw-r--r--default_images/res/commandimagelist/sc_choosecontrols.pngbin0 -> 423 bytes-rw-r--r--default_images/res/commandimagelist/sc_choosedesign.pngbin0 -> 598 bytes-rw-r--r--default_images/res/commandimagelist/sc_choosemacro.pngbin0 -> 404 bytes-rw-r--r--default_images/res/commandimagelist/sc_choosepolygon.pngbin0 -> 288 bytes-rw-r--r--default_images/res/commandimagelist/sc_circle.pngbin0 -> 550 bytes-rw-r--r--default_images/res/commandimagelist/sc_circle_unfilled.pngbin0 -> 572 bytes-rw-r--r--default_images/res/commandimagelist/sc_circlearc.pngbin0 -> 483 bytes-rw-r--r--default_images/res/commandimagelist/sc_circlecut.pngbin0 -> 560 bytes-rw-r--r--default_images/res/commandimagelist/sc_circlecut_unfilled.pngbin0 -> 605 bytes-rw-r--r--default_images/res/commandimagelist/sc_circlepie.pngbin0 -> 527 bytes-rw-r--r--default_images/res/commandimagelist/sc_circlepie_unfilled.pngbin0 -> 552 bytes-rw-r--r--default_images/res/commandimagelist/sc_clickchangerotation.pngbin0 -> 598 bytes-rw-r--r--default_images/res/commandimagelist/sc_closedoc.pngbin0 -> 520 bytes-rw-r--r--default_images/res/commandimagelist/sc_closedocs.pngbin0 -> 243 bytes-rw-r--r--default_images/res/commandimagelist/sc_closemasterview.pngbin0 -> 523 bytes-rw-r--r--default_images/res/commandimagelist/sc_closewin.pngbin0 -> 520 bytes-rw-r--r--default_images/res/commandimagelist/sc_color.pngbin0 -> 352 bytes-rw-r--r--default_images/res/commandimagelist/sc_colorsettings.pngbin0 -> 463 bytes-rw-r--r--default_images/res/commandimagelist/sc_colorview.pngbin0 -> 348 bytes-rw-r--r--default_images/res/commandimagelist/sc_combobox.pngbin0 -> 553 bytes-rw-r--r--default_images/res/commandimagelist/sc_commontaskbarvisible.pngbin0 -> 489 bytes-rw-r--r--default_images/res/commandimagelist/sc_compilebasic.pngbin0 -> 418 bytes-rw-r--r--default_images/res/commandimagelist/sc_cone.pngbin0 -> 397 bytes-rw-r--r--default_images/res/commandimagelist/sc_config.pngbin0 -> 581 bytes-rw-r--r--default_images/res/commandimagelist/sc_connector.pngbin0 -> 376 bytes-rw-r--r--default_images/res/commandimagelist/sc_connectorarrowend.pngbin0 -> 425 bytes-rw-r--r--default_images/res/commandimagelist/sc_connectorarrows.pngbin0 -> 412 bytes-rw-r--r--default_images/res/commandimagelist/sc_connectorarrowstart.pngbin0 -> 432 bytes-rw-r--r--default_images/res/commandimagelist/sc_connectorcircleend.pngbin0 -> 479 bytes-rw-r--r--default_images/res/commandimagelist/sc_connectorcircles.pngbin0 -> 409 bytes-rw-r--r--default_images/res/commandimagelist/sc_connectorcirclestart.pngbin0 -> 465 bytes-rw-r--r--default_images/res/commandimagelist/sc_connectorcurve.pngbin0 -> 395 bytes-rw-r--r--default_images/res/commandimagelist/sc_connectorcurvearrowend.pngbin0 -> 473 bytes-rw-r--r--default_images/res/commandimagelist/sc_connectorcurvearrows.pngbin0 -> 509 bytes-rw-r--r--default_images/res/commandimagelist/sc_connectorcurvearrowstart.pngbin0 -> 471 bytes-rw-r--r--default_images/res/commandimagelist/sc_connectorcurvecircleend.pngbin0 -> 482 bytes-rw-r--r--default_images/res/commandimagelist/sc_connectorcurvecircles.pngbin0 -> 427 bytes-rw-r--r--default_images/res/commandimagelist/sc_connectorcurvecirclestart.pngbin0 -> 493 bytes-rw-r--r--default_images/res/commandimagelist/sc_connectorline.pngbin0 -> 363 bytes-rw-r--r--default_images/res/commandimagelist/sc_connectorlinearrowend.pngbin0 -> 437 bytes-rw-r--r--default_images/res/commandimagelist/sc_connectorlinearrows.pngbin0 -> 375 bytes-rw-r--r--default_images/res/commandimagelist/sc_connectorlinearrowstart.pngbin0 -> 435 bytes-rw-r--r--default_images/res/commandimagelist/sc_connectorlinecircleend.pngbin0 -> 460 bytes-rw-r--r--default_images/res/commandimagelist/sc_connectorlinecircles.pngbin0 -> 404 bytes-rw-r--r--default_images/res/commandimagelist/sc_connectorlinecirclestart.pngbin0 -> 464 bytes-rw-r--r--default_images/res/commandimagelist/sc_connectorlines.pngbin0 -> 366 bytes-rw-r--r--default_images/res/commandimagelist/sc_connectorlinesarrowend.pngbin0 -> 451 bytes-rw-r--r--default_images/res/commandimagelist/sc_connectorlinesarrows.pngbin0 -> 454 bytes-rw-r--r--default_images/res/commandimagelist/sc_connectorlinesarrowstart.pngbin0 -> 466 bytes-rw-r--r--default_images/res/commandimagelist/sc_connectorlinescircleend.pngbin0 -> 461 bytes-rw-r--r--default_images/res/commandimagelist/sc_connectorlinescircles.pngbin0 -> 380 bytes-rw-r--r--default_images/res/commandimagelist/sc_connectorlinescirclestart.pngbin0 -> 446 bytes-rw-r--r--default_images/res/commandimagelist/sc_connectortoolbox.pngbin0 -> 409 bytes-rw-r--r--default_images/res/commandimagelist/sc_contourdialog.pngbin0 -> 371 bytes-rw-r--r--default_images/res/commandimagelist/sc_controlcodes.pngbin0 -> 278 bytes-rw-r--r--default_images/res/commandimagelist/sc_controlproperties.pngbin0 -> 503 bytes-rw-r--r--default_images/res/commandimagelist/sc_convertinto3d.pngbin0 -> 513 bytes-rw-r--r--default_images/res/commandimagelist/sc_convertinto3dlathe.pngbin0 -> 509 bytes-rw-r--r--default_images/res/commandimagelist/sc_convertinto3dlathefast.pngbin0 -> 490 bytes-rw-r--r--default_images/res/commandimagelist/sc_copy.pngbin0 -> 357 bytes-rw-r--r--default_images/res/commandimagelist/sc_countall.pngbin0 -> 202 bytes-rw-r--r--default_images/res/commandimagelist/sc_crookrotate.pngbin0 -> 466 bytes-rw-r--r--default_images/res/commandimagelist/sc_crookslant.pngbin0 -> 484 bytes-rw-r--r--default_images/res/commandimagelist/sc_crop.pngbin0 -> 767 bytes-rw-r--r--default_images/res/commandimagelist/sc_cube.pngbin0 -> 424 bytes-rw-r--r--default_images/res/commandimagelist/sc_currencyfield.pngbin0 -> 455 bytes-rw-r--r--default_images/res/commandimagelist/sc_customanimation.pngbin0 -> 530 bytes-rw-r--r--default_images/res/commandimagelist/sc_cut.pngbin0 -> 571 bytes-rw-r--r--default_images/res/commandimagelist/sc_cylinder.pngbin0 -> 529 bytes-rw-r--r--default_images/res/commandimagelist/sc_cyramid.pngbin0 -> 433 bytes-rw-r--r--default_images/res/commandimagelist/sc_datadatapilotrun.pngbin0 -> 555 bytes-rw-r--r--default_images/res/commandimagelist/sc_datafilterautofilter.pngbin0 -> 481 bytes-rw-r--r--default_images/res/commandimagelist/sc_datafilterspecialfilter.pngbin0 -> 314 bytes-rw-r--r--default_images/res/commandimagelist/sc_datafilterstandardfilter.pngbin0 -> 265 bytes-rw-r--r--default_images/res/commandimagelist/sc_dataimport.pngbin0 -> 306 bytes-rw-r--r--default_images/res/commandimagelist/sc_dataincolumns.pngbin0 -> 226 bytes-rw-r--r--default_images/res/commandimagelist/sc_datainrows.pngbin0 -> 271 bytes-rw-r--r--default_images/res/commandimagelist/sc_datefield.pngbin0 -> 404 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbaddrelation.pngbin0 -> 413 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbchangedesignmode.pngbin0 -> 520 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbclearquery.pngbin0 -> 612 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbdistinctvalues.pngbin0 -> 389 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbdtableedit.pngbin0 -> 443 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbformdelete.pngbin0 -> 477 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbformedit.pngbin0 -> 476 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbformopen.pngbin0 -> 401 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbformrename.pngbin0 -> 390 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbindexdesign.pngbin0 -> 474 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbnewform.pngbin0 -> 438 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbnewformautopilot.pngbin0 -> 554 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbnewquery.pngbin0 -> 583 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbnewqueryautopilot.pngbin0 -> 660 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbnewquerysql.pngbin0 -> 385 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbnewreport.pngbin0 -> 489 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbnewreportautopilot.pngbin0 -> 583 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbnewtable.pngbin0 -> 406 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbnewtableautopilot.pngbin0 -> 528 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbnewview.pngbin0 -> 475 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbnewviewsql.pngbin0 -> 550 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbquerydelete.pngbin0 -> 453 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbqueryedit.pngbin0 -> 563 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbqueryopen.pngbin0 -> 506 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbqueryrename.pngbin0 -> 266 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbreportdelete.pngbin0 -> 557 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbreportedit.pngbin0 -> 529 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbreportopen.pngbin0 -> 479 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbreportrename.pngbin0 -> 425 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbsortingandgrouping.pngbin0 -> 362 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbtabledelete.pngbin0 -> 453 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbtableedit.pngbin0 -> 443 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbtableopen.pngbin0 -> 389 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbtablerename.pngbin0 -> 265 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbviewaliases.pngbin0 -> 332 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbviewfunctions.pngbin0 -> 287 bytes-rw-r--r--default_images/res/commandimagelist/sc_dbviewtablenames.pngbin0 -> 333 bytes-rw-r--r--default_images/res/commandimagelist/sc_decrementindent.pngbin0 -> 308 bytes-rw-r--r--default_images/res/commandimagelist/sc_decrementlevel.pngbin0 -> 280 bytes-rw-r--r--default_images/res/commandimagelist/sc_decrementsublevels.pngbin0 -> 388 bytes-rw-r--r--default_images/res/commandimagelist/sc_defaultbullet.pngbin0 -> 188 bytes-rw-r--r--default_images/res/commandimagelist/sc_defaultnumbering.pngbin0 -> 182 bytes-rw-r--r--default_images/res/commandimagelist/sc_definename.pngbin0 -> 260 bytes-rw-r--r--default_images/res/commandimagelist/sc_defineprintarea.pngbin0 -> 403 bytes-rw-r--r--default_images/res/commandimagelist/sc_delete.pngbin0 -> 296 bytes-rw-r--r--default_images/res/commandimagelist/sc_deleteallannotation.pngbin0 -> 496 bytes-rw-r--r--default_images/res/commandimagelist/sc_deleteannotation.pngbin0 -> 467 bytes-rw-r--r--default_images/res/commandimagelist/sc_deletecolumns.pngbin0 -> 299 bytes-rw-r--r--default_images/res/commandimagelist/sc_deletemasterpage.pngbin0 -> 536 bytes-rw-r--r--default_images/res/commandimagelist/sc_deleteprintarea.pngbin0 -> 442 bytes-rw-r--r--default_images/res/commandimagelist/sc_deleterecord.pngbin0 -> 447 bytes-rw-r--r--default_images/res/commandimagelist/sc_deleterows.pngbin0 -> 225 bytes-rw-r--r--default_images/res/commandimagelist/sc_designerdialog.pngbin0 -> 499 bytes-rw-r--r--default_images/res/commandimagelist/sc_dia.pngbin0 -> 517 bytes-rw-r--r--default_images/res/commandimagelist/sc_diaauto.pngbin0 -> 517 bytes-rw-r--r--default_images/res/commandimagelist/sc_diaeffect.pngbin0 -> 517 bytes-rw-r--r--default_images/res/commandimagelist/sc_diagramdata.pngbin0 -> 244 bytes-rw-r--r--default_images/res/commandimagelist/sc_diagramtype.pngbin0 -> 488 bytes-rw-r--r--default_images/res/commandimagelist/sc_diaspeed.pngbin0 -> 517 bytes-rw-r--r--default_images/res/commandimagelist/sc_diatime.pngbin0 -> 517 bytes-rw-r--r--default_images/res/commandimagelist/sc_distributecolumns.pngbin0 -> 411 bytes-rw-r--r--default_images/res/commandimagelist/sc_distributerows.pngbin0 -> 248 bytes-rw-r--r--default_images/res/commandimagelist/sc_doubleclicktextedit.pngbin0 -> 460 bytes-rw-r--r--default_images/res/commandimagelist/sc_downsearch.pngbin0 -> 323 bytes-rw-r--r--default_images/res/commandimagelist/sc_draw.pngbin0 -> 585 bytes-rw-r--r--default_images/res/commandimagelist/sc_drawcaption.pngbin0 -> 566 bytes-rw-r--r--default_images/res/commandimagelist/sc_drawchart.pngbin0 -> 360 bytes-rw-r--r--default_images/res/commandimagelist/sc_drawselect.pngbin0 -> 361 bytes-rw-r--r--default_images/res/commandimagelist/sc_drawtext.pngbin0 -> 291 bytes-rw-r--r--default_images/res/commandimagelist/sc_dsbdocumentdatasource.pngbin0 -> 802 bytes-rw-r--r--default_images/res/commandimagelist/sc_dsbeditdoc.pngbin0 -> 532 bytes-rw-r--r--default_images/res/commandimagelist/sc_dsbformletter.pngbin0 -> 459 bytes-rw-r--r--default_images/res/commandimagelist/sc_dsbinsertcolumns.pngbin0 -> 290 bytes-rw-r--r--default_images/res/commandimagelist/sc_dsbinsertcontent.pngbin0 -> 283 bytes-rw-r--r--default_images/res/commandimagelist/sc_dsbrowserexplorer.pngbin0 -> 492 bytes-rw-r--r--default_images/res/commandimagelist/sc_duplicatepage.pngbin0 -> 471 bytes-rw-r--r--default_images/res/commandimagelist/sc_edit.pngbin0 -> 330 bytes-rw-r--r--default_images/res/commandimagelist/sc_editdoc.pngbin0 -> 532 bytes-rw-r--r--default_images/res/commandimagelist/sc_editframeset.pngbin0 -> 202 bytes-rw-r--r--default_images/res/commandimagelist/sc_editglossary.pngbin0 -> 429 bytes-rw-r--r--default_images/res/commandimagelist/sc_editheaderandfooter.pngbin0 -> 359 bytes-rw-r--r--default_images/res/commandimagelist/sc_editprintarea.pngbin0 -> 442 bytes-rw-r--r--default_images/res/commandimagelist/sc_ellipse.pngbin0 -> 459 bytes-rw-r--r--default_images/res/commandimagelist/sc_ellipse_unfilled.pngbin0 -> 470 bytes-rw-r--r--default_images/res/commandimagelist/sc_ellipsecut.pngbin0 -> 459 bytes-rw-r--r--default_images/res/commandimagelist/sc_ellipsecut_unfilled.pngbin0 -> 568 bytes-rw-r--r--default_images/res/commandimagelist/sc_ellipsetoolbox.pngbin0 -> 459 bytes-rw-r--r--default_images/res/commandimagelist/sc_entergroup.pngbin0 -> 452 bytes-rw-r--r--default_images/res/commandimagelist/sc_entirecolumn.pngbin0 -> 457 bytes-rw-r--r--default_images/res/commandimagelist/sc_entirerow.pngbin0 -> 392 bytes-rw-r--r--default_images/res/commandimagelist/sc_euroconverter.pngbin0 -> 315 bytes-rw-r--r--default_images/res/commandimagelist/sc_executereport.pngbin0 -> 525 bytes-rw-r--r--default_images/res/commandimagelist/sc_expandpage.pngbin0 -> 210 bytes-rw-r--r--default_images/res/commandimagelist/sc_exportdialog.pngbin0 -> 471 bytes-rw-r--r--default_images/res/commandimagelist/sc_exportdirecttopdf.pngbin0 -> 401 bytes-rw-r--r--default_images/res/commandimagelist/sc_exportto.pngbin0 -> 548 bytes-rw-r--r--default_images/res/commandimagelist/sc_extendedhelp.pngbin0 -> 689 bytes-rw-r--r--default_images/res/commandimagelist/sc_extrusion3dcolor.pngbin0 -> 357 bytes-rw-r--r--default_images/res/commandimagelist/sc_extrusiondepthfloater.pngbin0 -> 571 bytes-rw-r--r--default_images/res/commandimagelist/sc_extrusiondirectionfloater.pngbin0 -> 539 bytes-rw-r--r--default_images/res/commandimagelist/sc_extrusionlightingfloater.pngbin0 -> 228 bytes-rw-r--r--default_images/res/commandimagelist/sc_extrusionsurfacefloater.pngbin0 -> 607 bytes-rw-r--r--default_images/res/commandimagelist/sc_extrusiontiltdown.pngbin0 -> 626 bytes-rw-r--r--default_images/res/commandimagelist/sc_extrusiontiltleft.pngbin0 -> 715 bytes-rw-r--r--default_images/res/commandimagelist/sc_extrusiontiltright.pngbin0 -> 709 bytes-rw-r--r--default_images/res/commandimagelist/sc_extrusiontiltup.pngbin0 -> 655 bytes-rw-r--r--default_images/res/commandimagelist/sc_extrusiontoggle.pngbin0 -> 530 bytes-rw-r--r--default_images/res/commandimagelist/sc_fieldnames.pngbin0 -> 306 bytes-rw-r--r--default_images/res/commandimagelist/sc_fields.pngbin0 -> 306 bytes-rw-r--r--default_images/res/commandimagelist/sc_filecontrol.pngbin0 -> 538 bytes-rw-r--r--default_images/res/commandimagelist/sc_filedocument.pngbin0 -> 202 bytes-rw-r--r--default_images/res/commandimagelist/sc_fillshadow.pngbin0 -> 230 bytes-rw-r--r--default_images/res/commandimagelist/sc_fillstyle.pngbin0 -> 548 bytes-rw-r--r--default_images/res/commandimagelist/sc_filtercrit.pngbin0 -> 262 bytes-rw-r--r--default_images/res/commandimagelist/sc_firstpage.pngbin0 -> 494 bytes-rw-r--r--default_images/res/commandimagelist/sc_firstrecord.pngbin0 -> 314 bytes-rw-r--r--default_images/res/commandimagelist/sc_fliphorizontal.pngbin0 -> 396 bytes-rw-r--r--default_images/res/commandimagelist/sc_flipvertical.pngbin0 -> 420 bytes-rw-r--r--default_images/res/commandimagelist/sc_flowchartshapes.flowchart-alternate-process.pngbin0 -> 420 bytes-rw-r--r--default_images/res/commandimagelist/sc_flowchartshapes.flowchart-card.pngbin0 -> 311 bytes-rw-r--r--default_images/res/commandimagelist/sc_flowchartshapes.flowchart-collate.pngbin0 -> 365 bytes-rw-r--r--default_images/res/commandimagelist/sc_flowchartshapes.flowchart-connector.pngbin0 -> 550 bytes-rw-r--r--default_images/res/commandimagelist/sc_flowchartshapes.flowchart-data.pngbin0 -> 358 bytes-rw-r--r--default_images/res/commandimagelist/sc_flowchartshapes.flowchart-decision.pngbin0 -> 388 bytes-rw-r--r--default_images/res/commandimagelist/sc_flowchartshapes.flowchart-delay.pngbin0 -> 516 bytes-rw-r--r--default_images/res/commandimagelist/sc_flowchartshapes.flowchart-direct-access-storage.pngbin0 -> 575 bytes-rw-r--r--default_images/res/commandimagelist/sc_flowchartshapes.flowchart-display.pngbin0 -> 410 bytes-rw-r--r--default_images/res/commandimagelist/sc_flowchartshapes.flowchart-document.pngbin0 -> 484 bytes-rw-r--r--default_images/res/commandimagelist/sc_flowchartshapes.flowchart-extract.pngbin0 -> 327 bytes-rw-r--r--default_images/res/commandimagelist/sc_flowchartshapes.flowchart-internal-storage.pngbin0 -> 276 bytes-rw-r--r--default_images/res/commandimagelist/sc_flowchartshapes.flowchart-magnetic-disk.pngbin0 -> 543 bytes-rw-r--r--default_images/res/commandimagelist/sc_flowchartshapes.flowchart-manual-input.pngbin0 -> 317 bytes-rw-r--r--default_images/res/commandimagelist/sc_flowchartshapes.flowchart-manual-operation.pngbin0 -> 317 bytes-rw-r--r--default_images/res/commandimagelist/sc_flowchartshapes.flowchart-merge.pngbin0 -> 340 bytes-rw-r--r--default_images/res/commandimagelist/sc_flowchartshapes.flowchart-multidocument.pngbin0 -> 470 bytes-rw-r--r--default_images/res/commandimagelist/sc_flowchartshapes.flowchart-off-page-connector.pngbin0 -> 307 bytes-rw-r--r--default_images/res/commandimagelist/sc_flowchartshapes.flowchart-or.pngbin0 -> 601 bytes-rw-r--r--default_images/res/commandimagelist/sc_flowchartshapes.flowchart-predefined-process.pngbin0 -> 312 bytes-rw-r--r--default_images/res/commandimagelist/sc_flowchartshapes.flowchart-preparation.pngbin0 -> 326 bytes-rw-r--r--default_images/res/commandimagelist/sc_flowchartshapes.flowchart-process.pngbin0 -> 250 bytes-rw-r--r--default_images/res/commandimagelist/sc_flowchartshapes.flowchart-punched-tape.pngbin0 -> 647 bytes-rw-r--r--default_images/res/commandimagelist/sc_flowchartshapes.flowchart-sequential-access.pngbin0 -> 617 bytes-rw-r--r--default_images/res/commandimagelist/sc_flowchartshapes.flowchart-sort.pngbin0 -> 389 bytes-rw-r--r--default_images/res/commandimagelist/sc_flowchartshapes.flowchart-stored-data.pngbin0 -> 495 bytes-rw-r--r--default_images/res/commandimagelist/sc_flowchartshapes.flowchart-summing-junction.pngbin0 -> 666 bytes-rw-r--r--default_images/res/commandimagelist/sc_flowchartshapes.flowchart-terminator.pngbin0 -> 311 bytes-rw-r--r--default_images/res/commandimagelist/sc_flowchartshapes.pngbin0 -> 276 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontcolor.pngbin0 -> 352 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontdialog.pngbin0 -> 521 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontheight.pngbin0 -> 699 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontwork.pngbin0 -> 279 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkalignmentfloater.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkcharacterspacingfloater.pngbin0 -> 487 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkgalleryfloater.pngbin0 -> 415 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworksameletterheights.pngbin0 -> 254 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.fontwork-arch-down-curve.pngbin0 -> 129 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.fontwork-arch-down-pour.pngbin0 -> 129 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.fontwork-arch-left-curve.pngbin0 -> 129 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.fontwork-arch-left-pour.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.fontwork-arch-right-curve.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.fontwork-arch-right-pour.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.fontwork-arch-up-curve.pngbin0 -> 129 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.fontwork-arch-up-pour.pngbin0 -> 128 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.fontwork-chevron-down.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.fontwork-chevron-up.pngbin0 -> 130 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.fontwork-circle-curve.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.fontwork-circle-pour.pngbin0 -> 146 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.fontwork-curve-down.pngbin0 -> 170 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.fontwork-curve-up.pngbin0 -> 177 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.fontwork-fade-down.pngbin0 -> 120 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.fontwork-fade-left.pngbin0 -> 117 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.fontwork-fade-right.pngbin0 -> 115 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.fontwork-fade-up-and-left.pngbin0 -> 138 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.fontwork-fade-up-and-right.pngbin0 -> 139 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.fontwork-fade-up.pngbin0 -> 119 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.fontwork-inflate.pngbin0 -> 107 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.fontwork-open-circle-curve.pngbin0 -> 150 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.fontwork-open-circle-pour.pngbin0 -> 157 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.fontwork-plain-text.pngbin0 -> 83 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.fontwork-slant-down.pngbin0 -> 130 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.fontwork-slant-up.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.fontwork-stop.pngbin0 -> 102 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.fontwork-triangle-down.pngbin0 -> 133 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.fontwork-triangle-up.pngbin0 -> 131 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.fontwork-wave.pngbin0 -> 146 bytes-rw-r--r--default_images/res/commandimagelist/sc_fontworkshapetype.pngbin0 -> 279 bytes-rw-r--r--default_images/res/commandimagelist/sc_formatarea.pngbin0 -> 548 bytes-rw-r--r--default_images/res/commandimagelist/sc_formatgroup.pngbin0 -> 348 bytes-rw-r--r--default_images/res/commandimagelist/sc_formatline.pngbin0 -> 302 bytes-rw-r--r--default_images/res/commandimagelist/sc_formatpaintbrush.pngbin0 -> 595 bytes-rw-r--r--default_images/res/commandimagelist/sc_formattedfield.pngbin0 -> 323 bytes-rw-r--r--default_images/res/commandimagelist/sc_formatungroup.pngbin0 -> 281 bytes-rw-r--r--default_images/res/commandimagelist/sc_formdesigntools.pngbin0 -> 421 bytes-rw-r--r--default_images/res/commandimagelist/sc_formelcursor.pngbin0 -> 284 bytes-rw-r--r--default_images/res/commandimagelist/sc_formfilter.pngbin0 -> 355 bytes-rw-r--r--default_images/res/commandimagelist/sc_formfiltered.pngbin0 -> 380 bytes-rw-r--r--default_images/res/commandimagelist/sc_formfilterexecute.pngbin0 -> 265 bytes-rw-r--r--default_images/res/commandimagelist/sc_formfilternavigator.pngbin0 -> 556 bytes-rw-r--r--default_images/res/commandimagelist/sc_formproperties.pngbin0 -> 498 bytes-rw-r--r--default_images/res/commandimagelist/sc_forward.pngbin0 -> 285 bytes-rw-r--r--default_images/res/commandimagelist/sc_framedialog.pngbin0 -> 489 bytes-rw-r--r--default_images/res/commandimagelist/sc_framelinecolor.pngbin0 -> 185 bytes-rw-r--r--default_images/res/commandimagelist/sc_freeline.pngbin0 -> 530 bytes-rw-r--r--default_images/res/commandimagelist/sc_freeline_unfilled.pngbin0 -> 562 bytes-rw-r--r--default_images/res/commandimagelist/sc_fullscreen.pngbin0 -> 335 bytes-rw-r--r--default_images/res/commandimagelist/sc_gallery.pngbin0 -> 473 bytes-rw-r--r--default_images/res/commandimagelist/sc_getactivetask.pngbin0 -> 202 bytes-rw-r--r--default_images/res/commandimagelist/sc_glueeditmode.pngbin0 -> 351 bytes-rw-r--r--default_images/res/commandimagelist/sc_glueescapedirectionbottom.pngbin0 -> 373 bytes-rw-r--r--default_images/res/commandimagelist/sc_glueescapedirectionleft.pngbin0 -> 365 bytes-rw-r--r--default_images/res/commandimagelist/sc_glueescapedirectionright.pngbin0 -> 365 bytes-rw-r--r--default_images/res/commandimagelist/sc_glueescapedirectiontop.pngbin0 -> 372 bytes-rw-r--r--default_images/res/commandimagelist/sc_gluehorzaligncenter.pngbin0 -> 410 bytes-rw-r--r--default_images/res/commandimagelist/sc_gluehorzalignleft.pngbin0 -> 418 bytes-rw-r--r--default_images/res/commandimagelist/sc_gluehorzalignright.pngbin0 -> 422 bytes-rw-r--r--default_images/res/commandimagelist/sc_glueinsertpoint.pngbin0 -> 424 bytes-rw-r--r--default_images/res/commandimagelist/sc_gluepercent.pngbin0 -> 457 bytes-rw-r--r--default_images/res/commandimagelist/sc_gluevertalignbottom.pngbin0 -> 443 bytes-rw-r--r--default_images/res/commandimagelist/sc_gluevertaligncenter.pngbin0 -> 403 bytes-rw-r--r--default_images/res/commandimagelist/sc_gluevertaligntop.pngbin0 -> 436 bytes-rw-r--r--default_images/res/commandimagelist/sc_goalseekdialog.pngbin0 -> 443 bytes-rw-r--r--default_images/res/commandimagelist/sc_gotoend.pngbin0 -> 383 bytes-rw-r--r--default_images/res/commandimagelist/sc_gotoendofdoc.pngbin0 -> 516 bytes-rw-r--r--default_images/res/commandimagelist/sc_gotostartofdoc.pngbin0 -> 494 bytes-rw-r--r--default_images/res/commandimagelist/sc_gotostartoftable.pngbin0 -> 388 bytes-rw-r--r--default_images/res/commandimagelist/sc_grafattrcrop.pngbin0 -> 767 bytes-rw-r--r--default_images/res/commandimagelist/sc_grafblue.pngbin0 -> 437 bytes-rw-r--r--default_images/res/commandimagelist/sc_grafcontrast.pngbin0 -> 498 bytes-rw-r--r--default_images/res/commandimagelist/sc_grafgamma.pngbin0 -> 666 bytes-rw-r--r--default_images/res/commandimagelist/sc_grafgreen.pngbin0 -> 439 bytes-rw-r--r--default_images/res/commandimagelist/sc_grafinvert.pngbin0 -> 387 bytes-rw-r--r--default_images/res/commandimagelist/sc_grafluminance.pngbin0 -> 345 bytes-rw-r--r--default_images/res/commandimagelist/sc_grafmode.pngbin0 -> 502 bytes-rw-r--r--default_images/res/commandimagelist/sc_grafred.pngbin0 -> 434 bytes-rw-r--r--default_images/res/commandimagelist/sc_graftransparence.pngbin0 -> 447 bytes-rw-r--r--default_images/res/commandimagelist/sc_graphic.pngbin0 -> 336 bytes-rw-r--r--default_images/res/commandimagelist/sc_graphicfilterinvert.pngbin0 -> 387 bytes-rw-r--r--default_images/res/commandimagelist/sc_graphicfiltermosaic.pngbin0 -> 147 bytes-rw-r--r--default_images/res/commandimagelist/sc_graphicfilterpopart.pngbin0 -> 210 bytes-rw-r--r--default_images/res/commandimagelist/sc_graphicfilterposter.pngbin0 -> 486 bytes-rw-r--r--default_images/res/commandimagelist/sc_graphicfilterrelief.pngbin0 -> 609 bytes-rw-r--r--default_images/res/commandimagelist/sc_graphicfilterremovenoise.pngbin0 -> 333 bytes-rw-r--r--default_images/res/commandimagelist/sc_graphicfiltersepia.pngbin0 -> 482 bytes-rw-r--r--default_images/res/commandimagelist/sc_graphicfiltersharpen.pngbin0 -> 290 bytes-rw-r--r--default_images/res/commandimagelist/sc_graphicfiltersmooth.pngbin0 -> 370 bytes-rw-r--r--default_images/res/commandimagelist/sc_graphicfiltersobel.pngbin0 -> 163 bytes-rw-r--r--default_images/res/commandimagelist/sc_graphicfiltersolarize.pngbin0 -> 420 bytes-rw-r--r--default_images/res/commandimagelist/sc_graphicfiltertoolbox.pngbin0 -> 376 bytes-rw-r--r--default_images/res/commandimagelist/sc_greatestheight.pngbin0 -> 459 bytes-rw-r--r--default_images/res/commandimagelist/sc_greatestwidth.pngbin0 -> 372 bytes-rw-r--r--default_images/res/commandimagelist/sc_grid.pngbin0 -> 244 bytes-rw-r--r--default_images/res/commandimagelist/sc_griduse.pngbin0 -> 254 bytes-rw-r--r--default_images/res/commandimagelist/sc_gridvisible.pngbin0 -> 136 bytes-rw-r--r--default_images/res/commandimagelist/sc_group.pngbin0 -> 306 bytes-rw-r--r--default_images/res/commandimagelist/sc_groupbox.pngbin0 -> 413 bytes-rw-r--r--default_images/res/commandimagelist/sc_grow.pngbin0 -> 603 bytes-rw-r--r--default_images/res/commandimagelist/sc_halfsphere.pngbin0 -> 608 bytes-rw-r--r--default_images/res/commandimagelist/sc_handlesdraft.pngbin0 -> 149 bytes-rw-r--r--default_images/res/commandimagelist/sc_help.pngbin0 -> 815 bytes-rw-r--r--default_images/res/commandimagelist/sc_helpannotate.pngbin0 -> 428 bytes-rw-r--r--default_images/res/commandimagelist/sc_helpbookmark.pngbin0 -> 369 bytes-rw-r--r--default_images/res/commandimagelist/sc_helpdownload.pngbin0 -> 202 bytes-rw-r--r--default_images/res/commandimagelist/sc_helperdialog.pngbin0 -> 715 bytes-rw-r--r--default_images/res/commandimagelist/sc_helpindex.pngbin0 -> 715 bytes-rw-r--r--default_images/res/commandimagelist/sc_helplinesmove.pngbin0 -> 232 bytes-rw-r--r--default_images/res/commandimagelist/sc_helplinesuse.pngbin0 -> 295 bytes-rw-r--r--default_images/res/commandimagelist/sc_helplinesvisible.pngbin0 -> 171 bytes-rw-r--r--default_images/res/commandimagelist/sc_helpmenu.pngbin0 -> 571 bytes-rw-r--r--default_images/res/commandimagelist/sc_helpsearch.pngbin0 -> 278 bytes-rw-r--r--default_images/res/commandimagelist/sc_helpzoomin.pngbin0 -> 544 bytes-rw-r--r--default_images/res/commandimagelist/sc_helpzoomout.pngbin0 -> 528 bytes-rw-r--r--default_images/res/commandimagelist/sc_hfixedline.pngbin0 -> 149 bytes-rw-r--r--default_images/res/commandimagelist/sc_hideslide.pngbin0 -> 395 bytes-rw-r--r--default_images/res/commandimagelist/sc_hscrollbar.pngbin0 -> 387 bytes-rw-r--r--default_images/res/commandimagelist/sc_hyperlinkdialog.pngbin0 -> 915 bytes-rw-r--r--default_images/res/commandimagelist/sc_hyphenate.pngbin0 -> 267 bytes-rw-r--r--default_images/res/commandimagelist/sc_hyphenation.pngbin0 -> 267 bytes-rw-r--r--default_images/res/commandimagelist/sc_imagebutton.pngbin0 -> 516 bytes-rw-r--r--default_images/res/commandimagelist/sc_imagecontrol.pngbin0 -> 457 bytes-rw-r--r--default_images/res/commandimagelist/sc_imagemapdialog.pngbin0 -> 494 bytes-rw-r--r--default_images/res/commandimagelist/sc_importdialog.pngbin0 -> 381 bytes-rw-r--r--default_images/res/commandimagelist/sc_importfromfile.pngbin0 -> 555 bytes-rw-r--r--default_images/res/commandimagelist/sc_incrementindent.pngbin0 -> 316 bytes-rw-r--r--default_images/res/commandimagelist/sc_incrementlevel.pngbin0 -> 284 bytes-rw-r--r--default_images/res/commandimagelist/sc_incrementsublevels.pngbin0 -> 389 bytes-rw-r--r--default_images/res/commandimagelist/sc_inscellsctrl.pngbin0 -> 393 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertannotation.pngbin0 -> 434 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertauthorfield.pngbin0 -> 575 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertavmedia.pngbin0 -> 302 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertbookmark.pngbin0 -> 458 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertcaptiondialog.pngbin0 -> 312 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertcellsdown.pngbin0 -> 487 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertcellsright.pngbin0 -> 432 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertcolumns.pngbin0 -> 375 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertctrl.pngbin0 -> 170 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertcurrencyfield.pngbin0 -> 455 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertdatefield.pngbin0 -> 404 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertdoc.pngbin0 -> 551 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertdraw.pngbin0 -> 492 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertedit.pngbin0 -> 330 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertendnote.pngbin0 -> 508 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertfield.pngbin0 -> 290 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertfieldctrl.pngbin0 -> 290 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertfilecontrol.pngbin0 -> 539 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertfixedtext.pngbin0 -> 209 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertfootnote.pngbin0 -> 553 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertformattedfield.pngbin0 -> 323 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertformula.pngbin0 -> 357 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertframe.pngbin0 -> 282 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertframeinteract.pngbin0 -> 282 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertframeinteractnocolumns.pngbin0 -> 282 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertgraphic.pngbin0 -> 517 bytes-rw-r--r--default_images/res/commandimagelist/sc_inserthyperlink.pngbin0 -> 556 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertimagecontrol.pngbin0 -> 457 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertindexesentry.pngbin0 -> 256 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertlistbox.pngbin0 -> 571 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertmasterpage.pngbin0 -> 450 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertmath.pngbin0 -> 290 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertneutralparagraph.pngbin0 -> 154 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertnumericfield.pngbin0 -> 220 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertobjctrl.pngbin0 -> 433 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertobject.pngbin0 -> 433 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertobjectchart.pngbin0 -> 360 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertobjectdialog.pngbin0 -> 433 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertobjectfloatingframe.pngbin0 -> 250 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertobjectstarmath.pngbin0 -> 290 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertpage.pngbin0 -> 441 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertpagecountfield.pngbin0 -> 562 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertpagenumberfield.pngbin0 -> 514 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertpatternfield.pngbin0 -> 312 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertplugin.pngbin0 -> 470 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertpushbutton.pngbin0 -> 397 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertreferencefield.pngbin0 -> 332 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertrows.pngbin0 -> 316 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertsection.pngbin0 -> 320 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertsound.pngbin0 -> 301 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertspreadsheet.pngbin0 -> 244 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertsymbol.pngbin0 -> 473 bytes-rw-r--r--default_images/res/commandimagelist/sc_inserttable.pngbin0 -> 244 bytes-rw-r--r--default_images/res/commandimagelist/sc_inserttextframe.pngbin0 -> 282 bytes-rw-r--r--default_images/res/commandimagelist/sc_inserttimefield.pngbin0 -> 564 bytes-rw-r--r--default_images/res/commandimagelist/sc_inserttitlefield.pngbin0 -> 324 bytes-rw-r--r--default_images/res/commandimagelist/sc_inserttoolbox.pngbin0 -> 555 bytes-rw-r--r--default_images/res/commandimagelist/sc_inserttopicfield.pngbin0 -> 438 bytes-rw-r--r--default_images/res/commandimagelist/sc_inserttreecontrol.pngbin0 -> 210 bytes-rw-r--r--default_images/res/commandimagelist/sc_insertvideo.pngbin0 -> 362 bytes-rw-r--r--default_images/res/commandimagelist/sc_insobjctrl.pngbin0 -> 433 bytes-rw-r--r--default_images/res/commandimagelist/sc_interactivegradient.pngbin0 -> 482 bytes-rw-r--r--default_images/res/commandimagelist/sc_interactivetransparence.pngbin0 -> 447 bytes-rw-r--r--default_images/res/commandimagelist/sc_internetonline.pngbin0 -> 202 bytes-rw-r--r--default_images/res/commandimagelist/sc_italic.pngbin0 -> 221 bytes-rw-r--r--default_images/res/commandimagelist/sc_justifypara.pngbin0 -> 130 bytes-rw-r--r--default_images/res/commandimagelist/sc_label.pngbin0 -> 209 bytes-rw-r--r--default_images/res/commandimagelist/sc_lastpage.pngbin0 -> 516 bytes-rw-r--r--default_images/res/commandimagelist/sc_lastrecord.pngbin0 -> 309 bytes-rw-r--r--default_images/res/commandimagelist/sc_leaveallgroups.pngbin0 -> 490 bytes-rw-r--r--default_images/res/commandimagelist/sc_leavegroup.pngbin0 -> 454 bytes-rw-r--r--default_images/res/commandimagelist/sc_leftpara.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/sc_line.pngbin0 -> 371 bytes-rw-r--r--default_images/res/commandimagelist/sc_line_diagonal.pngbin0 -> 470 bytes-rw-r--r--default_images/res/commandimagelist/sc_linearrowcircle.pngbin0 -> 401 bytes-rw-r--r--default_images/res/commandimagelist/sc_linearrowend.pngbin0 -> 333 bytes-rw-r--r--default_images/res/commandimagelist/sc_linearrows.pngbin0 -> 365 bytes-rw-r--r--default_images/res/commandimagelist/sc_linearrowsquare.pngbin0 -> 347 bytes-rw-r--r--default_images/res/commandimagelist/sc_linearrowstart.pngbin0 -> 337 bytes-rw-r--r--default_images/res/commandimagelist/sc_linecirclearrow.pngbin0 -> 399 bytes-rw-r--r--default_images/res/commandimagelist/sc_lineendstyle.pngbin0 -> 423 bytes-rw-r--r--default_images/res/commandimagelist/sc_linesquarearrow.pngbin0 -> 344 bytes-rw-r--r--default_images/res/commandimagelist/sc_linestyle.pngbin0 -> 98 bytes-rw-r--r--default_images/res/commandimagelist/sc_linetoolbox.pngbin0 -> 562 bytes-rw-r--r--default_images/res/commandimagelist/sc_linewidth.pngbin0 -> 302 bytes-rw-r--r--default_images/res/commandimagelist/sc_listbox.pngbin0 -> 571 bytes-rw-r--r--default_images/res/commandimagelist/sc_loadbasic.pngbin0 -> 407 bytes-rw-r--r--default_images/res/commandimagelist/sc_macrorecorder.pngbin0 -> 513 bytes-rw-r--r--default_images/res/commandimagelist/sc_macrorecordingfloat.pngbin0 -> 202 bytes-rw-r--r--default_images/res/commandimagelist/sc_mailwindow.pngbin0 -> 202 bytes-rw-r--r--default_images/res/commandimagelist/sc_managebreakpoints.pngbin0 -> 538 bytes-rw-r--r--default_images/res/commandimagelist/sc_managelanguage.pngbin0 -> 671 bytes-rw-r--r--default_images/res/commandimagelist/sc_marks.pngbin0 -> 206 bytes-rw-r--r--default_images/res/commandimagelist/sc_matchgroup.pngbin0 -> 250 bytes-rw-r--r--default_images/res/commandimagelist/sc_measureline.pngbin0 -> 407 bytes-rw-r--r--default_images/res/commandimagelist/sc_mergecells.pngbin0 -> 257 bytes-rw-r--r--default_images/res/commandimagelist/sc_mergedialog.pngbin0 -> 459 bytes-rw-r--r--default_images/res/commandimagelist/sc_mirror.pngbin0 -> 726 bytes-rw-r--r--default_images/res/commandimagelist/sc_modifyframe.pngbin0 -> 487 bytes-rw-r--r--default_images/res/commandimagelist/sc_modifypage.pngbin0 -> 398 bytes-rw-r--r--default_images/res/commandimagelist/sc_moduledialog.pngbin0 -> 384 bytes-rw-r--r--default_images/res/commandimagelist/sc_morecontrols.pngbin0 -> 361 bytes-rw-r--r--default_images/res/commandimagelist/sc_movedown.pngbin0 -> 314 bytes-rw-r--r--default_images/res/commandimagelist/sc_movedownsubitems.pngbin0 -> 434 bytes-rw-r--r--default_images/res/commandimagelist/sc_moveup.pngbin0 -> 313 bytes-rw-r--r--default_images/res/commandimagelist/sc_moveupsubitems.pngbin0 -> 432 bytes-rw-r--r--default_images/res/commandimagelist/sc_navigationbar.pngbin0 -> 553 bytes-rw-r--r--default_images/res/commandimagelist/sc_navigator.pngbin0 -> 715 bytes-rw-r--r--default_images/res/commandimagelist/sc_newarrangement.pngbin0 -> 365 bytes-rw-r--r--default_images/res/commandimagelist/sc_newdoc.pngbin0 -> 350 bytes-rw-r--r--default_images/res/commandimagelist/sc_newrecord.pngbin0 -> 367 bytes-rw-r--r--default_images/res/commandimagelist/sc_nextannotation.pngbin0 -> 491 bytes-rw-r--r--default_images/res/commandimagelist/sc_nextpage.pngbin0 -> 475 bytes-rw-r--r--default_images/res/commandimagelist/sc_nextrecord.pngbin0 -> 264 bytes-rw-r--r--default_images/res/commandimagelist/sc_no.pngbin0 -> 875 bytes-rw-r--r--default_images/res/commandimagelist/sc_numberformatcurrency.pngbin0 -> 455 bytes-rw-r--r--default_images/res/commandimagelist/sc_numberformatdate.pngbin0 -> 404 bytes-rw-r--r--default_images/res/commandimagelist/sc_numberformatdecdecimals.pngbin0 -> 461 bytes-rw-r--r--default_images/res/commandimagelist/sc_numberformatdecimal.pngbin0 -> 255 bytes-rw-r--r--default_images/res/commandimagelist/sc_numberformatincdecimals.pngbin0 -> 350 bytes-rw-r--r--default_images/res/commandimagelist/sc_numberformatpercent.pngbin0 -> 281 bytes-rw-r--r--default_images/res/commandimagelist/sc_numberformatscientific.pngbin0 -> 223 bytes-rw-r--r--default_images/res/commandimagelist/sc_numberformatstandard.pngbin0 -> 392 bytes-rw-r--r--default_images/res/commandimagelist/sc_numberingstart.pngbin0 -> 479 bytes-rw-r--r--default_images/res/commandimagelist/sc_numericfield.pngbin0 -> 220 bytes-rw-r--r--default_images/res/commandimagelist/sc_objectalign.pngbin0 -> 435 bytes-rw-r--r--default_images/res/commandimagelist/sc_objectalignleft.pngbin0 -> 435 bytes-rw-r--r--default_images/res/commandimagelist/sc_objectalignright.pngbin0 -> 433 bytes-rw-r--r--default_images/res/commandimagelist/sc_objectcatalog.pngbin0 -> 517 bytes-rw-r--r--default_images/res/commandimagelist/sc_objectposition.pngbin0 -> 288 bytes-rw-r--r--default_images/res/commandimagelist/sc_objects3dtoolbox.pngbin0 -> 424 bytes-rw-r--r--default_images/res/commandimagelist/sc_ok.pngbin0 -> 436 bytes-rw-r--r--default_images/res/commandimagelist/sc_open.pngbin0 -> 437 bytes-rw-r--r--default_images/res/commandimagelist/sc_open_h.pngbin0 -> 133 bytes-rw-r--r--default_images/res/commandimagelist/sc_openreadonly.pngbin0 -> 539 bytes-rw-r--r--default_images/res/commandimagelist/sc_openurl.pngbin0 -> 556 bytes-rw-r--r--default_images/res/commandimagelist/sc_optimizetable.pngbin0 -> 372 bytes-rw-r--r--default_images/res/commandimagelist/sc_ordercrit.pngbin0 -> 234 bytes-rw-r--r--default_images/res/commandimagelist/sc_outlinebullet.pngbin0 -> 393 bytes-rw-r--r--default_images/res/commandimagelist/sc_outlinecollapse.pngbin0 -> 315 bytes-rw-r--r--default_images/res/commandimagelist/sc_outlinecollapseall.pngbin0 -> 320 bytes-rw-r--r--default_images/res/commandimagelist/sc_outlinedown.pngbin0 -> 314 bytes-rw-r--r--default_images/res/commandimagelist/sc_outlineexpand.pngbin0 -> 320 bytes-rw-r--r--default_images/res/commandimagelist/sc_outlineexpandall.pngbin0 -> 322 bytes-rw-r--r--default_images/res/commandimagelist/sc_outlinefont.pngbin0 -> 440 bytes-rw-r--r--default_images/res/commandimagelist/sc_outlineformat.pngbin0 -> 521 bytes-rw-r--r--default_images/res/commandimagelist/sc_outlineleft.pngbin0 -> 284 bytes-rw-r--r--default_images/res/commandimagelist/sc_outlineright.pngbin0 -> 280 bytes-rw-r--r--default_images/res/commandimagelist/sc_outlineup.pngbin0 -> 313 bytes-rw-r--r--default_images/res/commandimagelist/sc_overline.pngbin0 -> 232 bytes-rw-r--r--default_images/res/commandimagelist/sc_pagedown.pngbin0 -> 475 bytes-rw-r--r--default_images/res/commandimagelist/sc_pageup.pngbin0 -> 489 bytes-rw-r--r--default_images/res/commandimagelist/sc_paragraphdialog.pngbin0 -> 429 bytes-rw-r--r--default_images/res/commandimagelist/sc_paralefttoright.pngbin0 -> 406 bytes-rw-r--r--default_images/res/commandimagelist/sc_pararighttoleft.pngbin0 -> 392 bytes-rw-r--r--default_images/res/commandimagelist/sc_paraspacedecrease.pngbin0 -> 305 bytes-rw-r--r--default_images/res/commandimagelist/sc_paraspaceincrease.pngbin0 -> 305 bytes-rw-r--r--default_images/res/commandimagelist/sc_paste.pngbin0 -> 552 bytes-rw-r--r--default_images/res/commandimagelist/sc_patternfield.pngbin0 -> 312 bytes-rw-r--r--default_images/res/commandimagelist/sc_pickthrough.pngbin0 -> 521 bytes-rw-r--r--default_images/res/commandimagelist/sc_pie.pngbin0 -> 452 bytes-rw-r--r--default_images/res/commandimagelist/sc_pie_unfilled.pngbin0 -> 533 bytes-rw-r--r--default_images/res/commandimagelist/sc_playmacro.pngbin0 -> 202 bytes-rw-r--r--default_images/res/commandimagelist/sc_pluginsactive.pngbin0 -> 470 bytes-rw-r--r--default_images/res/commandimagelist/sc_polygon.pngbin0 -> 411 bytes-rw-r--r--default_images/res/commandimagelist/sc_polygon_diagonal.pngbin0 -> 275 bytes-rw-r--r--default_images/res/commandimagelist/sc_polygon_diagonal_unfilled.pngbin0 -> 292 bytes-rw-r--r--default_images/res/commandimagelist/sc_polygon_unfilled.pngbin0 -> 416 bytes-rw-r--r--default_images/res/commandimagelist/sc_position.pngbin0 -> 102 bytes-rw-r--r--default_images/res/commandimagelist/sc_presentation.pngbin0 -> 451 bytes-rw-r--r--default_images/res/commandimagelist/sc_presentationlayout.pngbin0 -> 505 bytes-rw-r--r--default_images/res/commandimagelist/sc_preview.pngbin0 -> 202 bytes-rw-r--r--default_images/res/commandimagelist/sc_previewprintoptions.pngbin0 -> 544 bytes-rw-r--r--default_images/res/commandimagelist/sc_previewzoom.pngbin0 -> 523 bytes-rw-r--r--default_images/res/commandimagelist/sc_previousannotation.pngbin0 -> 510 bytes-rw-r--r--default_images/res/commandimagelist/sc_previouspage.pngbin0 -> 489 bytes-rw-r--r--default_images/res/commandimagelist/sc_prevrecord.pngbin0 -> 272 bytes-rw-r--r--default_images/res/commandimagelist/sc_print.pngbin0 -> 346 bytes-rw-r--r--default_images/res/commandimagelist/sc_printdefault.pngbin0 -> 346 bytes-rw-r--r--default_images/res/commandimagelist/sc_printersetup.pngbin0 -> 544 bytes-rw-r--r--default_images/res/commandimagelist/sc_printlayout.pngbin0 -> 471 bytes-rw-r--r--default_images/res/commandimagelist/sc_printpagepreview.pngbin0 -> 380 bytes-rw-r--r--default_images/res/commandimagelist/sc_printpreview.pngbin0 -> 602 bytes-rw-r--r--default_images/res/commandimagelist/sc_progressbar.pngbin0 -> 254 bytes-rw-r--r--default_images/res/commandimagelist/sc_pushbutton.pngbin0 -> 397 bytes-rw-r--r--default_images/res/commandimagelist/sc_quickedit.pngbin0 -> 433 bytes-rw-r--r--default_images/res/commandimagelist/sc_quit.pngbin0 -> 400 bytes-rw-r--r--default_images/res/commandimagelist/sc_radiobutton.pngbin0 -> 358 bytes-rw-r--r--default_images/res/commandimagelist/sc_recsave.pngbin0 -> 518 bytes-rw-r--r--default_images/res/commandimagelist/sc_recsearch.pngbin0 -> 278 bytes-rw-r--r--default_images/res/commandimagelist/sc_rect.pngbin0 -> 213 bytes-rw-r--r--default_images/res/commandimagelist/sc_rect_rounded.pngbin0 -> 358 bytes-rw-r--r--default_images/res/commandimagelist/sc_rect_rounded_unfilled.pngbin0 -> 314 bytes-rw-r--r--default_images/res/commandimagelist/sc_rect_unfilled.pngbin0 -> 219 bytes-rw-r--r--default_images/res/commandimagelist/sc_rectangletoolbox.pngbin0 -> 213 bytes-rw-r--r--default_images/res/commandimagelist/sc_recundo.pngbin0 -> 712 bytes-rw-r--r--default_images/res/commandimagelist/sc_redo.pngbin0 -> 602 bytes-rw-r--r--default_images/res/commandimagelist/sc_refresh.pngbin0 -> 583 bytes-rw-r--r--default_images/res/commandimagelist/sc_refreshformcontrol.pngbin0 -> 581 bytes-rw-r--r--default_images/res/commandimagelist/sc_rehearsetimings.pngbin0 -> 689 bytes-rw-r--r--default_images/res/commandimagelist/sc_reload.pngbin0 -> 583 bytes-rw-r--r--default_images/res/commandimagelist/sc_removebullets.pngbin0 -> 141 bytes-rw-r--r--default_images/res/commandimagelist/sc_removefilter.pngbin0 -> 392 bytes-rw-r--r--default_images/res/commandimagelist/sc_removefiltersort.pngbin0 -> 392 bytes-rw-r--r--default_images/res/commandimagelist/sc_renamemasterpage.pngbin0 -> 443 bytes-rw-r--r--default_images/res/commandimagelist/sc_repeat.pngbin0 -> 609 bytes-rw-r--r--default_images/res/commandimagelist/sc_reportnavigator.pngbin0 -> 676 bytes-rw-r--r--default_images/res/commandimagelist/sc_reverseorder.pngbin0 -> 500 bytes-rw-r--r--default_images/res/commandimagelist/sc_rightpara.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/sc_rulerrows.pngbin0 -> 715 bytes-rw-r--r--default_images/res/commandimagelist/sc_rulerrowsvertical.pngbin0 -> 709 bytes-rw-r--r--default_images/res/commandimagelist/sc_runbasic.pngbin0 -> 534 bytes-rw-r--r--default_images/res/commandimagelist/sc_save.pngbin0 -> 366 bytes-rw-r--r--default_images/res/commandimagelist/sc_saveas.pngbin0 -> 402 bytes-rw-r--r--default_images/res/commandimagelist/sc_saveastemplate.pngbin0 -> 558 bytes-rw-r--r--default_images/res/commandimagelist/sc_savebasicas.pngbin0 -> 513 bytes-rw-r--r--default_images/res/commandimagelist/sc_sbabrwinsert.pngbin0 -> 290 bytes-rw-r--r--default_images/res/commandimagelist/sc_sbaexecutesql.pngbin0 -> 585 bytes-rw-r--r--default_images/res/commandimagelist/sc_sbanativesql.pngbin0 -> 386 bytes-rw-r--r--default_images/res/commandimagelist/sc_scaletext.pngbin0 -> 546 bytes-rw-r--r--default_images/res/commandimagelist/sc_scrollbar.pngbin0 -> 390 bytes-rw-r--r--default_images/res/commandimagelist/sc_searchdialog.pngbin0 -> 278 bytes-rw-r--r--default_images/res/commandimagelist/sc_sectionalignbottom.pngbin0 -> 354 bytes-rw-r--r--default_images/res/commandimagelist/sc_sectionalignleft.pngbin0 -> 449 bytes-rw-r--r--default_images/res/commandimagelist/sc_sectionalignright.pngbin0 -> 451 bytes-rw-r--r--default_images/res/commandimagelist/sc_sectionaligntop.pngbin0 -> 356 bytes-rw-r--r--default_images/res/commandimagelist/sc_sectionshrink.pngbin0 -> 369 bytes-rw-r--r--default_images/res/commandimagelist/sc_sectionshrinkbottom.pngbin0 -> 290 bytes-rw-r--r--default_images/res/commandimagelist/sc_sectionshrinktop.pngbin0 -> 296 bytes-rw-r--r--default_images/res/commandimagelist/sc_selectall.pngbin0 -> 410 bytes-rw-r--r--default_images/res/commandimagelist/sc_selectmode.pngbin0 -> 361 bytes-rw-r--r--default_images/res/commandimagelist/sc_selectobject.pngbin0 -> 361 bytes-rw-r--r--default_images/res/commandimagelist/sc_selecttable.pngbin0 -> 395 bytes-rw-r--r--default_images/res/commandimagelist/sc_sendfax.pngbin0 -> 457 bytes-rw-r--r--default_images/res/commandimagelist/sc_sendmail.pngbin0 -> 323 bytes-rw-r--r--default_images/res/commandimagelist/sc_sendtoback.pngbin0 -> 306 bytes-rw-r--r--default_images/res/commandimagelist/sc_setborderstyle.pngbin0 -> 188 bytes-rw-r--r--default_images/res/commandimagelist/sc_setdocumentproperties.pngbin0 -> 500 bytes-rw-r--r--default_images/res/commandimagelist/sc_setobjecttobackground.pngbin0 -> 396 bytes-rw-r--r--default_images/res/commandimagelist/sc_setobjecttoforeground.pngbin0 -> 388 bytes-rw-r--r--default_images/res/commandimagelist/sc_setoptimalcolumnwidth.pngbin0 -> 268 bytes-rw-r--r--default_images/res/commandimagelist/sc_setoptimalcolumnwidthdirect.pngbin0 -> 268 bytes-rw-r--r--default_images/res/commandimagelist/sc_setoptimalrowheight.pngbin0 -> 218 bytes-rw-r--r--default_images/res/commandimagelist/sc_shadowcursor.pngbin0 -> 310 bytes-rw-r--r--default_images/res/commandimagelist/sc_shadowed.pngbin0 -> 376 bytes-rw-r--r--default_images/res/commandimagelist/sc_shear.pngbin0 -> 235 bytes-rw-r--r--default_images/res/commandimagelist/sc_shell3d.pngbin0 -> 619 bytes-rw-r--r--default_images/res/commandimagelist/sc_showannotation.pngbin0 -> 382 bytes-rw-r--r--default_images/res/commandimagelist/sc_showbookview.pngbin0 -> 317 bytes-rw-r--r--default_images/res/commandimagelist/sc_showbrowser.pngbin0 -> 503 bytes-rw-r--r--default_images/res/commandimagelist/sc_showdatanavigator.pngbin0 -> 428 bytes-rw-r--r--default_images/res/commandimagelist/sc_showfmexplorer.pngbin0 -> 619 bytes-rw-r--r--default_images/res/commandimagelist/sc_showmultiplepages.pngbin0 -> 230 bytes-rw-r--r--default_images/res/commandimagelist/sc_showpropbrowser.pngbin0 -> 503 bytes-rw-r--r--default_images/res/commandimagelist/sc_showslide.pngbin0 -> 417 bytes-rw-r--r--default_images/res/commandimagelist/sc_showtwopages.pngbin0 -> 293 bytes-rw-r--r--default_images/res/commandimagelist/sc_shrink.pngbin0 -> 512 bytes-rw-r--r--default_images/res/commandimagelist/sc_size.pngbin0 -> 106 bytes-rw-r--r--default_images/res/commandimagelist/sc_smallestheight.pngbin0 -> 385 bytes-rw-r--r--default_images/res/commandimagelist/sc_smallestwidth.pngbin0 -> 370 bytes-rw-r--r--default_images/res/commandimagelist/sc_snapborder.pngbin0 -> 458 bytes-rw-r--r--default_images/res/commandimagelist/sc_snapframe.pngbin0 -> 318 bytes-rw-r--r--default_images/res/commandimagelist/sc_snappoints.pngbin0 -> 294 bytes-rw-r--r--default_images/res/commandimagelist/sc_solidcreate.pngbin0 -> 372 bytes-rw-r--r--default_images/res/commandimagelist/sc_sortascending.pngbin0 -> 394 bytes-rw-r--r--default_images/res/commandimagelist/sc_sortdescending.pngbin0 -> 405 bytes-rw-r--r--default_images/res/commandimagelist/sc_sortdown.pngbin0 -> 405 bytes-rw-r--r--default_images/res/commandimagelist/sc_sortup.pngbin0 -> 394 bytes-rw-r--r--default_images/res/commandimagelist/sc_sourceview.pngbin0 -> 399 bytes-rw-r--r--default_images/res/commandimagelist/sc_spacepara1.pngbin0 -> 130 bytes-rw-r--r--default_images/res/commandimagelist/sc_spacepara15.pngbin0 -> 133 bytes-rw-r--r--default_images/res/commandimagelist/sc_spacepara2.pngbin0 -> 124 bytes-rw-r--r--default_images/res/commandimagelist/sc_spelldialog.pngbin0 -> 353 bytes-rw-r--r--default_images/res/commandimagelist/sc_spelling.pngbin0 -> 353 bytes-rw-r--r--default_images/res/commandimagelist/sc_spellingandgrammardialog.pngbin0 -> 353 bytes-rw-r--r--default_images/res/commandimagelist/sc_spellonline.pngbin0 -> 265 bytes-rw-r--r--default_images/res/commandimagelist/sc_sphere.pngbin0 -> 676 bytes-rw-r--r--default_images/res/commandimagelist/sc_spinbutton.pngbin0 -> 381 bytes-rw-r--r--default_images/res/commandimagelist/sc_splitcell.pngbin0 -> 259 bytes-rw-r--r--default_images/res/commandimagelist/sc_splithorizontal.pngbin0 -> 202 bytes-rw-r--r--default_images/res/commandimagelist/sc_splitparenthorizontal.pngbin0 -> 202 bytes-rw-r--r--default_images/res/commandimagelist/sc_splitparentvertical.pngbin0 -> 202 bytes-rw-r--r--default_images/res/commandimagelist/sc_splitvertical.pngbin0 -> 202 bytes-rw-r--r--default_images/res/commandimagelist/sc_square.pngbin0 -> 250 bytes-rw-r--r--default_images/res/commandimagelist/sc_square_rounded.pngbin0 -> 420 bytes-rw-r--r--default_images/res/commandimagelist/sc_square_rounded_unfilled.pngbin0 -> 362 bytes-rw-r--r--default_images/res/commandimagelist/sc_square_unfilled.pngbin0 -> 265 bytes-rw-r--r--default_images/res/commandimagelist/sc_starchartdialog.pngbin0 -> 360 bytes-rw-r--r--default_images/res/commandimagelist/sc_starshapes.bang.pngbin0 -> 539 bytes-rw-r--r--default_images/res/commandimagelist/sc_starshapes.concave-star6.pngbin0 -> 514 bytes-rw-r--r--default_images/res/commandimagelist/sc_starshapes.doorplate.pngbin0 -> 428 bytes-rw-r--r--default_images/res/commandimagelist/sc_starshapes.horizontal-scroll.pngbin0 -> 377 bytes-rw-r--r--default_images/res/commandimagelist/sc_starshapes.pngbin0 -> 367 bytes-rw-r--r--default_images/res/commandimagelist/sc_starshapes.signet.pngbin0 -> 500 bytes-rw-r--r--default_images/res/commandimagelist/sc_starshapes.star12.pngbin0 -> 574 bytes-rw-r--r--default_images/res/commandimagelist/sc_starshapes.star24.pngbin0 -> 703 bytes-rw-r--r--default_images/res/commandimagelist/sc_starshapes.star4.pngbin0 -> 343 bytes-rw-r--r--default_images/res/commandimagelist/sc_starshapes.star5.pngbin0 -> 367 bytes-rw-r--r--default_images/res/commandimagelist/sc_starshapes.star6.pngbin0 -> 451 bytes-rw-r--r--default_images/res/commandimagelist/sc_starshapes.star8.pngbin0 -> 468 bytes-rw-r--r--default_images/res/commandimagelist/sc_starshapes.vertical-scroll.pngbin0 -> 374 bytes-rw-r--r--default_images/res/commandimagelist/sc_strikeout.pngbin0 -> 225 bytes-rw-r--r--default_images/res/commandimagelist/sc_styleapply.pngbin0 -> 548 bytes-rw-r--r--default_images/res/commandimagelist/sc_stylenewbyexample.pngbin0 -> 427 bytes-rw-r--r--default_images/res/commandimagelist/sc_styleupdatebyexample.pngbin0 -> 542 bytes-rw-r--r--default_images/res/commandimagelist/sc_stylewatercanmode.pngbin0 -> 548 bytes-rw-r--r--default_images/res/commandimagelist/sc_subscript.pngbin0 -> 633 bytes-rw-r--r--default_images/res/commandimagelist/sc_superscript.pngbin0 -> 639 bytes-rw-r--r--default_images/res/commandimagelist/sc_switchcontroldesignmode.pngbin0 -> 435 bytes-rw-r--r--default_images/res/commandimagelist/sc_switchxformsdesignmode.pngbin0 -> 435 bytes-rw-r--r--default_images/res/commandimagelist/sc_symbolcatalogue.pngbin0 -> 329 bytes-rw-r--r--default_images/res/commandimagelist/sc_symbolshapes.brace-pair.pngbin0 -> 461 bytes-rw-r--r--default_images/res/commandimagelist/sc_symbolshapes.bracket-pair.pngbin0 -> 415 bytes-rw-r--r--default_images/res/commandimagelist/sc_symbolshapes.cloud.pngbin0 -> 639 bytes-rw-r--r--default_images/res/commandimagelist/sc_symbolshapes.diamond-bevel.pngbin0 -> 395 bytes-rw-r--r--default_images/res/commandimagelist/sc_symbolshapes.flower.pngbin0 -> 555 bytes-rw-r--r--default_images/res/commandimagelist/sc_symbolshapes.forbidden.pngbin0 -> 718 bytes-rw-r--r--default_images/res/commandimagelist/sc_symbolshapes.heart.pngbin0 -> 651 bytes-rw-r--r--default_images/res/commandimagelist/sc_symbolshapes.left-brace.pngbin0 -> 365 bytes-rw-r--r--default_images/res/commandimagelist/sc_symbolshapes.left-bracket.pngbin0 -> 327 bytes-rw-r--r--default_images/res/commandimagelist/sc_symbolshapes.lightning.pngbin0 -> 412 bytes-rw-r--r--default_images/res/commandimagelist/sc_symbolshapes.moon.pngbin0 -> 593 bytes-rw-r--r--default_images/res/commandimagelist/sc_symbolshapes.octagon-bevel.pngbin0 -> 470 bytes-rw-r--r--default_images/res/commandimagelist/sc_symbolshapes.pngbin0 -> 726 bytes-rw-r--r--default_images/res/commandimagelist/sc_symbolshapes.puzzle.pngbin0 -> 576 bytes-rw-r--r--default_images/res/commandimagelist/sc_symbolshapes.quad-bevel.pngbin0 -> 341 bytes-rw-r--r--default_images/res/commandimagelist/sc_symbolshapes.right-brace.pngbin0 -> 362 bytes-rw-r--r--default_images/res/commandimagelist/sc_symbolshapes.right-bracket.pngbin0 -> 327 bytes-rw-r--r--default_images/res/commandimagelist/sc_symbolshapes.smiley.pngbin0 -> 726 bytes-rw-r--r--default_images/res/commandimagelist/sc_symbolshapes.sun.pngbin0 -> 428 bytes-rw-r--r--default_images/res/commandimagelist/sc_tabdialog.pngbin0 -> 514 bytes-rw-r--r--default_images/res/commandimagelist/sc_tabledesign.pngbin0 -> 403 bytes-rw-r--r--default_images/res/commandimagelist/sc_tabledialog.pngbin0 -> 443 bytes-rw-r--r--default_images/res/commandimagelist/sc_tablemodefix.pngbin0 -> 243 bytes-rw-r--r--default_images/res/commandimagelist/sc_tablemodefixprop.pngbin0 -> 260 bytes-rw-r--r--default_images/res/commandimagelist/sc_tablemodevariable.pngbin0 -> 263 bytes-rw-r--r--default_images/res/commandimagelist/sc_tablesort.pngbin0 -> 234 bytes-rw-r--r--default_images/res/commandimagelist/sc_testmode.pngbin0 -> 435 bytes-rw-r--r--default_images/res/commandimagelist/sc_text.pngbin0 -> 291 bytes-rw-r--r--default_images/res/commandimagelist/sc_text_marquee.pngbin0 -> 364 bytes-rw-r--r--default_images/res/commandimagelist/sc_textdirectionlefttoright.pngbin0 -> 319 bytes-rw-r--r--default_images/res/commandimagelist/sc_textdirectiontoptobottom.pngbin0 -> 329 bytes-rw-r--r--default_images/res/commandimagelist/sc_textfittosizetool.pngbin0 -> 480 bytes-rw-r--r--default_images/res/commandimagelist/sc_texttoolbox.pngbin0 -> 291 bytes-rw-r--r--default_images/res/commandimagelist/sc_thesaurus.pngbin0 -> 492 bytes-rw-r--r--default_images/res/commandimagelist/sc_thesaurusdialog.pngbin0 -> 492 bytes-rw-r--r--default_images/res/commandimagelist/sc_timefield.pngbin0 -> 564 bytes-rw-r--r--default_images/res/commandimagelist/sc_toggleanchortype.pngbin0 -> 370 bytes-rw-r--r--default_images/res/commandimagelist/sc_toggleaxisdescr.pngbin0 -> 197 bytes-rw-r--r--default_images/res/commandimagelist/sc_toggleaxistitle.pngbin0 -> 378 bytes-rw-r--r--default_images/res/commandimagelist/sc_togglebreakpoint.pngbin0 -> 517 bytes-rw-r--r--default_images/res/commandimagelist/sc_togglegridhorizontal.pngbin0 -> 271 bytes-rw-r--r--default_images/res/commandimagelist/sc_togglegridvertical.pngbin0 -> 322 bytes-rw-r--r--default_images/res/commandimagelist/sc_togglelegend.pngbin0 -> 376 bytes-rw-r--r--default_images/res/commandimagelist/sc_togglemergecells.pngbin0 -> 257 bytes-rw-r--r--default_images/res/commandimagelist/sc_toggleobjectbeziermode.pngbin0 -> 248 bytes-rw-r--r--default_images/res/commandimagelist/sc_toggleobjectrotatemode.pngbin0 -> 599 bytes-rw-r--r--default_images/res/commandimagelist/sc_togglesheetgrid.pngbin0 -> 381 bytes-rw-r--r--default_images/res/commandimagelist/sc_toggletitle.pngbin0 -> 338 bytes-rw-r--r--default_images/res/commandimagelist/sc_toolsmacroedit.pngbin0 -> 202 bytes-rw-r--r--default_images/res/commandimagelist/sc_toolsoptions.pngbin0 -> 202 bytes-rw-r--r--default_images/res/commandimagelist/sc_torus.pngbin0 -> 510 bytes-rw-r--r--default_images/res/commandimagelist/sc_transformdialog.pngbin0 -> 581 bytes-rw-r--r--default_images/res/commandimagelist/sc_underline.pngbin0 -> 250 bytes-rw-r--r--default_images/res/commandimagelist/sc_underlinedouble.pngbin0 -> 252 bytes-rw-r--r--default_images/res/commandimagelist/sc_undo.pngbin0 -> 599 bytes-rw-r--r--default_images/res/commandimagelist/sc_ungroup.pngbin0 -> 281 bytes-rw-r--r--default_images/res/commandimagelist/sc_unhainframes.pngbin0 -> 409 bytes-rw-r--r--default_images/res/commandimagelist/sc_upsearch.pngbin0 -> 336 bytes-rw-r--r--default_images/res/commandimagelist/sc_urlbutton.pngbin0 -> 202 bytes-rw-r--r--default_images/res/commandimagelist/sc_usewizards.pngbin0 -> 442 bytes-rw-r--r--default_images/res/commandimagelist/sc_verticalcaption.pngbin0 -> 593 bytes-rw-r--r--default_images/res/commandimagelist/sc_verticaltext.pngbin0 -> 268 bytes-rw-r--r--default_images/res/commandimagelist/sc_verticaltextfittosizetool.pngbin0 -> 630 bytes-rw-r--r--default_images/res/commandimagelist/sc_vfixedline.pngbin0 -> 205 bytes-rw-r--r--default_images/res/commandimagelist/sc_view100.pngbin0 -> 551 bytes-rw-r--r--default_images/res/commandimagelist/sc_viewdatasourcebrowser.pngbin0 -> 763 bytes-rw-r--r--default_images/res/commandimagelist/sc_viewformasgrid.pngbin0 -> 391 bytes-rw-r--r--default_images/res/commandimagelist/sc_vscrollbar.pngbin0 -> 390 bytes-rw-r--r--default_images/res/commandimagelist/sc_window3d.pngbin0 -> 156 bytes-rw-r--r--default_images/res/commandimagelist/sc_wrapcontour.pngbin0 -> 150 bytes-rw-r--r--default_images/res/commandimagelist/sc_wrapideal.pngbin0 -> 264 bytes-rw-r--r--default_images/res/commandimagelist/sc_wrapleft.pngbin0 -> 148 bytes-rw-r--r--default_images/res/commandimagelist/sc_wrapoff.pngbin0 -> 146 bytes-rw-r--r--default_images/res/commandimagelist/sc_wrapon.pngbin0 -> 150 bytes-rw-r--r--default_images/res/commandimagelist/sc_wrapright.pngbin0 -> 148 bytes-rw-r--r--default_images/res/commandimagelist/sc_wrapthrough.pngbin0 -> 153 bytes-rw-r--r--default_images/res/commandimagelist/sc_xlinecolor.pngbin0 -> 302 bytes-rw-r--r--default_images/res/commandimagelist/sc_xlinestyle.pngbin0 -> 302 bytes-rw-r--r--default_images/res/commandimagelist/sc_yes.pngbin0 -> 874 bytes-rw-r--r--default_images/res/commandimagelist/sc_zoom.pngbin0 -> 523 bytes-rw-r--r--default_images/res/commandimagelist/sc_zoom100percent.pngbin0 -> 551 bytes-rw-r--r--default_images/res/commandimagelist/sc_zoomin.pngbin0 -> 544 bytes-rw-r--r--default_images/res/commandimagelist/sc_zoomminus.pngbin0 -> 528 bytes-rw-r--r--default_images/res/commandimagelist/sc_zoomnext.pngbin0 -> 708 bytes-rw-r--r--default_images/res/commandimagelist/sc_zoomobjects.pngbin0 -> 551 bytes-rw-r--r--default_images/res/commandimagelist/sc_zoomoptimal.pngbin0 -> 546 bytes-rw-r--r--default_images/res/commandimagelist/sc_zoomout.pngbin0 -> 528 bytes-rw-r--r--default_images/res/commandimagelist/sc_zoompage.pngbin0 -> 602 bytes-rw-r--r--default_images/res/commandimagelist/sc_zoompagewidth.pngbin0 -> 631 bytes-rw-r--r--default_images/res/commandimagelist/sc_zoompanning.pngbin0 -> 629 bytes-rw-r--r--default_images/res/commandimagelist/sc_zoomplus.pngbin0 -> 544 bytes-rw-r--r--default_images/res/commandimagelist/sc_zoomprevious.pngbin0 -> 669 bytes-rw-r--r--default_images/res/commandimagelist/sc_zoomtoolbox.pngbin0 -> 523 bytes-rw-r--r--default_images/res/commandimagelist/sch_absoluterecord.pngbin0 -> 138 bytes-rw-r--r--default_images/res/commandimagelist/sch_actionmode.pngbin0 -> 172 bytes-rw-r--r--default_images/res/commandimagelist/sch_addbookmark.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_adddatefield.pngbin0 -> 118 bytes-rw-r--r--default_images/res/commandimagelist/sch_adddirect.pngbin0 -> 108 bytes-rw-r--r--default_images/res/commandimagelist/sch_addfield.pngbin0 -> 116 bytes-rw-r--r--default_images/res/commandimagelist/sch_addons.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/sch_addprintarea.pngbin0 -> 151 bytes-rw-r--r--default_images/res/commandimagelist/sch_addtable.pngbin0 -> 136 bytes-rw-r--r--default_images/res/commandimagelist/sch_addwatch.pngbin0 -> 128 bytes-rw-r--r--default_images/res/commandimagelist/sch_adjust.pngbin0 -> 129 bytes-rw-r--r--default_images/res/commandimagelist/sch_advancedmode.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/sch_alignblock.pngbin0 -> 78 bytes-rw-r--r--default_images/res/commandimagelist/sch_alignbottom.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_aligncenter.pngbin0 -> 153 bytes-rw-r--r--default_images/res/commandimagelist/sch_aligndown.pngbin0 -> 140 bytes-rw-r--r--default_images/res/commandimagelist/sch_alignhorizontalcenter.pngbin0 -> 79 bytes-rw-r--r--default_images/res/commandimagelist/sch_alignleft.pngbin0 -> 79 bytes-rw-r--r--default_images/res/commandimagelist/sch_alignmiddle.pngbin0 -> 153 bytes-rw-r--r--default_images/res/commandimagelist/sch_alignright.pngbin0 -> 79 bytes-rw-r--r--default_images/res/commandimagelist/sch_aligntop.pngbin0 -> 128 bytes-rw-r--r--default_images/res/commandimagelist/sch_alignup.pngbin0 -> 143 bytes-rw-r--r--default_images/res/commandimagelist/sch_alignvcenter.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/sch_alignverticalcenter.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/sch_animationeffects.pngbin0 -> 168 bytes-rw-r--r--default_images/res/commandimagelist/sch_animationmode.pngbin0 -> 175 bytes-rw-r--r--default_images/res/commandimagelist/sch_animationobjects.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_arc.pngbin0 -> 108 bytes-rw-r--r--default_images/res/commandimagelist/sch_arrowshapes.chevron.pngbin0 -> 109 bytes-rw-r--r--default_images/res/commandimagelist/sch_arrowshapes.circular-arrow.pngbin0 -> 157 bytes-rw-r--r--default_images/res/commandimagelist/sch_arrowshapes.corner-right-arrow.pngbin0 -> 128 bytes-rw-r--r--default_images/res/commandimagelist/sch_arrowshapes.down-arrow-callout.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/sch_arrowshapes.down-arrow.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_arrowshapes.left-arrow-callout.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/sch_arrowshapes.left-arrow.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/sch_arrowshapes.left-right-arrow-callout.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/sch_arrowshapes.left-right-arrow.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/sch_arrowshapes.notched-right-arrow.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_arrowshapes.pentagon-right.pngbin0 -> 118 bytes-rw-r--r--default_images/res/commandimagelist/sch_arrowshapes.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/sch_arrowshapes.quad-arrow-callout.pngbin0 -> 145 bytes-rw-r--r--default_images/res/commandimagelist/sch_arrowshapes.quad-arrow.pngbin0 -> 145 bytes-rw-r--r--default_images/res/commandimagelist/sch_arrowshapes.right-arrow-callout.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/sch_arrowshapes.right-arrow.pngbin0 -> 126 bytes-rw-r--r--default_images/res/commandimagelist/sch_arrowshapes.s-sharped-arrow.pngbin0 -> 152 bytes-rw-r--r--default_images/res/commandimagelist/sch_arrowshapes.split-arrow.pngbin0 -> 140 bytes-rw-r--r--default_images/res/commandimagelist/sch_arrowshapes.split-round-arrow.pngbin0 -> 160 bytes-rw-r--r--default_images/res/commandimagelist/sch_arrowshapes.striped-right-arrow.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/sch_arrowshapes.up-arrow-callout.pngbin0 -> 131 bytes-rw-r--r--default_images/res/commandimagelist/sch_arrowshapes.up-arrow.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/sch_arrowshapes.up-down-arrow-callout.pngbin0 -> 141 bytes-rw-r--r--default_images/res/commandimagelist/sch_arrowshapes.up-down-arrow.pngbin0 -> 129 bytes-rw-r--r--default_images/res/commandimagelist/sch_arrowshapes.up-right-arrow-callout.pngbin0 -> 158 bytes-rw-r--r--default_images/res/commandimagelist/sch_arrowshapes.up-right-arrow.pngbin0 -> 142 bytes-rw-r--r--default_images/res/commandimagelist/sch_arrowshapes.up-right-down-arrow.pngbin0 -> 137 bytes-rw-r--r--default_images/res/commandimagelist/sch_arrowstoolbox.pngbin0 -> 91 bytes-rw-r--r--default_images/res/commandimagelist/sch_assignlayout.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/sch_autocontrolfocus.pngbin0 -> 120 bytes-rw-r--r--default_images/res/commandimagelist/sch_autofilter.pngbin0 -> 171 bytes-rw-r--r--default_images/res/commandimagelist/sch_autoformat.pngbin0 -> 191 bytes-rw-r--r--default_images/res/commandimagelist/sch_autosum.pngbin0 -> 117 bytes-rw-r--r--default_images/res/commandimagelist/sch_avmediaplayer.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/sch_backcolor.pngbin0 -> 177 bytes-rw-r--r--default_images/res/commandimagelist/sch_backgroundcolor.pngbin0 -> 166 bytes-rw-r--r--default_images/res/commandimagelist/sch_backgroundpatterncontroller.pngbin0 -> 167 bytes-rw-r--r--default_images/res/commandimagelist/sch_backward.pngbin0 -> 115 bytes-rw-r--r--default_images/res/commandimagelist/sch_basicshapes.block-arc.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_basicshapes.can.pngbin0 -> 129 bytes-rw-r--r--default_images/res/commandimagelist/sch_basicshapes.circle-pie.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/sch_basicshapes.circle.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/sch_basicshapes.cross.pngbin0 -> 104 bytes-rw-r--r--default_images/res/commandimagelist/sch_basicshapes.cube.pngbin0 -> 133 bytes-rw-r--r--default_images/res/commandimagelist/sch_basicshapes.diamond.pngbin0 -> 126 bytes-rw-r--r--default_images/res/commandimagelist/sch_basicshapes.ellipse.pngbin0 -> 118 bytes-rw-r--r--default_images/res/commandimagelist/sch_basicshapes.frame.pngbin0 -> 103 bytes-rw-r--r--default_images/res/commandimagelist/sch_basicshapes.hexagon.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/sch_basicshapes.isosceles-triangle.pngbin0 -> 131 bytes-rw-r--r--default_images/res/commandimagelist/sch_basicshapes.octagon.pngbin0 -> 124 bytes-rw-r--r--default_images/res/commandimagelist/sch_basicshapes.paper.pngbin0 -> 120 bytes-rw-r--r--default_images/res/commandimagelist/sch_basicshapes.parallelogram.pngbin0 -> 111 bytes-rw-r--r--default_images/res/commandimagelist/sch_basicshapes.pentagon.pngbin0 -> 141 bytes-rw-r--r--default_images/res/commandimagelist/sch_basicshapes.pngbin0 -> 126 bytes-rw-r--r--default_images/res/commandimagelist/sch_basicshapes.quadrat.pngbin0 -> 91 bytes-rw-r--r--default_images/res/commandimagelist/sch_basicshapes.rectangle.pngbin0 -> 89 bytes-rw-r--r--default_images/res/commandimagelist/sch_basicshapes.right-triangle.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/sch_basicshapes.ring.pngbin0 -> 133 bytes-rw-r--r--default_images/res/commandimagelist/sch_basicshapes.round-quadrat.pngbin0 -> 99 bytes-rw-r--r--default_images/res/commandimagelist/sch_basicshapes.round-rectangle.pngbin0 -> 99 bytes-rw-r--r--default_images/res/commandimagelist/sch_basicshapes.trapezoid.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/sch_basicstepinto.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/sch_basicstepout.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/sch_basicstepover.pngbin0 -> 137 bytes-rw-r--r--default_images/res/commandimagelist/sch_basicstop.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/sch_beamer.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_beforeobject.pngbin0 -> 125 bytes-rw-r--r--default_images/res/commandimagelist/sch_behindobject.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/sch_bezier_unfilled.pngbin0 -> 115 bytes-rw-r--r--default_images/res/commandimagelist/sch_bezierappend.pngbin0 -> 138 bytes-rw-r--r--default_images/res/commandimagelist/sch_bezierclose.pngbin0 -> 129 bytes-rw-r--r--default_images/res/commandimagelist/sch_bezierconvert.pngbin0 -> 115 bytes-rw-r--r--default_images/res/commandimagelist/sch_beziercutline.pngbin0 -> 181 bytes-rw-r--r--default_images/res/commandimagelist/sch_bezierdelete.pngbin0 -> 164 bytes-rw-r--r--default_images/res/commandimagelist/sch_bezieredge.pngbin0 -> 114 bytes-rw-r--r--default_images/res/commandimagelist/sch_beziereliminatepoints.pngbin0 -> 148 bytes-rw-r--r--default_images/res/commandimagelist/sch_bezierfill.pngbin0 -> 124 bytes-rw-r--r--default_images/res/commandimagelist/sch_bezierinsert.pngbin0 -> 153 bytes-rw-r--r--default_images/res/commandimagelist/sch_beziermove.pngbin0 -> 145 bytes-rw-r--r--default_images/res/commandimagelist/sch_beziersmooth.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/sch_beziersymmetric.pngbin0 -> 133 bytes-rw-r--r--default_images/res/commandimagelist/sch_bighandles.pngbin0 -> 124 bytes-rw-r--r--default_images/res/commandimagelist/sch_bold.pngbin0 -> 114 bytes-rw-r--r--default_images/res/commandimagelist/sch_borderdialog.pngbin0 -> 82 bytes-rw-r--r--default_images/res/commandimagelist/sch_bringtofront.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/sch_browsebackward.pngbin0 -> 125 bytes-rw-r--r--default_images/res/commandimagelist/sch_browseforward.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/sch_browseview.pngbin0 -> 183 bytes-rw-r--r--default_images/res/commandimagelist/sch_bullet.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_bulletsandnumberingdialog.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/sch_calloutshapes.cloud-callout.pngbin0 -> 154 bytes-rw-r--r--default_images/res/commandimagelist/sch_calloutshapes.line-callout-1.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_calloutshapes.line-callout-2.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/sch_calloutshapes.line-callout-3.pngbin0 -> 99 bytes-rw-r--r--default_images/res/commandimagelist/sch_calloutshapes.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/sch_calloutshapes.rectangular-callout.pngbin0 -> 117 bytes-rw-r--r--default_images/res/commandimagelist/sch_calloutshapes.round-callout.pngbin0 -> 141 bytes-rw-r--r--default_images/res/commandimagelist/sch_calloutshapes.round-rectangular-callout.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/sch_cellvertbottom.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_cellvertcenter.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/sch_cellverttop.pngbin0 -> 128 bytes-rw-r--r--default_images/res/commandimagelist/sch_centerpara.pngbin0 -> 79 bytes-rw-r--r--default_images/res/commandimagelist/sch_chainframes.pngbin0 -> 125 bytes-rw-r--r--default_images/res/commandimagelist/sch_changebezier.pngbin0 -> 120 bytes-rw-r--r--default_images/res/commandimagelist/sch_changecasetolower.pngbin0 -> 131 bytes-rw-r--r--default_images/res/commandimagelist/sch_changecasetoupper.pngbin0 -> 146 bytes-rw-r--r--default_images/res/commandimagelist/sch_changedatabasefield.pngbin0 -> 174 bytes-rw-r--r--default_images/res/commandimagelist/sch_changepolygon.pngbin0 -> 140 bytes-rw-r--r--default_images/res/commandimagelist/sch_charfontname.pngbin0 -> 124 bytes-rw-r--r--default_images/res/commandimagelist/sch_checkbox.pngbin0 -> 130 bytes-rw-r--r--default_images/res/commandimagelist/sch_choosecontrols.pngbin0 -> 156 bytes-rw-r--r--default_images/res/commandimagelist/sch_choosedesign.pngbin0 -> 173 bytes-rw-r--r--default_images/res/commandimagelist/sch_choosemacro.pngbin0 -> 136 bytes-rw-r--r--default_images/res/commandimagelist/sch_choosepolygon.pngbin0 -> 117 bytes-rw-r--r--default_images/res/commandimagelist/sch_circle.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/sch_circle_unfilled.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_circlearc.pngbin0 -> 114 bytes-rw-r--r--default_images/res/commandimagelist/sch_circlecut.pngbin0 -> 139 bytes-rw-r--r--default_images/res/commandimagelist/sch_circlecut_unfilled.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/sch_circlepie.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/sch_circlepie_unfilled.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/sch_clickchangerotation.pngbin0 -> 160 bytes-rw-r--r--default_images/res/commandimagelist/sch_closedoc.pngbin0 -> 153 bytes-rw-r--r--default_images/res/commandimagelist/sch_closedocs.pngbin0 -> 103 bytes-rw-r--r--default_images/res/commandimagelist/sch_closemasterview.pngbin0 -> 159 bytes-rw-r--r--default_images/res/commandimagelist/sch_closewin.pngbin0 -> 155 bytes-rw-r--r--default_images/res/commandimagelist/sch_color.pngbin0 -> 141 bytes-rw-r--r--default_images/res/commandimagelist/sch_colorsettings.pngbin0 -> 165 bytes-rw-r--r--default_images/res/commandimagelist/sch_colorview.pngbin0 -> 99 bytes-rw-r--r--default_images/res/commandimagelist/sch_combobox.pngbin0 -> 130 bytes-rw-r--r--default_images/res/commandimagelist/sch_commontaskbarvisible.pngbin0 -> 146 bytes-rw-r--r--default_images/res/commandimagelist/sch_compilebasic.pngbin0 -> 171 bytes-rw-r--r--default_images/res/commandimagelist/sch_cone.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/sch_config.pngbin0 -> 155 bytes-rw-r--r--default_images/res/commandimagelist/sch_connector.pngbin0 -> 109 bytes-rw-r--r--default_images/res/commandimagelist/sch_connectorarrowend.pngbin0 -> 116 bytes-rw-r--r--default_images/res/commandimagelist/sch_connectorarrows.pngbin0 -> 111 bytes-rw-r--r--default_images/res/commandimagelist/sch_connectorarrowstart.pngbin0 -> 113 bytes-rw-r--r--default_images/res/commandimagelist/sch_connectorcircleend.pngbin0 -> 110 bytes-rw-r--r--default_images/res/commandimagelist/sch_connectorcircles.pngbin0 -> 105 bytes-rw-r--r--default_images/res/commandimagelist/sch_connectorcirclestart.pngbin0 -> 110 bytes-rw-r--r--default_images/res/commandimagelist/sch_connectorcurve.pngbin0 -> 116 bytes-rw-r--r--default_images/res/commandimagelist/sch_connectorcurvearrowend.pngbin0 -> 124 bytes-rw-r--r--default_images/res/commandimagelist/sch_connectorcurvearrows.pngbin0 -> 115 bytes-rw-r--r--default_images/res/commandimagelist/sch_connectorcurvearrowstart.pngbin0 -> 120 bytes-rw-r--r--default_images/res/commandimagelist/sch_connectorcurvecircleend.pngbin0 -> 119 bytes-rw-r--r--default_images/res/commandimagelist/sch_connectorcurvecircles.pngbin0 -> 109 bytes-rw-r--r--default_images/res/commandimagelist/sch_connectorcurvecirclestart.pngbin0 -> 119 bytes-rw-r--r--default_images/res/commandimagelist/sch_connectorline.pngbin0 -> 113 bytes-rw-r--r--default_images/res/commandimagelist/sch_connectorlinearrowend.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/sch_connectorlinearrows.pngbin0 -> 114 bytes-rw-r--r--default_images/res/commandimagelist/sch_connectorlinearrowstart.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_connectorlinecircleend.pngbin0 -> 111 bytes-rw-r--r--default_images/res/commandimagelist/sch_connectorlinecircles.pngbin0 -> 92 bytes-rw-r--r--default_images/res/commandimagelist/sch_connectorlinecirclestart.pngbin0 -> 112 bytes-rw-r--r--default_images/res/commandimagelist/sch_connectorlines.pngbin0 -> 114 bytes-rw-r--r--default_images/res/commandimagelist/sch_connectorlinesarrowend.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/sch_connectorlinesarrows.pngbin0 -> 116 bytes-rw-r--r--default_images/res/commandimagelist/sch_connectorlinesarrowstart.pngbin0 -> 118 bytes-rw-r--r--default_images/res/commandimagelist/sch_connectorlinescircleend.pngbin0 -> 117 bytes-rw-r--r--default_images/res/commandimagelist/sch_connectorlinescircles.pngbin0 -> 110 bytes-rw-r--r--default_images/res/commandimagelist/sch_connectorlinescirclestart.pngbin0 -> 117 bytes-rw-r--r--default_images/res/commandimagelist/sch_connectortoolbox.pngbin0 -> 105 bytes-rw-r--r--default_images/res/commandimagelist/sch_contourdialog.pngbin0 -> 164 bytes-rw-r--r--default_images/res/commandimagelist/sch_controlcodes.pngbin0 -> 102 bytes-rw-r--r--default_images/res/commandimagelist/sch_controlproperties.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/sch_convertinto3d.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/sch_convertinto3dlathe.pngbin0 -> 157 bytes-rw-r--r--default_images/res/commandimagelist/sch_convertinto3dlathefast.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/sch_copy.pngbin0 -> 128 bytes-rw-r--r--default_images/res/commandimagelist/sch_countall.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_crookrotate.pngbin0 -> 151 bytes-rw-r--r--default_images/res/commandimagelist/sch_crookslant.pngbin0 -> 165 bytes-rw-r--r--default_images/res/commandimagelist/sch_crop.pngbin0 -> 128 bytes-rw-r--r--default_images/res/commandimagelist/sch_cube.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/sch_currencyfield.pngbin0 -> 131 bytes-rw-r--r--default_images/res/commandimagelist/sch_customanimation.pngbin0 -> 167 bytes-rw-r--r--default_images/res/commandimagelist/sch_cut.pngbin0 -> 159 bytes-rw-r--r--default_images/res/commandimagelist/sch_cylinder.pngbin0 -> 136 bytes-rw-r--r--default_images/res/commandimagelist/sch_cyramid.pngbin0 -> 129 bytes-rw-r--r--default_images/res/commandimagelist/sch_datadatapilotrun.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/sch_datafilterautofilter.pngbin0 -> 170 bytes-rw-r--r--default_images/res/commandimagelist/sch_datafilterspecialfilter.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/sch_datafilterstandardfilter.pngbin0 -> 109 bytes-rw-r--r--default_images/res/commandimagelist/sch_dataimport.pngbin0 -> 109 bytes-rw-r--r--default_images/res/commandimagelist/sch_dataincolumns.pngbin0 -> 100 bytes-rw-r--r--default_images/res/commandimagelist/sch_datainrows.pngbin0 -> 96 bytes-rw-r--r--default_images/res/commandimagelist/sch_datefield.pngbin0 -> 118 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbaddrelation.pngbin0 -> 147 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbchangedesignmode.pngbin0 -> 162 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbclearquery.pngbin0 -> 182 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbdistinctvalues.pngbin0 -> 131 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbformdelete.pngbin0 -> 170 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbformedit.pngbin0 -> 166 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbformopen.pngbin0 -> 147 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbformrename.pngbin0 -> 133 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbindexdesign.pngbin0 -> 153 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbnewform.pngbin0 -> 146 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbnewformautopilot.pngbin0 -> 188 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbnewquery.pngbin0 -> 160 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbnewqueryautopilot.pngbin0 -> 194 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbnewquerysql.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbnewreport.pngbin0 -> 156 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbnewreportautopilot.pngbin0 -> 194 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbnewtable.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbnewtableautopilot.pngbin0 -> 184 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbnewview.pngbin0 -> 156 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbnewviewsql.pngbin0 -> 172 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbquerydelete.pngbin0 -> 165 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbqueryedit.pngbin0 -> 180 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbqueryopen.pngbin0 -> 165 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbqueryrename.pngbin0 -> 129 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbreportdelete.pngbin0 -> 166 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbreportedit.pngbin0 -> 177 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbreportopen.pngbin0 -> 152 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbreportrename.pngbin0 -> 148 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbsortingandgrouping.pngbin0 -> 83 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbtabledelete.pngbin0 -> 165 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbtableedit.pngbin0 -> 168 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbtableopen.pngbin0 -> 146 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbtablerename.pngbin0 -> 129 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbviewaliases.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbviewfunctions.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/sch_dbviewtablenames.pngbin0 -> 138 bytes-rw-r--r--default_images/res/commandimagelist/sch_decrementindent.pngbin0 -> 114 bytes-rw-r--r--default_images/res/commandimagelist/sch_decrementlevel.pngbin0 -> 109 bytes-rw-r--r--default_images/res/commandimagelist/sch_decrementsublevels.pngbin0 -> 133 bytes-rw-r--r--default_images/res/commandimagelist/sch_defaultbullet.pngbin0 -> 87 bytes-rw-r--r--default_images/res/commandimagelist/sch_defaultnumbering.pngbin0 -> 108 bytes-rw-r--r--default_images/res/commandimagelist/sch_definename.pngbin0 -> 111 bytes-rw-r--r--default_images/res/commandimagelist/sch_defineprintarea.pngbin0 -> 152 bytes-rw-r--r--default_images/res/commandimagelist/sch_delete.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/sch_deleteallannotation.pngbin0 -> 149 bytes-rw-r--r--default_images/res/commandimagelist/sch_deleteannotation.pngbin0 -> 147 bytes-rw-r--r--default_images/res/commandimagelist/sch_deletecolumns.pngbin0 -> 97 bytes-rw-r--r--default_images/res/commandimagelist/sch_deletemasterpage.pngbin0 -> 173 bytes-rw-r--r--default_images/res/commandimagelist/sch_deleteprintarea.pngbin0 -> 168 bytes-rw-r--r--default_images/res/commandimagelist/sch_deleterecord.pngbin0 -> 136 bytes-rw-r--r--default_images/res/commandimagelist/sch_deleterows.pngbin0 -> 99 bytes-rw-r--r--default_images/res/commandimagelist/sch_designerdialog.pngbin0 -> 150 bytes-rw-r--r--default_images/res/commandimagelist/sch_dia.pngbin0 -> 157 bytes-rw-r--r--default_images/res/commandimagelist/sch_diaauto.pngbin0 -> 157 bytes-rw-r--r--default_images/res/commandimagelist/sch_diaeffect.pngbin0 -> 157 bytes-rw-r--r--default_images/res/commandimagelist/sch_diagramdata.pngbin0 -> 75 bytes-rw-r--r--default_images/res/commandimagelist/sch_diagramtype.pngbin0 -> 140 bytes-rw-r--r--default_images/res/commandimagelist/sch_diaspeed.pngbin0 -> 157 bytes-rw-r--r--default_images/res/commandimagelist/sch_diatime.pngbin0 -> 157 bytes-rw-r--r--default_images/res/commandimagelist/sch_distributecolumns.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/sch_distributerows.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/sch_doubleclicktextedit.pngbin0 -> 147 bytes-rw-r--r--default_images/res/commandimagelist/sch_downsearch.pngbin0 -> 140 bytes-rw-r--r--default_images/res/commandimagelist/sch_draw.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/sch_drawcaption.pngbin0 -> 126 bytes-rw-r--r--default_images/res/commandimagelist/sch_drawchart.pngbin0 -> 101 bytes-rw-r--r--default_images/res/commandimagelist/sch_drawselect.pngbin0 -> 119 bytes-rw-r--r--default_images/res/commandimagelist/sch_drawtext.pngbin0 -> 102 bytes-rw-r--r--default_images/res/commandimagelist/sch_dsbdocumentdatasource.pngbin0 -> 187 bytes-rw-r--r--default_images/res/commandimagelist/sch_dsbeditdoc.pngbin0 -> 172 bytes-rw-r--r--default_images/res/commandimagelist/sch_dsbformletter.pngbin0 -> 154 bytes-rw-r--r--default_images/res/commandimagelist/sch_dsbinsertcolumns.pngbin0 -> 118 bytes-rw-r--r--default_images/res/commandimagelist/sch_dsbinsertcontent.pngbin0 -> 126 bytes-rw-r--r--default_images/res/commandimagelist/sch_dsbrowserexplorer.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/sch_duplicatepage.pngbin0 -> 156 bytes-rw-r--r--default_images/res/commandimagelist/sch_edit.pngbin0 -> 115 bytes-rw-r--r--default_images/res/commandimagelist/sch_editdoc.pngbin0 -> 172 bytes-rw-r--r--default_images/res/commandimagelist/sch_editframeset.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_editglossary.pngbin0 -> 164 bytes-rw-r--r--default_images/res/commandimagelist/sch_editheaderandfooter.pngbin0 -> 107 bytes-rw-r--r--default_images/res/commandimagelist/sch_editprintarea.pngbin0 -> 178 bytes-rw-r--r--default_images/res/commandimagelist/sch_ellipse.pngbin0 -> 118 bytes-rw-r--r--default_images/res/commandimagelist/sch_ellipse_unfilled.pngbin0 -> 117 bytes-rw-r--r--default_images/res/commandimagelist/sch_ellipsecut.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/sch_ellipsecut_unfilled.pngbin0 -> 125 bytes-rw-r--r--default_images/res/commandimagelist/sch_ellipsetoolbox.pngbin0 -> 118 bytes-rw-r--r--default_images/res/commandimagelist/sch_entergroup.pngbin0 -> 141 bytes-rw-r--r--default_images/res/commandimagelist/sch_entirecolumn.pngbin0 -> 92 bytes-rw-r--r--default_images/res/commandimagelist/sch_entirerow.pngbin0 -> 100 bytes-rw-r--r--default_images/res/commandimagelist/sch_euroconverter.pngbin0 -> 130 bytes-rw-r--r--default_images/res/commandimagelist/sch_executereport.pngbin0 -> 151 bytes-rw-r--r--default_images/res/commandimagelist/sch_expandpage.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/sch_exportdialog.pngbin0 -> 154 bytes-rw-r--r--default_images/res/commandimagelist/sch_exportdirecttopdf.pngbin0 -> 147 bytes-rw-r--r--default_images/res/commandimagelist/sch_exportto.pngbin0 -> 140 bytes-rw-r--r--default_images/res/commandimagelist/sch_extendedhelp.pngbin0 -> 147 bytes-rw-r--r--default_images/res/commandimagelist/sch_extrusion3dcolor.pngbin0 -> 131 bytes-rw-r--r--default_images/res/commandimagelist/sch_extrusiondepthfloater.pngbin0 -> 152 bytes-rw-r--r--default_images/res/commandimagelist/sch_extrusiondirectionfloater.pngbin0 -> 146 bytes-rw-r--r--default_images/res/commandimagelist/sch_extrusionlightingfloater.pngbin0 -> 160 bytes-rw-r--r--default_images/res/commandimagelist/sch_extrusionsurfacefloater.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/sch_extrusiontiltdown.pngbin0 -> 149 bytes-rw-r--r--default_images/res/commandimagelist/sch_extrusiontiltleft.pngbin0 -> 152 bytes-rw-r--r--default_images/res/commandimagelist/sch_extrusiontiltright.pngbin0 -> 152 bytes-rw-r--r--default_images/res/commandimagelist/sch_extrusiontiltup.pngbin0 -> 149 bytes-rw-r--r--default_images/res/commandimagelist/sch_extrusiontoggle.pngbin0 -> 145 bytes-rw-r--r--default_images/res/commandimagelist/sch_fieldnames.pngbin0 -> 117 bytes-rw-r--r--default_images/res/commandimagelist/sch_fields.pngbin0 -> 117 bytes-rw-r--r--default_images/res/commandimagelist/sch_filecontrol.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/sch_filedocument.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_fillshadow.pngbin0 -> 105 bytes-rw-r--r--default_images/res/commandimagelist/sch_fillstyle.pngbin0 -> 169 bytes-rw-r--r--default_images/res/commandimagelist/sch_filtercrit.pngbin0 -> 109 bytes-rw-r--r--default_images/res/commandimagelist/sch_firstpage.pngbin0 -> 150 bytes-rw-r--r--default_images/res/commandimagelist/sch_firstrecord.pngbin0 -> 113 bytes-rw-r--r--default_images/res/commandimagelist/sch_fliphorizontal.pngbin0 -> 130 bytes-rw-r--r--default_images/res/commandimagelist/sch_flipvertical.pngbin0 -> 133 bytes-rw-r--r--default_images/res/commandimagelist/sch_flowchartshapes.flowchart-alternate-process.pngbin0 -> 99 bytes-rw-r--r--default_images/res/commandimagelist/sch_flowchartshapes.flowchart-card.pngbin0 -> 107 bytes-rw-r--r--default_images/res/commandimagelist/sch_flowchartshapes.flowchart-collate.pngbin0 -> 126 bytes-rw-r--r--default_images/res/commandimagelist/sch_flowchartshapes.flowchart-connector.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/sch_flowchartshapes.flowchart-data.pngbin0 -> 111 bytes-rw-r--r--default_images/res/commandimagelist/sch_flowchartshapes.flowchart-decision.pngbin0 -> 126 bytes-rw-r--r--default_images/res/commandimagelist/sch_flowchartshapes.flowchart-delay.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_flowchartshapes.flowchart-direct-access-storage.pngbin0 -> 120 bytes-rw-r--r--default_images/res/commandimagelist/sch_flowchartshapes.flowchart-display.pngbin0 -> 125 bytes-rw-r--r--default_images/res/commandimagelist/sch_flowchartshapes.flowchart-document.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/sch_flowchartshapes.flowchart-extract.pngbin0 -> 131 bytes-rw-r--r--default_images/res/commandimagelist/sch_flowchartshapes.flowchart-internal-storage.pngbin0 -> 98 bytes-rw-r--r--default_images/res/commandimagelist/sch_flowchartshapes.flowchart-magnetic-disk.pngbin0 -> 129 bytes-rw-r--r--default_images/res/commandimagelist/sch_flowchartshapes.flowchart-manual-input.pngbin0 -> 108 bytes-rw-r--r--default_images/res/commandimagelist/sch_flowchartshapes.flowchart-manual-operation.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/sch_flowchartshapes.flowchart-merge.pngbin0 -> 139 bytes-rw-r--r--default_images/res/commandimagelist/sch_flowchartshapes.flowchart-multidocument.pngbin0 -> 150 bytes-rw-r--r--default_images/res/commandimagelist/sch_flowchartshapes.flowchart-off-page-connector.pngbin0 -> 112 bytes-rw-r--r--default_images/res/commandimagelist/sch_flowchartshapes.flowchart-or.pngbin0 -> 143 bytes-rw-r--r--default_images/res/commandimagelist/sch_flowchartshapes.flowchart-predefined-process.pngbin0 -> 96 bytes-rw-r--r--default_images/res/commandimagelist/sch_flowchartshapes.flowchart-preparation.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/sch_flowchartshapes.flowchart-process.pngbin0 -> 91 bytes-rw-r--r--default_images/res/commandimagelist/sch_flowchartshapes.flowchart-punched-tape.pngbin0 -> 138 bytes-rw-r--r--default_images/res/commandimagelist/sch_flowchartshapes.flowchart-sequential-access.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/sch_flowchartshapes.flowchart-sort.pngbin0 -> 125 bytes-rw-r--r--default_images/res/commandimagelist/sch_flowchartshapes.flowchart-stored-data.pngbin0 -> 115 bytes-rw-r--r--default_images/res/commandimagelist/sch_flowchartshapes.flowchart-summing-junction.pngbin0 -> 145 bytes-rw-r--r--default_images/res/commandimagelist/sch_flowchartshapes.flowchart-terminator.pngbin0 -> 103 bytes-rw-r--r--default_images/res/commandimagelist/sch_flowchartshapes.pngbin0 -> 98 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontcolor.pngbin0 -> 141 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontdialog.pngbin0 -> 164 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontheight.pngbin0 -> 146 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontwork.pngbin0 -> 145 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkalignmentfloater.pngbin0 -> 79 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkcharacterspacingfloater.pngbin0 -> 159 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkgalleryfloater.pngbin0 -> 168 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworksameletterheights.pngbin0 -> 157 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.fontwork-arch-down-curve.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.fontwork-arch-down-pour.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.fontwork-arch-left-curve.pngbin0 -> 120 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.fontwork-arch-left-pour.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.fontwork-arch-right-curve.pngbin0 -> 113 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.fontwork-arch-right-pour.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.fontwork-arch-up-curve.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.fontwork-arch-up-pour.pngbin0 -> 113 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.fontwork-chevron-down.pngbin0 -> 126 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.fontwork-chevron-up.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.fontwork-circle-curve.pngbin0 -> 136 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.fontwork-circle-pour.pngbin0 -> 133 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.fontwork-curve-down.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.fontwork-curve-up.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.fontwork-fade-down.pngbin0 -> 114 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.fontwork-fade-left.pngbin0 -> 109 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.fontwork-fade-right.pngbin0 -> 113 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.fontwork-fade-up-and-left.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.fontwork-fade-up-and-right.pngbin0 -> 124 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.fontwork-fade-up.pngbin0 -> 113 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.fontwork-inflate.pngbin0 -> 103 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.fontwork-open-circle-curve.pngbin0 -> 136 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.fontwork-open-circle-pour.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.fontwork-plain-text.pngbin0 -> 80 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.fontwork-slant-down.pngbin0 -> 115 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.fontwork-slant-up.pngbin0 -> 111 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.fontwork-stop.pngbin0 -> 97 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.fontwork-triangle-down.pngbin0 -> 118 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.fontwork-triangle-up.pngbin0 -> 124 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.fontwork-wave.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/sch_fontworkshapetype.pngbin0 -> 145 bytes-rw-r--r--default_images/res/commandimagelist/sch_formatarea.pngbin0 -> 169 bytes-rw-r--r--default_images/res/commandimagelist/sch_formatgroup.pngbin0 -> 126 bytes-rw-r--r--default_images/res/commandimagelist/sch_formatline.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/sch_formatpaintbrush.pngbin0 -> 150 bytes-rw-r--r--default_images/res/commandimagelist/sch_formattedfield.pngbin0 -> 117 bytes-rw-r--r--default_images/res/commandimagelist/sch_formatungroup.pngbin0 -> 156 bytes-rw-r--r--default_images/res/commandimagelist/sch_formdesigntools.pngbin0 -> 151 bytes-rw-r--r--default_images/res/commandimagelist/sch_formelcursor.pngbin0 -> 116 bytes-rw-r--r--default_images/res/commandimagelist/sch_formfilter.pngbin0 -> 145 bytes-rw-r--r--default_images/res/commandimagelist/sch_formfiltered.pngbin0 -> 139 bytes-rw-r--r--default_images/res/commandimagelist/sch_formfilterexecute.pngbin0 -> 109 bytes-rw-r--r--default_images/res/commandimagelist/sch_formfilternavigator.pngbin0 -> 171 bytes-rw-r--r--default_images/res/commandimagelist/sch_formproperties.pngbin0 -> 133 bytes-rw-r--r--default_images/res/commandimagelist/sch_forward.pngbin0 -> 118 bytes-rw-r--r--default_images/res/commandimagelist/sch_framedialog.pngbin0 -> 148 bytes-rw-r--r--default_images/res/commandimagelist/sch_framelinecolor.pngbin0 -> 89 bytes-rw-r--r--default_images/res/commandimagelist/sch_freeline.pngbin0 -> 157 bytes-rw-r--r--default_images/res/commandimagelist/sch_freeline_unfilled.pngbin0 -> 142 bytes-rw-r--r--default_images/res/commandimagelist/sch_fullscreen.pngbin0 -> 140 bytes-rw-r--r--default_images/res/commandimagelist/sch_gallery.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/sch_getactivetask.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_glueeditmode.pngbin0 -> 136 bytes-rw-r--r--default_images/res/commandimagelist/sch_glueescapedirectionbottom.pngbin0 -> 137 bytes-rw-r--r--default_images/res/commandimagelist/sch_glueescapedirectionleft.pngbin0 -> 131 bytes-rw-r--r--default_images/res/commandimagelist/sch_glueescapedirectionright.pngbin0 -> 131 bytes-rw-r--r--default_images/res/commandimagelist/sch_glueescapedirectiontop.pngbin0 -> 137 bytes-rw-r--r--default_images/res/commandimagelist/sch_gluehorzaligncenter.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/sch_gluehorzalignleft.pngbin0 -> 138 bytes-rw-r--r--default_images/res/commandimagelist/sch_gluehorzalignright.pngbin0 -> 138 bytes-rw-r--r--default_images/res/commandimagelist/sch_glueinsertpoint.pngbin0 -> 139 bytes-rw-r--r--default_images/res/commandimagelist/sch_gluepercent.pngbin0 -> 133 bytes-rw-r--r--default_images/res/commandimagelist/sch_gluevertalignbottom.pngbin0 -> 133 bytes-rw-r--r--default_images/res/commandimagelist/sch_gluevertaligncenter.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_gluevertaligntop.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/sch_goalseekdialog.pngbin0 -> 139 bytes-rw-r--r--default_images/res/commandimagelist/sch_gotoend.pngbin0 -> 105 bytes-rw-r--r--default_images/res/commandimagelist/sch_gotoendofdoc.pngbin0 -> 153 bytes-rw-r--r--default_images/res/commandimagelist/sch_gotostartofdoc.pngbin0 -> 149 bytes-rw-r--r--default_images/res/commandimagelist/sch_gotostartoftable.pngbin0 -> 115 bytes-rw-r--r--default_images/res/commandimagelist/sch_grafattrcrop.pngbin0 -> 128 bytes-rw-r--r--default_images/res/commandimagelist/sch_grafblue.pngbin0 -> 137 bytes-rw-r--r--default_images/res/commandimagelist/sch_grafcontrast.pngbin0 -> 117 bytes-rw-r--r--default_images/res/commandimagelist/sch_grafgamma.pngbin0 -> 143 bytes-rw-r--r--default_images/res/commandimagelist/sch_grafgreen.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/sch_grafinvert.pngbin0 -> 103 bytes-rw-r--r--default_images/res/commandimagelist/sch_grafluminance.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/sch_grafmode.pngbin0 -> 162 bytes-rw-r--r--default_images/res/commandimagelist/sch_grafred.pngbin0 -> 138 bytes-rw-r--r--default_images/res/commandimagelist/sch_graftransparence.pngbin0 -> 139 bytes-rw-r--r--default_images/res/commandimagelist/sch_graphic.pngbin0 -> 125 bytes-rw-r--r--default_images/res/commandimagelist/sch_graphicfilterinvert.pngbin0 -> 103 bytes-rw-r--r--default_images/res/commandimagelist/sch_graphicfiltermosaic.pngbin0 -> 136 bytes-rw-r--r--default_images/res/commandimagelist/sch_graphicfilterpopart.pngbin0 -> 140 bytes-rw-r--r--default_images/res/commandimagelist/sch_graphicfilterposter.pngbin0 -> 142 bytes-rw-r--r--default_images/res/commandimagelist/sch_graphicfilterrelief.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/sch_graphicfilterremovenoise.pngbin0 -> 169 bytes-rw-r--r--default_images/res/commandimagelist/sch_graphicfiltersepia.pngbin0 -> 130 bytes-rw-r--r--default_images/res/commandimagelist/sch_graphicfiltersharpen.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/sch_graphicfiltersmooth.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/sch_graphicfiltersobel.pngbin0 -> 131 bytes-rw-r--r--default_images/res/commandimagelist/sch_graphicfiltersolarize.pngbin0 -> 136 bytes-rw-r--r--default_images/res/commandimagelist/sch_graphicfiltertoolbox.pngbin0 -> 136 bytes-rw-r--r--default_images/res/commandimagelist/sch_greatestheight.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/sch_greatestwidth.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_grid.pngbin0 -> 75 bytes-rw-r--r--default_images/res/commandimagelist/sch_griduse.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/sch_gridvisible.pngbin0 -> 84 bytes-rw-r--r--default_images/res/commandimagelist/sch_group.pngbin0 -> 109 bytes-rw-r--r--default_images/res/commandimagelist/sch_groupbox.pngbin0 -> 114 bytes-rw-r--r--default_images/res/commandimagelist/sch_grow.pngbin0 -> 151 bytes-rw-r--r--default_images/res/commandimagelist/sch_halfsphere.pngbin0 -> 125 bytes-rw-r--r--default_images/res/commandimagelist/sch_handlesdraft.pngbin0 -> 116 bytes-rw-r--r--default_images/res/commandimagelist/sch_helpannotate.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/sch_helpbookmark.pngbin0 -> 120 bytes-rw-r--r--default_images/res/commandimagelist/sch_helpdownload.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_helperdialog.pngbin0 -> 152 bytes-rw-r--r--default_images/res/commandimagelist/sch_helpindex.pngbin0 -> 151 bytes-rw-r--r--default_images/res/commandimagelist/sch_helplinesmove.pngbin0 -> 136 bytes-rw-r--r--default_images/res/commandimagelist/sch_helplinesuse.pngbin0 -> 133 bytes-rw-r--r--default_images/res/commandimagelist/sch_helplinesvisible.pngbin0 -> 90 bytes-rw-r--r--default_images/res/commandimagelist/sch_helpmenu.pngbin0 -> 160 bytes-rw-r--r--default_images/res/commandimagelist/sch_helpsearch.pngbin0 -> 126 bytes-rw-r--r--default_images/res/commandimagelist/sch_helpzoomin.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/sch_helpzoomout.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/sch_hfixedline.pngbin0 -> 96 bytes-rw-r--r--default_images/res/commandimagelist/sch_hideslide.pngbin0 -> 109 bytes-rw-r--r--default_images/res/commandimagelist/sch_hscrollbar.pngbin0 -> 107 bytes-rw-r--r--default_images/res/commandimagelist/sch_hyperlinkdialog.pngbin0 -> 203 bytes-rw-r--r--default_images/res/commandimagelist/sch_hyphenate.pngbin0 -> 113 bytes-rw-r--r--default_images/res/commandimagelist/sch_hyphenation.pngbin0 -> 115 bytes-rw-r--r--default_images/res/commandimagelist/sch_imagebutton.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/sch_imagecontrol.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/sch_imagemapdialog.pngbin0 -> 147 bytes-rw-r--r--default_images/res/commandimagelist/sch_importdialog.pngbin0 -> 137 bytes-rw-r--r--default_images/res/commandimagelist/sch_importfromfile.pngbin0 -> 163 bytes-rw-r--r--default_images/res/commandimagelist/sch_incrementindent.pngbin0 -> 114 bytes-rw-r--r--default_images/res/commandimagelist/sch_incrementlevel.pngbin0 -> 105 bytes-rw-r--r--default_images/res/commandimagelist/sch_incrementsublevels.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/sch_inscellsctrl.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertannotation.pngbin0 -> 128 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertauthorfield.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertavmedia.pngbin0 -> 163 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertbookmark.pngbin0 -> 153 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertcaptiondialog.pngbin0 -> 116 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertcellsdown.pngbin0 -> 141 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertcellsright.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertcolumns.pngbin0 -> 107 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertctrl.pngbin0 -> 110 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertcurrencyfield.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertdatefield.pngbin0 -> 118 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertdoc.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertdraw.pngbin0 -> 142 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertedit.pngbin0 -> 115 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertendnote.pngbin0 -> 149 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertfield.pngbin0 -> 118 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertfieldctrl.pngbin0 -> 118 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertfilecontrol.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertfixedtext.pngbin0 -> 107 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertfootnote.pngbin0 -> 152 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertformattedfield.pngbin0 -> 117 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertformula.pngbin0 -> 153 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertframe.pngbin0 -> 101 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertframeinteract.pngbin0 -> 101 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertframeinteractnocolumns.pngbin0 -> 101 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertgraphic.pngbin0 -> 126 bytes-rw-r--r--default_images/res/commandimagelist/sch_inserthyperlink.pngbin0 -> 175 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertimagecontrol.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertindexesentry.pngbin0 -> 109 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertlistbox.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertmasterpage.pngbin0 -> 164 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertmath.pngbin0 -> 110 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertneutralparagraph.pngbin0 -> 97 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertnumericfield.pngbin0 -> 104 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertobjctrl.pngbin0 -> 142 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertobject.pngbin0 -> 142 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertobjectchart.pngbin0 -> 101 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertobjectdialog.pngbin0 -> 142 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertobjectfloatingframe.pngbin0 -> 96 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertobjectstarmath.pngbin0 -> 110 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertpage.pngbin0 -> 140 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertpagecountfield.pngbin0 -> 125 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertpagenumberfield.pngbin0 -> 119 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertpatternfield.pngbin0 -> 108 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertplugin.pngbin0 -> 126 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertpushbutton.pngbin0 -> 100 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertreferencefield.pngbin0 -> 136 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertrows.pngbin0 -> 111 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertsection.pngbin0 -> 104 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertsound.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertspreadsheet.pngbin0 -> 75 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertsymbol.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_inserttable.pngbin0 -> 75 bytes-rw-r--r--default_images/res/commandimagelist/sch_inserttextframe.pngbin0 -> 101 bytes-rw-r--r--default_images/res/commandimagelist/sch_inserttimefield.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/sch_inserttitlefield.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_inserttoolbox.pngbin0 -> 162 bytes-rw-r--r--default_images/res/commandimagelist/sch_inserttopicfield.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/sch_inserttreecontrol.pngbin0 -> 116 bytes-rw-r--r--default_images/res/commandimagelist/sch_insertvideo.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_insobjctrl.pngbin0 -> 142 bytes-rw-r--r--default_images/res/commandimagelist/sch_interactivegradient.pngbin0 -> 142 bytes-rw-r--r--default_images/res/commandimagelist/sch_interactivetransparence.pngbin0 -> 170 bytes-rw-r--r--default_images/res/commandimagelist/sch_internetonline.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_italic.pngbin0 -> 109 bytes-rw-r--r--default_images/res/commandimagelist/sch_justifypara.pngbin0 -> 78 bytes-rw-r--r--default_images/res/commandimagelist/sch_label.pngbin0 -> 107 bytes-rw-r--r--default_images/res/commandimagelist/sch_lastpage.pngbin0 -> 151 bytes-rw-r--r--default_images/res/commandimagelist/sch_lastrecord.pngbin0 -> 110 bytes-rw-r--r--default_images/res/commandimagelist/sch_leaveallgroups.pngbin0 -> 157 bytes-rw-r--r--default_images/res/commandimagelist/sch_leavegroup.pngbin0 -> 155 bytes-rw-r--r--default_images/res/commandimagelist/sch_leftpara.pngbin0 -> 79 bytes-rw-r--r--default_images/res/commandimagelist/sch_line.pngbin0 -> 81 bytes-rw-r--r--default_images/res/commandimagelist/sch_line_diagonal.pngbin0 -> 118 bytes-rw-r--r--default_images/res/commandimagelist/sch_linearrowcircle.pngbin0 -> 96 bytes-rw-r--r--default_images/res/commandimagelist/sch_linearrowend.pngbin0 -> 91 bytes-rw-r--r--default_images/res/commandimagelist/sch_linearrows.pngbin0 -> 100 bytes-rw-r--r--default_images/res/commandimagelist/sch_linearrowsquare.pngbin0 -> 96 bytes-rw-r--r--default_images/res/commandimagelist/sch_linearrowstart.pngbin0 -> 88 bytes-rw-r--r--default_images/res/commandimagelist/sch_linecirclearrow.pngbin0 -> 97 bytes-rw-r--r--default_images/res/commandimagelist/sch_lineendstyle.pngbin0 -> 115 bytes-rw-r--r--default_images/res/commandimagelist/sch_linesquarearrow.pngbin0 -> 96 bytes-rw-r--r--default_images/res/commandimagelist/sch_linestyle.pngbin0 -> 82 bytes-rw-r--r--default_images/res/commandimagelist/sch_linetoolbox.pngbin0 -> 142 bytes-rw-r--r--default_images/res/commandimagelist/sch_linewidth.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/sch_listbox.pngbin0 -> 133 bytes-rw-r--r--default_images/res/commandimagelist/sch_loadbasic.pngbin0 -> 119 bytes-rw-r--r--default_images/res/commandimagelist/sch_macrorecorder.pngbin0 -> 168 bytes-rw-r--r--default_images/res/commandimagelist/sch_macrorecordingfloat.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_mailwindow.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_managebreakpoints.pngbin0 -> 156 bytes-rw-r--r--default_images/res/commandimagelist/sch_managelanguage.pngbin0 -> 181 bytes-rw-r--r--default_images/res/commandimagelist/sch_marks.pngbin0 -> 105 bytes-rw-r--r--default_images/res/commandimagelist/sch_matchgroup.pngbin0 -> 118 bytes-rw-r--r--default_images/res/commandimagelist/sch_measureline.pngbin0 -> 101 bytes-rw-r--r--default_images/res/commandimagelist/sch_mergecells.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/sch_mergedialog.pngbin0 -> 155 bytes-rw-r--r--default_images/res/commandimagelist/sch_mirror.pngbin0 -> 176 bytes-rw-r--r--default_images/res/commandimagelist/sch_modifyframe.pngbin0 -> 170 bytes-rw-r--r--default_images/res/commandimagelist/sch_modifypage.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/sch_moduledialog.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/sch_morecontrols.pngbin0 -> 147 bytes-rw-r--r--default_images/res/commandimagelist/sch_movedown.pngbin0 -> 113 bytes-rw-r--r--default_images/res/commandimagelist/sch_movedownsubitems.pngbin0 -> 142 bytes-rw-r--r--default_images/res/commandimagelist/sch_moveup.pngbin0 -> 108 bytes-rw-r--r--default_images/res/commandimagelist/sch_moveupsubitems.pngbin0 -> 140 bytes-rw-r--r--default_images/res/commandimagelist/sch_navigationbar.pngbin0 -> 107 bytes-rw-r--r--default_images/res/commandimagelist/sch_navigator.pngbin0 -> 173 bytes-rw-r--r--default_images/res/commandimagelist/sch_newarrangement.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/sch_newdoc.pngbin0 -> 107 bytes-rw-r--r--default_images/res/commandimagelist/sch_newrecord.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/sch_nextannotation.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/sch_nextpage.pngbin0 -> 155 bytes-rw-r--r--default_images/res/commandimagelist/sch_nextrecord.pngbin0 -> 102 bytes-rw-r--r--default_images/res/commandimagelist/sch_numberformatcurrency.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/sch_numberformatdate.pngbin0 -> 118 bytes-rw-r--r--default_images/res/commandimagelist/sch_numberformatdecdecimals.pngbin0 -> 133 bytes-rw-r--r--default_images/res/commandimagelist/sch_numberformatdecimal.pngbin0 -> 114 bytes-rw-r--r--default_images/res/commandimagelist/sch_numberformatincdecimals.pngbin0 -> 119 bytes-rw-r--r--default_images/res/commandimagelist/sch_numberformatpercent.pngbin0 -> 107 bytes-rw-r--r--default_images/res/commandimagelist/sch_numberformatscientific.pngbin0 -> 100 bytes-rw-r--r--default_images/res/commandimagelist/sch_numberformatstandard.pngbin0 -> 130 bytes-rw-r--r--default_images/res/commandimagelist/sch_numberingstart.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/sch_numericfield.pngbin0 -> 104 bytes-rw-r--r--default_images/res/commandimagelist/sch_objectalign.pngbin0 -> 133 bytes-rw-r--r--default_images/res/commandimagelist/sch_objectalignleft.pngbin0 -> 133 bytes-rw-r--r--default_images/res/commandimagelist/sch_objectalignright.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/sch_objectcatalog.pngbin0 -> 126 bytes-rw-r--r--default_images/res/commandimagelist/sch_objectposition.pngbin0 -> 118 bytes-rw-r--r--default_images/res/commandimagelist/sch_objects3dtoolbox.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/sch_open.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/sch_openreadonly.pngbin0 -> 174 bytes-rw-r--r--default_images/res/commandimagelist/sch_openurl.pngbin0 -> 176 bytes-rw-r--r--default_images/res/commandimagelist/sch_optimizetable.pngbin0 -> 142 bytes-rw-r--r--default_images/res/commandimagelist/sch_ordercrit.pngbin0 -> 126 bytes-rw-r--r--default_images/res/commandimagelist/sch_outlinebullet.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/sch_outlinecollapse.pngbin0 -> 105 bytes-rw-r--r--default_images/res/commandimagelist/sch_outlinecollapseall.pngbin0 -> 111 bytes-rw-r--r--default_images/res/commandimagelist/sch_outlinedown.pngbin0 -> 112 bytes-rw-r--r--default_images/res/commandimagelist/sch_outlineexpand.pngbin0 -> 109 bytes-rw-r--r--default_images/res/commandimagelist/sch_outlineexpandall.pngbin0 -> 109 bytes-rw-r--r--default_images/res/commandimagelist/sch_outlinefont.pngbin0 -> 141 bytes-rw-r--r--default_images/res/commandimagelist/sch_outlineformat.pngbin0 -> 164 bytes-rw-r--r--default_images/res/commandimagelist/sch_outlineleft.pngbin0 -> 105 bytes-rw-r--r--default_images/res/commandimagelist/sch_outlineright.pngbin0 -> 109 bytes-rw-r--r--default_images/res/commandimagelist/sch_outlineup.pngbin0 -> 108 bytes-rw-r--r--default_images/res/commandimagelist/sch_overline.pngbin0 -> 114 bytes-rw-r--r--default_images/res/commandimagelist/sch_pagedown.pngbin0 -> 156 bytes-rw-r--r--default_images/res/commandimagelist/sch_pageup.pngbin0 -> 157 bytes-rw-r--r--default_images/res/commandimagelist/sch_paragraphdialog.pngbin0 -> 142 bytes-rw-r--r--default_images/res/commandimagelist/sch_paralefttoright.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/sch_pararighttoleft.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_paraspacedecrease.pngbin0 -> 103 bytes-rw-r--r--default_images/res/commandimagelist/sch_paraspaceincrease.pngbin0 -> 107 bytes-rw-r--r--default_images/res/commandimagelist/sch_paste.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/sch_patternfield.pngbin0 -> 108 bytes-rw-r--r--default_images/res/commandimagelist/sch_pickthrough.pngbin0 -> 128 bytes-rw-r--r--default_images/res/commandimagelist/sch_pie.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/sch_pie_unfilled.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/sch_playmacro.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_pluginsactive.pngbin0 -> 126 bytes-rw-r--r--default_images/res/commandimagelist/sch_polygon.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/sch_polygon_diagonal.pngbin0 -> 97 bytes-rw-r--r--default_images/res/commandimagelist/sch_polygon_diagonal_unfilled.pngbin0 -> 91 bytes-rw-r--r--default_images/res/commandimagelist/sch_polygon_unfilled.pngbin0 -> 118 bytes-rw-r--r--default_images/res/commandimagelist/sch_presentation.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/sch_presentationlayout.pngbin0 -> 149 bytes-rw-r--r--default_images/res/commandimagelist/sch_preview.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/sch_previewprintoptions.pngbin0 -> 162 bytes-rw-r--r--default_images/res/commandimagelist/sch_previewzoom.pngbin0 -> 129 bytes-rw-r--r--default_images/res/commandimagelist/sch_previousannotation.pngbin0 -> 131 bytes-rw-r--r--default_images/res/commandimagelist/sch_previouspage.pngbin0 -> 157 bytes-rw-r--r--default_images/res/commandimagelist/sch_prevrecord.pngbin0 -> 104 bytes-rw-r--r--default_images/res/commandimagelist/sch_print.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/sch_printdefault.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/sch_printersetup.pngbin0 -> 162 bytes-rw-r--r--default_images/res/commandimagelist/sch_printlayout.pngbin0 -> 159 bytes-rw-r--r--default_images/res/commandimagelist/sch_printpagepreview.pngbin0 -> 148 bytes-rw-r--r--default_images/res/commandimagelist/sch_printpreview.pngbin0 -> 128 bytes-rw-r--r--default_images/res/commandimagelist/sch_progressbar.pngbin0 -> 96 bytes-rw-r--r--default_images/res/commandimagelist/sch_pushbutton.pngbin0 -> 100 bytes-rw-r--r--default_images/res/commandimagelist/sch_quickedit.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_quit.pngbin0 -> 130 bytes-rw-r--r--default_images/res/commandimagelist/sch_radiobutton.pngbin0 -> 128 bytes-rw-r--r--default_images/res/commandimagelist/sch_recsave.pngbin0 -> 138 bytes-rw-r--r--default_images/res/commandimagelist/sch_recsearch.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/sch_rect.pngbin0 -> 89 bytes-rw-r--r--default_images/res/commandimagelist/sch_rect_rounded.pngbin0 -> 99 bytes-rw-r--r--default_images/res/commandimagelist/sch_rect_rounded_unfilled.pngbin0 -> 92 bytes-rw-r--r--default_images/res/commandimagelist/sch_rect_unfilled.pngbin0 -> 83 bytes-rw-r--r--default_images/res/commandimagelist/sch_rectangletoolbox.pngbin0 -> 89 bytes-rw-r--r--default_images/res/commandimagelist/sch_recundo.pngbin0 -> 156 bytes-rw-r--r--default_images/res/commandimagelist/sch_redo.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/sch_refresh.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/sch_refreshformcontrol.pngbin0 -> 168 bytes-rw-r--r--default_images/res/commandimagelist/sch_rehearsetimings.pngbin0 -> 160 bytes-rw-r--r--default_images/res/commandimagelist/sch_reload.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/sch_removebullets.pngbin0 -> 80 bytes-rw-r--r--default_images/res/commandimagelist/sch_removefilter.pngbin0 -> 160 bytes-rw-r--r--default_images/res/commandimagelist/sch_removefiltersort.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/sch_renamemasterpage.pngbin0 -> 160 bytes-rw-r--r--default_images/res/commandimagelist/sch_repeat.pngbin0 -> 158 bytes-rw-r--r--default_images/res/commandimagelist/sch_reportnavigator.pngbin0 -> 191 bytes-rw-r--r--default_images/res/commandimagelist/sch_reverseorder.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/sch_rightpara.pngbin0 -> 79 bytes-rw-r--r--default_images/res/commandimagelist/sch_rulerrows.pngbin0 -> 152 bytes-rw-r--r--default_images/res/commandimagelist/sch_rulerrowsvertical.pngbin0 -> 153 bytes-rw-r--r--default_images/res/commandimagelist/sch_runbasic.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/sch_save.pngbin0 -> 117 bytes-rw-r--r--default_images/res/commandimagelist/sch_saveas.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/sch_saveastemplate.pngbin0 -> 142 bytes-rw-r--r--default_images/res/commandimagelist/sch_savebasicas.pngbin0 -> 143 bytes-rw-r--r--default_images/res/commandimagelist/sch_sbabrwinsert.pngbin0 -> 118 bytes-rw-r--r--default_images/res/commandimagelist/sch_sbaexecutesql.pngbin0 -> 171 bytes-rw-r--r--default_images/res/commandimagelist/sch_sbanativesql.pngbin0 -> 139 bytes-rw-r--r--default_images/res/commandimagelist/sch_scaletext.pngbin0 -> 166 bytes-rw-r--r--default_images/res/commandimagelist/sch_scrollbar.pngbin0 -> 108 bytes-rw-r--r--default_images/res/commandimagelist/sch_searchdialog.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/sch_sectionalignbottom.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/sch_sectionalignleft.pngbin0 -> 133 bytes-rw-r--r--default_images/res/commandimagelist/sch_sectionalignright.pngbin0 -> 131 bytes-rw-r--r--default_images/res/commandimagelist/sch_sectionaligntop.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/sch_sectionshrink.pngbin0 -> 137 bytes-rw-r--r--default_images/res/commandimagelist/sch_sectionshrinkbottom.pngbin0 -> 124 bytes-rw-r--r--default_images/res/commandimagelist/sch_sectionshrinktop.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/sch_selectall.pngbin0 -> 133 bytes-rw-r--r--default_images/res/commandimagelist/sch_selectmode.pngbin0 -> 119 bytes-rw-r--r--default_images/res/commandimagelist/sch_selectobject.pngbin0 -> 120 bytes-rw-r--r--default_images/res/commandimagelist/sch_selecttable.pngbin0 -> 86 bytes-rw-r--r--default_images/res/commandimagelist/sch_sendfax.pngbin0 -> 151 bytes-rw-r--r--default_images/res/commandimagelist/sch_sendmail.pngbin0 -> 159 bytes-rw-r--r--default_images/res/commandimagelist/sch_sendtoback.pngbin0 -> 131 bytes-rw-r--r--default_images/res/commandimagelist/sch_setborderstyle.pngbin0 -> 85 bytes-rw-r--r--default_images/res/commandimagelist/sch_setdocumentproperties.pngbin0 -> 148 bytes-rw-r--r--default_images/res/commandimagelist/sch_setobjecttobackground.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/sch_setobjecttoforeground.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_setoptimalcolumnwidth.pngbin0 -> 125 bytes-rw-r--r--default_images/res/commandimagelist/sch_setoptimalcolumnwidthdirect.pngbin0 -> 125 bytes-rw-r--r--default_images/res/commandimagelist/sch_setoptimalrowheight.pngbin0 -> 116 bytes-rw-r--r--default_images/res/commandimagelist/sch_shadowcursor.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/sch_shadowed.pngbin0 -> 148 bytes-rw-r--r--default_images/res/commandimagelist/sch_shear.pngbin0 -> 146 bytes-rw-r--r--default_images/res/commandimagelist/sch_shell3d.pngbin0 -> 138 bytes-rw-r--r--default_images/res/commandimagelist/sch_showannotation.pngbin0 -> 102 bytes-rw-r--r--default_images/res/commandimagelist/sch_showbookview.pngbin0 -> 119 bytes-rw-r--r--default_images/res/commandimagelist/sch_showbrowser.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/sch_showdatanavigator.pngbin0 -> 116 bytes-rw-r--r--default_images/res/commandimagelist/sch_showfmexplorer.pngbin0 -> 174 bytes-rw-r--r--default_images/res/commandimagelist/sch_showmultiplepages.pngbin0 -> 115 bytes-rw-r--r--default_images/res/commandimagelist/sch_showpropbrowser.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/sch_showslide.pngbin0 -> 115 bytes-rw-r--r--default_images/res/commandimagelist/sch_showtwopages.pngbin0 -> 120 bytes-rw-r--r--default_images/res/commandimagelist/sch_shrink.pngbin0 -> 128 bytes-rw-r--r--default_images/res/commandimagelist/sch_smallestheight.pngbin0 -> 129 bytes-rw-r--r--default_images/res/commandimagelist/sch_smallestwidth.pngbin0 -> 128 bytes-rw-r--r--default_images/res/commandimagelist/sch_snapborder.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/sch_snapframe.pngbin0 -> 116 bytes-rw-r--r--default_images/res/commandimagelist/sch_snappoints.pngbin0 -> 149 bytes-rw-r--r--default_images/res/commandimagelist/sch_solidcreate.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_sortascending.pngbin0 -> 145 bytes-rw-r--r--default_images/res/commandimagelist/sch_sortdescending.pngbin0 -> 151 bytes-rw-r--r--default_images/res/commandimagelist/sch_sortdown.pngbin0 -> 152 bytes-rw-r--r--default_images/res/commandimagelist/sch_sortup.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/sch_sourceview.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/sch_spacepara1.pngbin0 -> 78 bytes-rw-r--r--default_images/res/commandimagelist/sch_spacepara15.pngbin0 -> 78 bytes-rw-r--r--default_images/res/commandimagelist/sch_spacepara2.pngbin0 -> 79 bytes-rw-r--r--default_images/res/commandimagelist/sch_spelldialog.pngbin0 -> 143 bytes-rw-r--r--default_images/res/commandimagelist/sch_spelling.pngbin0 -> 143 bytes-rw-r--r--default_images/res/commandimagelist/sch_spellingandgrammardialog.pngbin0 -> 143 bytes-rw-r--r--default_images/res/commandimagelist/sch_spellonline.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/sch_sphere.pngbin0 -> 140 bytes-rw-r--r--default_images/res/commandimagelist/sch_spinbutton.pngbin0 -> 110 bytes-rw-r--r--default_images/res/commandimagelist/sch_splitcell.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/sch_splithorizontal.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/sch_splitparenthorizontal.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/sch_splitparentvertical.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_splitvertical.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_square.pngbin0 -> 91 bytes-rw-r--r--default_images/res/commandimagelist/sch_square_rounded.pngbin0 -> 99 bytes-rw-r--r--default_images/res/commandimagelist/sch_square_rounded_unfilled.pngbin0 -> 92 bytes-rw-r--r--default_images/res/commandimagelist/sch_square_unfilled.pngbin0 -> 85 bytes-rw-r--r--default_images/res/commandimagelist/sch_starchartdialog.pngbin0 -> 101 bytes-rw-r--r--default_images/res/commandimagelist/sch_starshapes.bang.pngbin0 -> 174 bytes-rw-r--r--default_images/res/commandimagelist/sch_starshapes.concave-star6.pngbin0 -> 148 bytes-rw-r--r--default_images/res/commandimagelist/sch_starshapes.doorplate.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/sch_starshapes.horizontal-scroll.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/sch_starshapes.pngbin0 -> 145 bytes-rw-r--r--default_images/res/commandimagelist/sch_starshapes.signet.pngbin0 -> 159 bytes-rw-r--r--default_images/res/commandimagelist/sch_starshapes.star12.pngbin0 -> 170 bytes-rw-r--r--default_images/res/commandimagelist/sch_starshapes.star24.pngbin0 -> 177 bytes-rw-r--r--default_images/res/commandimagelist/sch_starshapes.star4.pngbin0 -> 133 bytes-rw-r--r--default_images/res/commandimagelist/sch_starshapes.star5.pngbin0 -> 146 bytes-rw-r--r--default_images/res/commandimagelist/sch_starshapes.star6.pngbin0 -> 141 bytes-rw-r--r--default_images/res/commandimagelist/sch_starshapes.star8.pngbin0 -> 154 bytes-rw-r--r--default_images/res/commandimagelist/sch_starshapes.vertical-scroll.pngbin0 -> 129 bytes-rw-r--r--default_images/res/commandimagelist/sch_strikeout.pngbin0 -> 117 bytes-rw-r--r--default_images/res/commandimagelist/sch_styleapply.pngbin0 -> 168 bytes-rw-r--r--default_images/res/commandimagelist/sch_stylenewbyexample.pngbin0 -> 145 bytes-rw-r--r--default_images/res/commandimagelist/sch_styleupdatebyexample.pngbin0 -> 147 bytes-rw-r--r--default_images/res/commandimagelist/sch_stylewatercanmode.pngbin0 -> 168 bytes-rw-r--r--default_images/res/commandimagelist/sch_subscript.pngbin0 -> 170 bytes-rw-r--r--default_images/res/commandimagelist/sch_superscript.pngbin0 -> 173 bytes-rw-r--r--default_images/res/commandimagelist/sch_switchcontroldesignmode.pngbin0 -> 166 bytes-rw-r--r--default_images/res/commandimagelist/sch_switchxformsdesignmode.pngbin0 -> 166 bytes-rw-r--r--default_images/res/commandimagelist/sch_symbolcatalogue.pngbin0 -> 117 bytes-rw-r--r--default_images/res/commandimagelist/sch_symbolshapes.brace-pair.pngbin0 -> 118 bytes-rw-r--r--default_images/res/commandimagelist/sch_symbolshapes.bracket-pair.pngbin0 -> 103 bytes-rw-r--r--default_images/res/commandimagelist/sch_symbolshapes.cloud.pngbin0 -> 156 bytes-rw-r--r--default_images/res/commandimagelist/sch_symbolshapes.diamond-bevel.pngbin0 -> 152 bytes-rw-r--r--default_images/res/commandimagelist/sch_symbolshapes.flower.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/sch_symbolshapes.forbidden.pngbin0 -> 157 bytes-rw-r--r--default_images/res/commandimagelist/sch_symbolshapes.heart.pngbin0 -> 160 bytes-rw-r--r--default_images/res/commandimagelist/sch_symbolshapes.left-brace.pngbin0 -> 106 bytes-rw-r--r--default_images/res/commandimagelist/sch_symbolshapes.left-bracket.pngbin0 -> 94 bytes-rw-r--r--default_images/res/commandimagelist/sch_symbolshapes.lightning.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/sch_symbolshapes.moon.pngbin0 -> 175 bytes-rw-r--r--default_images/res/commandimagelist/sch_symbolshapes.octagon-bevel.pngbin0 -> 153 bytes-rw-r--r--default_images/res/commandimagelist/sch_symbolshapes.pngbin0 -> 159 bytes-rw-r--r--default_images/res/commandimagelist/sch_symbolshapes.puzzle.pngbin0 -> 158 bytes-rw-r--r--default_images/res/commandimagelist/sch_symbolshapes.quad-bevel.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/sch_symbolshapes.right-brace.pngbin0 -> 98 bytes-rw-r--r--default_images/res/commandimagelist/sch_symbolshapes.right-bracket.pngbin0 -> 89 bytes-rw-r--r--default_images/res/commandimagelist/sch_symbolshapes.smiley.pngbin0 -> 158 bytes-rw-r--r--default_images/res/commandimagelist/sch_symbolshapes.sun.pngbin0 -> 172 bytes-rw-r--r--default_images/res/commandimagelist/sch_tabdialog.pngbin0 -> 142 bytes-rw-r--r--default_images/res/commandimagelist/sch_tabledesign.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/sch_tabledialog.pngbin0 -> 138 bytes-rw-r--r--default_images/res/commandimagelist/sch_tablemodefix.pngbin0 -> 99 bytes-rw-r--r--default_images/res/commandimagelist/sch_tablemodefixprop.pngbin0 -> 129 bytes-rw-r--r--default_images/res/commandimagelist/sch_tablemodevariable.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/sch_tablesort.pngbin0 -> 126 bytes-rw-r--r--default_images/res/commandimagelist/sch_testmode.pngbin0 -> 166 bytes-rw-r--r--default_images/res/commandimagelist/sch_text.pngbin0 -> 102 bytes-rw-r--r--default_images/res/commandimagelist/sch_text_marquee.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_textdirectionlefttoright.pngbin0 -> 136 bytes-rw-r--r--default_images/res/commandimagelist/sch_textdirectiontoptobottom.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/sch_textfittosizetool.pngbin0 -> 133 bytes-rw-r--r--default_images/res/commandimagelist/sch_texttoolbox.pngbin0 -> 102 bytes-rw-r--r--default_images/res/commandimagelist/sch_thesaurus.pngbin0 -> 126 bytes-rw-r--r--default_images/res/commandimagelist/sch_thesaurusdialog.pngbin0 -> 128 bytes-rw-r--r--default_images/res/commandimagelist/sch_timefield.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/sch_toggleanchortype.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_toggleaxisdescr.pngbin0 -> 101 bytes-rw-r--r--default_images/res/commandimagelist/sch_toggleaxistitle.pngbin0 -> 136 bytes-rw-r--r--default_images/res/commandimagelist/sch_togglebreakpoint.pngbin0 -> 165 bytes-rw-r--r--default_images/res/commandimagelist/sch_togglegridhorizontal.pngbin0 -> 95 bytes-rw-r--r--default_images/res/commandimagelist/sch_togglegridvertical.pngbin0 -> 93 bytes-rw-r--r--default_images/res/commandimagelist/sch_togglelegend.pngbin0 -> 116 bytes-rw-r--r--default_images/res/commandimagelist/sch_togglemergecells.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/sch_toggleobjectbeziermode.pngbin0 -> 138 bytes-rw-r--r--default_images/res/commandimagelist/sch_toggleobjectrotatemode.pngbin0 -> 123 bytes-rw-r--r--default_images/res/commandimagelist/sch_togglesheetgrid.pngbin0 -> 109 bytes-rw-r--r--default_images/res/commandimagelist/sch_toggletitle.pngbin0 -> 130 bytes-rw-r--r--default_images/res/commandimagelist/sch_toolsmacroedit.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_toolsoptions.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_torus.pngbin0 -> 131 bytes-rw-r--r--default_images/res/commandimagelist/sch_transformdialog.pngbin0 -> 148 bytes-rw-r--r--default_images/res/commandimagelist/sch_underline.pngbin0 -> 117 bytes-rw-r--r--default_images/res/commandimagelist/sch_underlinedouble.pngbin0 -> 117 bytes-rw-r--r--default_images/res/commandimagelist/sch_undo.pngbin0 -> 139 bytes-rw-r--r--default_images/res/commandimagelist/sch_ungroup.pngbin0 -> 128 bytes-rw-r--r--default_images/res/commandimagelist/sch_unhainframes.pngbin0 -> 155 bytes-rw-r--r--default_images/res/commandimagelist/sch_upsearch.pngbin0 -> 136 bytes-rw-r--r--default_images/res/commandimagelist/sch_urlbutton.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sch_usewizards.pngbin0 -> 185 bytes-rw-r--r--default_images/res/commandimagelist/sch_verticalcaption.pngbin0 -> 124 bytes-rw-r--r--default_images/res/commandimagelist/sch_verticaltext.pngbin0 -> 103 bytes-rw-r--r--default_images/res/commandimagelist/sch_verticaltextfittosizetool.pngbin0 -> 131 bytes-rw-r--r--default_images/res/commandimagelist/sch_vfixedline.pngbin0 -> 101 bytes-rw-r--r--default_images/res/commandimagelist/sch_view100.pngbin0 -> 131 bytes-rw-r--r--default_images/res/commandimagelist/sch_viewdatasourcebrowser.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/sch_viewformasgrid.pngbin0 -> 124 bytes-rw-r--r--default_images/res/commandimagelist/sch_vscrollbar.pngbin0 -> 108 bytes-rw-r--r--default_images/res/commandimagelist/sch_window3d.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/sch_wrapcontour.pngbin0 -> 118 bytes-rw-r--r--default_images/res/commandimagelist/sch_wrapideal.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/sch_wrapleft.pngbin0 -> 102 bytes-rw-r--r--default_images/res/commandimagelist/sch_wrapoff.pngbin0 -> 97 bytes-rw-r--r--default_images/res/commandimagelist/sch_wrapon.pngbin0 -> 105 bytes-rw-r--r--default_images/res/commandimagelist/sch_wrapright.pngbin0 -> 102 bytes-rw-r--r--default_images/res/commandimagelist/sch_wrapthrough.pngbin0 -> 121 bytes-rw-r--r--default_images/res/commandimagelist/sch_xlinecolor.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/sch_xlinestyle.pngbin0 -> 134 bytes-rw-r--r--default_images/res/commandimagelist/sch_zoom.pngbin0 -> 129 bytes-rw-r--r--default_images/res/commandimagelist/sch_zoom100percent.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/sch_zoomin.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/sch_zoomminus.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/sch_zoomnext.pngbin0 -> 156 bytes-rw-r--r--default_images/res/commandimagelist/sch_zoomobjects.pngbin0 -> 157 bytes-rw-r--r--default_images/res/commandimagelist/sch_zoomoptimal.pngbin0 -> 152 bytes-rw-r--r--default_images/res/commandimagelist/sch_zoomout.pngbin0 -> 132 bytes-rw-r--r--default_images/res/commandimagelist/sch_zoompage.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/sch_zoompagewidth.pngbin0 -> 162 bytes-rw-r--r--default_images/res/commandimagelist/sch_zoompanning.pngbin0 -> 175 bytes-rw-r--r--default_images/res/commandimagelist/sch_zoomplus.pngbin0 -> 135 bytes-rw-r--r--default_images/res/commandimagelist/sch_zoomprevious.pngbin0 -> 153 bytes-rw-r--r--default_images/res/commandimagelist/sch_zoomtoolbox.pngbin0 -> 129 bytes-rw-r--r--default_images/res/commandimagelist/sk/lc_bold.pngbin0 -> 228 bytes-rw-r--r--default_images/res/commandimagelist/sk/lc_italic.pngbin0 -> 240 bytes-rw-r--r--default_images/res/commandimagelist/sk/lc_numberformatdecimal.pngbin0 -> 355 bytes-rw-r--r--default_images/res/commandimagelist/sk/lc_underline.pngbin0 -> 214 bytes-rw-r--r--default_images/res/commandimagelist/sk/lc_underlinedouble.pngbin0 -> 213 bytes-rw-r--r--default_images/res/commandimagelist/sk/lch_bold.pngbin0 -> 143 bytes-rw-r--r--default_images/res/commandimagelist/sk/lch_italic.pngbin0 -> 209 bytes-rw-r--r--default_images/res/commandimagelist/sk/lch_numberformatdecimal.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/sk/lch_underline.pngbin0 -> 175 bytes-rw-r--r--default_images/res/commandimagelist/sk/lch_underlinedouble.pngbin0 -> 176 bytes-rw-r--r--default_images/res/commandimagelist/sk/sc_bold.pngbin0 -> 170 bytes-rw-r--r--default_images/res/commandimagelist/sk/sc_italic.pngbin0 -> 183 bytes-rw-r--r--default_images/res/commandimagelist/sk/sc_numberformatdecimal.pngbin0 -> 266 bytes-rw-r--r--default_images/res/commandimagelist/sk/sc_underline.pngbin0 -> 189 bytes-rw-r--r--default_images/res/commandimagelist/sk/sc_underlinedouble.pngbin0 -> 190 bytes-rw-r--r--default_images/res/commandimagelist/sk/sch_bold.pngbin0 -> 118 bytes-rw-r--r--default_images/res/commandimagelist/sk/sch_italic.pngbin0 -> 161 bytes-rw-r--r--default_images/res/commandimagelist/sk/sch_numberformatdecimal.pngbin0 -> 119 bytes-rw-r--r--default_images/res/commandimagelist/sk/sch_underline.pngbin0 -> 120 bytes-rw-r--r--default_images/res/commandimagelist/sk/sch_underlinedouble.pngbin0 -> 120 bytes-rw-r--r--default_images/res/commandimagelist/sl/lc_bold.pngbin0 -> 231 bytes-rw-r--r--default_images/res/commandimagelist/sl/lc_italic.pngbin0 -> 257 bytes-rw-r--r--default_images/res/commandimagelist/sl/lc_underline.pngbin0 -> 215 bytes-rw-r--r--default_images/res/commandimagelist/sl/lc_underlinedouble.pngbin0 -> 236 bytes-rw-r--r--default_images/res/commandimagelist/sl/lch_bold.pngbin0 -> 159 bytes-rw-r--r--default_images/res/commandimagelist/sl/lch_italic.pngbin0 -> 164 bytes-rw-r--r--default_images/res/commandimagelist/sl/lch_underline.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/sl/lch_underlinedouble.pngbin0 -> 143 bytes-rw-r--r--default_images/res/commandimagelist/sl/sc_bold.pngbin0 -> 175 bytes-rw-r--r--default_images/res/commandimagelist/sl/sc_italic.pngbin0 -> 204 bytes-rw-r--r--default_images/res/commandimagelist/sl/sc_underline.pngbin0 -> 179 bytes-rw-r--r--default_images/res/commandimagelist/sl/sc_underlinedouble.pngbin0 -> 220 bytes-rw-r--r--default_images/res/commandimagelist/sl/sch_bold.pngbin0 -> 131 bytes-rw-r--r--default_images/res/commandimagelist/sl/sch_italic.pngbin0 -> 130 bytes-rw-r--r--default_images/res/commandimagelist/sl/sch_underline.pngbin0 -> 122 bytes-rw-r--r--default_images/res/commandimagelist/sl/sch_underlinedouble.pngbin0 -> 120 bytes-rw-r--r--default_images/res/commandimagelist/sv/lc_bold.pngbin0 -> 256 bytes-rw-r--r--default_images/res/commandimagelist/sv/lc_italic.pngbin0 -> 440 bytes-rw-r--r--default_images/res/commandimagelist/sv/lc_underline.pngbin0 -> 361 bytes-rw-r--r--default_images/res/commandimagelist/sv/lc_underlinedouble.pngbin0 -> 356 bytes-rw-r--r--default_images/res/commandimagelist/sv/lch_bold.pngbin0 -> 97 bytes-rw-r--r--default_images/res/commandimagelist/sv/lch_italic.pngbin0 -> 282 bytes-rw-r--r--default_images/res/commandimagelist/sv/lch_underline.pngbin0 -> 176 bytes-rw-r--r--default_images/res/commandimagelist/sv/lch_underlinedouble.pngbin0 -> 176 bytes-rw-r--r--default_images/res/commandimagelist/sv/sc_bold.pngbin0 -> 206 bytes-rw-r--r--default_images/res/commandimagelist/sv/sc_italic.pngbin0 -> 304 bytes-rw-r--r--default_images/res/commandimagelist/sv/sc_underline.pngbin0 -> 257 bytes-rw-r--r--default_images/res/commandimagelist/sv/sc_underlinedouble.pngbin0 -> 258 bytes-rw-r--r--default_images/res/commandimagelist/sv/sch_bold.pngbin0 -> 90 bytes-rw-r--r--default_images/res/commandimagelist/sv/sch_italic.pngbin0 -> 201 bytes-rw-r--r--default_images/res/commandimagelist/sv/sch_underline.pngbin0 -> 120 bytes-rw-r--r--default_images/res/commandimagelist/sv/sch_underlinedouble.pngbin0 -> 120 bytes-rw-r--r--default_images/res/commandimagelist/tr/lc_bold.pngbin0 -> 231 bytes-rw-r--r--default_images/res/commandimagelist/tr/lc_italic.pngbin0 -> 271 bytes-rw-r--r--default_images/res/commandimagelist/tr/lc_underline.pngbin0 -> 304 bytes-rw-r--r--default_images/res/commandimagelist/tr/lc_underlinedouble.pngbin0 -> 304 bytes-rw-r--r--default_images/res/commandimagelist/tr/lch_bold.pngbin0 -> 159 bytes-rw-r--r--default_images/res/commandimagelist/tr/lch_italic.pngbin0 -> 173 bytes-rw-r--r--default_images/res/commandimagelist/tr/lch_underline.pngbin0 -> 184 bytes-rw-r--r--default_images/res/commandimagelist/tr/lch_underlinedouble.pngbin0 -> 182 bytes-rw-r--r--default_images/res/commandimagelist/tr/sc_bold.pngbin0 -> 175 bytes-rw-r--r--default_images/res/commandimagelist/tr/sc_italic.pngbin0 -> 204 bytes-rw-r--r--default_images/res/commandimagelist/tr/sc_underline.pngbin0 -> 219 bytes-rw-r--r--default_images/res/commandimagelist/tr/sc_underlinedouble.pngbin0 -> 260 bytes-rw-r--r--default_images/res/commandimagelist/tr/sch_bold.pngbin0 -> 131 bytes-rw-r--r--default_images/res/commandimagelist/tr/sch_italic.pngbin0 -> 127 bytes-rw-r--r--default_images/res/commandimagelist/tr/sch_underline.pngbin0 -> 136 bytes-rw-r--r--default_images/res/commandimagelist/tr/sch_underlinedouble.pngbin0 -> 136 bytes-rw-r--r--default_images/res/commandimagelist/zh-CN/lc_bold.pngbin0 -> 228 bytes-rw-r--r--default_images/res/commandimagelist/zh-CN/lc_italic.pngbin0 -> 239 bytes-rw-r--r--default_images/res/commandimagelist/zh-CN/lc_underline.pngbin0 -> 213 bytes-rw-r--r--default_images/res/commandimagelist/zh-CN/lc_underlinedouble.pngbin0 -> 214 bytes-rw-r--r--default_images/res/commandimagelist/zh-CN/lch_bold.pngbin0 -> 144 bytes-rw-r--r--default_images/res/commandimagelist/zh-CN/lch_italic.pngbin0 -> 209 bytes-rw-r--r--default_images/res/commandimagelist/zh-CN/lch_underline.pngbin0 -> 174 bytes-rw-r--r--default_images/res/commandimagelist/zh-CN/lch_underlinedouble.pngbin0 -> 176 bytes-rw-r--r--default_images/res/commandimagelist/zh-CN/sc_bold.pngbin0 -> 170 bytes-rw-r--r--default_images/res/commandimagelist/zh-CN/sc_italic.pngbin0 -> 184 bytes-rw-r--r--default_images/res/commandimagelist/zh-CN/sc_underline.pngbin0 -> 190 bytes-rw-r--r--default_images/res/commandimagelist/zh-CN/sc_underlinedouble.pngbin0 -> 190 bytes-rw-r--r--default_images/res/commandimagelist/zh-CN/sch_bold.pngbin0 -> 118 bytes-rw-r--r--default_images/res/commandimagelist/zh-CN/sch_italic.pngbin0 -> 162 bytes-rw-r--r--default_images/res/commandimagelist/zh-CN/sch_underline.pngbin0 -> 120 bytes-rw-r--r--default_images/res/commandimagelist/zh-CN/sch_underlinedouble.pngbin0 -> 120 bytes-rw-r--r--default_images/res/commandimagelist/zh-TW/lc_bold.pngbin0 -> 228 bytes-rw-r--r--default_images/res/commandimagelist/zh-TW/lc_italic.pngbin0 -> 239 bytes-rw-r--r--default_images/res/commandimagelist/zh-TW/lc_underline.pngbin0 -> 213 bytes-rw-r--r--default_images/res/commandimagelist/zh-TW/lc_underlinedouble.pngbin0 -> 215 bytes-rw-r--r--default_images/res/commandimagelist/zh-TW/lch_bold.pngbin0 -> 143 bytes-rw-r--r--default_images/res/commandimagelist/zh-TW/lch_italic.pngbin0 -> 209 bytes-rw-r--r--default_images/res/commandimagelist/zh-TW/lch_underline.pngbin0 -> 175 bytes-rw-r--r--default_images/res/commandimagelist/zh-TW/lch_underlinedouble.pngbin0 -> 176 bytes-rw-r--r--default_images/res/commandimagelist/zh-TW/sc_bold.pngbin0 -> 170 bytes-rw-r--r--default_images/res/commandimagelist/zh-TW/sc_italic.pngbin0 -> 184 bytes-rw-r--r--default_images/res/commandimagelist/zh-TW/sc_underline.pngbin0 -> 190 bytes-rw-r--r--default_images/res/commandimagelist/zh-TW/sc_underlinedouble.pngbin0 -> 189 bytes-rw-r--r--default_images/res/commandimagelist/zh-TW/sch_bold.pngbin0 -> 118 bytes-rw-r--r--default_images/res/commandimagelist/zh-TW/sch_underline.pngbin0 -> 120 bytes-rw-r--r--default_images/res/commandimagelist/zh-TW/sch_underlinedouble.pngbin0 -> 120 bytes-rw-r--r--default_images/res/component_16.pngbin0 -> 140 bytes-rw-r--r--default_images/res/component_16_h.pngbin0 -> 101 bytes-rw-r--r--default_images/res/cookie.pngbin0 -> 18364 bytes-rw-r--r--default_images/res/cs/lc26648.pngbin0 -> 424 bytes-rw-r--r--default_images/res/cs/sc10009.pngbin0 -> 328 bytes-rw-r--r--default_images/res/cs/sch10008.pngbin0 -> 289 bytes-rw-r--r--default_images/res/da01.pngbin0 -> 212 bytes-rw-r--r--default_images/res/da02.pngbin0 -> 212 bytes-rw-r--r--default_images/res/da03.pngbin0 -> 291 bytes-rw-r--r--default_images/res/da04.pngbin0 -> 260 bytes-rw-r--r--default_images/res/da05.pngbin0 -> 274 bytes-rw-r--r--default_images/res/da06.pngbin0 -> 330 bytes-rw-r--r--default_images/res/dah01.pngbin0 -> 85 bytes-rw-r--r--default_images/res/dah02.pngbin0 -> 85 bytes-rw-r--r--default_images/res/dah03.pngbin0 -> 111 bytes-rw-r--r--default_images/res/dah04.pngbin0 -> 104 bytes-rw-r--r--default_images/res/dah05.pngbin0 -> 98 bytes-rw-r--r--default_images/res/dah06.pngbin0 -> 126 bytes-rw-r--r--default_images/res/de/lc10008.pngbin0 -> 846 bytes-rw-r--r--default_images/res/de/lch10014.pngbin0 -> 177 bytes-rw-r--r--default_images/res/de/sc10009.pngbin0 -> 354 bytes-rw-r--r--default_images/res/de/sc10014.pngbin0 -> 408 bytes-rw-r--r--default_images/res/de/sch10014.pngbin0 -> 124 bytes-rw-r--r--default_images/res/de/sch26648.pngbin0 -> 123 bytes-rw-r--r--default_images/res/dialogfolder_16.pngbin0 -> 371 bytes-rw-r--r--default_images/res/dialogfolder_16_h.pngbin0 -> 137 bytes-rw-r--r--default_images/res/dialogfoldernot_16.pngbin0 -> 383 bytes-rw-r--r--default_images/res/dialogfoldernot_16_h.pngbin0 -> 139 bytes-rw-r--r--default_images/res/dir-clos.pngbin0 -> 253 bytes-rw-r--r--default_images/res/dir-open.pngbin0 -> 466 bytes-rw-r--r--default_images/res/empty.pngbin0 -> 124 bytes-rw-r--r--default_images/res/empty_l.pngbin0 -> 136 bytes-rw-r--r--default_images/res/es/lc10008.pngbin0 -> 531 bytes-rw-r--r--default_images/res/es/lc10009.pngbin0 -> 396 bytes-rw-r--r--default_images/res/es/lc10014.pngbin0 -> 521 bytes-rw-r--r--default_images/res/es/lc26648.pngbin0 -> 531 bytes-rw-r--r--default_images/res/es/lch10008.pngbin0 -> 489 bytes-rw-r--r--default_images/res/es/lch10009.pngbin0 -> 130 bytes-rw-r--r--default_images/res/es/lch10014.pngbin0 -> 145 bytes-rw-r--r--default_images/res/es/lch26648.pngbin0 -> 144 bytes-rw-r--r--default_images/res/es/sc10008.pngbin0 -> 368 bytes-rw-r--r--default_images/res/es/sc10009.pngbin0 -> 296 bytes-rw-r--r--default_images/res/es/sc10014.pngbin0 -> 386 bytes-rw-r--r--default_images/res/es/sc26648.pngbin0 -> 394 bytes-rw-r--r--default_images/res/es/sch10008.pngbin0 -> 339 bytes-rw-r--r--default_images/res/es/sch10009.pngbin0 -> 105 bytes-rw-r--r--default_images/res/es/sch10014.pngbin0 -> 118 bytes-rw-r--r--default_images/res/es/sch26648.pngbin0 -> 120 bytes-rw-r--r--default_images/res/extension_plus_26.pngbin0 -> 1117 bytes-rw-r--r--default_images/res/extension_plus_32.pngbin0 -> 1298 bytes-rw-r--r--default_images/res/fileopen.pngbin0 -> 243 bytes-rw-r--r--default_images/res/fileopen_hc.pngbin0 -> 103 bytes-rw-r--r--default_images/res/foldercl.pngbin0 -> 238 bytes-rw-r--r--default_images/res/foldercl_h.pngbin0 -> 101 bytes-rw-r--r--default_images/res/folderop.pngbin0 -> 306 bytes-rw-r--r--default_images/res/folderop_h.pngbin0 -> 119 bytes-rw-r--r--default_images/res/fp010.pngbin0 -> 380 bytes-rw-r--r--default_images/res/fp015.pngbin0 -> 374 bytes-rw-r--r--default_images/res/fph010.pngbin0 -> 134 bytes-rw-r--r--default_images/res/fph015.pngbin0 -> 125 bytes-rw-r--r--default_images/res/fr/lc10008.pngbin0 -> 440 bytes-rw-r--r--default_images/res/fr/lc10009.pngbin0 -> 516 bytes-rw-r--r--default_images/res/fr/lc10014.pngbin0 -> 521 bytes-rw-r--r--default_images/res/fr/lc26648.pngbin0 -> 531 bytes-rw-r--r--default_images/res/fr/lch10008.pngbin0 -> 425 bytes-rw-r--r--default_images/res/fr/lch10009.pngbin0 -> 129 bytes-rw-r--r--default_images/res/fr/lch10014.pngbin0 -> 145 bytes-rw-r--r--default_images/res/fr/lch26648.pngbin0 -> 144 bytes-rw-r--r--default_images/res/fr/sc10008.pngbin0 -> 304 bytes-rw-r--r--default_images/res/fr/sc10009.pngbin0 -> 366 bytes-rw-r--r--default_images/res/fr/sc10014.pngbin0 -> 386 bytes-rw-r--r--default_images/res/fr/sc26648.pngbin0 -> 394 bytes-rw-r--r--default_images/res/fr/sch10008.pngbin0 -> 289 bytes-rw-r--r--default_images/res/fr/sch10009.pngbin0 -> 121 bytes-rw-r--r--default_images/res/fr/sch10014.pngbin0 -> 118 bytes-rw-r--r--default_images/res/fr/sch26648.pngbin0 -> 120 bytes-rw-r--r--default_images/res/fwthcirc.pngbin0 -> 112 bytes-rw-r--r--default_images/res/fwthcirc_h.pngbin0 -> 102 bytes-rw-r--r--default_images/res/grafikde.pngbin0 -> 524 bytes-rw-r--r--default_images/res/grafikde_h.pngbin0 -> 184 bytes-rw-r--r--default_images/res/grafikei.pngbin0 -> 481 bytes-rw-r--r--default_images/res/grafikei_h.pngbin0 -> 121 bytes-rw-r--r--default_images/res/harddisk_16.pngbin0 -> 174 bytes-rw-r--r--default_images/res/harddisk_16_h.pngbin0 -> 129 bytes-rw-r--r--default_images/res/helpimg/area1.pngbin0 -> 2194 bytes-rw-r--r--default_images/res/helpimg/area2.pngbin0 -> 3202 bytes-rw-r--r--default_images/res/helpimg/bg/calcein.pngbin0 -> 538 bytes-rw-r--r--default_images/res/helpimg/bg/feldalle.pngbin0 -> 1752 bytes-rw-r--r--default_images/res/helpimg/bg/feldbrei.pngbin0 -> 454 bytes-rw-r--r--default_images/res/helpimg/bg/feldcolo.pngbin0 -> 833 bytes-rw-r--r--default_images/res/helpimg/bg/names_as_addressing.pngbin0 -> 5852 bytes-rw-r--r--default_images/res/helpimg/bg/objbitmp.pngbin0 -> 3523 bytes-rw-r--r--default_images/res/helpimg/bg/prinzoom.pngbin0 -> 1395 bytes-rw-r--r--default_images/res/helpimg/bg/rechenlt.pngbin0 -> 585 bytes-rw-r--r--default_images/res/helpimg/bg/sheettabs.pngbin0 -> 2103 bytes-rw-r--r--default_images/res/helpimg/bg/swh00055.pngbin0 -> 594 bytes-rw-r--r--default_images/res/helpimg/bg/swh00056.pngbin0 -> 519 bytes-rw-r--r--default_images/res/helpimg/bg/swh00117.pngbin0 -> 1109 bytes-rw-r--r--default_images/res/helpimg/bg/zellvor.pngbin0 -> 634 bytes-rw-r--r--default_images/res/helpimg/border_ca_1.pngbin0 -> 740 bytes-rw-r--r--default_images/res/helpimg/border_ca_2.pngbin0 -> 665 bytes-rw-r--r--default_images/res/helpimg/border_ca_3.pngbin0 -> 701 bytes-rw-r--r--default_images/res/helpimg/border_ca_4.pngbin0 -> 605 bytes-rw-r--r--default_images/res/helpimg/border_ca_5.pngbin0 -> 200 bytes-rw-r--r--default_images/res/helpimg/border_ca_6.pngbin0 -> 503 bytes-rw-r--r--default_images/res/helpimg/border_ca_7.pngbin0 -> 507 bytes-rw-r--r--default_images/res/helpimg/border_ca_8.pngbin0 -> 546 bytes-rw-r--r--default_images/res/helpimg/border_ca_9.pngbin0 -> 679 bytes-rw-r--r--default_images/res/helpimg/border_ca_gray.pngbin0 -> 525 bytes-rw-r--r--default_images/res/helpimg/border_ca_white.pngbin0 -> 518 bytes-rw-r--r--default_images/res/helpimg/border_wr_1.pngbin0 -> 765 bytes-rw-r--r--default_images/res/helpimg/border_wr_2.pngbin0 -> 799 bytes-rw-r--r--default_images/res/helpimg/border_wr_3.pngbin0 -> 856 bytes-rw-r--r--default_images/res/helpimg/border_wr_4.pngbin0 -> 858 bytes-rw-r--r--default_images/res/helpimg/border_wr_5.pngbin0 -> 869 bytes-rw-r--r--default_images/res/helpimg/border_wr_6.pngbin0 -> 370 bytes-rw-r--r--default_images/res/helpimg/border_wr_7.pngbin0 -> 372 bytes-rw-r--r--default_images/res/helpimg/border_wr_8.pngbin0 -> 368 bytes-rw-r--r--default_images/res/helpimg/border_wr_9.pngbin0 -> 319 bytes-rw-r--r--default_images/res/helpimg/calcein.pngbin0 -> 538 bytes-rw-r--r--default_images/res/helpimg/calcnav.pngbin0 -> 656 bytes-rw-r--r--default_images/res/helpimg/copydata.pngbin0 -> 167 bytes-rw-r--r--default_images/res/helpimg/cs/calcein.pngbin0 -> 538 bytes-rw-r--r--default_images/res/helpimg/cs/feldalle.pngbin0 -> 752 bytes-rw-r--r--default_images/res/helpimg/cs/feldbrei.pngbin0 -> 458 bytes-rw-r--r--default_images/res/helpimg/cs/feldcolo.pngbin0 -> 575 bytes-rw-r--r--default_images/res/helpimg/cs/names_as_addressing.pngbin0 -> 1920 bytes-rw-r--r--default_images/res/helpimg/cs/rechenlt.pngbin0 -> 1006 bytes-rw-r--r--default_images/res/helpimg/cs/sheettabs.pngbin0 -> 1397 bytes-rw-r--r--default_images/res/helpimg/cs/swh00055.pngbin0 -> 650 bytes-rw-r--r--default_images/res/helpimg/cs/swh00056.pngbin0 -> 518 bytes-rw-r--r--default_images/res/helpimg/cs/swh00117.pngbin0 -> 723 bytes-rw-r--r--default_images/res/helpimg/cs/zellvor.pngbin0 -> 585 bytes-rw-r--r--default_images/res/helpimg/da/calcein.pngbin0 -> 538 bytes-rw-r--r--default_images/res/helpimg/da/feldalle.pngbin0 -> 763 bytes-rw-r--r--default_images/res/helpimg/da/feldbrei.pngbin0 -> 458 bytes-rw-r--r--default_images/res/helpimg/da/feldcolo.pngbin0 -> 534 bytes-rw-r--r--default_images/res/helpimg/da/names_as_addressing.pngbin0 -> 1907 bytes-rw-r--r--default_images/res/helpimg/da/rechenlt.pngbin0 -> 567 bytes-rw-r--r--default_images/res/helpimg/da/sheettabs.pngbin0 -> 1404 bytes-rw-r--r--default_images/res/helpimg/da/swh00055.pngbin0 -> 593 bytes-rw-r--r--default_images/res/helpimg/da/swh00056.pngbin0 -> 519 bytes-rw-r--r--default_images/res/helpimg/da/swh00117.pngbin0 -> 689 bytes-rw-r--r--default_images/res/helpimg/da/zellvor.pngbin0 -> 577 bytes-rw-r--r--default_images/res/helpimg/de/calcein.pngbin0 -> 538 bytes-rw-r--r--default_images/res/helpimg/de/feldalle.pngbin0 -> 1090 bytes-rw-r--r--default_images/res/helpimg/de/feldbrei.pngbin0 -> 440 bytes-rw-r--r--default_images/res/helpimg/de/feldcolo.pngbin0 -> 722 bytes-rw-r--r--default_images/res/helpimg/de/names_as_addressing.pngbin0 -> 1914 bytes-rw-r--r--default_images/res/helpimg/de/objbitmp.pngbin0 -> 4618 bytes-rw-r--r--default_images/res/helpimg/de/prinzoom.pngbin0 -> 1571 bytes-rw-r--r--default_images/res/helpimg/de/rechenlt.pngbin0 -> 531 bytes-rw-r--r--default_images/res/helpimg/de/sheettabs.pngbin0 -> 1446 bytes-rw-r--r--default_images/res/helpimg/de/swh00055.pngbin0 -> 591 bytes-rw-r--r--default_images/res/helpimg/de/swh00056.pngbin0 -> 518 bytes-rw-r--r--default_images/res/helpimg/de/swh00117.pngbin0 -> 910 bytes-rw-r--r--default_images/res/helpimg/de/zellvor.pngbin0 -> 738 bytes-rw-r--r--default_images/res/helpimg/diatrans.pngbin0 -> 98 bytes-rw-r--r--default_images/res/helpimg/dircurscent.pngbin0 -> 151 bytes-rw-r--r--default_images/res/helpimg/dircursleft.pngbin0 -> 130 bytes-rw-r--r--default_images/res/helpimg/dircursright.pngbin0 -> 126 bytes-rw-r--r--default_images/res/helpimg/ein.pngbin0 -> 124 bytes-rw-r--r--default_images/res/helpimg/en-GB/calcein.pngbin0 -> 538 bytes-rw-r--r--default_images/res/helpimg/en-GB/feldalle.pngbin0 -> 346 bytes-rw-r--r--default_images/res/helpimg/en-GB/feldbrei.pngbin0 -> 440 bytes-rw-r--r--default_images/res/helpimg/en-GB/feldcolo.pngbin0 -> 557 bytes-rw-r--r--default_images/res/helpimg/en-GB/names_as_addressing.pngbin0 -> 2959 bytes-rw-r--r--default_images/res/helpimg/en-GB/rechenlt.pngbin0 -> 585 bytes-rw-r--r--default_images/res/helpimg/en-GB/sheettabs.pngbin0 -> 1414 bytes-rw-r--r--default_images/res/helpimg/en-GB/swh00055.pngbin0 -> 596 bytes-rw-r--r--default_images/res/helpimg/en-GB/swh00056.pngbin0 -> 518 bytes-rw-r--r--default_images/res/helpimg/en-GB/swh00117.pngbin0 -> 891 bytes-rw-r--r--default_images/res/helpimg/en-GB/zellvor.pngbin0 -> 572 bytes-rw-r--r--default_images/res/helpimg/es/calcein.pngbin0 -> 538 bytes-rw-r--r--default_images/res/helpimg/es/feldalle.pngbin0 -> 1221 bytes-rw-r--r--default_images/res/helpimg/es/feldbrei.pngbin0 -> 440 bytes-rw-r--r--default_images/res/helpimg/es/feldcolo.pngbin0 -> 645 bytes-rw-r--r--default_images/res/helpimg/es/names_as_addressing.pngbin0 -> 3180 bytes-rw-r--r--default_images/res/helpimg/es/objbitmp.pngbin0 -> 2540 bytes-rw-r--r--default_images/res/helpimg/es/prinzoom.pngbin0 -> 1476 bytes-rw-r--r--default_images/res/helpimg/es/rechenlt.pngbin0 -> 950 bytes-rw-r--r--default_images/res/helpimg/es/sheettabs.pngbin0 -> 1868 bytes-rw-r--r--default_images/res/helpimg/es/swh00055.pngbin0 -> 592 bytes-rw-r--r--default_images/res/helpimg/es/swh00056.pngbin0 -> 518 bytes-rw-r--r--default_images/res/helpimg/es/swh00117.pngbin0 -> 829 bytes-rw-r--r--default_images/res/helpimg/es/zellvor.pngbin0 -> 761 bytes-rw-r--r--default_images/res/helpimg/et/calcein.pngbin0 -> 538 bytes-rw-r--r--default_images/res/helpimg/et/feldalle.pngbin0 -> 1024 bytes-rw-r--r--default_images/res/helpimg/et/feldbrei.pngbin0 -> 457 bytes-rw-r--r--default_images/res/helpimg/et/feldcolo.pngbin0 -> 639 bytes-rw-r--r--default_images/res/helpimg/et/names_as_addressing.pngbin0 -> 3251 bytes-rw-r--r--default_images/res/helpimg/et/rechenlt.pngbin0 -> 1006 bytes-rw-r--r--default_images/res/helpimg/et/sheettabs.pngbin0 -> 1809 bytes-rw-r--r--default_images/res/helpimg/et/swh00055.pngbin0 -> 650 bytes-rw-r--r--default_images/res/helpimg/et/swh00056.pngbin0 -> 518 bytes-rw-r--r--default_images/res/helpimg/et/swh00117.pngbin0 -> 835 bytes-rw-r--r--default_images/res/helpimg/et/zellvor.pngbin0 -> 695 bytes-rw-r--r--default_images/res/helpimg/feldalle.pngbin0 -> 747 bytes-rw-r--r--default_images/res/helpimg/feldbrei.pngbin0 -> 440 bytes-rw-r--r--default_images/res/helpimg/feldcolo.pngbin0 -> 556 bytes-rw-r--r--default_images/res/helpimg/feldurch.pngbin0 -> 486 bytes-rw-r--r--default_images/res/helpimg/formschn.pngbin0 -> 601 bytes-rw-r--r--default_images/res/helpimg/formsubt.pngbin0 -> 605 bytes-rw-r--r--default_images/res/helpimg/formvers.pngbin0 -> 739 bytes-rw-r--r--default_images/res/helpimg/fr/calcein.pngbin0 -> 538 bytes-rw-r--r--default_images/res/helpimg/fr/feldalle.pngbin0 -> 1108 bytes-rw-r--r--default_images/res/helpimg/fr/feldbrei.pngbin0 -> 521 bytes-rw-r--r--default_images/res/helpimg/fr/feldcolo.pngbin0 -> 605 bytes-rw-r--r--default_images/res/helpimg/fr/names_as_addressing.pngbin0 -> 2991 bytes-rw-r--r--default_images/res/helpimg/fr/objbitmp.pngbin0 -> 2315 bytes-rw-r--r--default_images/res/helpimg/fr/prinzoom.pngbin0 -> 1395 bytes-rw-r--r--default_images/res/helpimg/fr/rechenlt.pngbin0 -> 876 bytes-rw-r--r--default_images/res/helpimg/fr/sheettabs.pngbin0 -> 1869 bytes-rw-r--r--default_images/res/helpimg/fr/swh00055.pngbin0 -> 592 bytes-rw-r--r--default_images/res/helpimg/fr/swh00056.pngbin0 -> 519 bytes-rw-r--r--default_images/res/helpimg/fr/swh00117.pngbin0 -> 826 bytes-rw-r--r--default_images/res/helpimg/fr/zellvor.pngbin0 -> 679 bytes-rw-r--r--default_images/res/helpimg/hand01.pngbin0 -> 143 bytes-rw-r--r--default_images/res/helpimg/hsizebar.pngbin0 -> 95 bytes-rw-r--r--default_images/res/helpimg/hu/calcein.pngbin0 -> 543 bytes-rw-r--r--default_images/res/helpimg/hu/feldalle.pngbin0 -> 820 bytes-rw-r--r--default_images/res/helpimg/hu/feldbrei.pngbin0 -> 453 bytes-rw-r--r--default_images/res/helpimg/hu/feldcolo.pngbin0 -> 571 bytes-rw-r--r--default_images/res/helpimg/hu/names_as_addressing.pngbin0 -> 1802 bytes-rw-r--r--default_images/res/helpimg/hu/rechenlt.pngbin0 -> 643 bytes-rw-r--r--default_images/res/helpimg/hu/sheettabs.pngbin0 -> 2168 bytes-rw-r--r--default_images/res/helpimg/hu/swh00055.pngbin0 -> 593 bytes-rw-r--r--default_images/res/helpimg/hu/swh00056.pngbin0 -> 518 bytes-rw-r--r--default_images/res/helpimg/hu/swh00117.pngbin0 -> 709 bytes-rw-r--r--default_images/res/helpimg/hu/zellvor.pngbin0 -> 644 bytes-rw-r--r--default_images/res/helpimg/it/calcein.pngbin0 -> 538 bytes-rw-r--r--default_images/res/helpimg/it/feldalle.pngbin0 -> 1724 bytes-rw-r--r--default_images/res/helpimg/it/feldbrei.pngbin0 -> 603 bytes-rw-r--r--default_images/res/helpimg/it/feldcolo.pngbin0 -> 760 bytes-rw-r--r--default_images/res/helpimg/it/names_as_addressing.pngbin0 -> 3177 bytes-rw-r--r--default_images/res/helpimg/it/objbitmp.pngbin0 -> 3209 bytes-rw-r--r--default_images/res/helpimg/it/prinzoom.pngbin0 -> 1395 bytes-rw-r--r--default_images/res/helpimg/it/rechenlt.pngbin0 -> 917 bytes-rw-r--r--default_images/res/helpimg/it/sheettabs.pngbin0 -> 1955 bytes-rw-r--r--default_images/res/helpimg/it/swh00055.pngbin0 -> 593 bytes-rw-r--r--default_images/res/helpimg/it/swh00056.pngbin0 -> 518 bytes-rw-r--r--default_images/res/helpimg/it/swh00117.pngbin0 -> 1032 bytes-rw-r--r--default_images/res/helpimg/it/zellvor.pngbin0 -> 844 bytes-rw-r--r--default_images/res/helpimg/ja/calcein.pngbin0 -> 527 bytes-rw-r--r--default_images/res/helpimg/ja/feldalle.pngbin0 -> 767 bytes-rw-r--r--default_images/res/helpimg/ja/feldbrei.pngbin0 -> 445 bytes-rw-r--r--default_images/res/helpimg/ja/feldcolo.pngbin0 -> 528 bytes-rw-r--r--default_images/res/helpimg/ja/names_as_addressing.pngbin0 -> 1749 bytes-rw-r--r--default_images/res/helpimg/ja/objbitmp.pngbin0 -> 4218 bytes-rw-r--r--default_images/res/helpimg/ja/prinzoom.pngbin0 -> 1273 bytes-rw-r--r--default_images/res/helpimg/ja/rechenlt.pngbin0 -> 607 bytes-rw-r--r--default_images/res/helpimg/ja/sheettabs.pngbin0 -> 1420 bytes-rw-r--r--default_images/res/helpimg/ja/swh00055.pngbin0 -> 646 bytes-rw-r--r--default_images/res/helpimg/ja/swh00056.pngbin0 -> 510 bytes-rw-r--r--default_images/res/helpimg/ja/swh00117.pngbin0 -> 679 bytes-rw-r--r--default_images/res/helpimg/ja/zellvor.pngbin0 -> 575 bytes-rw-r--r--default_images/res/helpimg/km/calcein.pngbin0 -> 538 bytes-rw-r--r--default_images/res/helpimg/km/feldalle.pngbin0 -> 748 bytes-rw-r--r--default_images/res/helpimg/km/feldbrei.pngbin0 -> 441 bytes-rw-r--r--default_images/res/helpimg/km/feldcolo.pngbin0 -> 557 bytes-rw-r--r--default_images/res/helpimg/km/names_as_addressing.pngbin0 -> 2137 bytes-rw-r--r--default_images/res/helpimg/km/rechenlt.pngbin0 -> 607 bytes-rw-r--r--default_images/res/helpimg/km/sheettabs.pngbin0 -> 1431 bytes-rw-r--r--default_images/res/helpimg/km/swh00055.pngbin0 -> 592 bytes-rw-r--r--default_images/res/helpimg/km/swh00056.pngbin0 -> 518 bytes-rw-r--r--default_images/res/helpimg/km/swh00117.pngbin0 -> 714 bytes-rw-r--r--default_images/res/helpimg/km/zellvor.pngbin0 -> 614 bytes-rw-r--r--default_images/res/helpimg/ko/calcein.pngbin0 -> 543 bytes-rw-r--r--default_images/res/helpimg/ko/feldalle.pngbin0 -> 784 bytes-rw-r--r--default_images/res/helpimg/ko/feldbrei.pngbin0 -> 457 bytes-rw-r--r--default_images/res/helpimg/ko/feldcolo.pngbin0 -> 587 bytes-rw-r--r--default_images/res/helpimg/ko/names_as_addressing.pngbin0 -> 2143 bytes-rw-r--r--default_images/res/helpimg/ko/objbitmp.pngbin0 -> 3775 bytes-rw-r--r--default_images/res/helpimg/ko/prinzoom.pngbin0 -> 1171 bytes-rw-r--r--default_images/res/helpimg/ko/rechenlt.pngbin0 -> 583 bytes-rw-r--r--default_images/res/helpimg/ko/sheettabs.pngbin0 -> 1433 bytes-rw-r--r--default_images/res/helpimg/ko/swh00055.pngbin0 -> 619 bytes-rw-r--r--default_images/res/helpimg/ko/swh00056.pngbin0 -> 529 bytes-rw-r--r--default_images/res/helpimg/ko/swh00117.pngbin0 -> 739 bytes-rw-r--r--default_images/res/helpimg/ko/zellvor.pngbin0 -> 571 bytes-rw-r--r--default_images/res/helpimg/kombi1.pngbin0 -> 1595 bytes-rw-r--r--default_images/res/helpimg/left.pngbin0 -> 442 bytes-rw-r--r--default_images/res/helpimg/left2.pngbin0 -> 446 bytes-rw-r--r--default_images/res/helpimg/linkdata.pngbin0 -> 167 bytes-rw-r--r--default_images/res/helpimg/linleft.pngbin0 -> 155 bytes-rw-r--r--default_images/res/helpimg/linright.pngbin0 -> 146 bytes-rw-r--r--default_images/res/helpimg/movedata.pngbin0 -> 153 bytes-rw-r--r--default_images/res/helpimg/names_as_addressing.pngbin0 -> 2958 bytes-rw-r--r--default_images/res/helpimg/note.pngbin0 -> 1504 bytes-rw-r--r--default_images/res/helpimg/note_small.pngbin0 -> 615 bytes-rw-r--r--default_images/res/helpimg/pl/calcein.pngbin0 -> 543 bytes-rw-r--r--default_images/res/helpimg/pl/feldalle.pngbin0 -> 983 bytes-rw-r--r--default_images/res/helpimg/pl/feldbrei.pngbin0 -> 485 bytes-rw-r--r--default_images/res/helpimg/pl/feldcolo.pngbin0 -> 597 bytes-rw-r--r--default_images/res/helpimg/pl/names_as_addressing.pngbin0 -> 2243 bytes-rw-r--r--default_images/res/helpimg/pl/objbitmp.pngbin0 -> 3325 bytes-rw-r--r--default_images/res/helpimg/pl/prinzoom.pngbin0 -> 1585 bytes-rw-r--r--default_images/res/helpimg/pl/rechenlt.pngbin0 -> 654 bytes-rw-r--r--default_images/res/helpimg/pl/sheettabs.pngbin0 -> 1439 bytes-rw-r--r--default_images/res/helpimg/pl/swh00055.pngbin0 -> 592 bytes-rw-r--r--default_images/res/helpimg/pl/swh00056.pngbin0 -> 518 bytes-rw-r--r--default_images/res/helpimg/pl/swh00117.pngbin0 -> 819 bytes-rw-r--r--default_images/res/helpimg/pl/zellvor.pngbin0 -> 599 bytes-rw-r--r--default_images/res/helpimg/pt-BR/calcein.pngbin0 -> 538 bytes-rw-r--r--default_images/res/helpimg/pt-BR/feldalle.pngbin0 -> 483 bytes-rw-r--r--default_images/res/helpimg/pt-BR/feldbrei.pngbin0 -> 222 bytes-rw-r--r--default_images/res/helpimg/pt-BR/feldcolo.pngbin0 -> 461 bytes-rw-r--r--default_images/res/helpimg/pt-BR/names_as_addressing.pngbin0 -> 1567 bytes-rw-r--r--default_images/res/helpimg/pt-BR/prinzoom.pngbin0 -> 1486 bytes-rw-r--r--default_images/res/helpimg/pt-BR/rechenlt.pngbin0 -> 603 bytes-rw-r--r--default_images/res/helpimg/pt-BR/sheettabs.pngbin0 -> 1405 bytes-rw-r--r--default_images/res/helpimg/pt-BR/swh00055.pngbin0 -> 595 bytes-rw-r--r--default_images/res/helpimg/pt-BR/swh00056.pngbin0 -> 519 bytes-rw-r--r--default_images/res/helpimg/pt-BR/swh00117.pngbin0 -> 811 bytes-rw-r--r--default_images/res/helpimg/pt-BR/zellvor.pngbin0 -> 482 bytes-rw-r--r--default_images/res/helpimg/pt/calcein.pngbin0 -> 538 bytes-rw-r--r--default_images/res/helpimg/pt/feldalle.pngbin0 -> 483 bytes-rw-r--r--default_images/res/helpimg/pt/feldbrei.pngbin0 -> 222 bytes-rw-r--r--default_images/res/helpimg/pt/feldcolo.pngbin0 -> 461 bytes-rw-r--r--default_images/res/helpimg/pt/names_as_addressing.pngbin0 -> 1567 bytes-rw-r--r--default_images/res/helpimg/pt/prinzoom.pngbin0 -> 1486 bytes-rw-r--r--default_images/res/helpimg/pt/rechenlt.pngbin0 -> 603 bytes-rw-r--r--default_images/res/helpimg/pt/sheettabs.pngbin0 -> 1405 bytes-rw-r--r--default_images/res/helpimg/pt/swh00055.pngbin0 -> 595 bytes-rw-r--r--default_images/res/helpimg/pt/swh00056.pngbin0 -> 519 bytes-rw-r--r--default_images/res/helpimg/pt/swh00117.pngbin0 -> 811 bytes-rw-r--r--default_images/res/helpimg/pt/zellvor.pngbin0 -> 482 bytes-rw-r--r--default_images/res/helpimg/rechenlt.pngbin0 -> 585 bytes-rw-r--r--default_images/res/helpimg/refhand.pngbin0 -> 127 bytes-rw-r--r--default_images/res/helpimg/right.pngbin0 -> 433 bytes-rw-r--r--default_images/res/helpimg/right2.pngbin0 -> 449 bytes-rw-r--r--default_images/res/helpimg/rotieren.pngbin0 -> 647 bytes-rw-r--r--default_images/res/helpimg/sheettabs.pngbin0 -> 1415 bytes-rw-r--r--default_images/res/helpimg/sistop.pngbin0 -> 157 bytes-rw-r--r--default_images/res/helpimg/sk/calcein.pngbin0 -> 538 bytes-rw-r--r--default_images/res/helpimg/sk/feldalle.pngbin0 -> 765 bytes-rw-r--r--default_images/res/helpimg/sk/feldbrei.pngbin0 -> 457 bytes-rw-r--r--default_images/res/helpimg/sk/feldcolo.pngbin0 -> 574 bytes-rw-r--r--default_images/res/helpimg/sk/names_as_addressing.pngbin0 -> 1929 bytes-rw-r--r--default_images/res/helpimg/sk/rechenlt.pngbin0 -> 1006 bytes-rw-r--r--default_images/res/helpimg/sk/sheettabs.pngbin0 -> 1397 bytes-rw-r--r--default_images/res/helpimg/sk/swh00055.pngbin0 -> 650 bytes-rw-r--r--default_images/res/helpimg/sk/swh00056.pngbin0 -> 518 bytes-rw-r--r--default_images/res/helpimg/sk/swh00117.pngbin0 -> 720 bytes-rw-r--r--default_images/res/helpimg/sk/zellvor.pngbin0 -> 616 bytes-rw-r--r--default_images/res/helpimg/sl/calcein.pngbin0 -> 538 bytes-rw-r--r--default_images/res/helpimg/sl/feldalle.pngbin0 -> 709 bytes-rw-r--r--default_images/res/helpimg/sl/feldbrei.pngbin0 -> 454 bytes-rw-r--r--default_images/res/helpimg/sl/feldcolo.pngbin0 -> 548 bytes-rw-r--r--default_images/res/helpimg/sl/names_as_addressing.pngbin0 -> 1923 bytes-rw-r--r--default_images/res/helpimg/sl/rechenlt.pngbin0 -> 597 bytes-rw-r--r--default_images/res/helpimg/sl/sheettabs.pngbin0 -> 2022 bytes-rw-r--r--default_images/res/helpimg/sl/swh00055.pngbin0 -> 592 bytes-rw-r--r--default_images/res/helpimg/sl/swh00056.pngbin0 -> 519 bytes-rw-r--r--default_images/res/helpimg/sl/swh00117.pngbin0 -> 711 bytes-rw-r--r--default_images/res/helpimg/sl/zellvor.pngbin0 -> 564 bytes-rw-r--r--default_images/res/helpimg/smzb1.pngbin0 -> 985 bytes-rw-r--r--default_images/res/helpimg/smzb10.pngbin0 -> 1249 bytes-rw-r--r--default_images/res/helpimg/smzb2.pngbin0 -> 647 bytes-rw-r--r--default_images/res/helpimg/smzb3.pngbin0 -> 1104 bytes-rw-r--r--default_images/res/helpimg/smzb4.pngbin0 -> 1759 bytes-rw-r--r--default_images/res/helpimg/smzb5.pngbin0 -> 3068 bytes-rw-r--r--default_images/res/helpimg/smzb6.pngbin0 -> 2386 bytes-rw-r--r--default_images/res/helpimg/smzb7.pngbin0 -> 1075 bytes-rw-r--r--default_images/res/helpimg/smzb8.pngbin0 -> 1303 bytes-rw-r--r--default_images/res/helpimg/smzb9.pngbin0 -> 1555 bytes-rw-r--r--default_images/res/helpimg/sv/calcein.pngbin0 -> 538 bytes-rw-r--r--default_images/res/helpimg/sv/feldalle.pngbin0 -> 764 bytes-rw-r--r--default_images/res/helpimg/sv/feldbrei.pngbin0 -> 440 bytes-rw-r--r--default_images/res/helpimg/sv/feldcolo.pngbin0 -> 552 bytes-rw-r--r--default_images/res/helpimg/sv/names_as_addressing.pngbin0 -> 1873 bytes-rw-r--r--default_images/res/helpimg/sv/objbitmp.pngbin0 -> 3111 bytes-rw-r--r--default_images/res/helpimg/sv/prinzoom.pngbin0 -> 1473 bytes-rw-r--r--default_images/res/helpimg/sv/rechenlt.pngbin0 -> 558 bytes-rw-r--r--default_images/res/helpimg/sv/sheettabs.pngbin0 -> 1407 bytes-rw-r--r--default_images/res/helpimg/sv/swh00055.pngbin0 -> 592 bytes-rw-r--r--default_images/res/helpimg/sv/swh00056.pngbin0 -> 518 bytes-rw-r--r--default_images/res/helpimg/sv/swh00117.pngbin0 -> 692 bytes-rw-r--r--default_images/res/helpimg/sv/zellvor.pngbin0 -> 575 bytes-rw-r--r--default_images/res/helpimg/swh00055.pngbin0 -> 595 bytes-rw-r--r--default_images/res/helpimg/swh00056.pngbin0 -> 518 bytes-rw-r--r--default_images/res/helpimg/swh00117.pngbin0 -> 692 bytes-rw-r--r--default_images/res/helpimg/swh00177.pngbin0 -> 101 bytes-rwxr-xr-xdefault_images/res/helpimg/swh00178.pngbin0 -> 102 bytes-rw-r--r--default_images/res/helpimg/swh00179.pngbin0 -> 109 bytes-rw-r--r--default_images/res/helpimg/swh00180.pngbin0 -> 102 bytes-rw-r--r--default_images/res/helpimg/tip.pngbin0 -> 1761 bytes-rw-r--r--default_images/res/helpimg/tip_small.pngbin0 -> 711 bytes-rw-r--r--default_images/res/helpimg/tr/calcein.pngbin0 -> 538 bytes-rw-r--r--default_images/res/helpimg/tr/feldalle.pngbin0 -> 775 bytes-rw-r--r--default_images/res/helpimg/tr/feldbrei.pngbin0 -> 379 bytes-rw-r--r--default_images/res/helpimg/tr/feldcolo.pngbin0 -> 388 bytes-rw-r--r--default_images/res/helpimg/tr/names_as_addressing.pngbin0 -> 4229 bytes-rw-r--r--default_images/res/helpimg/tr/objbitmp.pngbin0 -> 4109 bytes-rw-r--r--default_images/res/helpimg/tr/prinzoom.pngbin0 -> 1809 bytes-rw-r--r--default_images/res/helpimg/tr/rechenlt.pngbin0 -> 1911 bytes-rw-r--r--default_images/res/helpimg/tr/sheettabs.pngbin0 -> 1515 bytes-rw-r--r--default_images/res/helpimg/tr/swh00055.pngbin0 -> 596 bytes-rw-r--r--default_images/res/helpimg/tr/swh00056.pngbin0 -> 518 bytes-rw-r--r--default_images/res/helpimg/tr/swh00117.pngbin0 -> 561 bytes-rw-r--r--default_images/res/helpimg/tr/zellvor.pngbin0 -> 393 bytes-rw-r--r--default_images/res/helpimg/ueberblenden.pngbin0 -> 1069 bytes-rw-r--r--default_images/res/helpimg/warning.pngbin0 -> 784 bytes-rw-r--r--default_images/res/helpimg/warning_small.pngbin0 -> 395 bytes-rw-r--r--default_images/res/helpimg/what-if.pngbin0 -> 8080 bytes-rw-r--r--default_images/res/helpimg/zellvor.pngbin0 -> 571 bytes-rw-r--r--default_images/res/helpimg/zh-CN/calcein.pngbin0 -> 535 bytes-rw-r--r--default_images/res/helpimg/zh-CN/feldalle.pngbin0 -> 794 bytes-rw-r--r--default_images/res/helpimg/zh-CN/feldbrei.pngbin0 -> 469 bytes-rw-r--r--default_images/res/helpimg/zh-CN/feldcolo.pngbin0 -> 574 bytes-rw-r--r--default_images/res/helpimg/zh-CN/names_as_addressing.pngbin0 -> 1837 bytes-rw-r--r--default_images/res/helpimg/zh-CN/objbitmp.pngbin0 -> 3739 bytes-rw-r--r--default_images/res/helpimg/zh-CN/prinzoom.pngbin0 -> 1445 bytes-rw-r--r--default_images/res/helpimg/zh-CN/rechenlt.pngbin0 -> 592 bytes-rw-r--r--default_images/res/helpimg/zh-CN/sheettabs.pngbin0 -> 1591 bytes-rw-r--r--default_images/res/helpimg/zh-CN/swh00055.pngbin0 -> 637 bytes-rw-r--r--default_images/res/helpimg/zh-CN/swh00056.pngbin0 -> 519 bytes-rw-r--r--default_images/res/helpimg/zh-CN/swh00117.pngbin0 -> 748 bytes-rw-r--r--default_images/res/helpimg/zh-CN/zellvor.pngbin0 -> 598 bytes-rw-r--r--default_images/res/helpimg/zh-TW/calcein.pngbin0 -> 540 bytes-rw-r--r--default_images/res/helpimg/zh-TW/feldalle.pngbin0 -> 832 bytes-rw-r--r--default_images/res/helpimg/zh-TW/feldbrei.pngbin0 -> 482 bytes-rw-r--r--default_images/res/helpimg/zh-TW/feldcolo.pngbin0 -> 574 bytes-rw-r--r--default_images/res/helpimg/zh-TW/names_as_addressing.pngbin0 -> 1889 bytes-rw-r--r--default_images/res/helpimg/zh-TW/objbitmp.pngbin0 -> 3096 bytes-rw-r--r--default_images/res/helpimg/zh-TW/prinzoom.pngbin0 -> 1395 bytes-rw-r--r--default_images/res/helpimg/zh-TW/rechenlt.pngbin0 -> 600 bytes-rw-r--r--default_images/res/helpimg/zh-TW/sheettabs.pngbin0 -> 1474 bytes-rw-r--r--default_images/res/helpimg/zh-TW/swh00055.pngbin0 -> 657 bytes-rw-r--r--default_images/res/helpimg/zh-TW/swh00056.pngbin0 -> 520 bytes-rw-r--r--default_images/res/helpimg/zh-TW/swh00117.pngbin0 -> 750 bytes-rw-r--r--default_images/res/helpimg/zh-TW/zellvor.pngbin0 -> 599 bytes-rw-r--r--default_images/res/hidedependency_16.pngbin0 -> 328 bytes-rw-r--r--default_images/res/hldocntp.pngbin0 -> 772 bytes-rw-r--r--default_images/res/hldocntp_h.pngbin0 -> 196 bytes-rw-r--r--default_images/res/hldoctp.pngbin0 -> 1344 bytes-rw-r--r--default_images/res/hldoctp_h.pngbin0 -> 217 bytes-rw-r--r--default_images/res/hlinettp.pngbin0 -> 1400 bytes-rw-r--r--default_images/res/hlinettp_h.pngbin0 -> 332 bytes-rw-r--r--default_images/res/hlmailtp.pngbin0 -> 1381 bytes-rw-r--r--default_images/res/hlmailtp_h.pngbin0 -> 218 bytes-rw-r--r--default_images/res/hu/lc10008.pngbin0 -> 549 bytes-rw-r--r--default_images/res/hu/lc10009.pngbin0 -> 340 bytes-rw-r--r--default_images/res/hu/lc10014.pngbin0 -> 528 bytes-rw-r--r--default_images/res/hu/lc26648.pngbin0 -> 652 bytes-rw-r--r--default_images/res/hu/lch10008.pngbin0 -> 182 bytes-rw-r--r--default_images/res/hu/lch10009.pngbin0 -> 285 bytes-rw-r--r--default_images/res/hu/lch10014.pngbin0 -> 186 bytes-rw-r--r--default_images/res/hu/lch26648.pngbin0 -> 184 bytes-rw-r--r--default_images/res/hu/sc10008.pngbin0 -> 373 bytes-rw-r--r--default_images/res/hu/sc10009.pngbin0 -> 258 bytes-rw-r--r--default_images/res/hu/sc10014.pngbin0 -> 353 bytes-rw-r--r--default_images/res/hu/sc26648.pngbin0 -> 472 bytes-rw-r--r--default_images/res/hu/sch10008.pngbin0 -> 141 bytes-rw-r--r--default_images/res/hu/sch10009.pngbin0 -> 226 bytes-rw-r--r--default_images/res/hu/sch10014.pngbin0 -> 140 bytes-rw-r--r--default_images/res/hu/sch26648.pngbin0 -> 140 bytes-rw-r--r--default_images/res/im30820.pngbin0 -> 392 bytes-rw-r--r--default_images/res/im30821.pngbin0 -> 384 bytes-rw-r--r--default_images/res/im30822.pngbin0 -> 310 bytes-rw-r--r--default_images/res/im30823.pngbin0 -> 308 bytes-rw-r--r--default_images/res/im30826.pngbin0 -> 285 bytes-rw-r--r--default_images/res/im30827.pngbin0 -> 405 bytes-rw-r--r--default_images/res/im30838.pngbin0 -> 385 bytes-rw-r--r--default_images/res/im30839.pngbin0 -> 284 bytes-rw-r--r--default_images/res/im30840.pngbin0 -> 249 bytes-rw-r--r--default_images/res/im30841.pngbin0 -> 270 bytes-rw-r--r--default_images/res/imh30820.pngbin0 -> 148 bytes-rw-r--r--default_images/res/imh30821.pngbin0 -> 128 bytes-rw-r--r--default_images/res/imh30822.pngbin0 -> 136 bytes-rw-r--r--default_images/res/imh30823.pngbin0 -> 114 bytes-rw-r--r--default_images/res/imh30826.pngbin0 -> 137 bytes-rw-r--r--default_images/res/imh30827.pngbin0 -> 141 bytes-rw-r--r--default_images/res/imh30838.pngbin0 -> 129 bytes-rw-r--r--default_images/res/imh30839.pngbin0 -> 108 bytes-rw-r--r--default_images/res/imh30840.pngbin0 -> 113 bytes-rw-r--r--default_images/res/imh30841.pngbin0 -> 112 bytes-rw-r--r--default_images/res/info.pngbin0 -> 1167 bytes-rw-r--r--default_images/res/info_16.pngbin0 -> 521 bytes-rw-r--r--default_images/res/it/lc10008.pngbin0 -> 531 bytes-rw-r--r--default_images/res/it/lc10009.pngbin0 -> 516 bytes-rw-r--r--default_images/res/it/lc10014.pngbin0 -> 521 bytes-rw-r--r--default_images/res/it/lc26648.pngbin0 -> 531 bytes-rw-r--r--default_images/res/it/lch10008.pngbin0 -> 489 bytes-rw-r--r--default_images/res/it/lch26648.pngbin0 -> 144 bytes-rw-r--r--default_images/res/it/sc10008.pngbin0 -> 368 bytes-rw-r--r--default_images/res/it/sc10009.pngbin0 -> 366 bytes-rw-r--r--default_images/res/it/sc10014.pngbin0 -> 386 bytes-rw-r--r--default_images/res/it/sch10009.pngbin0 -> 121 bytes-rw-r--r--default_images/res/javacomponent_16.pngbin0 -> 234 bytes-rw-r--r--default_images/res/javacomponent_16_h.pngbin0 -> 164 bytes-rw-r--r--default_images/res/javalibrary_16.pngbin0 -> 696 bytes-rw-r--r--default_images/res/javalibrary_16_h.pngbin0 -> 164 bytes-rw-r--r--default_images/res/ko/lc10712.pngbin0 -> 368 bytes-rw-r--r--default_images/res/ko/lc10713.pngbin0 -> 355 bytes-rw-r--r--default_images/res/ko/lch10712.pngbin0 -> 153 bytes-rw-r--r--default_images/res/ko/lch10713.pngbin0 -> 147 bytes-rw-r--r--default_images/res/ko/sc10712.pngbin0 -> 281 bytes-rw-r--r--default_images/res/ko/sc10713.pngbin0 -> 307 bytes-rw-r--r--default_images/res/ko/sch10712.pngbin0 -> 118 bytes-rw-r--r--default_images/res/ko/sch10713.pngbin0 -> 124 bytes-rw-r--r--default_images/res/lc05504.pngbin0 -> 594 bytes-rw-r--r--default_images/res/lc05505.pngbin0 -> 776 bytes-rw-r--r--default_images/res/lc05508.pngbin0 -> 1603 bytes-rw-r--r--default_images/res/lc05509.pngbin0 -> 594 bytes-rw-r--r--default_images/res/lc05539.pngbin0 -> 970 bytes-rw-r--r--default_images/res/lc05596.pngbin0 -> 1553 bytes-rw-r--r--default_images/res/lc05646.pngbin0 -> 276 bytes-rw-r--r--default_images/res/lc05647.pngbin0 -> 276 bytes-rw-r--r--default_images/res/lc05648.pngbin0 -> 276 bytes-rw-r--r--default_images/res/lc05649.pngbin0 -> 276 bytes-rw-r--r--default_images/res/lc05650.pngbin0 -> 161 bytes-rw-r--r--default_images/res/lc05651.pngbin0 -> 1163 bytes-rw-r--r--default_images/res/lc05678.pngbin0 -> 1944 bytes-rw-r--r--default_images/res/lc05700.pngbin0 -> 1549 bytes-rw-r--r--default_images/res/lc05701.pngbin0 -> 1569 bytes-rw-r--r--default_images/res/lc05710.pngbin0 -> 1623 bytes-rw-r--r--default_images/res/lc05711.pngbin0 -> 542 bytes-rw-r--r--default_images/res/lc05961.pngbin0 -> 399 bytes-rw-r--r--default_images/res/lc06300.pngbin0 -> 716 bytes-rw-r--r--default_images/res/lc06301.pngbin0 -> 731 bytes-rw-r--r--default_images/res/lc06302.pngbin0 -> 885 bytes-rw-r--r--default_images/res/lc06303.pngbin0 -> 742 bytes-rw-r--r--default_images/res/lc06304.pngbin0 -> 276 bytes-rw-r--r--default_images/res/lc06308.pngbin0 -> 1130 bytes-rw-r--r--default_images/res/lc06309.pngbin0 -> 276 bytes-rw-r--r--default_images/res/lc06312.pngbin0 -> 1094 bytes-rw-r--r--default_images/res/lc06331.pngbin0 -> 276 bytes-rw-r--r--default_images/res/lc06332.pngbin0 -> 764 bytes-rw-r--r--default_images/res/lc06333.pngbin0 -> 736 bytes-rw-r--r--default_images/res/lc06334.pngbin0 -> 276 bytes-rw-r--r--default_images/res/lc06335.pngbin0 -> 276 bytes-rw-r--r--default_images/res/lc06336.pngbin0 -> 276 bytes-rw-r--r--default_images/res/lc06337.pngbin0 -> 276 bytes-rw-r--r--default_images/res/lc06338.pngbin0 -> 1610 bytes-rw-r--r--default_images/res/lc06350.pngbin0 -> 1163 bytes-rw-r--r--default_images/res/lc06351.pngbin0 -> 276 bytes-rw-r--r--default_images/res/lc06352.pngbin0 -> 276 bytes-rw-r--r--default_images/res/lc06353.pngbin0 -> 276 bytes-rw-r--r--default_images/res/lc06354.pngbin0 -> 276 bytes-rw-r--r--default_images/res/lc06355.pngbin0 -> 276 bytes-rw-r--r--default_images/res/lc06356.pngbin0 -> 276 bytes-rw-r--r--default_images/res/lc06357.pngbin0 -> 276 bytes-rw-r--r--default_images/res/lc10366.pngbin0 -> 1692 bytes-rw-r--r--default_images/res/lc10711.pngbin0 -> 717 bytes-rw-r--r--default_images/res/lc10712.pngbin0 -> 968 bytes-rw-r--r--default_images/res/lc10713.pngbin0 -> 951 bytes-rw-r--r--default_images/res/lc10715.pngbin0 -> 519 bytes-rw-r--r--default_images/res/lc10716.pngbin0 -> 854 bytes-rw-r--r--default_images/res/lc10851.pngbin0 -> 513 bytes-rw-r--r--default_images/res/lc10853.pngbin0 -> 401 bytes-rw-r--r--default_images/res/lc10854.pngbin0 -> 1604 bytes-rw-r--r--default_images/res/lch05504.pngbin0 -> 156 bytes-rw-r--r--default_images/res/lch05509.pngbin0 -> 156 bytes-rw-r--r--default_images/res/lch05678.pngbin0 -> 311 bytes-rw-r--r--default_images/res/lch05711.pngbin0 -> 155 bytes-rw-r--r--default_images/res/lch05961.pngbin0 -> 155 bytes-rw-r--r--default_images/res/lch06300.pngbin0 -> 128 bytes-rw-r--r--default_images/res/lch06301.pngbin0 -> 124 bytes-rw-r--r--default_images/res/lch06303.pngbin0 -> 168 bytes-rw-r--r--default_images/res/lch06308.pngbin0 -> 158 bytes-rw-r--r--default_images/res/lch10711.pngbin0 -> 190 bytes-rw-r--r--default_images/res/lch10712.pngbin0 -> 199 bytes-rw-r--r--default_images/res/lch10713.pngbin0 -> 212 bytes-rw-r--r--default_images/res/lch10715.pngbin0 -> 133 bytes-rw-r--r--default_images/res/lch10716.pngbin0 -> 209 bytes-rw-r--r--default_images/res/lch10851.pngbin0 -> 151 bytes-rw-r--r--default_images/res/lch10853.pngbin0 -> 155 bytes-rw-r--r--default_images/res/lch10854.pngbin0 -> 202 bytes-rw-r--r--default_images/res/library_16.pngbin0 -> 637 bytes-rw-r--r--default_images/res/library_16_h.pngbin0 -> 119 bytes-rw-r--r--default_images/res/lock.pngbin0 -> 234 bytes-rw-r--r--default_images/res/lock_hc.pngbin0 -> 116 bytes-rw-r--r--default_images/res/lx03123.pngbin0 -> 839 bytes-rw-r--r--default_images/res/lx03124.pngbin0 -> 315 bytes-rw-r--r--default_images/res/lx03125.pngbin0 -> 1069 bytes-rw-r--r--default_images/res/lx03126.pngbin0 -> 610 bytes-rw-r--r--default_images/res/lx03127.pngbin0 -> 828 bytes-rw-r--r--default_images/res/lx03128.pngbin0 -> 1009 bytes-rw-r--r--default_images/res/lx03129.pngbin0 -> 1105 bytes-rw-r--r--default_images/res/lx03130.pngbin0 -> 1001 bytes-rw-r--r--default_images/res/lx03131.pngbin0 -> 827 bytes-rw-r--r--default_images/res/lx03132.pngbin0 -> 827 bytes-rw-r--r--default_images/res/lx03134.pngbin0 -> 315 bytes-rw-r--r--default_images/res/lx03135.pngbin0 -> 574 bytes-rw-r--r--default_images/res/lx03136.pngbin0 -> 549 bytes-rw-r--r--default_images/res/lx03137.pngbin0 -> 1069 bytes-rw-r--r--default_images/res/lx03138.pngbin0 -> 912 bytes-rw-r--r--default_images/res/lx03139.pngbin0 -> 1127 bytes-rw-r--r--default_images/res/lx03140.pngbin0 -> 1069 bytes-rw-r--r--default_images/res/lx03141.pngbin0 -> 386 bytes-rw-r--r--default_images/res/lx03142.pngbin0 -> 315 bytes-rw-r--r--default_images/res/lx03144.pngbin0 -> 1009 bytes-rw-r--r--default_images/res/lx03145.pngbin0 -> 282 bytes-rw-r--r--default_images/res/lx03150.pngbin0 -> 492 bytes-rw-r--r--default_images/res/lx03151.pngbin0 -> 195 bytes-rw-r--r--default_images/res/lx03152.pngbin0 -> 1069 bytes-rw-r--r--default_images/res/lx03153.pngbin0 -> 1069 bytes-rw-r--r--default_images/res/lx03154.pngbin0 -> 1069 bytes-rw-r--r--default_images/res/lx03155.pngbin0 -> 1069 bytes-rw-r--r--default_images/res/lx03156.pngbin0 -> 790 bytes-rw-r--r--default_images/res/lx03157.pngbin0 -> 912 bytes-rw-r--r--default_images/res/lx03158.pngbin0 -> 1069 bytes-rw-r--r--default_images/res/lx03159.pngbin0 -> 315 bytes-rw-r--r--default_images/res/lx03160.pngbin0 -> 1004 bytes-rw-r--r--default_images/res/lx03161.pngbin0 -> 792 bytes-rw-r--r--default_images/res/lx03162.pngbin0 -> 792 bytes-rw-r--r--default_images/res/lx03163.pngbin0 -> 836 bytes-rw-r--r--default_images/res/lx03164.pngbin0 -> 168 bytes-rw-r--r--default_images/res/lx03165.pngbin0 -> 267 bytes-rw-r--r--default_images/res/lx03166.pngbin0 -> 322 bytes-rw-r--r--default_images/res/lx03167.pngbin0 -> 285 bytes-rw-r--r--default_images/res/lx03168.pngbin0 -> 315 bytes-rw-r--r--default_images/res/lx03187.pngbin0 -> 315 bytes-rw-r--r--default_images/res/lx03188.pngbin0 -> 610 bytes-rw-r--r--default_images/res/lx03189.pngbin0 -> 385 bytes-rw-r--r--default_images/res/lx03190.pngbin0 -> 315 bytes-rw-r--r--default_images/res/lx03193.pngbin0 -> 315 bytes-rw-r--r--default_images/res/lx03198.pngbin0 -> 315 bytes-rw-r--r--default_images/res/lx03201.pngbin0 -> 315 bytes-rw-r--r--default_images/res/lx03202.pngbin0 -> 315 bytes-rw-r--r--default_images/res/lx03203.pngbin0 -> 315 bytes-rw-r--r--default_images/res/lx03204.pngbin0 -> 315 bytes-rw-r--r--default_images/res/lx03205.pngbin0 -> 315 bytes-rw-r--r--default_images/res/lx03206.pngbin0 -> 315 bytes-rw-r--r--default_images/res/lx03214.pngbin0 -> 230 bytes-rw-r--r--default_images/res/lx03216.pngbin0 -> 1139 bytes-rw-r--r--default_images/res/lx03217.pngbin0 -> 1139 bytes-rw-r--r--default_images/res/lx03218.pngbin0 -> 1136 bytes-rw-r--r--default_images/res/lx03219.pngbin0 -> 1069 bytes-rw-r--r--default_images/res/lx03220.pngbin0 -> 1139 bytes-rw-r--r--default_images/res/lx03221.pngbin0 -> 1138 bytes-rw-r--r--default_images/res/lx03222.pngbin0 -> 1139 bytes-rw-r--r--default_images/res/lx03226.pngbin0 -> 819 bytes-rw-r--r--default_images/res/lx03227.pngbin0 -> 1138 bytes-rw-r--r--default_images/res/lx03228.pngbin0 -> 1067 bytes-rw-r--r--default_images/res/lx03236.pngbin0 -> 315 bytes-rw-r--r--default_images/res/lx03237.pngbin0 -> 315 bytes-rw-r--r--default_images/res/lx03239.pngbin0 -> 399 bytes-rw-r--r--default_images/res/lx03241.pngbin0 -> 162 bytes-rw-r--r--default_images/res/lx03242.pngbin0 -> 698 bytes-rw-r--r--default_images/res/lx03243.pngbin0 -> 839 bytes-rw-r--r--default_images/res/lx03244.pngbin0 -> 1001 bytes-rw-r--r--default_images/res/lx03245.pngbin0 -> 1329 bytes-rw-r--r--default_images/res/lx03246.pngbin0 -> 1271 bytes-rw-r--r--default_images/res/lx03247.pngbin0 -> 1128 bytes-rw-r--r--default_images/res/lx03248.pngbin0 -> 867 bytes-rw-r--r--default_images/res/lx03249.pngbin0 -> 1042 bytes-rw-r--r--default_images/res/lx03250.pngbin0 -> 1015 bytes-rw-r--r--default_images/res/lx03251.pngbin0 -> 987 bytes-rw-r--r--default_images/res/lx03252.pngbin0 -> 1352 bytes-rw-r--r--default_images/res/lx03253.pngbin0 -> 1390 bytes-rw-r--r--default_images/res/lx03254.pngbin0 -> 1281 bytes-rw-r--r--default_images/res/lx03255.pngbin0 -> 1328 bytes-rw-r--r--default_images/res/lx03256.pngbin0 -> 736 bytes-rw-r--r--default_images/res/lxh03123.pngbin0 -> 161 bytes-rw-r--r--default_images/res/lxh03124.pngbin0 -> 170 bytes-rw-r--r--default_images/res/lxh03125.pngbin0 -> 221 bytes-rw-r--r--default_images/res/lxh03126.pngbin0 -> 146 bytes-rw-r--r--default_images/res/lxh03127.pngbin0 -> 185 bytes-rw-r--r--default_images/res/lxh03128.pngbin0 -> 552 bytes-rw-r--r--default_images/res/lxh03129.pngbin0 -> 189 bytes-rw-r--r--default_images/res/lxh03130.pngbin0 -> 193 bytes-rw-r--r--default_images/res/lxh03131.pngbin0 -> 185 bytes-rw-r--r--default_images/res/lxh03132.pngbin0 -> 185 bytes-rw-r--r--default_images/res/lxh03134.pngbin0 -> 170 bytes-rw-r--r--default_images/res/lxh03135.pngbin0 -> 141 bytes-rw-r--r--default_images/res/lxh03136.pngbin0 -> 142 bytes-rw-r--r--default_images/res/lxh03137.pngbin0 -> 222 bytes-rw-r--r--default_images/res/lxh03138.pngbin0 -> 193 bytes-rw-r--r--default_images/res/lxh03139.pngbin0 -> 589 bytes-rw-r--r--default_images/res/lxh03140.pngbin0 -> 222 bytes-rw-r--r--default_images/res/lxh03141.pngbin0 -> 142 bytes-rw-r--r--default_images/res/lxh03142.pngbin0 -> 170 bytes-rw-r--r--default_images/res/lxh03144.pngbin0 -> 192 bytes-rw-r--r--default_images/res/lxh03145.pngbin0 -> 170 bytes-rw-r--r--default_images/res/lxh03150.pngbin0 -> 125 bytes-rw-r--r--default_images/res/lxh03151.pngbin0 -> 130 bytes-rw-r--r--default_images/res/lxh03152.pngbin0 -> 221 bytes-rw-r--r--default_images/res/lxh03153.pngbin0 -> 221 bytes-rw-r--r--default_images/res/lxh03154.pngbin0 -> 221 bytes-rw-r--r--default_images/res/lxh03155.pngbin0 -> 222 bytes-rw-r--r--default_images/res/lxh03156.pngbin0 -> 175 bytes-rw-r--r--default_images/res/lxh03157.pngbin0 -> 193 bytes-rw-r--r--default_images/res/lxh03158.pngbin0 -> 222 bytes-rw-r--r--default_images/res/lxh03159.pngbin0 -> 170 bytes-rw-r--r--default_images/res/lxh03160.pngbin0 -> 218 bytes-rw-r--r--default_images/res/lxh03161.pngbin0 -> 176 bytes-rw-r--r--default_images/res/lxh03162.pngbin0 -> 176 bytes-rw-r--r--default_images/res/lxh03163.pngbin0 -> 172 bytes-rw-r--r--default_images/res/lxh03164.pngbin0 -> 163 bytes-rw-r--r--default_images/res/lxh03165.pngbin0 -> 198 bytes-rw-r--r--default_images/res/lxh03166.pngbin0 -> 282 bytes-rw-r--r--default_images/res/lxh03167.pngbin0 -> 189 bytes-rw-r--r--default_images/res/lxh03168.pngbin0 -> 170 bytes-rw-r--r--default_images/res/lxh03187.pngbin0 -> 170 bytes-rw-r--r--default_images/res/lxh03188.pngbin0 -> 146 bytes-rw-r--r--default_images/res/lxh03189.pngbin0 -> 142 bytes-rw-r--r--default_images/res/lxh03190.pngbin0 -> 315 bytes-rw-r--r--default_images/res/lxh03193.pngbin0 -> 315 bytes-rw-r--r--default_images/res/lxh03198.pngbin0 -> 170 bytes-rw-r--r--default_images/res/lxh03201.pngbin0 -> 170 bytes-rw-r--r--default_images/res/lxh03202.pngbin0 -> 170 bytes-rw-r--r--default_images/res/lxh03203.pngbin0 -> 170 bytes-rw-r--r--default_images/res/lxh03204.pngbin0 -> 170 bytes-rw-r--r--default_images/res/lxh03205.pngbin0 -> 170 bytes-rw-r--r--default_images/res/lxh03206.pngbin0 -> 170 bytes-rw-r--r--default_images/res/lxh03214.pngbin0 -> 196 bytes-rw-r--r--default_images/res/lxh03216.pngbin0 -> 737 bytes-rw-r--r--default_images/res/lxh03217.pngbin0 -> 230 bytes-rw-r--r--default_images/res/lxh03218.pngbin0 -> 230 bytes-rw-r--r--default_images/res/lxh03219.pngbin0 -> 223 bytes-rw-r--r--default_images/res/lxh03220.pngbin0 -> 230 bytes-rw-r--r--default_images/res/lxh03221.pngbin0 -> 231 bytes-rw-r--r--default_images/res/lxh03222.pngbin0 -> 230 bytes-rw-r--r--default_images/res/lxh03226.pngbin0 -> 165 bytes-rw-r--r--default_images/res/lxh03227.pngbin0 -> 230 bytes-rw-r--r--default_images/res/lxh03228.pngbin0 -> 228 bytes-rw-r--r--default_images/res/lxh03236.pngbin0 -> 170 bytes-rw-r--r--default_images/res/lxh03237.pngbin0 -> 170 bytes-rw-r--r--default_images/res/lxh03239.pngbin0 -> 166 bytes-rw-r--r--default_images/res/lxh03241.pngbin0 -> 170 bytes-rw-r--r--default_images/res/lxh03242.pngbin0 -> 422 bytes-rw-r--r--default_images/res/lxh03243.pngbin0 -> 161 bytes-rw-r--r--default_images/res/lxh03244.pngbin0 -> 193 bytes-rw-r--r--default_images/res/lxh03245.pngbin0 -> 818 bytes-rw-r--r--default_images/res/lxh03246.pngbin0 -> 801 bytes-rw-r--r--default_images/res/lxh03247.pngbin0 -> 699 bytes-rw-r--r--default_images/res/lxh03248.pngbin0 -> 502 bytes-rw-r--r--default_images/res/lxh03249.pngbin0 -> 548 bytes-rw-r--r--default_images/res/lxh03250.pngbin0 -> 485 bytes-rw-r--r--default_images/res/lxh03251.pngbin0 -> 489 bytes-rw-r--r--default_images/res/lxh03252.pngbin0 -> 825 bytes-rw-r--r--default_images/res/lxh03253.pngbin0 -> 573 bytes-rw-r--r--default_images/res/lxh03254.pngbin0 -> 544 bytes-rw-r--r--default_images/res/lxh03255.pngbin0 -> 543 bytes-rw-r--r--default_images/res/lxh03256.pngbin0 -> 201 bytes-rw-r--r--default_images/res/mainapp_16.pngbin0 -> 231 bytes-rw-r--r--default_images/res/mainapp_16_8.pngbin0 -> 231 bytes-rw-r--r--default_images/res/mainapp_16_h.pngbin0 -> 231 bytes-rw-r--r--default_images/res/mainapp_32.pngbin0 -> 831 bytes-rw-r--r--default_images/res/mainapp_32_8.pngbin0 -> 831 bytes-rw-r--r--default_images/res/mainapp_32_h.pngbin0 -> 1026 bytes-rw-r--r--default_images/res/mainapp_48_8.pngbin0 -> 1116 bytes-rw-r--r--default_images/res/minus.pngbin0 -> 175 bytes-rw-r--r--default_images/res/minus_sch.pngbin0 -> 76 bytes-rw-r--r--default_images/res/newdoc.pngbin0 -> 243 bytes-rw-r--r--default_images/res/newdoc_hc.pngbin0 -> 103 bytes-rw-r--r--default_images/res/odb_16_8.pngbin0 -> 632 bytes-rw-r--r--default_images/res/odb_32.pngbin0 -> 1329 bytes-rw-r--r--default_images/res/odb_32_8.pngbin0 -> 1329 bytes-rw-r--r--default_images/res/odb_32_hc.pngbin0 -> 818 bytes-rw-r--r--default_images/res/odb_48_8.pngbin0 -> 2135 bytes-rw-r--r--default_images/res/odf_16_8.pngbin0 -> 395 bytes-rw-r--r--default_images/res/odf_32.pngbin0 -> 1128 bytes-rw-r--r--default_images/res/odf_32_8.pngbin0 -> 1128 bytes-rw-r--r--default_images/res/odf_32_hc.pngbin0 -> 699 bytes-rw-r--r--default_images/res/odf_48_8.pngbin0 -> 1588 bytes-rw-r--r--default_images/res/odg_16_8.pngbin0 -> 653 bytes-rw-r--r--default_images/res/odg_32.pngbin0 -> 1271 bytes-rw-r--r--default_images/res/odg_32_8.pngbin0 -> 1271 bytes-rw-r--r--default_images/res/odg_32_hc.pngbin0 -> 801 bytes-rw-r--r--default_images/res/odg_48_8.pngbin0 -> 1690 bytes-rw-r--r--default_images/res/odm_16_8.pngbin0 -> 487 bytes-rw-r--r--default_images/res/odm_32.pngbin0 -> 867 bytes-rw-r--r--default_images/res/odm_32_8.pngbin0 -> 867 bytes-rw-r--r--default_images/res/odm_32_hc.pngbin0 -> 502 bytes-rw-r--r--default_images/res/odm_48_8.pngbin0 -> 1399 bytes-rw-r--r--default_images/res/odp_16_8.pngbin0 -> 577 bytes-rw-r--r--default_images/res/odp_32.pngbin0 -> 1042 bytes-rw-r--r--default_images/res/odp_32_8.pngbin0 -> 1042 bytes-rw-r--r--default_images/res/odp_32_hc.pngbin0 -> 548 bytes-rw-r--r--default_images/res/odp_48_8.pngbin0 -> 1560 bytes-rw-r--r--default_images/res/ods_16_8.pngbin0 -> 539 bytes-rw-r--r--default_images/res/ods_32.pngbin0 -> 1015 bytes-rw-r--r--default_images/res/ods_32_8.pngbin0 -> 1015 bytes-rw-r--r--default_images/res/ods_32_hc.pngbin0 -> 485 bytes-rw-r--r--default_images/res/ods_48_8.pngbin0 -> 1465 bytes-rw-r--r--default_images/res/odt_16_8.pngbin0 -> 532 bytes-rw-r--r--default_images/res/odt_32.pngbin0 -> 987 bytes-rw-r--r--default_images/res/odt_32_8.pngbin0 -> 987 bytes-rw-r--r--default_images/res/odt_32_hc.pngbin0 -> 489 bytes-rw-r--r--default_images/res/odt_48_8.pngbin0 -> 1332 bytes-rw-r--r--default_images/res/oleobj.pngbin0 -> 907 bytes-rw-r--r--default_images/res/open_32.pngbin0 -> 1319 bytes-rw-r--r--default_images/res/otg_16_8.pngbin0 -> 480 bytes-rw-r--r--default_images/res/otg_32_8.pngbin0 -> 1178 bytes-rw-r--r--default_images/res/otg_48_8.pngbin0 -> 1888 bytes-rw-r--r--default_images/res/oth_16_8.pngbin0 -> 386 bytes-rw-r--r--default_images/res/oth_32_8.pngbin0 -> 828 bytes-rw-r--r--default_images/res/oth_48_8.pngbin0 -> 1294 bytes-rw-r--r--default_images/res/otp_16_8.pngbin0 -> 420 bytes-rw-r--r--default_images/res/otp_32_8.pngbin0 -> 1116 bytes-rw-r--r--default_images/res/otp_48_8.pngbin0 -> 1968 bytes-rw-r--r--default_images/res/ots_16_8.pngbin0 -> 423 bytes-rw-r--r--default_images/res/ots_32_8.pngbin0 -> 938 bytes-rw-r--r--default_images/res/ots_48_8.pngbin0 -> 2003 bytes-rw-r--r--default_images/res/ott_16_8.pngbin0 -> 395 bytes-rw-r--r--default_images/res/ott_32_8.pngbin0 -> 959 bytes-rw-r--r--default_images/res/ott_48_8.pngbin0 -> 1830 bytes-rw-r--r--default_images/res/plugin.pngbin0 -> 1312 bytes-rw-r--r--default_images/res/plus.pngbin0 -> 191 bytes-rw-r--r--default_images/res/plus_sch.pngbin0 -> 81 bytes-rw-r--r--default_images/res/printeradmin_16.pngbin0 -> 572 bytes-rw-r--r--default_images/res/printeradmin_16_8.pngbin0 -> 572 bytes-rw-r--r--default_images/res/printeradmin_16_h.pngbin0 -> 253 bytes-rw-r--r--default_images/res/printeradmin_32.pngbin0 -> 1355 bytes-rw-r--r--default_images/res/printeradmin_32_8.pngbin0 -> 1355 bytes-rw-r--r--default_images/res/printeradmin_32_h.pngbin0 -> 899 bytes-rw-r--r--default_images/res/printeradmin_48_8.pngbin0 -> 1699 bytes-rw-r--r--default_images/res/puzzlefolder_16.pngbin0 -> 695 bytes-rw-r--r--default_images/res/puzzlefolder_16_h.pngbin0 -> 155 bytes-rw-r--r--default_images/res/puzzleslice_16.pngbin0 -> 593 bytes-rw-r--r--default_images/res/puzzleslice_16_h.pngbin0 -> 149 bytes-rw-r--r--default_images/res/sc05500.pngbin0 -> 351 bytes-rw-r--r--default_images/res/sc05501.pngbin0 -> 437 bytes-rw-r--r--default_images/res/sc05502.pngbin0 -> 402 bytes-rw-r--r--default_images/res/sc05504.pngbin0 -> 346 bytes-rw-r--r--default_images/res/sc05505.pngbin0 -> 535 bytes-rw-r--r--default_images/res/sc05508.pngbin0 -> 909 bytes-rw-r--r--default_images/res/sc05509.pngbin0 -> 346 bytes-rw-r--r--default_images/res/sc05539.pngbin0 -> 499 bytes-rw-r--r--default_images/res/sc05554.pngbin0 -> 548 bytes-rw-r--r--default_images/res/sc05555.pngbin0 -> 427 bytes-rw-r--r--default_images/res/sc05556.pngbin0 -> 542 bytes-rw-r--r--default_images/res/sc05596.pngbin0 -> 802 bytes-rw-r--r--default_images/res/sc05646.pngbin0 -> 202 bytes-rw-r--r--default_images/res/sc05647.pngbin0 -> 202 bytes-rw-r--r--default_images/res/sc05648.pngbin0 -> 202 bytes-rw-r--r--default_images/res/sc05649.pngbin0 -> 202 bytes-rw-r--r--default_images/res/sc05650.pngbin0 -> 202 bytes-rw-r--r--default_images/res/sc05651.pngbin0 -> 712 bytes-rw-r--r--default_images/res/sc05678.pngbin0 -> 915 bytes-rw-r--r--default_images/res/sc05700.pngbin0 -> 601 bytes-rw-r--r--default_images/res/sc05701.pngbin0 -> 888 bytes-rw-r--r--default_images/res/sc05710.pngbin0 -> 802 bytes-rw-r--r--default_images/res/sc05711.pngbin0 -> 357 bytes-rw-r--r--default_images/res/sc05961.pngbin0 -> 278 bytes-rw-r--r--default_images/res/sc06300.pngbin0 -> 320 bytes-rw-r--r--default_images/res/sc06301.pngbin0 -> 328 bytes-rw-r--r--default_images/res/sc06302.pngbin0 -> 397 bytes-rw-r--r--default_images/res/sc06303.pngbin0 -> 446 bytes-rw-r--r--default_images/res/sc06304.pngbin0 -> 202 bytes-rw-r--r--default_images/res/sc06308.pngbin0 -> 796 bytes-rw-r--r--default_images/res/sc06309.pngbin0 -> 202 bytes-rw-r--r--default_images/res/sc06312.pngbin0 -> 760 bytes-rw-r--r--default_images/res/sc06331.pngbin0 -> 663 bytes-rw-r--r--default_images/res/sc06332.pngbin0 -> 503 bytes-rw-r--r--default_images/res/sc06333.pngbin0 -> 494 bytes-rw-r--r--default_images/res/sc06334.pngbin0 -> 202 bytes-rw-r--r--default_images/res/sc06335.pngbin0 -> 202 bytes-rw-r--r--default_images/res/sc06336.pngbin0 -> 202 bytes-rw-r--r--default_images/res/sc06337.pngbin0 -> 202 bytes-rw-r--r--default_images/res/sc06338.pngbin0 -> 1007 bytes-rw-r--r--default_images/res/sc06350.pngbin0 -> 712 bytes-rw-r--r--default_images/res/sc06351.pngbin0 -> 202 bytes-rw-r--r--default_images/res/sc06352.pngbin0 -> 202 bytes