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
|
2008-04-09 Everaldo Canuto <ecanuto@novell.com>
[backported from trunk]
* KeyboardLayouts.cs: Uses GENERATING_RESOURCES to make VKeyTableIndex
and ScanTableIndex public, it fix compilations errors when compiling
WinForms to generate keyboard layout resources.
2008-04-08 Everaldo Canuto <ecanuto@novell.com>
[backported from trunk]
* X11keyboard.cs: Prevent keyboard errors when vitual table theres
different element count than scan table. It prevents some errors in non
standard keyboards.
2008-03-19 Ivan N. Zlatev <contact@i-nz.net>
* Makefile, System.Windows.Forms.dll.resources: Updated to reflect
the resource changes for PropertyGrid.
2008-01-26 Gert Driesen <drieseng@users.sourceforge.net>
* System.Windows.Forms.dll.sources: Moved PropertiesTab.cs from
System.Windows.Forms to System.Windows.Forms.PropertyGridInternal.
2008-01-26 Gert Driesen <drieseng@users.sourceforge.net>
* System.Windows.Forms_test.dll.sources: Added ImageListStreamerTest.cs.
2008-01-24 Andreia Gaita <avidigal@novell.com>
SWF2K5.csproj, SWF.csproj: synched
2008-01-23 Geoff Norton <gnorton@novell.com>
* System.Windows.Forms.dll.sources: Add the Carbon Cursor.cs to the build.
2007-12-30 Andreia Gaita <avidigal@novell.com>
* build-csproj2k5: added output types
* SWF2K5.csproj: Updated project
2007-12-21 Geoff Norton <gnorton@novell.com>
* System.Windows.Forms.dll.sources: Add Dnd.cs, Pasteboard.cs and HIObjectHandler.cs
to the build
2007-11-15 Geoff Norton <gnorton@novell.com>
* System.Windows.Forms.dll.sources: Reflect the changes for the new OSX->Carbon
refactoring.
2007-10-23 Geoff Norton <gnorton@novell.com>
* System.Windows.Forms.dll.sources: Added OSXKeyboard.cs
2007-10-22 Andreia Gaita <avidigal@novell.com>
* build-csproj2k5, SWF2k5.csproj: add System.configuration reference
2007-10-22 Geoff Norton <gnorton@novell.com>
* Makefile: Add a reference to System.Configuration.dll in NET 2.0
2007-10-11 Carlos Alberto Cortez <calberto.cortez@gmail.com>
* System.Windows.Forms_test.dll.sources: Added DragEventArgsTest.cs.
2007-10-08 Andreia Gaita <avidigal@novell.com>
* SWF.csproj, build-csproj: Add missing ONLY_1_1 flag, update project.
2007-10-08 Jonathan Pobst <monkey@jpobst.com>
* System.Windows.Forms.dll.sources: Added TextBoxTextRenderer.cs.
2007-10-07 Andreia Gaita <avidigal@novell.com>
* System.Windows.Forms.dll.sources: Added WebBrowserDialogs
* build-csproj2k5: added reference to mono.mozilla
* SWF2K5.csproj: Updated project files
2007-10-04 Carlos Alberto Cortez <calberto.cortez@gmail.com>
* System.Windows.Forms_test.dll.sources: Added TreeViewEventsTest.cs.
2007-10-04 Jonathan Pobst <monkey@jpobst.com>
* System.Windows.Forms.dll.sources: Added Line.cs and LineTag.cs.
2007-09-23 Gert Driesen <drieseng@users.sourceforge.net>
* System.Windows.Forms_test.dll.sources: Added
DataGridViewCellCollectionTest.cs.
2007-09-21 Justin Cherniak <justin.cherniak@gmail.com>
* SWF2k5.csproj: Fixed missing file.
2007-09-06 Zoltan Varga <vargaz@gmail.com>
* System.Windows.Forms.dll.sources: Add HtmlHistory.cs HtmlWindow.cs
HtmlWindowCollection.cs ListBindingHelper.cs WindowsFormsSection.cs
WindowsFormsSynchronizationContext.cs.
2007-09-01 Zoltan Varga <vargaz@gmail.com>
* System.Windows.Forms.dll.sources: Add FileDialogCustomPlace.cs and
FileDialogCustomPlacesCollection.cs.
2007-08-29 Jonathan Pobst <monkey@jpobst.com>
* System.Windows.Forms.dll.sources: Add HtmlElementErrorEventArgs.cs,
HtmlElementErrorEventHandler.cs.
2007-08-28 Jonathan Pobst <monkey@jpobst.com>
* System.Windows.Forms.dll.sources: Add RadioButtonPainter.cs.
2007-08-28 Rolf Bjarne Kvinge <RKvinge@novell.com>
* build-csproj2k5: Add Mono.Mozilla as a reference.
* SWF2k5.csproj: Updated.
2007-08-26 Carlos Alberto Cortez <calberto.cortez@gmail.com>
* System.Windows.Forms.dll.sources: Add new ListViewInsertionMark.cs
file.
2007-08-24 Gert Driesen <drieseng@users.sourceforge.net>
* System.Windows.Forms_test.dll.sources: Added
FolderBrowserDialogTest.cs.
2007-08-22 Jonathan Pobst <monkey@jpobst.com>
* System.Windows.Forms.dll.sources: CheckBoxPainter.cs.
2007-08-21 Rolf Bjarne Kvinge <RKvinge@novell.com>
* System.Windows.Forms_test.dll.sources: Added
DataGridViewClipboardHeaderTest.cs, DataGridViewClipboardTest.cs,
DataGridViewColumnHeaderTest.cs, DataGridViewRowHeaderTest.cs.
2007-08-19 Andreia Gaita <avidigal@novell.com>
* System.Windows.Forms.dll.sources: Add HtmlElement*
2007-08-11 Andreia Gaita <avidigal@novell.com>
* Makefile: Add reference to the Mono.Mozilla
assembly for webbrowser support.
2007-08-07 Rolf Bjarne Kvinge <RKvinge@novell.com>
* SWF.csproj, SWF2k5.csproj, SWF2k5-tests.csproj: Updated.
2007-08-02 Jonathan Pobst <monkey@jpobst.com>
* System.Windows.Forms.dll.sources: Add MdiControlStrip.cs.
2007-07-31 Rolf Bjarne Kvinge <RKvinge@novell.com>
* build-csproj2k5-tests: Add ONLY_1_1, __MONO_CS__ and DEBUG where
relevant.
* SWF2k5-tests.csproj, SWF.csproj: Updated.
* System.Windows.Forms_test.dll.sources: Added DataGridViewBandTest.cs,
DataGridViewColumnCollectionTest.cs,
DataGridViewComboBoxCellTest.cs, DataGridViewCommon.cs,
DataGridViewRowColllectionTest.cs, DataGridViewTextBoxColumnTest.cs
2007-07-23 Rolf Bjarne Kvinge <RKvinge@novell.com>
* System.Windows.Forms_test.dll.sources: Added
ArrangedElementCollectionTest.cs
2007-07-20 Rolf Bjarne Kvinge <RKvinge@novell.com>
* System.Windows.Forms_test.dll.sources: Unified ComboBoxTest.cs and
ComboBoxTests.cs, deleted ComboBoxTests.cs
* SWF2k5-tests.csproj: Updated.
2007-07-12 Rolf Bjarne Kvinge <RKvinge@novell.com>
* build-csproj2k5-tests: Remove warnings.
* SWF2k5.csproj, SWF2k5-tests.csproj: Updated.
* build-csproj2k5: Ignore obsolete warnings in VS as well.
2007-07-12 Rolf Bjarne Kvinge <RKvinge@novell.com>
* Makefile: Ignore obsolete warnings.
2007-07-09 Jonathan Pobst <monkey@jpobst.com>
* System.Windows.Forms.dll.sources: Add PowerStatus.cs.
2007-07-03 Jonathan Pobst <monkey@jpobst.com>
* System.Windows.Forms.dll.sources: Add ToolStripSystemRenderer, ToolStripPainter.
2007-06-15 Jonathan Pobst <monkey@jpobst.com>
* System.Windows.Forms.dll.sources: Add ToolStripDropDownItemAccessibleObject.cs.
2007-06-08 Jonathan Pobst <monkey@jpobst.com>
* Makefile, System.Windows.Forms.dll.resources: Added image-missing.png,
image-x-generic.png for PictureBox.
2007-06-08 Jonathan Pobst <monkey@jpobst.com>
* System.Windows.Forms_test.dll.sources: Add PanelTest.cs.
2007-06-06 Jonathan Pobst <monkey@jpobst.com>
* System.Windows.Forms_test.dll.sources: Add ButtonBaseTest.cs.
2007-06-05 Andreia Gaita <avidigal@novell.com>
* build-csproj, build-csproj2k5, swf.csproj, SWF2k5.csproj:
Move external Consts.cs and MonoTODOAttribute.cs dependencies
to the mwf tree, change the build scripts accordingly (so a
user can compile and debug with mwf without having all the mono
source tree).
Remove Mono.Posix reference from build-csproj2k5.
Fix conditional compilation symbols (NET_1_1 should also be
defined on 2.0)
Synch up the *.csproj files
2007-05-25 Rolf Bjarne Kvinge <RKvinge@novell.com>
* System.Windows.Forms_test.dll.sources: Added KeyEventArgsTest.cs
2007-05-21 Andreia Gaita <avidigal@novell.com>
* System.Windows.Forms.dll.sources: Add ResXDataNode.cs
* System.Windows.Forms_test.dll.sources: Add ResXDataNodeTest.cs
2007-05-19 Andreia Gaita <avidigal@novell.com>
* System.Windows.Forms.dll.sources: Add NumericUpDownAcceleration.cs,
NumericUpDownAccelerationCollection.cs
* System.Windows.Forms_test.dll.sources: Add NumericUpDownTest.cs
2007-05-18 Jonathan Pobst <monkey@jpobst.com>
* System.Windows.Forms_test.dll.sources: Add DataObjectTest.cs.
2007-05-18 Rolf Bjarne Kvinge <RKvinge@novell.com>
* System.Windows.Forms.dll.sources: Added DrawToolTipEventArgs.cs and
DrawToolTipEventHandler.cs
2007-05-17 Jonathan Pobst <monkey@jpobst.com>
* System.Windows.Forms_test.dll.sources: Add KeysConverterTest,
LinkConverterTest.cs.
* System.Windows.Forms.dll.sources: Add LinkConverter.cs.
2007-05-17 Jonathan Pobst <monkey@jpobst.com>
* System.Windows.Forms_test.dll.sources: Add TreeViewImageIndexConverterTest.cs.
2007-05-16 Jonathan Pobst <monkey@jpobst.com>
* System.Windows.Forms.dll.sources: Add ImageKeyConverter.cs,
TreeViewImageKeyConverter.cs.
* System.Windows.Forms_test.dll.sources: Add ImageKeyConverterTest.cs,
TreeViewImageKeyConverterTest.cs.
2007-05-16 Olivier Dufour <olivier.duff@free.fr>
* ColumnHeaderConverter: Added
2007-05-10 Gert Driesen <drieseng@users.sourceforge.net>
* System.Windows.Forms_test.dll.sources: Added
ToolStripItemCollectionTest.cs.
2007-05-04 Rolf Bjarne Kvinge <RKvinge@novell.com>
* System.Windows.Forms_test.dll.sources: Added MaskedTextBoxTest.cs
2007-04-30 Gert Driesen <drieseng@users.sourceforge.net>
* System.Windows.Forms_test.dll.sources: Added
DataGridViewTextBoxCellTest.cs
2007-04-29 Duncan Mak <duncan@a-chinaman.com>
* SWF.csproj:
* SWF2k5.csproj: Updated.
2007-04-26 Jonathan Pobst <monkey@jpobst.com>
* System.Windows.Forms.dll.sources: Add DrawListViewColumnHeaderEventHandler.cs,
DrawListViewItemEventHandler.cs, DrawListViewSubItemEventHandler.cs.
2007-04-24 Jonathan Pobst <monkey@jpobst.com>
* Makefile: Add new resources for BindingNavigator to build.
2007-04-24 Alan McGovern <alan.mcgovern@gmail.com>
* System.Windows.Forms.dll.resources - Added files for the BindingNavigator
2007-04-24 Rolf Bjarne Kvinge <RKvinge@novell.com>
* SWF.csproj, SWF2k5.csproj, SWF2k5-tests.csproj: Update.
* System.Windows.Forms.dll.sources: Add MaskedTextBox.
2007-04-24 Alan McGovern <alan.mcgovern@gmail.com>
* System.Windows.Forms.dll.sources: Added
BindingNavigator.cs
BindingNavigatorTests.cs
2007-04-23 Jonathan Pobst <monkey@jpobst.com>
* System.Windows.Forms_test.dll.sources: Add TableLayoutTest.cs.
2007-04-22 Alan McGovern <alan.mcgovern@gmail.com>
* System.Windows.Forms.dll.sources:
Stubbed and added:
DrawListViewColumnHeaderEventArgs.cs
DrawListViewColumnHeaderEventArgs.cs
DrawListViewColumnHeaderEventArgs.cs
2007-04-15 Andreia Gaita <avidigal@novell.com>
* System.Windows.Forms.dll.sources: Add ThemeElementsClearlooks,
ThemeElementsGtk, ThemeElementsNice, Nice/ButtonPainter,
Default/TabControlPainter and Default/ButtonPainter
2007-04-01 Alp Toker <alp@atoker.com>
* build-csproj:
* build-csproj2k5:
* build-csproj2k5-tests: Use bash, not sh. These scripts do run with
POSIX sh but they produce incorrect output containing binary garbage.
Output is correct when 'bash' is used instead of 'sh'.
2007-03-30 Jonathan Pobst <monkey@jpobst.com>
* System.Windows.Forms.dll.sources: Add ScrollProperties,
HScrollProperties, and VScrollProperties.
* System.Windows.Forms_test.dll.sources: Add HScrollPropertiesTest and
VScrollPropertiesTest.
2007-03-28 Jonathan Pobst <monkey@jpobst.com>
* System.Windows.Forms_test.dll.sources: Add StatusStripTest.cs,
ToolStripContainerTest.cs, ToolStripContentPanelTest.cs,
ToolStripDropDownTest.cs, ToolStripManagerTest.cs,
ToolStripOverflowButtonTest.cs, ToolStripOverflowTest.cs
ToolStripPanelTest.cs, ToolStripStatusLabelTest.cs.
2007-03-13 Gert Driesen <drieseng@users.sourceforge.net>
* System.Windows.Forms_test.dll.sources: Added ErrorProviderTest.cs.
2007-03-10 Gert Driesen <drieseng@users.sourceforge.net>
* Makefile: Added 32x32 icon.
2007-03-09 Rolf Bjarne Kvinge <RKvinge@novell.com>
* System.Windows.Forms_test.dll.sources: Added FormHandleTest and
MdiFormHandleTest.
2007-03-08 Chris Toshok <toshok@ximian.com>
* System.Windows.Forms/DataGrid.cs: some field renaming to make things consistent.
* System.Windows.Forms/ThemeWin32Classic.cs: same.
2007-03-02 Rolf Bjarne Kvinge <RKvinge@novell.com>
* Makefile: Don't show obsolete warnings when compiling tests.
2007-03-02 Jonathan Pobst <monkey@jpobst.com>
* System.Windows.Forms.dll.sources: Add ThemeElements.cs,
ThemeElementsDefault.cs.
2007-03-02 Rolf Bjarne Kvinge <RKvinge@novell.com>
* System.Windows.Forms.dll.sources: Added FormWindowManager.cs and
ToolWindowManager.cs
* Test/System.Windows.Forms/FormTest.cs: Added
MaximizedParentedFormTest.
2007-02-27 Jonathan Pobst <monkey@jpobst.com>
* System.Windows.Forms.dll.sources: Add RelatedImageListAttribute.cs.
2007-02-18 Gert Driesen <drieseng@users.sourceforge.net>
* System.Windows.Forms_test.dll.sources: add SaveFileDialogTest.cs.
2007-02-14 Rolf Bjarne Kvinge <RKvinge@novell.com>
* System.Windows.Forms_test.dll.sources: add EventLogger.cs
2007-02-13 Rolf Bjarne Kvinge <RKvinge@novell.com>
* build-csproj2k5-tests: Added to be able to create SWF2k5-tests.csproj.
* SWF2k5-tests.csproj: Added.
2007-02-09 Chris Toshok <toshok@ximian.com>
* System.Windows.Forms_test.dll.sources: add ControlHandleTest.cs
2007-02-08 Jonathan Pobst <monkey@jpobst.com>
* System.Windows.Forms.dll.sources: Add ToolStripOverflow.cs,
ToolStripOverflowButton.cs.
2007-02-07 Gert Driesen <drieseng@users.sourceforge.net>
* System.Windows.Forms_test.dll.sources: Add DataGridViewColumnTest.cs.
2007-02-06 Rolf Bjarne Kvinge <RKvinge@novell.com>
* System.Windows.Forms_test.dll.sources: Add TimerTest.cs
2007-02-04 Gert Driesen <drieseng@users.sourceforge.net>
* System.Windows.Forms_test.dll.sources: ResXResourceReaderTest.cs,
ResXFileRefTest.cs and Consts.cs.
2007-02-03 Rolf Bjarne Kvinge <RKvinge@novell.com>
* System.Windows.Forms_test.dll.sources: Add ControlLogger.cs and ControlLogger2.cs
2007-01-26 Jonathan Pobst <monkey@jpobst.com>
* System.Windows.Forms.dll.sources: Add PaddingConverter.cs.
* System.Windows.Forms_test.dll.sources: Add PaddingConverterTest.cs.
2007-01-25 Chris Toshok <toshok@ximian.com>
* System.Windows.Forms_test.dll.sources: add SplitterTest.cs
2007-01-18 Jonathan Pobst <monkey@jpobst.com>
* System.Windows.Forms_test.dll: Add NotifyIconTest.cs.
2007-01-16 Jonathan Pobst <monkey@jpobst.com>
* System.Windows.Forms_test.dll: Add ControlCollectionTest.cs,
MenuStripTest.cs, ToolStripMenuItemTest.cs.
2007-01-04 Jonathan Pobst <monkey@jpobst.com>
* System.Windows.Forms_test.dll: Add ControlPropertyEventsTest.cs.
2007-01-04 Carlos Alberto Cortez <calberto.cortez@gmail.com>
* System.Windows.Forms_test.dll: Add ColumnHeaderTest.cs
2007-01-04 Jonathan Pobst <monkey@jpobst.com>
* System.Windows.Forms_test.dll: Add LinkAreaTest.cs and HelpProviderTest.cs.
2006-12-30 Chris Toshok <toshok@ximian.com>
* Makefile (TEST_HARNESS_LOCAL_EXCLUDES): exclude Interactive
tests.
2006-12-28 Chris Toshok <toshok@ximian.com>
* System.Windows.Forms_test.dll.sources: add DefaultLayoutTest and
remove DockingTests.
2006-12-27 Gert Driesen <drieseng@users.sourceforge.net>
* System.Windows.Forms_test.dll.sources: Add ScrollableControlTest.cs.
2006-12-23 Chris Toshok <toshok@ximian.com>
* System.Windows.Forms_test.dll.sources: add
System.Windows.Forms.Layout/TableLayoutSettingsTypeConverterTest.cs.
* System.Windows.Forms.dll.sources: add
System.Windows.Forms.Layout/TableLayoutSettingsTypeConverter.cs.
* *.csproj: sync with new file.
2006-12-23 Daniel Nauck <dna@mono-project.de>
* System.Windows.Forms_test.dll.sources: Add
UserControlTest.cs
2006-12-21 Jonathan Pobst <monkey@jpobst.com>
* System.Windows.Forms.dll.sources: Add TableLayoutControlCollection.cs,
move TableLayout to /Layout.
2006-12-21 Rolf Bjarne Kvinge <RKvinge@novell.com>
* build-csproj2k5: set WarningLevel to 3 and
add ChangeLogs
2006-12-20 Chris Toshok <toshok@ximian.com>
* SWF.csproj: reflect removal of
DataGridViewRowsDeletedEventArgs.cs.
* SWF2k5.csproj: same.
* System.Windows.Forms.dll.sources: remove of
DataGridViewRowsDeletedEventArgs.cs.
* System.Windows.Forms_test.dll.sources: remove
DataGridViewBandTest.cs.
2006-12-19 Chris Toshok <toshok@ximian.com>
* System.Windows.Forms_test.dll.sources: add RowStyleTest and
ColumnStyleTest.
2006-12-17 Daniel Nauck <dna@mono-project.de>
* System.Windows.Forms.dll.sources: Add
ListViewHitTestInfo
2006-12-17 Daniel Nauck <dna@mono-project.de>
* System.Windows.Forms.dll.sources: Add
DockingAttribute.cs, FlatButtonAppearance.cs
2006-12-17 Chris Toshok <toshok@ximian.com>
* build-csproj2k5: a couple of changes. use "exec >" instead of
redirecting the output from every function, use multiple patterns
in our sed calls instead of including multiple sed invocations,
and use sed instead of tr for converting / to \.
2006-12-16 Daniel Nauck <dna@mono-project.de>
* System.Windows.Forms.dll.sources: Add
AutoCompleteStringCollection.cs
* System.Windows.Forms_test.dll.sources: Add
AutoCompleteStringCollectionTest.cs
2006-12-16 Chris Toshok <toshok@ximian.com>
* SWF.csproj, SWF2k5.csproj: resync these.
* Makefile (EXTRA_DISTFILES): add build-csproj2k5
Also, make both SWF.csproj and SWF2k5.csproj depend on the scripts
which generate them. That way if you're hacking on the script you
don't have to touch System.Windows.Forms.dll.sources every time
you want to update the output.
* build-csproj2k5: make some changes suggested by Marek:
- System.XML should be System.Xml.
- Change eol-style to native.
- remove the SubType's from all the .cs Compile elements.
- Add Mono.Posix if the configuration is DebugXBuild (can't test this though..)
2006-12-15 Chris Toshok <toshok@ximian.com>
* Makefile: add targets for the 2k5 csproj.
* build-csproj2k5: new script to build vs2005 specific projects.
use SWF2k5.sln instead of SWF.sln and upgrading. The 2005 project
doesn't have the problems with resources that the 2003 project
has. The only remaining stumbling block for use is Consts.cs.
* SWF2k5.sln, SWF2k5.csproj: visual studio 2005 versions of these
files.
2006-12-16 Daniel Nauck <dna@mono-project.de>
* System.Windows.Forms_test.dll.sources: Add
PaddingTest.cs
2006-12-15 Daniel Nauck <dna@mono-project.de>
* System.Windows.Forms.dll.sources: Add
ListViewGroup.cs, ListViewGroupCollection.cs
* SWF.csproj: Add
ListViewGroup.cs, ListViewGroupCollection.cs
* System.Windows.Forms_test.dll.sources: Add
ListViewGroupTest.cs, ListViewGroupCollectionTest.cs
2006-12-06 Jonathan Pobst <monkey@jpobst.com>
* System.Windows.Forms.dll.sources: Added FormCollection.cs.
2006-12-05 Jonathan Chambers <joncham@gmail.com>
* System.Windows.Forms.dll.sources: Added DrawTreeNodeEventArgs.cs.
2006-12-01 Chris Toshok <toshok@ximian.com>
* System.Windows.Forms.dll.sources: add IBindableComponent.cs
2006-11-30 Jonathan Pobst <monkey@jpobst.com>
* System.Windows.Forms.dll.sources: Add
ContextMenuStrip.cs, ToolStripContainer.cs,
ToolStripDropDownButton.cs, ToolStripDropDownMenu.cs,
ToolStripManager.cs, ToolStripPanelRow.cs,
ToolStripSplitButton.cs.
Remove ToolStripMenuTracker.cs.
2006-11-29 Carlos Alberto Cortez <calberto.cortez@gmail.com>
* System.Windows.Forms.dll.sources: Add NumericTextBox.cs.
2006-11-09 Alexander Olk <alex.olk@googlemail.com>
* System.Windows.Forms_test.dll.sources: Added CommonDialogsTest.cs.
2006-11-08 Chris Toshok <toshok@ximian.com>
* System.Windows.Forms.dll.sources: add RootGridEntry.cs
2006-11-09 Jonathan Pobst <monkey@jpobst.com>
* System.Windows.Forms.dll.sources:
Add ToolStripItemDesignerAvailability.cs and
ToolStripItemDesignerAvailabilityAttribute.cs.
2006-11-07 Jonathan Pobst <monkey@jpobst.com>
* System.Windows.Forms.dll.sources: Add StatusStrip.cs,
ToolStripStatusLabel.cs.
2006-11-04 Gert Driesen <drieseng@users.sourceforge.net>
* System.Windows.Forms_test.dll.sources: Added
TreeNodeCollectionTest.cs.
2006-10-30 Jonathan Pobst <monkey@jpobst.com>
* System.Windows.Forms.dll.sources: Add ToolStripDropDown.cs,
ToolStripItemEventType.cs, ToolStripMenuTracker.cs.
2006-10-30 Alexander Olk <alex.olk@googlemail.com>
* System.Windows.Forms_test.dll.sources: Added UpDownTest.cs.
2006-10-13 Gert Driesen <drieseng@users.sourceforge.net>
* System.Windows.Forms_test.dll.sources: Added PropertyGridTest.cs.
2006-10-05 Jonathan Pobst <monkey@jpobst.com>
* System.Windows.Forms.dll.sources: Add ToolStripComboBox.cs,
ToolStripControlHost.cs, ToolStripProgressBar.cs, ToolStripTextBox.cs.
2006-10-03 Sebastien Pouliot <sebastien@ximian.com>
* System.Windows.Forms_test.dll.sources: Add ContainerControlTest.cs
to the unit tests build.
2006-10-02 Jonathan Pobst <monkey@jpobst.com>
* System.Windows.Forms.dll.sources: Add ToolStrip* classes.
2006-09-18 Jonathan Pobst <monkey@jpobst.com>
* System.Windows.Forms.dll.sources: Add ToolStrip EventArgs/Handlers,
add a few ToolStrip stub classes.
2006-09-15 Jonathan Pobst <monkey@jpobst.com>
* System.Windows.Forms.dll.sources: Added DefaultLayout.cs, FlowLayout.cs,
FlowLayoutPanel.cs, FlowLayoutSettings.cs.
* System.Windows.Forms_test.dll.sources: Added FlowPanelTests.cs
2006-09-13 Jonathan Pobst <monkey@jpobst.com>
* System.Windows.Forms.dll.sources: Added SplitContainer/SplitterPanel.
* System.Windows.Forms_test.dll.sources: Added SplitContainerTests.cs
2006-09-07 Alexander Olk <alex.olk@googlemail.com>
* resources/, System.Windows.Forms.dll.resources, Makefile:
Add user-home Tango icon in various sizes.
2006-09-05 Kornél Pál <kornelpal@hotmail.com>
* Makefile: Removed CODEPAGE as now UTF-8 is the default.
2006-08-04 Jonathan Pobst <monkey@jpobst.com>
* System.Windows.Forms.dll.sources: Added 2.0 VisualStyles files.
2006-07-30 Carlos Alberto Cortez <calberto.cortez@gmail.com>
* System.Windows.Forms_test.dll.sources: Added PrintDialogTest.cs
2006-07-18 Carlos Alberto Cortez <calberto.cortez@gmail.com>
* System.Windows.Forms_test.dll.sources: Added ListControlTest.cs
2006-07-14 Peter Dennis Bartok <pbartok@novell.com>
* System.Windows.Forms.dll.sources: Added new 2.0 event handlers
* System.Windows.Forms_test.dll.sources: Added EventArgsTest.cs
2006-07-14 Peter Dennis Bartok <pbartok@novell.com>
* System.Windows.Forms.dll.sources: Added new 2.0 Enums
2006-07-11 Wade Berrier <wberrier@novell.com>
* Makefile: add some files EXTRA_DISTFILES needed by the tests
2006-06-23 Chris Toshok <toshok@ximian.com>
* System.Windows.Forms_test.dll.sources: add
PropertyManagerTest.cs
2006-06-20 Chris Toshok <toshok@ximian.com>
* System.Windows.Forms.dll.sources: add RelatedPropertyManager.cs
and RelatedCurrencyManager.cs.
2006-06-12 Wade Berrier <wberrier@novell.com>
* Makefile: Update for dialog-question3.png -> dialog-question.png rename
to fix 'make dist'
2006-05-30 Wade Berrier <wberrier@novell.com>
* Makefile: oops, add some more missing resources.
2006-05-30 Wade Berrier <wberrier@novell.com>
* Makefile: fix resource filenames to fix make dist
2006-05-25 Miguel de Icaza <miguel@novell.com>
* Add new dialog-*.png Tango icons (dialog-question is from a
different theme as Tango is still missing it).
2006-05-24 Miguel de Icaza <miguel@novell.com>
* Changes so that we can use the filename as the resource name,
should help compiling from within VisualStudio.
2006-05-23 Miguel de Icaza <miguel@novell.com>
* resources/: Add Tango icons in various sizes.
2006-05-18 Sebastien Pouliot <sebastien@ximian.com>
* System.Windows.Forms_test.dll.sources: Add the unit tests for
PaintEventArgs to the build (tested under both 1.1 and 2.0).
2006-05-15 Peter Dennis Bartok <pbartok@novell.com>
* Makefile, System.Windows.Forms.dll.resources: Added NWSE and NESW
cursors
2006-04-28 Atsushi Enomoto <atsushi@ximian.com>
* Makefile : added -r:System.Data.dll for "make test".
2006-04-27 Peter Dennis Bartok <pbartok@novell.com>
* SWF.csproj: Updated, matching current .sources
2006-04-16 Gert Driesen <drieseng@users.sourceforge.net>
* System.Windows.Forms_test.dll.sources: Added TabControlTest.cs.
2006-03-21 Jackson Harper <jackson@ximian.com>
* System.Windows.Forms.dll.resources: Add the keyboard resources.
2006-03-13 Peter Dennis Bartok <pbartok@novell.com>
* System.Windows.Forms.dll.sources: Added ProgressBarStyle.cs
2006-03-11 Alexander Olk <alex.olk@googlemail.com>
* System.Windows.Forms.dll.sources: Removed MimeGenerated.cs
2006-03-09 Jonathan Gilbert <logic@deltaq.org>
* System.Windows.Forms/AutoScaleMode.cs: Added new file for
the 2.0 enumeration.
* System.Windows.Forms/ContainerControl.cs: Added stub for
AutoScaleMode property; outputs a message to stderr to
encourage people familiar with its behaviour to implement
it. :-)
* System.Windows.Forms/Control.cs: Added stub for AutoScale;
outputs a message just like ContainerControl::AutoScaleMode.
* System.Windows.Forms.dll.sources: Added AutoScaleMode.cs to
the list of files to build.
2006-02-28 Matt Hargett <matt@use.net>
* System.Windows.Forms_test.dll.sources: Added ComboBoxTests.cs
2006-1-12 Jonathan Chambers <jonathan.chambers@ansys.com>
* build-csproj: Fixed so the csproj is usable.
2006-1-12 Jonathan Chambers <jonathan.chambers@ansys.com>
* System.Windows.Forms.dll.sources: Added PageSetupDialog.cs.
2006-1-12 Jonathan Chambers <jonathan.chambers@ansys.com>
* System.Windows.Forms.dll.sources: Added printing items and *committed* file this time.
2006-1-10 Jonathan Chambers <jonathan.chambers@ansys.com>
* System.Windows.Forms.dll.sources: Add PrintPreviewDialog and PrintPreviewControl
2006-1-10 Jonathan Chambers <jonathan.chambers@ansys.com>
* System.Windows.Forms.dll.sources: Add PrintControllerWithStatusDialog
2005-12-13 Jackson Harper <jackson@ximian.com>
* System.Windows.Forms.dll.sources: Add the new internal window
managers
2005-12-04 Alexander Olk <alex.olk@googlemail.com>
* System.Windows.Forms.dll.sources: Added ThemeClearlooks.cs
2005-12-02 Jackson Harper <jackson@ximian.com>
* System.Windows.Forms.dll.sources: New implicit scrollbars.
2005-12-01 Robert Jordan <robertj@gmx.net>
* System.Windows.Forms_test.dll.sources: Added
System.Resources/CompatTest.cs
System.Resources/WriterTest.cs.
2005-12-01 Raja R Harinath <rharinath@novell.com>
* Makefile (EXTRA_DISTFILES): Add Test/resources/a.cur.
2005-11-30 Robert Jordan <robertj@gmx.net>
* System.Windows.Forms_test.dll.sources: Added System.Resources/CultureTest.cs
2005-11-12 Pedro MartÃnez Juliá <pedromj@gmail.com>
* System.Windows.Forms_test.dll.sources: Added DataGridViewElementTest.cs
DataGridViewBandTest.cs DataGridViewCellTest.cs
DataGridViewAdvancedBorderStyleTest.cs DataGridViewCellStyleTest.cs
DataGridViewRowTest.cs DataGridViewTest.cs
2005-11-09 Peter Dennis Bartok <pbartok@novell.com>
* System.Windows.Forms_test.dll.sources: Added RichTextBoxTest.cs
2005-11-01 Peter Dennis Bartok <pbartok@novell.com>
* Makefile, System.Windows.Forms.dll.resources, SWF.csproj: Added
DnDLink cursor
2005-10-31 Peter Dennis Bartok <pbartok@novell.com>
* Makefile: Added new cursors; added dependency rule on
cursors to force rebuild when cursors are changed or added
* System.Windows.Forms.dll.resources: Added new cursors
2005-10-17 Raja R Harinath <rharinath@novell.com>
* Makefile (RESOURCES): Distribute newly added cursors.
2005-10-13 Peter Dennis Bartok <pbartok@novell.com>
* System.Windows.Forms.dll.resources: Added cursors
* build-csproj: Updated to support resources
* SWF.csproj: Updated
* System.Windows.Forms.dll.sources: Removed blank line to support
build-csproj
* System.Windows.Forms_test.dll.sources: Added ControlStyleTest
2005-10-05 Hisham Mardam Bey <hisham.mardambey@gmail.com>
* Created samples/ directory.
2005-09-30 Peter Dennis Bartok <pbartok@novell.com>
* System.Windows.Forms.dll.sources: Added X11DesktopColors.cs
* SWF.csproj: Updated
2005-09-28 Hisham Mardam Bey <hisham.mardambey@gmail.com>
* System.Windows.Forms_test.dll.sources : Added Common.cs
2005-09-27 Kornél Pál <kornelpal@hotmail.com>
* Makefile: Replaced /codepage with CODEPAGE.
2005-09-20 Ritvik Mayank <mritvik@novell.com>
* System.Windows.Forms_test.dll.sources : Added pictureBoxTest.cs
2005-09-09 Jonathan Chambers <jonathan.chambers@ansys.com>
* System.Windows.Forms.dll.sources: Added IRootGridEntry.cs and PropertyGridCommands.cs
2005-09-09 Hisham Mardam Bey <hisham.mardambey@gmail.com>
* Test/System.Windows.Forms/LabelTest.cs : More tests.
2005-09-09 Hisham Mardam Bey <hisham.mardambey@gmail.com>
* Test/System.Windows.Forms/LabelTest.cs : new Label tests (incomplete)
* System.Windows.Forms_test.dll.sources : add new tests
* System.Windows.Forms/Label.cs : give FlatStyle a default value
of FlatStyle.Standard.
2005-09-08 Ritvik Mayank <mritvik@novell.com>
* System.Windows.Forms_test.dll.sources : added MonthCalendarTest.cs
2005-09-08 Peter Dennis Bartok <pbartok@novell.com>
* System.Windows.Forms.dll.sources: Added RichTextBox.cs to build
* SWF.csproj: Updated
2005-09-06 Jonathan Chambers <jonathan.chambers@ansys.com>
* System.Windows.Forms.dll.sources: Added System.Windows.Forms.PropertiesTab.cs
2005-09-04 Peter Dennis Bartok <pbartok@novell.com>
* System.Windows.Forms.dll.sources: Added System.Windows.Forms.RTF
subdirectory to build
* SWF.csproj: Updated
2005-08-29 Alexander Olk <xenomorph2@onlinehome.de>
* System.Windows.Forms.dll.sources: Added ThemeNice.cs
2005-08-29 Ritvik Mayank <mritvik@novell.com>
* System.Windows.Forms_test.dll.sources : added ProgressBarTest.cs,
ToolBarTest.cs, ToolTipTest.cs
RadioButtonTest.cs, ScrollBarTest.cs and StatusBarTest.cs .
2005-08-25 Atsushi Enomoto <atsushi@ximian.com>
* Makefile : added /codepage:65001 (otherwise the build gets broken
on KeyboardLayout.cs on some non-iso-8859-1 environment).
2005-08-18 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
* System.Windows.Forms/TreeView.cs: some spaces to tabs
FIX: ToString() was generating exception on empty Nodes
(was testing <0 instead of <= 0)
2005-08-16 Ritvik Mayank <mritvik@novell.com>
* System.Windows.Forms_test.dll.sources : added ImageListTest.cs,
RadioButtonTest.cs, ScrollBarTest.cs and StatusBarTest.cs .
2005-08-06 Ritvik Mayank <mritvik@novell.com>
* System.Windows.Forms_test.dll.sources : sorted and removed test-cases for Form
and TextBox as these are still under development.
2005-08-04 Peter Dennis Bartok <pbartok@novell.com>
* SWF.csproj: Updated
2005-08-02 Ritvik Mayank <mritvik@novell.com>
* M.gif : used by some of the test-cases
* System.Windows.Forms_test.dll.sources : Added test-case for
ListView, ComboBox, CheckBox, CheckedList, Form, Menu, GroupBox
and ImageList
2005-07-07 Alexander Olk <xenomorph2@onlinehome.de>
* System.Windows.Forms_test.dll.sources : Added MimeIcon.cs
2005-07-06 Jordi Mas i Hernandez <jordi@ximian.com>
* DataGridTextBoxColumn.cs: default value
* GridColumnStylesCollection.cs: fixes event firing, checking MappingName
* GridTableStylesCollection.cs: fixes checking MappingName
* DataGridDrawingLogic.cs: fixes drawing logic issues
* DataSourceHelper.cs: rewritten to make compatible with more data sources
* DataGrid.cs: fixes
2005-07-04 Ritvik Mayank <mritvik@novell.com>
* System.Windows.Forms_test.dll.sources : Added ListBoxTest.cs and
ListBoxEventTest.cs for ListBox tests.
2005-06-15 Peter Bartok <pbartok@novell.com>
* System.Windows.Forms.dll.sources: Added MWFCategoryAttribute.cs and
MWFDescriptionAttribute.cs
* SWF.csproj: Updated
2005-06-15 Alexander Olk <xenomorph2@onlinehome.de>
* System.Windows.Forms.dll.sources: Added Mime.cs and
MimeGenerated.cs.
2005-06-13 Jackson Harper <jackson@ximian.com>
* SWF.csproj:
* System.Windows.Forms.dll.sources: Add MdiClientContext to the
build.
2005-06-13 Ritvik Mayank <mritvik@novell.com>
* System.Windows.Forms_test.dll.sources : Added TextBoxTest.cs
and ButtonTest.cs for TextBox and Button tests respectively.
2005-06-10 Peter Bartok <pbartok@novell.com>
* System.Windows.Forms.dll.sources: Add ImageListConverter.cs
* SWF.csproj: Updated
2005-06-08 Jackson Harper <jackson@ximian.com>
* Guidelines:
* Design: Double buffering is handled at a different level now, so
I am removing mention of it. Control developers do not need to
know how it works.
2005-06-05 Peter Bartok <pbartok@novell.com>
* System.Windows.Forms.dll.sources: Add Win32DnD.cs
* SWF.csproj: Updated
2005-05-24 Jackson Harper <jackson@ximian.com>
* System.Windows.Forms.dll.sources: Add X11Dnd.cs
2005-05-24 Peter Bartok <pbartok@novell.com>
* System.Windows.Forms.dll.sources: Added
DataGridPreferredColumnWidthTypeConverter.cs
* SWF.csproj: Updated
2005-05-24 Peter Bartok <pbartok@novell.com>
* System.Windows.Forms.dll.sources: Added Help.cs
* SWF.csproj: Updated
2005-05-18 Peter Bartok <pbartok@novell.com>
* System.Windows.Forms.dll.sources: Added Clipboard.cs
* SWF.csproj: Update
2005-05-11 Ritvik Mayank <mritvik@novell.com>
* System.Windows.Forms_test.dll.sources : Added ControlEventTest.cs
for Event Test
2005-05-11 Peter Bartok <pbartok@novell.com>
* System.Windows.Forms.dll.sources: Added
IDataGridEditingService.cs, System.Resources/ResXFileRef.cs,
System.Resources/ResXResourceSet.cs
* SWF.csproj: Updated
2005-05-10 Peter Bartok <pbartok@novell.com>
* System.Windows.Forms.dll.sources: Added SecurityIDType.cs,
DataObject.cs and DataFormats.cs
* SWF.csproj: Update
2005-05-06 Peter Bartok <pbartok@novell.com>
* System.Windows.Forms.dll.sources: Added Screen.cs, HelpNavigator.cs
and HelpProvider.cs
* SWF.csproj: Updated
2005-05-05 Peter Bartok <pbartok@novell.com>
* System.Windows.Forms.dll.sources: Added AxHost.cs,
ErrorProvider.cs, RichTextBoxFinds.cs, RichTextBoxScrollBars.cs,
RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
RichTextBoxStreamType.cs, RichTextBoxWordPunctuations.cs
* SWF.csproj: Updated
2005-05-02 Ritvik Mayank <mritvik@novell.com>
* System.Windows.Forms_test.dll.sources : Added ControlTest.cs for Label Test
2005-04-26 Ritvik Mayank <mritvik@novell.com>
* System.Windows.Forms_test.dll.sources : Added LabelPropertyTest.cs for Label Test
2005-04-25 Jackson Harper <jackson@ximian.com>
* System.Windows.Forms.dll.sources: Add CursorConvert.cs to the
build
2005-04-09 Peter Bartok <pbartok@novell.com>
* System.Windows.Forms.dll.sources: Added FolderBrowserDialog.cs
2005-03-11 Peter Bartok <pbartok@novell.com>
* System.Windows.Forms.dll.sources: Added MdiClient.cs
2005-03-10 Peter Bartok <pbartok@novell.com>
* System.Windows.Forms.dll.sources: Added SaveFileDialog.cs
2005-03-09 Peter Bartok <pbartok@novell.com>
* System.Windows.Forms.dll.sources: Added MdiClient.cs
2005-02-24 Peter Bartok <pbartok@novell.com>
* System.Windows.Forms.dll.sources: Removed HandleData.cs
2005-02-22 Jackson Harper <jackson@ximian.com>
* System.Windows.Forms.dll.sources: Add databinding classes
2005-02-22 Raja R Harinath <rharinath@novell.com>
* Makefile (EXTRA_DISTFILES): Add 'build-csproj'.
(PREBUILT): New rule to copy *.resources to *.resources.prebuilt.
(dist-default): Depend on it.
2005-02-18 Peter Bartok <pbartok@novell.com>
* System.Windows.Forms.dll.sources: Added MethodInvoker.cs,
ErrorIconAlignment.cs, MdiLayout.cs, SendKeys.cs
2005-02-18 Raja R Harinath <rharinath@novell.com>
* Makefile (EXTRA_DISTFILES): Distribute all *.resx and
*.resources.prebuilt.
2005-02-17 Peter Bartok <pbartok@novell.com>
* System.Windows.Forms.dll.sources: Added DateBoldEventHandler.cs,
DateBoldEventArgs.cs, UpDownEventHandler.cs, UpDownEventArgs.cs,
ContentsResizedEventHandler.cs, ContentsResizedEventArgs.cs
2005-02-15 Peter Bartok <pbartok@novell.com>
* Makefile: Altered, following Harinath's suggestion of trying to
build and handling the failure by copying prebuilt resources in
place
2005-02-15 Peter Bartok <pbartok@novell.com>
* Makefile: Removed resources as automatic target; to build
.resource files 'make resources' must be invoked. This removes
the libgdiplus installed requirement. Instead, the compiled files
are checked in as well.
2005-02-13 Peter Bartok <pbartok@novell.com>
* System.Windows.Forms.dll.sources: Added SelectionRangeConverter.cs,
OpacityConverter.cs, KeysConverter.cs, Hwnd.cs
* System.Windows.Forms.dll.resources: Added
* Makefile: Added support for generating resources
2005-02-12 Geoff Norton <gnorton@customerdna.com>
* System.Windows.Forms.dll.sources: Added ResXNullRef.cs
2005-02-03 Peter Bartok <pbartok@novell.com>
* System.Windows.Forms.dll.Sources: Added ComponentModel.cs and
PropertyGridView.cs
2005-01-30 John BouAntoun <jba-mono@optusnet.com.au>
* System.Windows.Forms.dll.Sources: Added DateTimePicker.cs and
DateTimePickerFormat.cs
2005-01-29 Peter Bartok <pbartok@novell.com>
* System.Windows.Forms.dll.Sources: Added ArrangeDirection.cs and
ArrangeStartingPosition.cs
* SWF.csproj: Updated
2005-01-28 Peter Bartok <pbartok@novell.com>
* SWF.csproj: Updated with all the latest files
* build-csproj: Added, allows to autogenerate SWF.csproj
* Makefile: Added rule to automatically call build-csproj (Thanks
to Geoff Norton for review and a simpler rule)
2005-01-26 Peter Bartok <pbartok@novell.com>
* System.Windows.Forms.dll.Sources: Added GridEntry.cs,
GridItem.cs, GridItemCollection.cs, GridItemType.cs,
PropertyGrid.cs, PropertySort.cs, PropertyTabChangedEventArgs.cs,
PropertyTabChangedEventHandler.cs, PropertyValueChangedEventArgs.cs
PropertyValueChangedEventHandler.cs,
SelectedGridItemChangedEventArgs.cs,
SelectedGridItemChangedEventHandler.cs
2005-01-26 Peter Bartok <pbartok@novell.com>
* System.Windows.Forms.dll.Sources: Added NotifyIcon.cs
2005-01-16 Peter Bartok <pbartok@novell.com>
* System.Windows.Forms.dll.Sources: Added AccessibleEvents.cs
2005-01-16 Peter Bartok <pbartok@novell.com>
* System.Windows.Forms.dll.Sources: Added Cursors.cs
2005-01-11 Peter Bartok <pbartok@novell.com>
* System.Windows.Forms.dll.Sources: Added OSXStructs.cs
2005-01-05 Peter Bartok <pbartok@novell.com>
* System.Windows.Forms.dll.Sources: Added ICommandExecutor.cs,
IDataGridColumnStyleEditingNotificationService.cs,
IFeatureSupport.cs, IFileReaderService.cs, AmbientProperties.cs,
NavigateEventArgs.cs, NavigateEventHandler.cs, FeatureSupport.cs,
OSFeature.cs, ErrorBlinkStyle.cs, ListBindingConverter.cs
2004-12-27 Peter Bartok <pbartok@novell.com>
* System.Windows.Forms.dll.Sources: Added
System.Windows.Forms.Design/ComponentEditorForm.cs,
System.Windows.Forms.Design/ComponentEditorPage.cs,
System.Windows.Forms.Design/EventsTab.cs,
System.Windows.Forms.Design/IUIService.cs,
System.Windows.Forms.Design/IWindowsFormsEditorService.cs,
System.Windows.Forms.Design/PropertyTab.cs,
System.Windows.Forms.Design/WindowsFormsComponentEditor.cs,
ColorDialog.cs, ComboBox.cs, ComboBoxStyle.cs, DataGrid.cs,
DataGridLineStyle.cs, DataGridParentRowsLabelStyle.cs,
DataGridTableStyle.cs, FontDialog.cs, FileDialog.cs,
GridColumnStylesCollection.cs, GridTableStylesCollection.cs,
IComponentEditorPageSite.cs, OpenFileDialog, Splitter.cs,
SplitterEventArgs.cs, SplitterEventHandler.cs, TextBox.cs
2004-12-24 Jordi Mas i Hernandez <jordi@ximian.com>
* System.Windows.Forms.dll.Sources: Added ComboBox.cs and
ComboBoxStyle.cs
2004-12-20 Peter Bartok <pbartok@novell.com>
* System.Windows.Forms.dll.Sources: Added CommonDialog.cs
2004-12-16 Peter Bartok <pbartok@novell.com>
* System.Windows.Forms.dll.Sources: Added TextBoxBase.cs and
TextControl.cs
2004-12-15 Peter Bartok <pbartok@novell.com>
* Design: Updated to reflect Mac Driver; added mention
of System.Drawing patches for MWF support
* README: Credited Geoff Norton with the Mac driver
2004-12-15 Jackson Harper <jackson@ximian.com>
* System.Windows.Forms.dll.sources: Add keyboard love to the build.
2004-12-08 Peter Bartok <pbartok@novell.com>
* SWF.csproj: Added XplatUIOSX.cs to build list
2004-12-07 Geoff Norton <gnorton@customerdna.com>
* System.Windows.Forms.dll.sources: Add the XplatUIOSX.cs driver.
2004-12-07 Ravindra <rkumar@novell.com>
* SWF.csproj: Added ThreadExceptionDialog.cs to project and removed
some of the components that were added twice. This fixes MWF build on
Windows.
2004-12-03 Marek Safar <marek.safar@seznam.cz>
* System.Windows.Forms.dll.sources: Add ThreadExceptionDialog.cs
2004-12-03 Marek Safar <marek.safar@seznam.cz>
* Makefile: Added System.Drawing.dll deps for tests.
* System.Windows.Forms_test.dll.sources: New test files.
2004-12-02 Peter Bartok <pbartok@novell.com>
* SWF.csproj: Added Jackson's fresly minted TreeView files to
build list
2004-12-01 Jackson Harper <jackson@ximian.com>
* System.Windows.Forms.dll.sources: Add TreeNode love to the build.
2004-11-30 Peter Bartok <pbartok@novell.com>
* System.Windows.Forms.dll.sources: Removed textbox
references, accidentally checked those in, but textbox is
not yet ready for primetime
2004-11-29 Peter Bartok <pbartok@novell.com>
* System.Windows.Forms.dll.sources: Removed tree
additions.
I am removing these files as they conflict with already completed
work. While it is fantastic to get contributions to MWF, I
respectfully ask that everyone please coordinate their contributions
through mono-winforms-list or #mono-winforms at this time. We're
explicitly avoiding stubbing and don't want controls that don't have
their basic functionality implemented in svn. Please also see
http://www.mono-project.com/contributing/winforms.html
2004-11-29 Marek Safar <marek.safar@seznam.cz>
* System.Windows.Forms.dll.sources: Added
TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
TreeViewAction.cs, TreeViewEventArgs.cs
* System.Windows.Forms_test.dll.sources: Added
TreeNodeTest.cs
2004-11-24 Ravindra <rkumar@novell.com>
* SWF.csproj: Updated project.
2004-11-23 John BouAntoun <jba-mono@optusnet.com.au>
* System.Windows.Forms.dll.sources: added MonthCalendar files
2004-11-21 Ravindra <rkumar@novell.com>
* SWF.csproj: Updated project.
2004-11-11 Jackson Harper <jackson@ximian.com>
* System.Windows.Forms.dll.sources: Add
TreeViewImageIndexConverter.cs and OwnerDrawPropertyBag.cs to build
2004-11-01 23:19 ravindra
* SWF.csproj: Updated project.
2004-10-26 03:38 ravindra
* SWF.csproj: Updated project.
2004-10-20 04:16 jordi
* System.Windows.Forms.dll.sources: enum need it by SystemInfo
2004-10-19 16:50 jackson
* System.Windows.Forms.dll.sources: New optimized event queue
2004-10-18 00:31 ravindra
* SWF.csproj, System.Windows.Forms.dll.sources: Updated sources
list and project to fix the build.
2004-10-15 09:14 ravindra
* SWF.csproj, System.Windows.Forms.dll.sources: Updates sources
list and project.
2004-10-15 06:43 jordi
* System.Windows.Forms.dll.sources: menu work, mainmenu, subitems,
etc
2004-10-13 21:21 ravindra
* SWF.csproj: Updated project.
2004-10-04 04:58 ravindra
* SWF.csproj: Updated project.
2004-10-02 12:55 pbartok
* System.Windows.Forms.dll.sources:
- Added LeftRightAlignment source reference
2004-09-30 07:32 ravindra
* SWF.csproj, System.Windows.Forms.dll.sources: Updated project and
sources list.
2004-09-29 23:02 jambunathan
* SWF.csproj: Updated csproj to include Appearance.cs, CheckBox.cs,
CheckState.cs
2004-09-28 14:11 jackson
* System.Windows.Forms.dll.sources: Give the build some love
2004-09-28 04:31 ravindra
* Notes: Added a minor note.
2004-09-28 00:18 pbartok
* Notes:
- Initial check in. A place to log info about MWF that doesn't fit
anywhere else
2004-09-24 12:02 jackson
* System.Windows.Forms.dll.sources: Add tab classes to the build
2004-09-23 01:44 ravindra
* SWF.csproj, System.Windows.Forms.dll.sources: Updated sources
list and project file.
2004-09-20 18:54 jackson
* Makefile: New message loop that uses poll so we don't get a busy
loop
2004-09-19 23:41 ravindra
* Guidelines: Added a note to Guidelines.
2004-09-17 06:19 jordi
* System.Windows.Forms.dll.sources: Very early menu support
2004-09-16 01:19 ravindra
* SWF.csproj, System.Windows.Forms.dll.sources: Updated project and
sources list.
2004-09-13 22:09 ravindra
* SWF.csproj: Updated project.
2004-09-13 09:24 jordi
* System.Windows.Forms.dll.sources: Add to the build Process
2004-09-09 01:15 jordi
* System.Windows.Forms.dll.sources: measureitem args and handler
2004-09-09 00:03 ravindra
* SWF.csproj: Updated project.
2004-09-08 23:57 ravindra
* System.Windows.Forms.dll.sources: Added some new enums to the
list.
2004-09-08 06:45 jordi
* System.Windows.Forms.dll.sources: enumerations need it by menus
2004-09-07 11:12 jordi
* System.Windows.Forms.dll.sources: GroupBox control
2004-09-02 14:28 pbartok
* System.Windows.Forms.dll.sources:
- Added AccessibleNavigation and AccessibleSelection source files
2004-08-31 20:52 ravindra
* Design, Guidelines: Minor formatting changes and added location
for the coding style guideline for Mono.
2004-08-31 19:37 pbartok
* Guidelines:
- Removed wrong stuff
2004-08-31 16:10 pbartok
* README:
- Updated
2004-08-31 03:13 ravindra
* System.Windows.Forms_test.dll.sources: Added sources list for
test dll.
2004-08-30 10:48 pbartok
* Design, Guidelines:
- Initial check-in
2004-08-29 22:35 pbartok
* System.Windows.Forms.dll.sources:
- Added System.Resources source files
2004-08-27 16:18 ravindra
* Makefile: Lets do some tests too.
2004-08-27 16:14 ravindra
* System.Windows.Forms.dll.sources: Added ImageIndexConverter to
sources.
2004-08-23 13:14 pbartok
* SWF.csproj, SWF.sln:
- Created properly pathed VS.Net project and solution
2004-08-23 10:46 jackson
* System.Windows.Forms.dll.sources: oops. remove unused file
2004-08-22 17:47 jackson
* System.Windows.Forms.dll.sources: Add PictureBox to the build
2004-08-22 12:04 pbartok
* System.Windows.Forms.dll.sources:
- Added Cursor.cs source
2004-08-22 11:59 pbartok
* System.Windows.Forms.dll.sources:
- Restored sort order for file
- Added UserControl source file
2004-08-20 13:10 jackson
* System.Windows.Forms.dll.sources: Classes for sending Async
messages through X/Win32
2004-08-19 16:25 jordi
* System.Windows.Forms.dll.sources: theme enhancaments
2004-08-17 15:09 jackson
* System.Windows.Forms.dll.sources: Add Panel to the build
2004-08-16 15:24 jackson
* System.Windows.Forms.dll.sources: HandleData is used for storing
message information for window handles
2004-08-16 08:59 pbartok
* System.Windows.Forms.dll.sources:
- Added ButtonBase.cs
2004-08-15 17:22 ravindra
* System.Windows.Forms.dll.sources: Updated sources list for
ToolBar Control.
2004-08-13 10:25 jackson
* System.Windows.Forms.dll.sources: SWF Timer
2004-08-12 10:19 jackson
* System.Windows.Forms.dll.sources: Classes for handling status bar
panel click events
2004-08-11 15:24 pbartok
* System.Windows.Forms.dll.sources:
- Fixed filename for BindingManagerBase.cs
- Alphabetized files
2004-08-10 19:11 jackson
* System.Windows.Forms.dll.sources: Add StatusBarDrawItem stuff to
build
2004-08-10 12:59 jackson
* System.Windows.Forms.dll.sources: Add Draw Item
2004-08-09 15:40 jackson
* System.Windows.Forms.dll.sources: Add status bar panel files to
the build
2004-08-07 17:01 jackson
* System.Windows.Forms.dll.sources: Add HorizontalAlignment enum to
build
2004-07-26 11:42 jordi
* System.Windows.Forms.dll.sources: Theme support
2004-07-26 05:41 jordi
* System.Windows.Forms.dll.sources: initial messagebox
implementation
2004-07-21 10:19 jordi
* System.Windows.Forms.dll.sources: LinkLabel control
implementation
2004-07-16 05:18 jordi
* System.Windows.Forms.dll.sources: add ImageList,
ImageListStreamer, and ColorDepth to the build process
2004-07-15 03:38 jordi
* System.Windows.Forms.dll.sources: Horizontal and Vertical
TrackBar control implementation
2004-07-13 09:33 jordi
* System.Windows.Forms.dll.sources: vertical and hort. classes
commit
2004-07-08 23:21 pbartok
* Makefile, README, System.Windows.Forms.dll.sources:
- Initial check-in
|