MCPcopy Create free account
hub / github.com/derceg/explorerplusplus / ShowModalDialog

Method ShowModalDialog

Explorer++/Helper/BaseDialog.cpp:184–196  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

182}
183
184INT_PTR BaseDialog::ShowModalDialog()
185{
186 /* Explicitly disallow the creation of another
187 dialog from this object while a modeless dialog
188 is been shown. */
189 if (m_bShowingModelessDialog)
190 {
191 return -1;
192 }
193
194 return DialogBoxParam(m_hInstance, MAKEINTRESOURCE(m_iResource), m_hParent, BaseDialogProcStub,
195 reinterpret_cast<LPARAM>(this));
196}
197
198HWND BaseDialog::ShowModelessDialog(IModelessDialogNotification *pmdn)
199{

Callers 15

OnNotifyMethod · 0.80
OnRenameTabMethod · 0.80
DefaultSettingsProcMethod · 0.80
OnNewMethod · 0.80
EditColorRuleMethod · 0.80
OnSelectColumnsMethod · 0.80
ShowNewItemDialogMethod · 0.80
ShowItemPropertiesMethod · 0.80
OnChangeDisplayColorsMethod · 0.80
OnFilterResultsMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected