SDC C-Project CF Review 프로그램
LYW
2021-07-01 4acd943c6f0beecd3ee573f77d8d6c7524fd5045
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
// PropertyGrid.cpp : ±¸Çö ÆÄÀÏÀÔ´Ï´Ù.
//
 
#include "stdafx.h"
#include "PropertyGrid.h"
#include "CustomItem.h"
#include "PropertyGridDirectoryPicker.h"
#include "PropertyGridMonthCalCtrl.h"
#include "DynDialogEx.h"
#include <algorithm>
#include <shlwapi.h>
 
#define IDC_MONTHCAL 1023
 
static const int margin = 2;
 
// CPropertyGrid
 
IMPLEMENT_DYNAMIC(CPropertyGrid, CWnd)
 
CPropertyGrid::CPropertyGrid()
{
    m_section_id = 0;
    m_item_id = 0;
    m_resizing_gutter = false;
    m_button_pushed = false;
    m_button_depressed = false;
    m_value_clicked = false;
    m_custom_tracking = false;
    m_scroll_enabled = false;
    m_draw_lines = true;
    m_shade_titles = true;
    m_draw_gutter = true;
    m_focus_disabled = true;
    m_bold_modified = false;
    m_bold_editables = false;
    m_display_mode = DM_CATEGORIZED;
    m_control = NULL;
 
    m_rect_button = CRect(0,0,0,0);
    m_ptLast = CPoint(0,0);
 
    m_strTrue = "True";
    m_strFalse = "False";
    m_strDate = "Date";
    m_strTime = "Time";
    m_strUndefined = "";
    m_strEmpty = "";
 
    m_clrBack = GetSysColor(COLOR_WINDOW);
    m_clrShade = GetSysColor(COLOR_3DFACE);
    m_clrText = GetSysColor(COLOR_WINDOWTEXT);
    m_clrTitle = GetSysColor(COLOR_WINDOWTEXT);
    m_clrFocus = GetSysColor(COLOR_HIGHLIGHT);
    m_clrHilite = GetSysColor(COLOR_HIGHLIGHTTEXT);
    m_clrEditable = GetSysColor(COLOR_WINDOWTEXT);
    m_clrDisabled = GetSysColor(COLOR_GRAYTEXT);
    m_clrItemLine = GetSysColor(COLOR_3DFACE);
 
    m_focused_section = -1;
    m_focused_item = -1;
}
 
CPropertyGrid::~CPropertyGrid()
{
}
 
//
// customization
//
 
bool CPropertyGrid::GetShadeTitles()
{
  return m_shade_titles;
}
 
void CPropertyGrid::SetShadeTitles(bool shade_titles)
{
  m_shade_titles = shade_titles;
  if (GetSafeHwnd())
    Invalidate();
}
 
bool CPropertyGrid::GetDrawLines()
{
  return m_draw_lines;
}
 
void CPropertyGrid::SetDrawLines(bool draw_lines)
{
  m_draw_lines = draw_lines;
  if (GetSafeHwnd())
    Invalidate();
}
 
bool CPropertyGrid::GetDrawGutter()
{
  return m_draw_gutter;
}
 
void CPropertyGrid::SetDrawGutter(bool draw_gutter)
{
  m_draw_gutter = draw_gutter;
  if (GetSafeHwnd())
    Invalidate();
}
 
bool CPropertyGrid::GetFocusDisabled()
{
  return m_focus_disabled;
}
 
void CPropertyGrid::SetFocusDisabled(bool focus_disabled)
{
  m_focus_disabled = focus_disabled;
  if (GetSafeHwnd())
    Invalidate();
}
 
bool CPropertyGrid::GetBoldModified()
{
  return m_bold_modified;
}
 
void CPropertyGrid::SetBoldModified(bool bold_modified)
{
  m_bold_modified = bold_modified;
}
 
bool CPropertyGrid::GetBoldEditables()
{
  return m_bold_editables;
}
 
void CPropertyGrid::SetBoldEditables(bool bold_editables)
{
  m_bold_editables = bold_editables;
}
 
//
// gutter width
//
 
int CPropertyGrid::GetGutterWidth()
{
  return m_gutter_width;
}
 
void CPropertyGrid::SetGutterWidth(int gutter_width)
{
  m_gutter_width = gutter_width;
  if (GetSafeHwnd())
    Invalidate();
}
 
//
// custom colors
//
 
void CPropertyGrid::SetTextColor(COLORREF clrText)
{
  if (m_clrText == m_clrEditable)
    m_clrEditable = clrText;
  m_clrText = clrText;
  if (GetSafeHwnd())
    Invalidate();
}
 
void CPropertyGrid::SetTitleColor(COLORREF clrTitle)
{
  m_clrTitle = clrTitle;
  if (GetSafeHwnd())
    Invalidate();
}
 
void CPropertyGrid::SetBackColor(COLORREF clrBack)
{
  m_clrBack = clrBack;
  if (GetSafeHwnd())
    Invalidate();
}
 
void CPropertyGrid::SetShadeColor(COLORREF clrShade)
{
  m_clrShade = clrShade;
  if (GetSafeHwnd())
    Invalidate();
}
 
void CPropertyGrid::SetFocusColor(COLORREF clrFocus)
{
  m_clrFocus = clrFocus;
  if (GetSafeHwnd())
    Invalidate();
}
 
void CPropertyGrid::SetHiliteColor(COLORREF clrHilite)
{
  m_clrHilite = clrHilite;
  if (GetSafeHwnd())
    Invalidate();
}
 
void CPropertyGrid::SetEditableColor(COLORREF clrEditable)
{
  m_clrEditable = clrEditable;
  if (GetSafeHwnd())
    Invalidate();
}
 
void CPropertyGrid::SetDisabledColor(COLORREF clrDisabled)
{
  m_clrDisabled = clrDisabled;
  if (GetSafeHwnd())
    Invalidate();
}
 
//
// localization
//
 
void CPropertyGrid::SetTrueFalseStrings(CString strTrue, CString strFalse)
{
  m_strTrue = strTrue;
  m_strFalse = strFalse;
}
 
void CPropertyGrid::SetOkCancelStrings(CString strOk, CString strCancel)
{
  m_strOk = strOk;
  m_strCancel = strCancel;
}
 
void CPropertyGrid::SetDateTimeStrings(CString strDate, CString strTime)
{
  m_strDate = strDate;
  m_strTime = strTime;
}
 
void CPropertyGrid::SetUndefinedString(CString strUndefined)
{
  m_strUndefined = strUndefined;
}
 
void CPropertyGrid::SetEmptyString(CString strEmpty)
{
  m_strEmpty = strEmpty;
}
 
//
// appearance
//
 
void CPropertyGrid::SetDisplayMode(EDisplayMode display_mode)
{
  m_display_mode = display_mode;
  RecalcLayout();
}
 
void CPropertyGrid::ExpandAll(bool expand)
{
  for (std::vector<CSection>::iterator it = m_sections.begin(); it != m_sections.end(); ++it)
    it->m_collapsed = !expand;
  RecalcLayout();
}
 
void CPropertyGrid::ExpandSection(HSECTION hs, bool expand)
{
  CSection* pSection = FindSection(hs);
  if (pSection)
  {
    pSection->m_collapsed = !expand;
    RecalcLayout();
  }
}
 
bool CPropertyGrid::IsSectionCollapsed(HSECTION hs)
{
  CSection* pSection = FindSection(hs);
  if (pSection)
    return pSection->m_collapsed;
  return false;
}
 
//
// item management
//
 
bool CPropertyGrid::CItem::operator==(const HITEM& item) const
{
  return m_id == item;
}
 
bool CPropertyGrid::CItem::operator==(const CString& name) const
{
  return m_name == name;
}
 
bool CPropertyGrid::CSection::operator==(const HSECTION& section) const
{
  return m_id == section;
}
 
void CPropertyGrid::CItem::ValidateChanges()
{
  // save the values
  m_undefined_old = m_undefined;
  m_nValue_old = m_nValue;              
  m_dValue_old = m_dValue;
  m_strValue_old = m_strValue;
  m_bValue_old = m_bValue;
  m_dtValue_old = m_dtValue;
  m_clrValue_old = m_clrValue;
  memcpy(&m_lfValue_old, &m_lfValue, sizeof(LOGFONT));
 
  // callback for custom
  if (m_type == IT_CUSTOM)
    m_pCustom->ValidateChanges();
}
 
HSECTION CPropertyGrid::AddSection(CString title, bool collapsed, HSECTION after)
{
  // build it
  CSection section;
  section.m_id = m_section_id;
  section.m_title = title;
  section.m_collapsed = collapsed;
 
  // insert it
  // if after does not exist then it is appended
  std::vector<CSection>::iterator it = find(m_sections.begin(), m_sections.end(), after);
  m_sections.insert(it, section);
 
  // done
  RecalcLayout();
  return m_section_id++;
}
 
