#include <griddropdown.h>
Inheritance diagram for wxCamGridPopup:
Public Member Functions | |
wxCamGridPopup (CGridDropDown *pDropDown, wxGridCombo *pCombo) | |
virtual | ~wxCamGridPopup () |
virtual void | DrawItem (wxDC &dc, const wxRect &rect, intiItem, INT32 iFlags) |
Protected Attributes | |
CGridDropDown * | m_pDropDown |
Definition at line 123 of file griddropdown.h.
|
Definition at line 132 of file griddropdown.cpp. 00132 : 00133 wxGridComboPopup(pCombo) 00134 { 00135 m_pDropDown = pDropDown; 00136 }
|
|
Definition at line 138 of file griddropdown.cpp.
|
|
Function : wxCamGridPopup::DrawItem Author : Mikhail Tatarnikov Purpose : Draws an item. Returns : void Exceptions: Parameters: [in] wxDC& dc - the device context to draw to; [in] wxRect& rect - the area of the item; [in] INT32 iItem - item index; [in] INT32 iFlags - additional flags (selected, highlighted, ...) Notes : Delegates the call to the control class. Definition at line 154 of file griddropdown.cpp. 00154 : Correct */ iItem, INT32 iFlags) 00155 { 00156 if (m_pDropDown) 00157 m_pDropDown->DrawItem(dc, rect, iItem, iFlags); 00158 }
|
|
Definition at line 133 of file griddropdown.h. |