#include <gadget.h>
Inheritance diagram for DialogMgrGadget:
Public Member Functions | |
virtual void | Enable () |
Enables this gadget. | |
virtual void | Disable () |
Disables this gadget. | |
Protected Member Functions | |
DialogMgrGadget (DialogOp *const pDialog, CGadgetID ControlID) | |
Protected Attributes | |
DialogOp *const | m_pDialog |
const CGadgetID | m_ControlID |
Private Member Functions | |
CC_DECLARE_MEMDUMP (DialogMgrGadget) |
Definition at line 280 of file gadget.h.
|
Definition at line 290 of file gadget.h. 00290 : 00291 m_pDialog(pDialog), m_ControlID(ControlID) {}
|
|
|
|
Disables this gadget.
Implements Gadget. Definition at line 327 of file gadget.h. 00328 { 00329 ASSERT(m_ControlID != 0 && m_pDialog != NULL); 00330 00331 m_pDialog->EnableGadget(m_ControlID, FALSE); 00332 }
|
|
Enables this gadget.
Implements Gadget. Definition at line 310 of file gadget.h. 00311 { 00312 ASSERT(m_ControlID != 0 && m_pDialog != NULL); 00313 00314 m_pDialog->EnableGadget(m_ControlID, TRUE); 00315 }
|
|
|
|
|