HITEM CPropertyGrid::AddItem(HSECTION hs, EItemType type, CString name, void* pValue, bool editable, bool undefined, HITEM after)
{
  // check section exists
  std::vector<CSection>::iterator it = find(m_sections.begin(), m_sections.end(), hs);
  if (it == m_sections.end())
    return -1;
 
  // check item does not already exists
  std::vector<CItem>::iterator it2 = find(it->m_items.begin(), it->m_items.end(), name);
  if (it2 != it->m_items.end())
    return -1;
 
  // build the item
  CItem item;
  item.m_id = m_item_id++;
  item.m_type = type;
  item.m_name = name;
  item.m_editable = editable;
  item.m_undefined = undefined;
 
  // assign the value
  if (type == IT_CUSTOM) item.m_pCustom = (ICustomItem*)pValue;
  else if (type == IT_STRING || type == IT_TEXT || type == IT_FILE || type == IT_PATH || type == IT_FOLDER) item.m_strValue = *(CString*)pValue;
  else if (type == IT_COMBO || type == IT_INTEGER) item.m_nValue = *(int*)pValue;
  else if (type == IT_DOUBLE) item.m_dValue = *(double*)pValue;
  else if (type == IT_BOOLEAN) item.m_bValue = *(bool*)pValue;
  else if (type == IT_DATE || type == IT_DATETIME) item.m_dtValue = *(COleDateTime*)pValue;
  else if (type == IT_COLOR) item.m_clrValue = *(COLORREF*)pValue;
  else if (type == IT_FONT) memcpy(&item.m_lfValue, pValue, sizeof(LOGFONT));
  else ASSERT(false);
 
  // finish and add
  item.ValidateChanges();
  it->m_items.push_back(item);
  RecalcLayout();
  return item.m_id;
}
 
HITEM CPropertyGrid::AddCustomItem(HSECTION section, CString name, ICustomItem* pItem, bool editable, HITEM after)
{
  pItem->m_pGrid = this;
  return AddItem(section, IT_CUSTOM, name, pItem, editable, false, after);
}
 
HITEM CPropertyGrid::AddStringItem(HSECTION section, CString name, CString value, bool editable, HITEM after)
{
  return AddItem(section, IT_STRING, name, &value, editable, false, after);
}
 
HITEM CPropertyGrid::AddTextItem(HSECTION section, CString name, CString value, bool editable, HITEM after)
{
  return AddItem(section, IT_TEXT, name, &value, editable, false, after);
}
 
HITEM CPropertyGrid::AddIntegerItem(HSECTION section, CString name, int value, CString format, bool editable, bool undefined, HITEM after)
{
  HITEM it = AddItem(section, IT_INTEGER, name, &value, editable, undefined, after);
  CItem* pItem = FindItem(it);
  if (pItem) pItem->m_options.push_back(format);
  return it;
}
 
HITEM CPropertyGrid::AddDoubleItem(HSECTION section, CString name, double value, CString format, bool editable, bool undefined, HITEM after)
{
  HITEM it = AddItem(section, IT_DOUBLE, name, &value, editable, undefined, after);
  CItem* pItem = FindItem(it);
  if (pItem) pItem->m_options.push_back(format);
  return it;
}
 
HITEM CPropertyGrid::AddComboItem(HSECTION section, CString name, const std::vector<CString>& values, int cur, bool editable, bool undefined, HITEM after)
{
  HITEM it = AddItem(section, IT_COMBO, name, &cur, editable, undefined, after);
  CItem* pItem = FindItem(it);
  if (pItem) pItem->m_options = values;
  return it;
}
 
HITEM CPropertyGrid::AddBoolItem(HSECTION section, CString name, bool value, bool editable, bool undefined, HITEM after)
{
  return AddItem(section, IT_BOOLEAN, name, &value, editable, undefined, after);
}
 
HITEM CPropertyGrid::AddDateItem(HSECTION section, CString name, COleDateTime value, CString format, bool editable, bool undefined, HITEM after)
{
  HITEM it = AddItem(section, IT_DATE, name, &value, editable, undefined, after);
  CItem* pItem = FindItem(it);
  if (pItem) pItem->m_options.push_back(format);
  return it;
}
 
HITEM CPropertyGrid::AddDateTimeItem(HSECTION section, CString name, COleDateTime value, CString format, bool editable, bool undefined, HITEM after)
{
  HITEM it = AddItem(section, IT_DATETIME, name, &value, editable, undefined, after);
  CItem* pItem = FindItem(it);
  if (pItem) pItem->m_options.push_back(format);
  return it;
}
 
HITEM CPropertyGrid::AddFileItem(HSECTION section, CString name, CString value, CString filter, bool editable, HITEM after)
{
  HITEM it = AddItem(section, IT_FILE, name, &value, editable, false, after);
  CItem* pItem = FindItem(it);
  if (pItem) pItem->m_options.push_back(filter);
  return it;
}
 
HITEM CPropertyGrid::AddPathItem(HSECTION section, CString name, CString value, CString filter, bool editable, HITEM after)
{
    HITEM it = AddItem(section, IT_PATH, name, &value, editable, false, after);
    CItem* pItem = FindItem(it);
    if (pItem) pItem->m_options.push_back(filter);
    return it;
}
 
HITEM CPropertyGrid::AddFolderItem(HSECTION section, CString name, CString value, CString title, bool editable, HITEM after)
{
  HITEM it = AddItem(section, IT_FOLDER, name, &value, editable, false, after);
  CItem* pItem = FindItem(it);
  if (pItem) pItem->m_options.push_back(title);
  return it;
}
 
HITEM CPropertyGrid::AddColorItem(HSECTION section, CString name, COLORREF value, bool editable, bool undefined, HITEM after)
{
  return AddItem(section, IT_COLOR, name, &value, editable, undefined, after);
}
 
HITEM CPropertyGrid::AddFontItem(HSECTION section, CString name, LOGFONT value, bool editable, bool undefined, HITEM after)
{
  return AddItem(section, IT_FONT, name, &value, editable, undefined, after);
}
 
void CPropertyGrid::ResetContents()
{
  m_sections.clear();
  m_section_id = 0;
  m_item_id = 0;
  RecalcLayout();
}
 
bool CPropertyGrid::RemoveSection(HSECTION hs)
{
  std::vector<CSection>::iterator it = find(m_sections.begin(), m_sections.end(), hs);
  if (it == m_sections.end()) return false;
  m_sections.erase(it);
  return true;
}
 
bool CPropertyGrid::RemoveItem(HITEM item)
{
  for (std::vector<CSection>::iterator it = m_sections.begin(); it != m_sections.end(); ++it)
  {
    std::vector<CItem>::iterator it2 = find(it->m_items.begin(), it->m_items.end(), item);
    if (it2 != it->m_items.end())
    {
      it->m_items.erase(it2);
      return true;
    }
  }
  return false;
}
 
int CPropertyGrid::GetNumSections()
{
  return int(m_sections.size());
}
 
int CPropertyGrid::GetSectionSize(HSECTION hs)
{
  CSection* pSection = FindSection(hs);
  if (pSection) return int(pSection->m_items.size());
  return 0;
}
 
void CPropertyGrid::ValidateChanges()
{
  for (std::vector<CSection>::iterator it = m_sections.begin(); it != m_sections.end(); ++it)
  {
    for (std::vector<CItem>::iterator it2 = it->m_items.begin(); it2 != it->m_items.end(); ++it2)
      it2->ValidateChanges();
  }
}
 
CPropertyGrid::CSection* CPropertyGrid::FindSection(HSECTION hs) const
{
  std::vector<CSection>::const_iterator it = find(m_sections.begin(), m_sections.end(), hs);
  if (it == m_sections.end()) return NULL;
  return const_cast<CSection*>(&(*it));
}
 
CPropertyGrid::CItem* CPropertyGrid::FindItem(HITEM hi) const
{
  for (std::vector<CSection>::const_iterator it = m_sections.begin(); it != m_sections.end(); ++it)
  {
    std::vector<CItem>::const_iterator it2 = find(it->m_items.begin(), it->m_items.end(), hi);
    if (it2 != it->m_items.end())
      return const_cast<CItem*>(&(*it2));
  }
  return NULL;
}
 
bool CPropertyGrid::GetItemValue(HITEM item, CString& strValue) const
{
  // get the item
  CItem* pItem = FindItem(item);
  if (pItem == NULL) return false;
  if (pItem->m_undefined) return false;
 
  // check
  if (pItem->m_type == IT_STRING || pItem->m_type == IT_TEXT || pItem->m_type == IT_FILE || pItem->m_type == IT_PATH || pItem->m_type == IT_FOLDER)
  {
    strValue = pItem->m_strValue;
    return true;
  }
  else if (pItem->m_type == IT_COMBO)
  {
    if (pItem->m_nValue < 0 || pItem->m_nValue > int(pItem->m_options.size())-1) return false;
    strValue = pItem->m_options[pItem->m_nValue];
    return true;
  }
  return false;
}
 
bool CPropertyGrid::GetItemValue(HITEM item, int& nValue) const
{
  // get the item
  CItem* pItem = FindItem(item);
  if (pItem == NULL) return false;
  if (pItem->m_undefined) return false;
 
  // check
  if (pItem->m_type == IT_COMBO || pItem->m_type == IT_INTEGER)
  {
    nValue = pItem->m_nValue;
    return true;
  }
  return false;
}
 
bool CPropertyGrid::GetItemValue(HITEM item, double& dValue) const
{
  // get the item
  CItem* pItem = FindItem(item);
  if (pItem == NULL) return false;
  if (pItem->m_undefined) return false;
 
  // check
  if (pItem->m_type == IT_DOUBLE)
  {
    dValue = pItem->m_dValue;
    return true;
  }
  return false;
}
 
bool CPropertyGrid::GetItemValue(HITEM item, bool& bValue) const
{
  // get the item
  CItem* pItem = FindItem(item);
  if (pItem == NULL) return false;
  if (pItem->m_undefined) return false;
 
  // check
  if (pItem->m_type == IT_BOOLEAN)
  {
    bValue = pItem->m_bValue;
    return true;
  }
  return false;
}
 
