#include <ctrlhelp.h>
Public Member Functions | |
BOOL | ControlStatusLineText (String_256 *text) |
return the status-line text for a given ControlEntry object | |
Public Attributes | |
wxWindow * | Window |
wxWindow * | Parent |
OpDescriptor * | pOpDesc |
UINT32 | BubbleID |
UINT32 | StatusID |
UINT32 | ModuleID |
BOOL | AddCommitHandling |
Definition at line 317 of file ctrlhelp.h.
|
return the status-line text for a given ControlEntry object
Definition at line 445 of file ctrlhelp.cpp. 00446 { 00447 // if valid OpDesc, load status-line text from OpDescriptor 00448 if (pOpDesc != NULL) 00449 return pOpDesc->GetText(ptext,OP_DESC_TEXT); 00450 00451 // If there's no status-line string associated with the control then make the 00452 // string blank. 00453 if (StatusID == 0) 00454 { 00455 TRACEUSER( "JustinF", _T("ControlEntry at 0x%lX has zero status-line string ID\n"), 00456 (UINT32) this); 00457 ptext->Empty(); 00458 return TRUE; 00459 } 00460 00461 // else just load using string ID provided directly by caller. 00462 return ptext->Load(StatusID,ModuleID); 00463 }
|
|
Definition at line 334 of file ctrlhelp.h. |
|
Definition at line 325 of file ctrlhelp.h. |
|
Definition at line 327 of file ctrlhelp.h. |
|
Definition at line 322 of file ctrlhelp.h. |
|
Definition at line 324 of file ctrlhelp.h. |
|
Definition at line 326 of file ctrlhelp.h. |
|
Definition at line 320 of file ctrlhelp.h. |