include: Add IFileDialogControlEvents interface declaration.

oldstable
David Hedberg 2010-07-20 16:39:13 +02:00 committed by Alexandre Julliard
parent cdfe614fcc
commit 17bc7be58d
1 changed files with 29 additions and 0 deletions

View File

@ -2756,3 +2756,32 @@ interface IFileDialogCustomize : IUnknown
[in] DWORD dwIDItem,
[in, string] LPCWSTR pszLabel);
}
/*****************************************************************************
* IFileDialogControlEvents interface
*/
[
object,
uuid(36116642-D713-4B97-9B83-7484A9D00433),
pointer_default(unique)
]
interface IFileDialogControlEvents : IUnknown
{
HRESULT OnItemSelected(
[in] IFileDialogCustomize *pfdc,
[in] DWORD dwIDCtl,
[in] DWORD dwIDItem);
HRESULT OnButtonClicked(
[in] IFileDialogCustomize *pfdc,
[in] DWORD dwIDCtl);
HRESULT OnCheckButtonToggled(
[in] IFileDialogCustomize *pfdc,
[in] BOOL dwIDCtl,
[in] BOOL bChecked);
HRESULT OnControlActivating(
[in] IFileDialogCustomize *pfdc,
[in] DWORD dwIDCtl);
}