bool CPropertyGrid::GetItemValue(HITEM item, COleDateTime& dtValue) const
{
  // get the item
  CItem* pItem = FindItem(item);
  if (pItem == NULL) return false;
  if (pItem->m_undefined) return false;
 
  // check
  if (pItem->m_type == IT_DATE || pItem->m_type == IT_DATETIME)
  {
    dtValue = pItem->m_dtValue;
    return true;
  }
  return false;
}
 
bool CPropertyGrid::GetItemValue(HITEM item, COLORREF& clrValue) const
{
  // get the item
  CItem* pItem = FindItem(item);
  if (pItem == NULL) return false;
  if (pItem->m_undefined) return false;
 
  // check
  if (pItem->m_type == IT_COLOR)
  {
    clrValue = pItem->m_clrValue;
    return true;
  }
  return false;
}
 
bool CPropertyGrid::GetItemValue(HITEM item, LOGFONT& lfValue) const
{
  // get the item
  CItem* pItem = FindItem(item);
  if (pItem == NULL) return false;
  if (pItem->m_undefined) return false;
 
  // check
  if (pItem->m_type == IT_FONT)
  {
    lfValue = pItem->m_lfValue;
    return true;
  }
  return false;
}
 
bool CPropertyGrid::SetItemValue(HITEM item, const CString strValue)
{
  // get the item
  CItem* pItem = FindItem(item);
  if (pItem == NULL) return false;
 
  // check
  if (pItem->m_type == IT_STRING || pItem->m_type == IT_TEXT || pItem->m_type == IT_FILE || pItem->m_type == IT_PATH || pItem->m_type == IT_FOLDER)
  {
    pItem->m_strValue = strValue;
    pItem->m_undefined = false;
    Invalidate();
    return true;
  }
  return false;
}
 
bool CPropertyGrid::SetItemValue(HITEM item, const int nValue)
{
  // get the item
  CItem* pItem = FindItem(item);
  if (pItem == NULL) return false;
 
  // check
  if (pItem->m_type == IT_COMBO || pItem->m_type == IT_INTEGER)
  {
    pItem->m_nValue = nValue;
    pItem->m_undefined = false;
    Invalidate();
    return true;
  }
  return false;
}
 
bool CPropertyGrid::SetItemValue(HITEM item, const double dValue)
{
  // get the item
  CItem* pItem = FindItem(item);
  if (pItem == NULL) return false;
 
  // check
  if (pItem->m_type == IT_DOUBLE)
  {
    pItem->m_dValue = dValue;
    pItem->m_undefined = false;
    Invalidate();
    return true;
  }
  return false;
}
 
bool CPropertyGrid::SetItemValue(HITEM item, const bool bValue)
{
  // get the item
  CItem* pItem = FindItem(item);
  if (pItem == NULL) return false;
 
  // check
  if (pItem->m_type == IT_BOOLEAN)
  {
    pItem->m_bValue = bValue;
    pItem->m_undefined = false;
    Invalidate();
    return true;
  }
  return false;
}
 
bool CPropertyGrid::SetItemValue(HITEM item, const COleDateTime dtValue)
{
  // get the item
  CItem* pItem = FindItem(item);
  if (pItem == NULL) return false;
 
  // check
  if (pItem->m_type == IT_DATE || pItem->m_type == IT_DATETIME)
  {
    pItem->m_dtValue = dtValue;
    pItem->m_undefined = false;
    Invalidate();
    return true;
  }
  return false;
}
 
bool CPropertyGrid::SetItemValue(HITEM item, const COLORREF clrValue)
{
  // get the item
  CItem* pItem = FindItem(item);
  if (pItem == NULL) return false;
 
  // check
  if (pItem->m_type == IT_COLOR)
  {
    pItem->m_clrValue = clrValue;
    pItem->m_undefined = false;
    Invalidate();
    return true;
  }
  return false;
}
 
bool CPropertyGrid::SetItemValue(HITEM item, const LOGFONT lfValue)
{
  // get the item
  CItem* pItem = FindItem(item);
  if (pItem == NULL) return false;
 
  // check
  if (pItem->m_type == IT_FONT)
  {
    memcpy(&pItem->m_lfValue, &lfValue, sizeof(LOGFONT));
    pItem->m_undefined = false;
    Invalidate();
    return true;
  }
  return false;
}
 
int CPropertyGrid::GetTextMargin()
{
  return 2*margin;
}
 
CFont* CPropertyGrid::GetFontNormal()
{
  return &m_fntNormal;
}
 
CFont* CPropertyGrid::GetFontBold()
{
  return &m_fntBold;
}
 
 
BEGIN_MESSAGE_MAP(CPropertyGrid, CWnd)
    ON_WM_PAINT()
    ON_WM_LBUTTONDOWN()
    ON_WM_MOUSEMOVE()
    ON_WM_CREATE()
    ON_WM_LBUTTONUP()
    ON_WM_VSCROLL()
    ON_WM_ERASEBKGND()
    ON_MESSAGE(WM_PG_COMBOSELCHANGED, OnComboSelChanged)
    ON_MESSAGE(WM_PG_ENDLABELEDIT, OnEditChanged)
    ON_MESSAGE(WM_PG_DATESELCHANGED, OnDateChanged)
    ON_WM_LBUTTONDBLCLK()
    ON_WM_MOUSEWHEEL()
    ON_WM_DESTROY()
    ON_WM_SIZE()
    ON_WM_GETDLGCODE()
    ON_WM_CHAR()
    ON_WM_KEYDOWN()
END_MESSAGE_MAP()
 
 
 
// CPropertyGrid ¸Þ½ÃÁö Ã³¸®±âÀÔ´Ï´Ù
 
void CPropertyGrid::InitControl()
{
  // first gutter
  CRect rc;
  GetClientRect(&rc);
  m_gutter_width = rc.Width()/2;
 
  // check if already done
  if (m_fntNormal.GetSafeHandle() == NULL)
  {
    // fonts
    LOGFONT lf;
    if (GetParent() && GetParent()->GetFont())
    {
      CFont* pFont = GetParent()->GetFont();
      pFont->GetLogFont(&lf);
      m_fntNormal.CreateFontIndirect(&lf);
      lf.lfWeight = FW_BOLD;
      m_fntBold.CreateFontIndirect(&lf);
    }
    else
    {
      m_fntNormal.CreatePointFont(85, _T("Tahoma"));
      m_fntNormal.GetLogFont(&lf);
      lf.lfWeight = FW_BOLD;
      m_fntBold.CreateFontIndirect(&lf);
    }
  }
 
  // get line height
  CDC* pDC = GetDC();
  CFont* pOldFont = pDC->SelectObject(&m_fntNormal);
  m_line_height = pDC->GetTextExtent(_T("Gg")).cy + 2*margin;
  pDC->SelectObject(pOldFont);
  ReleaseDC(pDC);
 
  // styles
  ModifyStyle(0, WS_CLIPCHILDREN);
 
  // try to get some strings
  if (m_strOk.IsEmpty())
  {
    m_strOk = "OK";
    if (GetParent() && GetParent()->GetDlgItem(IDOK))
    {
      CString strOk;
      GetParent()->GetDlgItem(IDOK)->GetWindowText(strOk);
      m_strOk = strOk;
    }
  }
  if (m_strCancel.IsEmpty())
  {
    m_strCancel = "Cancel";
    if (GetParent() && GetParent()->GetDlgItem(IDCANCEL))
    {
      CString strCancel;
      GetParent()->GetDlgItem(IDCANCEL)->GetWindowText(strCancel);
      m_strCancel = strCancel;
    }
  }
}
 
int CPropertyGrid::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
  if (CWnd::OnCreate(lpCreateStruct) == -1) return -1;
  InitControl();
  return 0;
}
 
void CPropertyGrid::PreSubclassWindow()
{
  InitControl();
  CWnd::PreSubclassWindow();
}
 
void CPropertyGrid::OnDestroy()
{
  DeleteEditControl();
  CWnd::OnDestroy();
}
 
void CPropertyGrid::OnSize(UINT nType, int cx, int cy)
{
  CWnd::OnSize(nType, cx, cy);
 
  if (m_scrollbar.GetSafeHwnd())
  {
    CRect rect;
    GetClientRect(&rect);
    m_scrollbar.MoveWindow(rect.right - GetSystemMetrics(SM_CXVSCROLL), rect.top, GetSystemMetrics(SM_CXVSCROLL), rect.Height());
    RecalcLayout();
  }
}
 
//
// painting
//
 
BOOL CPropertyGrid::OnEraseBkgnd(CDC* pDC)
{
  return TRUE;
}
 
bool item_alpha_sort(std::vector<CPropertyGrid::CItem>::iterator it1, std::vector<CPropertyGrid::CItem>::iterator it2)
{
    return (it1->m_name.Compare(it2->m_name) < 0);
}
 
