#include <bars.h>
Inheritance diagram for BarControlBase:
Public Member Functions | |
virtual UINT32 | GetBubbleID (BOOL Horz) |
In derived classes will return the bubble help resource string currently associated with the control. In the base class an ENSURE occurs. | |
virtual UINT32 | GetStatusID (BOOL Horz) |
CWindowID | GetWinID () |
virtual void | SetWinID (CWindowID NewWinID) |
Private Attributes | |
CWindowID | WinID |
Definition at line 199 of file bars.h.
|
In derived classes will return the bubble help resource string currently associated with the control. In the base class an ENSURE occurs.
Reimplemented in BarControl, and BarToolButton. Definition at line 3573 of file bars.cpp. 03574 { 03575 ENSURE(FALSE, "Pure virtual BarControlBase::GetBubbleID called"); 03576 return 0; 03577 }
|
|
Reimplemented in BarControl, and BarToolButton. Definition at line 3598 of file bars.cpp. 03599 { 03600 ENSURE(FALSE, "Pure virtual BarControlBase::GetStatusID called"); 03601 return 0; 03602 }
|
|
Definition at line 215 of file bars.h. 00215 { return WinID; }
|
|
Definition at line 216 of file bars.h. 00216 { WinID = NewWinID; }
|
|
|