Changeset 52 for trunk/include/helpers/comctl.h
- Timestamp:
- Mar 30, 2001, 10:27:12 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/helpers/comctl.h
r41 r52 704 704 * with checkbox containers. See 705 705 * ctlMakeCheckboxContainer for details. 706 * 707 * The check box painting is determined 708 * by the following flags: 709 * 710 * -- Only if (ulStyle & WS_VISIBLE), the check 711 * box is painted at all. Otherwise hptrIcon 712 * is painted. (Is this true?) 713 * 714 * -- In that case, usCheckState determines 715 * whether the check box is painted checked, 716 * unchecked, or indeterminate. 717 * 718 * -- In addition, if RECORDCORE.flRecordAttr 719 * has the CRA_DISABLED bit set, the check 720 * box is painted disabled (halftoned). 721 * 722 *@@changed V0.9.9 (2001-03-27) [umoeller]: made item id a ULONG 706 723 */ 707 724 … … 717 734 // Internally, we use BS_BITMAP to identify 718 735 // the depressed checkbox button. 719 USHORT usItemID; 720 // this identifies the record. Must be 721 // unique within the container. 736 ULONG ulItemID; 737 // this identifies the record; must be 738 // unique within the container 739 // changed V0.9.9 (2001-03-27) [umoeller]: turned USHORT into ULONG 722 740 USHORT usCheckState; 723 741 // current check state as with checkboxes
Note:
See TracChangeset
for help on using the changeset viewer.