void CPropertyGrid::OnPaint()
{
  // stuff needed
  const int sign_size = 8;
 
  // the scrollbar offset
  int top = GetScrollOffset();
 
  // the rect
  CRect rc_dummy;
  GetClientRect(&rc_dummy);
  if (m_scroll_enabled)
    rc_dummy.right -= GetSystemMetrics(SM_CXVSCROLL);
 
  // make sure we do not modify this one
  // because we use it to bitblt
  const CRect rc(rc_dummy);
 
  // stuff for flicker free drawing
  CDC dcMem;
  CBitmap bmpMem;
  CPaintDC dc(this);
 
  // create and configure the memdc
  dcMem.CreateCompatibleDC(&dc);
  bmpMem.CreateCompatibleBitmap(&dc, rc.Width(), rc.Height());
  CBitmap* pOldBmp = dcMem.SelectObject(&bmpMem);
 
  // brush needed
  CBrush brushTitle;
  brushTitle.CreateSolidBrush(m_clrTitle);
 
  // pen needed
  //CPen penShade(PS_SOLID, 1, m_clrShade);
  CPen penShade(PS_SOLID, 1, m_clrItemLine);
  CPen penTitle(PS_SOLID, 1, m_clrTitle);
 
  // to make sure we won't leak gdi resources
  CBrush* pOldBrush = dcMem.SelectObject(&brushTitle);
  CPen* pOldPen = dcMem.SelectObject(&penShade);
  CFont* pOldFont = dcMem.SelectObject(&m_fntNormal);
 
  // needed
  int w = rc.Width();
 
  // blank
  dcMem.FillSolidRect(rc, m_clrBack);
  dcMem.SetBkMode(TRANSPARENT);
 
  // empty text
  if (m_sections.empty())
  {
    CRect rect = rc;
    rect.top += 10;
    rect.DeflateRect(rect.Width()/4, 0);
    dcMem.DrawText(m_strEmpty, rect, DT_CENTER|DT_WORDBREAK|DT_NOPREFIX);
  }
  else
  {
    // needed
    int sign_left = margin;
 
    // we start here
    int y = -top;
 
    // alphabetical needs special
    if (m_display_mode == DM_ALPHABETICAL)
    {
      // put all the items in a vector
      std::vector<std::vector<CItem>::iterator> lst;
      for (std::vector<CSection>::iterator it = m_sections.begin(); it != m_sections.end(); ++it)
      {
        for (std::vector<CItem>::iterator it2 = it->m_items.begin(); it2 != it->m_items.end(); ++it2)
          lst.push_back(it2);
      }
 
      // sort the vector
      sort(lst.begin(), lst.end(), item_alpha_sort);
 
      // display the items
      for (std::vector<std::vector<CItem>::iterator>::iterator it2 = lst.begin(); it2 != lst.end(); ++it2)
      {
        // first reset
        (*it2)->m_rcName.SetRectEmpty();
        (*it2)->m_rcValue.SetRectEmpty();
 
        // draw if visible
        (*it2)->m_rcName = CRect(0, y, w, y+m_line_height);
        CRect rcInter = (*it2)->m_rcName;
        rcInter.IntersectRect(rc, rcInter);
        if (!rcInter.IsRectEmpty())
          DrawItem(dcMem, w, sign_left+sign_size, y, *it2);
 
        // next line
        y += m_line_height;
      }
    }
    else
    {
      // next iterate on sections
      for (std::vector<CSection>::iterator it = m_sections.begin(); it != m_sections.end(); ++it)
      {
        // reset
        it->m_rcSign.SetRectEmpty();
        it->m_rcTitle.SetRectEmpty();
 
        // is visible?
        it->m_rcTitle = CRect(0, y, w, y+m_line_height);
        CRect rcInter = it->m_rcTitle;
        rcInter.IntersectRect(rcInter, rc);
        if (m_display_mode == DM_CATEGORIZED && !rcInter.IsRectEmpty())
        {
          // first shade rect
          if (m_shade_titles)
          {
            dcMem.FillSolidRect(0, y, w, m_line_height, m_clrShade);
          }
 
          // now draw a separator lines
          if (m_draw_lines)
          {
            dcMem.SelectObject(&penShade);
            dcMem.MoveTo(0, y);
            dcMem.LineTo(w+1, y);
            dcMem.MoveTo(0, y+m_line_height);
            dcMem.LineTo(w+1, y+m_line_height);
          }
 
          // now draw gutter
          if (m_draw_gutter)
          {
            dcMem.SelectObject(&penShade);
            //dcMem.SelectStockObject(BLACK_PEN);
            dcMem.MoveTo(m_gutter_width, y);
            dcMem.LineTo(m_gutter_width, y+m_line_height+1);
          }
 
          // now draw collapse sign
          int sign_top = y+margin+2;
          dcMem.SelectObject(&penTitle);
          //dcMem.SelectStockObject(BLACK_PEN);
          it->m_rcSign = CRect(sign_left, sign_top, sign_left+sign_size+1, sign_top+sign_size+1);
          dcMem.FrameRect(it->m_rcSign, &brushTitle);
          dcMem.MoveTo(sign_left+2, sign_top+sign_size/2);
          dcMem.LineTo(sign_left+2+sign_size/2+1, sign_top+sign_size/2);
          if (it->m_collapsed)
          {
            dcMem.MoveTo(sign_left+sign_size/2, sign_top+2);
            dcMem.LineTo(sign_left+sign_size/2, sign_top+2+sign_size/2+1);
          }
 
          // prepare draw text
          int title_left = sign_left+sign_size+2*margin;
          int title_top = y;
          dcMem.SelectObject(&m_fntBold);
          it->m_rcTitle = CRect(title_left, title_top, w, title_top+m_line_height);
 
          // draw focus rect
          if (m_focused_section == it->m_id)
          {
            CSize sz = dcMem.GetTextExtent(it->m_title);
            int rect_left = title_left;
            int rect_top = title_top+(m_line_height-sz.cy)/2;
            int rect_width = sz.cx+3*margin;
            int rect_height = sz.cy;
            dcMem.DrawFocusRect(CRect(rect_left, rect_top, rect_left+rect_width, rect_top+rect_height));
          }
 
          // now draw text
          dcMem.SetTextColor(m_clrTitle);
          dcMem.DrawText(it->m_title, CRect(title_left+GetTextMargin(), title_top, w, title_top+m_line_height), DT_END_ELLIPSIS|DT_LEFT|DT_SINGLELINE|DT_VCENTER|DT_NOPREFIX); 
        }
 
        // next line
        if (m_display_mode == DM_CATEGORIZED)
          y+=m_line_height;
 
        // iterate on items
        if (!it->m_collapsed || m_display_mode != DM_CATEGORIZED)
        {
          for (std::vector<CItem>::iterator it2 = it->m_items.begin(); it2 != it->m_items.end(); ++it2)
          {
            // reset
            it2->m_rcName.SetRectEmpty();
            it2->m_rcValue.SetRectEmpty();
 
            // is visible?
            it2->m_rcName = CRect(0, y, w, y+m_line_height);
            CRect rcInter = it2->m_rcName;
            rcInter.IntersectRect(rc, rcInter);
            if (!rcInter.IsRectEmpty())
              DrawItem(dcMem, w, sign_left+sign_size, y, it2);
 
            // next line
            y+=m_line_height;
          }
        }
      }
    }
  }
 
  // Blt the changes to the screen DC.
  dc.BitBlt(rc.left, rc.top, rc.right-rc.left, rc.bottom-rc.top, &dcMem, 0, 0, SRCCOPY);
 
  // Done with off-screen bitmap and DC.
  dcMem.SelectObject(pOldBmp);
  dcMem.SelectObject(pOldFont);
  dcMem.SelectObject(pOldPen);
  dcMem.SelectObject(pOldBrush);
  bmpMem.DeleteObject();
  dcMem.DeleteDC();
 
  // Validate All
  ValidateRgn(NULL);
  ValidateRect(NULL);
}
 
