Checkbox in requester.class

AmigaOS users can make feature requests in this forum.
Post Reply
User avatar
mritter0
Posts: 214
Joined: Mon Aug 25, 2014 9:41 pm
Location: Bettendorf, IA, USA

Checkbox in requester.class

Post by mritter0 »

Could you add a checkbox option to the requester.class? Put it under the integer/string gadget, box first then the text.

Code: Select all

Requester=NewObject(RequesterClass,NULL,
    REQ_TitleText,        "Title",
    REQ_Type,              1,                                       // integer
    REQ_BodyText,        "Enter tab size",
    REQ_GadgetText,    "OK|Cancel",

    REQI_Number,         4,

    REQCB_Checkbox,    TRUE,                                // if even needed.  REQCB_Text would "turn it on"
    REQCB_Checked,      TRUE,
    REQCB_Disabled,      FALSE,                               // for certain instances
    REQCB_Text,            "Enable auto indent",
TAG_END);
Workbench Explorer - A better way to browse drawers
Post Reply