Attribute items are items that have two states: selected and unselected. In the menu system, these items are often represented as items with checkmarks. If the checkmark is visible, then the item (or attribute) is selected. Otherwise, the attribute is not selected. Checkmarked items (attributes) may be toggle selected or mutually exclusive. Selecting a toggle selected item toggles its state--if it was selected, it will become unselected; and if it was unselected, it will become selected. Selecting a mutually exclusive item puts it in the selected state, while possibly clearing one or more other items, where it remains until it is cleared by the selection of some other item. A menu item is specified as a checkmark item by setting the checkit flag in the flags variable of the item's menuitem structure. The program can initialize the state of the checkmark (checked or not) by presetting the item's checked flag. if this flag is set when the menu strip is submitted to Intuition, then the item is considered selected and the checkmark will be drawn. The program can use the default Intuition checkmark or provide a custom checkmark for the menus. To use a custom checkmark, the application must provide a pointer to the image with the wa_checkmark tag when the window is opened. See the chapter "intuition windows" for details about supplying a custom checkmark. The application must provide sufficient blank space at the left edge of the select box for the checkmark imagery. Constants are provided to standardize the space reserved in the menu for the checkmark. LOWCHECKWIDTH gives the amount of space required for checkmarks on low resolution screens and CHECKWIDTH gives space for all other screens. These constants specify the space required by the default checkmarks (with a bit of space for aesthetic purposes). If the item box would normally be placed such that the leftedge of the item box without the checkmark is 5, the item box should start at 5 + CHECKWIDTH if checkit is set. also, the select box must be made CHECKWIDTH wider than it would be without the checkmark. It is generally accepted on the Amiga that only checkmarked items should be indented by the size of the checkmark, other items are left justified within their column.