void CPropertyGrid::DrawItem(CDC& dc, int w, int x, int y, std::vector<CItem>::iterator& it)
{
  // brush needed
  CBrush brushText;
  brushText.CreateSolidBrush(m_clrText);
 
  // pen needed
  //CPen penShade(PS_SOLID, 1, m_clrShade);
  CPen penShade(PS_SOLID, 1, m_clrItemLine);
 
  // to make sure we won't leak gdi resources
  CBrush* pOldBrush = dc.SelectObject(&brushText);
  CPen* pOldPen = dc.SelectObject(&penShade);
  CFont* pOldFont = dc.SelectObject(&m_fntNormal);
 
  // first shade rect
  if (m_shade_titles)
    dc.FillSolidRect(0, y, x+2*margin, m_line_height, m_clrShade);
 
  // now draw a separator line
  if (m_draw_lines)
  {
    dc.SelectObject(&penShade);
    //dc.SelectStockObject(BLACK_PEN);
    dc.MoveTo(0, y+m_line_height);
    dc.LineTo(w+1, y+m_line_height);
  }
 
  // now draw gutter
  if (m_draw_gutter)
  {
    dc.SelectObject(&penShade);
    //dc.SelectStockObject(BLACK_PEN);
    dc.MoveTo(m_gutter_width, y);
    dc.LineTo(m_gutter_width, y+m_line_height+1);
  }
 
  // needed
  int name_left = x+2*margin+GetTextMargin();
  int name_right = m_gutter_width-1;
  int value_left = m_gutter_width;
  int value_right = w;
 
  // is being edited?
  if (m_focused_item == it->m_id && it->m_editable && GetEditMode(*it) != EM_CUSTOM)
  {
    value_right -= m_line_height;
 
    // the rect of the button
    m_rect_button = CRect(w-m_line_height, y, w, y+m_line_height);
 
    UINT pushed = m_button_depressed?DFCS_PUSHED:0;
 
    // now draw the button
    switch (GetEditMode(*it))
    {
    case EM_MODAL:
      // draw a button
      dc.DrawFrameControl(m_rect_button, DFC_BUTTON, DFCS_BUTTONPUSH|pushed);
      dc.SelectObject(&m_fntBold);
      dc.DrawText(_T("..."), m_rect_button, DT_CENTER|DT_SINGLELINE|DT_VCENTER|DT_NOPREFIX);
      break;
 
    case EM_DROPDOWN:
      // draw an arrow
      dc.DrawFrameControl(m_rect_button, DFC_SCROLL, DFCS_SCROLLDOWN|pushed);
      break;
 
    case EM_INPLACE:
      // whole area is edit
      m_rect_button.left = m_gutter_width;
      break;
 
    default:
      ASSERT(false);
    }
  }
 
  // update the rects
  it->m_rcName = CRect(0, y, m_gutter_width, y+m_line_height);
  it->m_rcValue = CRect(value_left, y, value_right, y+m_line_height);
  CRect rcValue = it->m_rcValue;
  rcValue.left += GetTextMargin();
 
  // focused
  if (m_focused_item == it->m_id)
  {
    int rect_left = name_left-2*margin;
    int rect_right = name_right;
    dc.FillSolidRect(rect_left, y, rect_right-rect_left+1, m_line_height, m_clrFocus);
    dc.SetTextColor(m_clrHilite);
  }
  else
  {
    dc.SetTextColor(m_clrText);
  }
 
  // put name and value
  dc.SelectObject(&m_fntNormal);
  dc.DrawText(it->m_name, -1, CRect(name_left, y, name_right, y+m_line_height), DT_END_ELLIPSIS|DT_LEFT|DT_SINGLELINE|DT_VCENTER|DT_NOPREFIX);
 
  // get back to normal text
  if (it->m_editable) dc.SetTextColor(m_clrEditable);
  else dc.SetTextColor(m_clrDisabled);
 
  // custom item
  if (it->m_type == IT_CUSTOM)
  {
    int save = dc.SaveDC();
    it->m_pCustom->DrawItem(dc, it->m_rcValue, m_focused_item == it->m_id);
    dc.RestoreDC(save);
  }
  else
  {
    // modified flag
    bool modified = (it->m_strValue != it->m_strValue_old);
 
    // now draw text
    CString strValue = it->m_strValue;
    switch (it->m_type)
    {
    case IT_TEXT:
      {
        size_t j=0; // mch
       // for (;( j = strValue.Find( "\r\n" )) != -1;)
    //        strValue.Replace(j, 2, "?"); 
        break;
      }
 
    case IT_INTEGER:
      {
        CString strTemp;
        CString strFormat = _T("%d");
        if (it->m_options.size() && !it->m_options.front().IsEmpty()) 
            strFormat = it->m_options.front();
 
        strTemp.Format(strFormat, it->m_nValue);
        strValue = LPCTSTR(strTemp);
        modified = (it->m_nValue != it->m_nValue_old);
        break;
      }
 
    case IT_DOUBLE:
      {
        CString strTemp;
        CString strFormat = _T("%g");
        if (it->m_options.size() && !it->m_options.front().IsEmpty()) 
            strFormat = it->m_options.front();
        strTemp.Format(strFormat, it->m_dValue);
        strValue = LPCTSTR(strTemp);
        modified = (it->m_dValue != it->m_dValue_old);
        break;
      }
 
    case IT_DATE:
      {
        CString strTemp;
        if (it->m_options.size() && !it->m_options.front().IsEmpty()) 
            strTemp = it->m_dtValue.Format(it->m_options.front());
        else strTemp = it->m_dtValue.Format(VAR_DATEVALUEONLY);
        strValue = LPCTSTR(strTemp);
        modified = (it->m_dtValue != it->m_dtValue_old);
        break;
      }
 
    case IT_DATETIME:
      {
        CString strTemp;
        if (it->m_options.size() && !it->m_options.front().IsEmpty()) 
            strTemp = it->m_dtValue.Format(it->m_options.front());
        else strTemp = it->m_dtValue.Format();
        strValue = LPCTSTR(strTemp);
        modified = (it->m_dtValue != it->m_dtValue_old);
        break;
      }
 
    case IT_BOOLEAN:
      {
        strValue = it->m_bValue ? m_strTrue : m_strFalse;
        modified = (it->m_bValue != it->m_bValue_old);
        break;
      }
 
    case IT_COMBO:
      {
        if (it->m_nValue>=0 && it->m_nValue<int(it->m_options.size()))
          strValue = it->m_options[it->m_nValue];
        modified = (it->m_nValue != it->m_nValue_old);
        break;
      }
 
    case IT_FILE:
    case IT_PATH:
    case IT_FOLDER:
      {
        TCHAR szBuffer[1024];
        _tcsncpy_s(szBuffer, strValue, 1024);
        PathCompactPath(dc.GetSafeHdc(), szBuffer, rcValue.Width());
        strValue = szBuffer;
        break;
      }
 
    case IT_COLOR:
      {
        // draw a sample rectangle
        CRect rc = rcValue;
        rc.DeflateRect(0,2,0,2);
        rc.top++;
        rc.right = rc.left + m_line_height;
        dc.FrameRect(rc, &brushText);
        rc.DeflateRect(1,1);
        dc.FillSolidRect(rc, it->m_clrValue);
        rcValue.left = rc.right + 3*margin;
 
        // update the text
        CString strTemp;
        strTemp.Format(_T("%d; %d; %d"), GetRValue(it->m_clrValue), GetGValue(it->m_clrValue), GetBValue(it->m_clrValue));
        strValue = LPCTSTR(strTemp);
        modified = (it->m_clrValue != it->m_clrValue_old);
        break;
      }
 
    case IT_FONT:
      {
        CString strTemp;
        strTemp.Format(_T("%s; %dpt"), it->m_lfValue.lfFaceName, -MulDiv(it->m_lfValue.lfHeight, 72, dc.GetDeviceCaps(LOGPIXELSY)));
        strValue = LPCTSTR(strTemp);
        modified = (memcmp(&it->m_lfValue, &it->m_lfValue_old, sizeof(LOGFONT))!=0);
        break;
      }
    }
 
    // we must also take undefined state change into account
    modified |= (it->m_undefined != it->m_undefined_old);
 
    // set proper font
    if (modified && m_bold_modified) dc.SelectObject(&m_fntBold);
    else if (it->m_editable && m_bold_editables) dc.SelectObject(&m_fntBold);
    else dc.SelectObject(&m_fntNormal);
 
    // now draw it
    if (it->m_undefined) strValue = m_strUndefined;
    dc.DrawText(strValue, -1, rcValue, DT_END_ELLIPSIS|DT_LEFT|DT_SINGLELINE|DT_VCENTER|DT_NOPREFIX);
  }
 
  // clean up
  dc.SelectObject(pOldFont);
  dc.SelectObject(pOldPen);
  dc.SelectObject(pOldBrush);
}
 
//
// mouse interaction
//
 
void CPropertyGrid::OnLButtonDown(UINT nFlags, CPoint point)
{
  // destroy edit
  SetFocus();
  DeleteEditControl();
 
  // click on button?
  if (m_rect_button.PtInRect(point))
  {
    m_button_pushed = true;
    m_button_depressed = true;
    SetCapture();
    Invalidate();
    return;
  }
 
  // click on button?
  if (m_focused_item != -1)
  {
    CItem* pItem = FindItem(m_focused_item);
    if (   pItem && pItem->m_type == IT_CUSTOM
      && GetEditMode(*pItem) == EM_CUSTOM
      && pItem->m_pCustom->OnLButtonDown(pItem->m_rcValue, point))
    {
      m_custom_tracking = true;
      SetCapture();
      Invalidate();
      return;
    }
  }
 
  // resizing gutter?
  if (abs(point.x-m_gutter_width)<3)
  {
    ::SetCursor(AfxGetApp()->LoadStandardCursor(IDC_SIZEWE));
    m_resizing_gutter = true;
    m_ptLast = point;
    SetCapture();
    Invalidate();
    return;
  }
 
  // disable focus
  m_focused_item = -1;
  m_focused_section = -1;
  m_rect_button.SetRectEmpty();
 
  // did we click on a section
  if (m_display_mode == DM_CATEGORIZED)
  {
    for (std::vector<CSection>::iterator it = m_sections.begin(); it != m_sections.end(); ++it)
    {
      if (it->m_rcSign.PtInRect(point))
      {
        it->m_collapsed = !it->m_collapsed;
        m_focused_section = it->m_id;
        RecalcLayout();
        return;
      }
      else if (it->m_rcTitle.PtInRect(point))
      {
        m_focused_section = it->m_id;
        Invalidate();
        return;
      }
    }
  }
 
  // focus
  for (std::vector<CSection>::iterator it = m_sections.begin(); it != m_sections.end(); ++it)
  {
    if (!it->m_collapsed || m_display_mode != DM_CATEGORIZED)
    {
      for (std::vector<CItem>::iterator it2 = it->m_items.begin(); it2 != it->m_items.end(); ++it2)
      {
        if (it2->m_rcName.PtInRect(point) || it2->m_rcValue.PtInRect(point))
        {
          if (it2->m_editable || m_focus_disabled)
          {
            m_focused_item = it2->m_id;
            if (it2->m_rcValue.PtInRect(point))
              m_value_clicked = (GetEditMode(*it2) == EM_INPLACE || GetEditMode(*it2) == EM_DROPDOWN);
            Invalidate();
            return;
          }
        }
      }
    }
  }
 
  CWnd::OnLButtonDown(nFlags, point);
  Invalidate();
}
 
