MCPcopy Create free account
hub / github.com/SOUI2/soui / FireEvent

Method FireEvent

SOUI/src/control/SComboView.cpp:87–103  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

85 }
86
87 BOOL SComboView::FireEvent( EventArgs &evt )
88 {
89 if(evt.idFrom == IDC_DROPDOWN_LIST && m_pDropDownWnd)
90 {
91 if(evt.GetID()==EventLVSelChanged::EventID)
92 {
93 OnSelChanged();
94 return TRUE;
95 }
96 if(evt.GetID() == EventCmd::EventID)
97 {
98 CloseUp();
99 return TRUE;
100 }
101 }
102 return SComboBase::FireEvent(evt);
103 }
104
105 void SComboView::OnScaleChanged(int nScale)
106 {

Callers

nothing calls this directly

Calls 2

OnSelChangedFunction · 0.85
GetIDMethod · 0.45

Tested by

no test coverage detected