Visible to Intel only — GUID: GUID-AF8B19F3-3B1E-46AB-9460-160E96F54D86
Visible to Intel only — GUID: GUID-AF8B19F3-3B1E-46AB-9460-160E96F54D86
MODIFYMENUFLAGSQQ
QuickWin Function: Modifies a menu item's state. This routine is only available for Windows.
Module
USE IFQWIN
result = MODIFYMENUFLAGSQQ (menuID,itemID,flag)
menuID |
(Input) INTEGER(4). Identifies the menu containing the item whose state is to be modified, starting with 1 as the leftmost menu. |
itemID |
(Input) INTEGER(4). Identifies the menu item whose state is to be modified, starting with 0 as the top item. |
flags |
(Input) INTEGER(4). Constant indicating the menu state. Flags can be combined with an inclusive OR (see the Results section below). The following constants are available:
|
Results
The result type is LOGICAL(4). The result is .TRUE. if successful; otherwise, .FALSE..
The constants available for flags can be combined with an inclusive OR where reasonable, for example $MENUCHECKED .OR. $MENUENABLED. Some combinations do not make sense, such as $MENUENABLED and $MENUDISABLED, and lead to undefined behavior.
Example
USE IFQWIN
LOGICAL(4) result
CHARACTER(20) str
! Append item to the bottom of the first (FILE) menu
str = '&Add to File Menu'C
result = APPENDMENUQQ(1, $MENUENABLED, str, WINSTATUS)
! Gray out and disable the first two menu items in the
! first (FILE) menu
result = MODIFYMENUFLAGSQQ (1, 1, $MENUGRAYED)
result = MODIFYMENUFLAGSQQ (1, 2, $MENUGRAYED)
END