void CPropertyGrid::OnLButtonDblClk(UINT nFlags, CPoint point)
{
  if (m_focused_item != -1)
  {
    CItem* pItem = FindItem(m_focused_item);
    if (pItem)
    {
      if (pItem->m_type == IT_BOOLEAN)
      {
        if (!pItem->m_undefined)
        {
          pItem->m_bValue = !pItem->m_bValue;
          GetOwner()->SendMessage(WM_PG_ITEMCHANGED, pItem->m_id);
          Invalidate();
        }
      }
      else if (pItem->m_type == IT_COMBO)
      {
        if (!pItem->m_undefined)
        {
          pItem->m_nValue = (pItem->m_nValue+1)%int(pItem->m_options.size());
          GetOwner()->SendMessage(WM_PG_ITEMCHANGED, pItem->m_id);
          Invalidate();
        }
      }
      else if (GetEditMode(*pItem) == EM_MODAL)
      {
        EditFocusedItem();
      }
    }
  }
  else if (m_focused_section != -1)
  {
    CSection* pSection = FindSection(m_focused_section);
    if (pSection)
    {
      pSection->m_collapsed = !pSection->m_collapsed;
      Invalidate();
    }
  }
 
  CWnd::OnLButtonDblClk(nFlags, point);
}
 
void CPropertyGrid::OnMouseMove(UINT nHitTest, CPoint point)
{
  if (m_custom_tracking)
  {
    CItem* pItem = FindItem(m_focused_item);
    if (pItem)
    {
      pItem->m_pCustom->OnMouseMove(pItem->m_rcValue, point);
      Invalidate();
    }
  }
  else if (m_button_pushed)
  {
    m_button_depressed = m_rect_button.PtInRect(point)?true:false;
    Invalidate();
  }
  else if (m_resizing_gutter)
  {
    ::SetCursor(AfxGetApp()->LoadStandardCursor(IDC_SIZEWE));
    m_gutter_width += point.x-m_ptLast.x;
    CRect rc;
    GetClientRect(&rc);
    if (m_gutter_width<rc.Width()/5) m_gutter_width = rc.Width()/5;
    if (m_gutter_width>4*rc.Width()/5) m_gutter_width = 4*rc.Width()/5;
    m_ptLast = point;
    Invalidate();
  }
  else if (!m_control)
  {
    if (abs(point.x-m_gutter_width)<3) ::SetCursor(AfxGetApp()->LoadStandardCursor(IDC_SIZEWE));
    else ::SetCursor(AfxGetApp()->LoadStandardCursor(IDC_ARROW));
  }
 
  CWnd::OnMouseMove(nHitTest, point);
}
 
void CPropertyGrid::OnLButtonUp(UINT nFlags, CPoint point)
{
  if (m_custom_tracking)
  {
    m_custom_tracking = false;
    ReleaseCapture();
    Invalidate();
    CItem* pItem = FindItem(m_focused_item);
    if (pItem)
      pItem->m_pCustom->OnLButtonUp(pItem->m_rcValue, point);
  }
  else if (m_button_pushed || m_value_clicked)
  {
    m_button_pushed = false;
    m_button_depressed = false;
    ReleaseCapture();
    Invalidate();
 
    if (m_rect_button.PtInRect(point) || (m_value_clicked && m_focused_item != -1 && FindItem(m_focused_item) && FindItem(m_focused_item)->m_rcValue.PtInRect(point)))
    {
      m_value_clicked = false;
      CItem* pItem = FindItem(m_focused_item);
      if (pItem)
      {
        if (GetEditMode(*pItem) == EM_DROPDOWN)
        {
          if (pItem->m_type == IT_CUSTOM)
          {
            CRect rc = m_rect_button;
            rc.left = m_gutter_width;
            pItem->m_pCustom->ShowDropDown(rc);
          }
          else if (pItem->m_type == IT_DATE)
          {
            // the calendar rect
            CRect rc = m_rect_button;
            rc.left = m_gutter_width;
            rc.top += m_line_height;
            rc.bottom = rc.top + 100;
            ClientToScreen(&rc);
 
            // create it
            m_control = new CPropertyGridMonthCalCtrl;
            CPropertyGridMonthCalCtrl* mc = (CPropertyGridMonthCalCtrl*) m_control;
            mc->CreateEx(0, MONTHCAL_CLASS, NULL, WS_POPUP|WS_BORDER, rc, GetParent(), 0);
            mc->SetCurSel(pItem->m_dtValue);
            mc->SetOwner(this);
            mc->SizeMinReq();
 
            // now position it
            CRect rc2;
            mc->GetWindowRect(&rc2);
            rc2.OffsetRect(rc.right-rc2.right, 0);
            mc->SetWindowPos(NULL, rc2.left, rc2.top, 0, 0, SWP_NOZORDER|SWP_NOSIZE|SWP_SHOWWINDOW);
          }
          else
          {
            // the combo rect
            CRect rc = m_rect_button;
            rc.left = m_gutter_width;
            rc.top += m_line_height;
            rc.bottom = rc.top + 100;
 
            // create it
            m_control = new CPropertyGridCombo();
            CPropertyGridCombo* pCombo = (CPropertyGridCombo*)m_control;
            pCombo->Create(WS_CHILD, rc, this, 0);
            pCombo->SetColors(m_clrBack, m_clrText, m_clrFocus, m_clrHilite);
            pCombo->SetFont(&m_fntNormal);
 
            if (pItem->m_type == IT_BOOLEAN)
            {
              pCombo->AddString(m_strTrue);
              pCombo->AddString(m_strFalse);
              if (!pItem->m_undefined)
                pCombo->SetCurSel(pItem->m_bValue?0:1);
            }
            else
            {
              for (std::vector<CString>::iterator it = pItem->m_options.begin(); it != pItem->m_options.end(); ++it)
                pCombo->AddString(*it);
              if (!pItem->m_undefined)
                pCombo->SetCurSel(pItem->m_nValue);
            }
            pCombo->ShowWindow(SW_SHOW);
          }
        }
        else if (GetEditMode(*pItem) == EM_INPLACE)
        {
          // the in-place edit rect
          CRect rc = m_rect_button;
          rc.left++;
          rc.top += margin;
 
          // the value
          CString strValue;
          if (pItem->m_type == IT_STRING)
          {
            strValue = pItem->m_strValue;
          }
          else if (pItem->m_type == IT_INTEGER)
          {
            if (!pItem->m_undefined)
            {
              CString strTemp;
              strTemp.Format(_T("%d"), pItem->m_nValue);
              strValue = LPCTSTR(strTemp);
            }
          }
          else if (pItem->m_type == IT_DOUBLE)
          {
            if (!pItem->m_undefined)
            {
              CString strTemp;
              strTemp.Format(_T("%g"), pItem->m_dValue);
              strValue = LPCTSTR(strTemp);
            }
          }
          else if (pItem->m_type == IT_CUSTOM)
          {
            strValue = pItem->m_pCustom->GetStringForInPlaceEdit();
          }
          else
          {
            ASSERT(false);
          }
 
          // create it
          m_control = new CPropertyGridInPlaceEdit(this, rc, WS_CHILD, 1000, strValue);
          CPropertyGridInPlaceEdit* pEdit = (CPropertyGridInPlaceEdit*)m_control;
          pEdit->SetColors(m_clrBack, m_clrText);
          pEdit->SetFont(&m_fntNormal);
          pEdit->ShowWindow(SW_SHOW);
        }
        else if (GetEditMode(*pItem) == EM_MODAL)
        {
          EditFocusedItem();
        }
        else if (GetEditMode(*pItem) == EM_CUSTOM)
        {
          pItem->m_pCustom->OnLButtonUp(pItem->m_rcValue, point);
        }
        else
        {
          ASSERT(false);
        }
      }
    }
  }
  else if (m_resizing_gutter)
  {
    ReleaseCapture();
    m_resizing_gutter = false;
    ::SetCursor(AfxGetApp()->LoadStandardCursor(IDC_ARROW));
  }
 
  CWnd::OnLButtonUp(nFlags, point);
}
 
//
// keyboard interaction
//
 
UINT CPropertyGrid::OnGetDlgCode()
{
  return CWnd::OnGetDlgCode()|DLGC_WANTCHARS|DLGC_WANTARROWS;
}
 
void CPropertyGrid::MoveForward(HSECTION& focused_section, HITEM& focused_item)
{
  for (int pass = 0; pass<2; pass++)
  {
    bool found = false;
 
    bool stop_on_next_valid = false;
    if (focused_section == -1 && focused_item == -1)
      stop_on_next_valid = true;
 
    for (std::vector<CSection>::iterator it = m_sections.begin(); it != m_sections.end(); ++it)
    {
      if (m_display_mode == DM_CATEGORIZED)
      {
        if (it->m_id == focused_section)
        {
          stop_on_next_valid = true;
        }
        else if (stop_on_next_valid)
        {
          focused_section = it->m_id;
          focused_item = -1;
          found = true;
          break;
        }
      }
 
      if (!it->m_collapsed || m_display_mode != DM_CATEGORIZED)
      {
        for (std::vector<CItem>::iterator it2 = it->m_items.begin(); it2 != it->m_items.end(); ++it2)
        {
          if (it2->m_id == focused_item)
          {
            stop_on_next_valid = true;
          }
          else if (stop_on_next_valid)
          {
            if (it2->m_editable || m_focus_disabled)
            {
              focused_section = -1;
              focused_item = it2->m_id;
              found = true;
              break;
            }
          }
        }
 
        if (found)
          break;
      }
    }
 
    if (found)
      break;
 
    focused_section = -1;
    focused_item = -1;
  }
}
 
void CPropertyGrid::FocusNextItem()
{
  // simple move forward
  MoveForward(m_focused_section, m_focused_item);
 
  // ensure visible
  CRect rc(0,0,0,0);
  if (m_focused_section != -1 && FindSection(m_focused_section)) rc = FindSection(m_focused_section)->m_rcTitle;
  else if (m_focused_item != -1 && FindItem(m_focused_item)) rc = FindItem(m_focused_item)->m_rcName;
  if (!rc.IsRectEmpty())
  {
    CRect rect;
    GetClientRect(&rect);
    rect.IntersectRect(rc, rect);
    if (rect.Height() != m_line_height)
      OnVScroll(SB_THUMBPOSITION, rc.top, &m_scrollbar);
  }
 
  // done
  Invalidate();
}
 
void CPropertyGrid::FocusPrevItem()
{
  for (std::vector<CSection>::iterator it = m_sections.begin(); it != m_sections.end(); ++it)
  {
    if (m_display_mode == DM_CATEGORIZED)
    {
      HSECTION focused_section = it->m_id;
      HITEM focused_item = -1;
      MoveForward(focused_section, focused_item);
      if (focused_section == m_focused_section && focused_item == m_focused_item)
      {
        m_focused_section = it->m_id;
        m_focused_item = -1;
        break;
      }
    }
 
    if (!it->m_collapsed || m_display_mode != DM_CATEGORIZED)
    {
      bool found = false;
      for (std::vector<CItem>::iterator it2 = it->m_items.begin(); it2 != it->m_items.end(); ++it2)
      {
        if (!it2->m_editable && !m_focus_disabled)
          continue;
 
        HSECTION focused_section = -1;
        HITEM focused_item = it2->m_id;
        MoveForward(focused_section, focused_item);
        if (focused_section == m_focused_section && focused_item == m_focused_item)
        {
          m_focused_section = -1;
          m_focused_item = it2->m_id;
          found = true;
          break;
        }
      }
 
      if (found)
        break;
    }
  }
 
  // ensure visible
  CRect rc(0,0,0,0);
  if (m_focused_section != -1 && FindSection(m_focused_section)) rc = FindSection(m_focused_section)->m_rcTitle;
  else if (m_focused_item != -1 && FindItem(m_focused_item)) rc = FindItem(m_focused_item)->m_rcName;
  if (!rc.IsRectEmpty())
  {
    CRect rect;
    GetClientRect(&rect);
    rect.IntersectRect(rc, rect);
    if (rect.Height() != m_line_height)
      OnVScroll(SB_THUMBPOSITION, rc.top, &m_scrollbar);
  }
 
  // done
  Invalidate();
}
 
void CPropertyGrid::OnChar(UINT nChar, UINT nRepCnt, UINT nFlags)
{
  if (nChar == '*')
  {
    ExpandAll(true);
  }
  else if (nChar == '/')
  {
    ExpandAll(false);
  }
  else if (nChar == '+' || nChar == '-')
  {
    if (m_focused_section != -1)
    {
      CSection* pSection = FindSection(m_focused_section);
      if (pSection) pSection->m_collapsed = (nChar=='-');
      RecalcLayout();
    }
  }
 
  CWnd::OnChar(nChar, nRepCnt, nFlags);
}
 
void CPropertyGrid::OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags)
{
  if (nChar == VK_DOWN)
  {
    FocusNextItem();
  }
  else if (nChar == VK_UP)
  {
    FocusPrevItem();
  }
  else if (nChar == VK_LEFT)
  {
    if (m_focused_section != -1 && FindSection(m_focused_section) && FindSection(m_focused_section)->m_collapsed == false)
    {
      ExpandSection(m_focused_section, false);
    }
    else
    {
      FocusPrevItem();
    }
  }
  else if (nChar == VK_RIGHT)
  {
    if (m_focused_section != -1 && FindSection(m_focused_section) && FindSection(m_focused_section)->m_collapsed == true)
    {
      ExpandSection(m_focused_section, true);
    }
    else
    {
      FocusNextItem();
    }
  }
 
  CWnd::OnKeyDown(nChar, nRepCnt, nFlags);
}
 
//
// scrolling
//
 
void CPropertyGrid::RecalcLayout()
{
  // save current scroll offset
  int offset = GetScrollOffset();
 
  // total height
  int height = 0;
  for (std::vector<CSection>::iterator it = m_sections.begin(); it != m_sections.end(); ++it)
  {
    if (m_display_mode == DM_CATEGORIZED)
      height += m_line_height;
    if (!it->m_collapsed || m_display_mode != DM_CATEGORIZED)
      height += int(it->m_items.size())*m_line_height;
  }
 
  // client rect
  CRect rc;
  GetClientRect(&rc);
  if (height < rc.Height())
  {
    if (m_scrollbar.GetSafeHwnd() != NULL)
    {
      m_scrollbar.EnableScrollBar(ESB_DISABLE_BOTH);
      m_scrollbar.ShowScrollBar(FALSE);
    }
    m_scroll_enabled = false;
  }
  else
  {
    if (m_scrollbar.GetSafeHwnd() == NULL)
    {
      CRect rect = rc;
      rect.left = rect.right - GetSystemMetrics(SM_CXVSCROLL);
      m_scrollbar.Create(WS_CHILD|SBS_VERT, rect, this, 1000);
    }
 
    m_scrollbar.EnableScrollBar(ESB_ENABLE_BOTH);
 
    SCROLLINFO info;
    info.cbSize = sizeof(SCROLLINFO);
    info.fMask = SIF_ALL;
    info.nMin = 0;
    info.nMax = height;
    info.nPage = rc.Height();
    info.nPos = min(offset, height);
    info.nTrackPos = 2;
    m_scrollbar.SetScrollInfo(&info);
 
    m_scrollbar.ShowScrollBar();
    m_scroll_enabled = true;
  }
 
  if (GetSafeHwnd())
    Invalidate();
}
 
int CPropertyGrid::GetScrollOffset()
{
  if (m_scrollbar && m_scrollbar.IsWindowEnabled() == TRUE)
    return m_scrollbar.GetScrollPos();
  return 0;
}
 
void CPropertyGrid::OnVScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar)
{
  // check
  if (!m_scroll_enabled) return;
  if (pScrollBar != &m_scrollbar) return;
  if (nSBCode == SB_ENDSCROLL) return;
 
  // set focus to us
  SetFocus();
 
  // get the scroll info
  SCROLLINFO info;
  info.cbSize = sizeof(SCROLLINFO);
  info.fMask = SIF_ALL;
  m_scrollbar.GetScrollInfo(&info);
  int min = info.nMin;
  int pos = info.nPos;
  int max = info.nMax-info.nPage;
 
  // the entire rect
  CRect rect;
  GetClientRect(&rect);
  int h = rect.Height();
 
  // the rect without the scrollbar
  CRect rc(0,0,rect.right-GetSystemMetrics(SM_CXVSCROLL),rect.bottom);
 
  switch(nSBCode)
  {
  case SB_TOP:
    pScrollBar->SetScrollPos(min);
    break;
 
  case SB_BOTTOM:
    pScrollBar->SetScrollPos(max);
    break;
 
  case SB_LINEDOWN:
    if (pos+m_line_height>=max) pScrollBar->SetScrollPos(max);
    else pScrollBar->SetScrollPos(pos+m_line_height);
    break;
 
  case SB_LINEUP:
    if (pos-m_line_height<=min) pScrollBar->SetScrollPos(min);
    else pScrollBar->SetScrollPos(pos-m_line_height);
    break;
 
  case SB_PAGEDOWN:
    if (pos+h>=max) pScrollBar->SetScrollPos(max);
    else pScrollBar->SetScrollPos(pos+h);
    break;
 
  case SB_PAGEUP:
    if (pos-h<=min) pScrollBar->SetScrollPos(min);
    else pScrollBar->SetScrollPos(pos-h);
    break;
 
  case SB_THUMBPOSITION:
  case SB_THUMBTRACK:
    int diff = nPos - pos;
    if (diff == 0) return;
    if (pos <= min && diff<0) return;
    if (pos >= max && diff>0) return;
    pScrollBar->SetScrollPos(nPos);
  }
 
  Invalidate();
 
  CWnd::OnVScroll(nSBCode, nPos, pScrollBar);
 
}
 
BOOL CPropertyGrid::OnMouseWheel(UINT nFlags, short zDelta, CPoint pt)
{
  int steps = abs(zDelta)/WHEEL_DELTA;
  for (int i=0; i<3*steps; i++)
  {
    if (zDelta>0) OnVScroll(SB_LINEUP, 0, &m_scrollbar);
    if (zDelta<0) OnVScroll(SB_LINEDOWN, 0, &m_scrollbar);
  }
 
  return CWnd::OnMouseWheel(nFlags, zDelta, pt);
}
 
//
// editing
//
 
CPropertyGrid::EEditMode CPropertyGrid::GetEditMode(CItem& item)
{
  switch (item.m_type)
  {
  case IT_CUSTOM:
    return item.m_pCustom->GetEditMode();
 
  case IT_STRING:
  case IT_INTEGER:
  case IT_DOUBLE:
    return EM_INPLACE;
 
  case IT_COMBO:
  case IT_BOOLEAN:
  case IT_DATE:
    return EM_DROPDOWN;
 
  case IT_TEXT:
  case IT_DATETIME:
  case IT_FILE:
  case IT_PATH:
  case IT_FOLDER:
  case IT_COLOR:
  case IT_FONT:
    return EM_MODAL;
 
  default:
    ASSERT(false);
    return EM_CUSTOM;
  }
}
 
void CPropertyGrid::DeleteEditControl()
{
  // destroy edit
  if (m_control)
  {
    if (m_control->GetSafeHwnd())
      m_control->DestroyWindow();
    delete m_control;
    m_control = NULL;
  }
}
 
LRESULT CPropertyGrid::OnComboSelChanged(WPARAM wParam, LPARAM lParam)
{
  CItem* pItem = FindItem(m_focused_item);
  if (pItem)
  {
    if (pItem->m_type == IT_BOOLEAN)
    {
      pItem->m_bValue = (wParam == 0);
      pItem->m_undefined = false;
      GetOwner()->SendMessage(WM_PG_ITEMCHANGED, pItem->m_id);
      DeleteEditControl();
      Invalidate();
    }
    else if (pItem->m_type == IT_COMBO)
    {
      pItem->m_nValue = int(wParam);
      pItem->m_undefined = false;
      GetOwner()->SendMessage(WM_PG_ITEMCHANGED, pItem->m_id);
      DeleteEditControl();
      Invalidate();
    }
    else
    {
      ASSERT(false);
    }
  }
  return 0;
}
 
LRESULT CPropertyGrid::OnEditChanged(WPARAM wParam, LPARAM lParam)
{
  TCHAR* pParamValue = (TCHAR*)wParam;
  CItem* pItem = FindItem(m_focused_item);
  if (pItem)
  {
    if (pItem->m_type == IT_STRING)
    {
      pItem->m_strValue = CString(pParamValue);
      pItem->m_undefined = false;
      GetOwner()->SendMessage(WM_PG_ITEMCHANGED, pItem->m_id);
      DeleteEditControl();
      Invalidate();
    }
    else if (pItem->m_type == IT_INTEGER)
    {
      if (strlen((char*)wParam))
      {
        pItem->m_nValue = _ttoi(pParamValue);
        pItem->m_undefined = false;
        GetOwner()->SendMessage(WM_PG_ITEMCHANGED, pItem->m_id);
      }
      DeleteEditControl();
      Invalidate();
    }
    else if (pItem->m_type == IT_DOUBLE)
    {
      if (strlen((char*)wParam))
      {
        pItem->m_dValue = _ttof(pParamValue);
        pItem->m_undefined = false;
        GetOwner()->SendMessage(WM_PG_ITEMCHANGED, pItem->m_id);
      }
      DeleteEditControl();
      Invalidate();
    }
    else if (pItem->m_type == IT_CUSTOM)
    {
      if (pItem->m_pCustom->OnItemEdited(CString(pParamValue)))
        GetOwner()->SendMessage(WM_PG_ITEMCHANGED, pItem->m_id);
      DeleteEditControl();
      Invalidate();
    }
    else
    {
      ASSERT(false);
    }
  }
  return 0;
}
 
LRESULT CPropertyGrid::OnDateChanged(WPARAM wParam, LPARAM lParam)
{
  CItem* pItem = FindItem(m_focused_item);
  if (pItem)
  {
    if (pItem->m_type == IT_DATE)
    {
      CPropertyGridMonthCalCtrl* mc = (CPropertyGridMonthCalCtrl*) m_control;
      mc->GetCurSel(pItem->m_dtValue);
      pItem->m_undefined = false;
      GetOwner()->SendMessage(WM_PG_ITEMCHANGED, pItem->m_id);
      DeleteEditControl();
      Invalidate();
 
    }
    else
    {
      ASSERT(false);
    }
  }
  return 0;
}
 
void CPropertyGrid::EditFocusedItem()
{
    USES_CONVERSION;
 
  CItem* pItem = FindItem(m_focused_item);
  if (pItem)
  {
    if (!pItem->m_editable)
      return;
 
    if (pItem->m_type == IT_TEXT)
    {
      CDynDialogEx dlg(GetParent());
      dlg.SetUseSystemButtons(FALSE);
      dlg.SetWindowTitle(CT2A(pItem->m_name));
      dlg.SetFont(&m_fntNormal);
      CString strValue = pItem->m_strValue;
      dlg.AddDlgControl("EDIT", pItem->m_strValue, STYLE_EDIT|WS_VSCROLL|WS_HSCROLL|ES_AUTOHSCROLL|ES_AUTOVSCROLL|ES_LEFT|ES_MULTILINE|ES_WANTRETURN, EXSTYLE_EDIT, CRect(7, 7, 200, 100), (void*) &strValue);
      dlg.AddDlgControl("BUTTON", m_strOk, STYLE_BUTTON, EXSTYLE_BUTTON, CRect(56, 106, 106, 120), NULL, IDOK); 
      dlg.AddDlgControl("BUTTON", m_strCancel, STYLE_BUTTON, EXSTYLE_BUTTON, CRect(110, 106, 160, 120), NULL, IDCANCEL); 
      if (dlg.DoModal() == IDOK)
      {
        pItem->m_strValue = LPCTSTR(strValue);
        pItem->m_undefined = false;
        GetOwner()->SendMessage(WM_PG_ITEMCHANGED, pItem->m_id);
        Invalidate();
      }
    }
    else if (pItem->m_type == IT_DATETIME)
    {
      CDynDialogEx dlg(GetParent());
      dlg.SetUseSystemButtons(FALSE);
      dlg.SetWindowTitle(CT2A(pItem->m_name));
      dlg.SetFont(&m_fntNormal);
      COleDateTime dtValueDate = pItem->m_dtValue;
      CTime dtValueTime(pItem->m_dtValue.GetYear(), pItem->m_dtValue.GetMonth(), pItem->m_dtValue.GetDay(), pItem->m_dtValue.GetHour(), pItem->m_dtValue.GetMinute(), pItem->m_dtValue.GetSecond());
      dlg.AddDlgControl("STATIC", m_strDate, STYLE_STATIC, EXSTYLE_STATIC, CRect(7, 3, 60, 12));
      dlg.AddDlgControl("STATIC", m_strTime, STYLE_STATIC, EXSTYLE_STATIC, CRect(67, 3, 120, 12));
      dlg.AddDlgControl("SysDateTimePick32", _T(""), STYLE_DATETIMEPICKER|DTS_SHORTDATEFORMAT, EXSTYLE_DATETIMEPICKER, CRect(7, 13, 60, 26), (void*) &dtValueDate);
      dlg.AddDlgControl("SysDateTimePick32", _T(""), STYLE_DATETIMEPICKER|DTS_TIMEFORMAT , EXSTYLE_DATETIMEPICKER, CRect(67, 13, 120, 26), (void*) &dtValueTime);
      dlg.AddDlgControl("BUTTON", m_strOk, STYLE_BUTTON, EXSTYLE_BUTTON, CRect(7, 37, 60, 51), NULL, IDOK); 
      dlg.AddDlgControl("BUTTON", m_strCancel, STYLE_BUTTON, EXSTYLE_BUTTON, CRect(67, 37, 120, 51), NULL, IDCANCEL); 
      if (dlg.DoModal() == IDOK)
      {
        pItem->m_dtValue.SetDateTime(dtValueDate.GetYear(), dtValueDate.GetMonth(), dtValueDate.GetDay(),
          dtValueTime.GetHour(), dtValueTime.GetMinute(), dtValueTime.GetSecond());
        pItem->m_undefined = false;
        GetOwner()->SendMessage(WM_PG_ITEMCHANGED, pItem->m_id);
        Invalidate();
      }
    }
    else if (pItem->m_type == IT_COLOR)
    {
      CColorDialog dlg(pItem->m_clrValue, 0, GetParent());
      if (dlg.DoModal() == IDOK)
      {
        pItem->m_clrValue = dlg.GetColor();
        pItem->m_undefined = false;
        GetOwner()->SendMessage(WM_PG_ITEMCHANGED, pItem->m_id);
        Invalidate();
      }
    }
    else if (pItem->m_type == IT_FILE)
    {
      CFileDialog dlg(TRUE, NULL, pItem->m_strValue, OFN_HIDEREADONLY|OFN_OVERWRITEPROMPT, pItem->m_options.front(), GetParent());
      if (dlg.DoModal() == IDOK)
      {
        pItem->m_strValue = dlg.GetFileName();
        pItem->m_undefined = false;
        GetOwner()->SendMessage(WM_PG_ITEMCHANGED, pItem->m_id);
        Invalidate();
      }
    }
    else if (pItem->m_type == IT_PATH)
    {
        CFileDialog dlg(TRUE, NULL, pItem->m_strValue, OFN_HIDEREADONLY|OFN_OVERWRITEPROMPT, pItem->m_options.front(), GetParent());
        if (dlg.DoModal() == IDOK)
        {
            pItem->m_strValue = dlg.GetPathName();
            pItem->m_undefined = false;
            GetOwner()->SendMessage(WM_PG_ITEMCHANGED, pItem->m_id);
            Invalidate();
        }
    }
    else if (pItem->m_type == IT_FOLDER)
    {
      CPropertyGridDirectoryPicker::m_strTitle = pItem->m_options.front();
      if (CPropertyGridDirectoryPicker::PickDirectory(pItem->m_strValue, GetParent()->GetSafeHwnd()))
      {
        pItem->m_undefined = false;
        GetOwner()->SendMessage(WM_PG_ITEMCHANGED, pItem->m_id);
        Invalidate();
      }
    }
    else if (pItem->m_type == IT_FONT)
    {
      CFontDialog dlg(&pItem->m_lfValue, CF_EFFECTS|CF_SCREENFONTS, NULL, GetParent());
      if (dlg.DoModal() == IDOK)
      {
        memcpy(&pItem->m_lfValue, dlg.m_cf.lpLogFont, sizeof(LOGFONT));
        pItem->m_undefined = false;
        GetOwner()->SendMessage(WM_PG_ITEMCHANGED, pItem->m_id);
        Invalidate();
      }
    }
    else if (pItem->m_type == IT_CUSTOM)
    {
      if (pItem->m_pCustom->OnEditItem())
      {
        GetOwner()->SendMessage(WM_PG_ITEMCHANGED, pItem->m_id);
        Invalidate();
      }
    }
    else
    {
      ASSERT(false);
    }
  }
}