The Videoctl.h header file in the Microsoft® DirectShow® base classes provides functions to help with property page implementations.
GetDialogSize Retrieves the size of a resource dialog box in screen pixels. StringFromResource Loads a string from a resource file with the given resource identifier. WideStringFromResource Loads a Unicode string from a resource file with the given resource identifier.
Retrieves the size of a resource dialog box.
Syntax
BOOL WINAPI GetDialogSize( int iResourceID, DLGPROC pDlgProc, LPARAM lParam, SIZE *pResult );
Parameters
- iResourceID
- Dialog box resource identifier.
- pDlgProc
- Pointer to the dialog box procedure.
- lParam
- Value that will be passed in the WM_INITDIALOG message sent to the temporary dialog box just after it is created. It can safely be set to zero.
- pResult
- Pointer to a variable that will receive the dimensions of the dialog box, in screen pixels.
Return Value
Returns TRUE if the dialog box resource was found, or FALSE otherwise.
Remarks
Property pages can use this function to return the actual display size they require. Most property pages are dialog boxes and, as such, have dialog box templates stored in resource files. Templates use dialog box units that do not map directly onto screen pixels. When a property page has its GetPageInfo function called, it must return the actual display size in pixels. This function is passed the resource ID for the dialog box and will return its size in pixels.
To make the calculation, the function creates an instance of the dialog box. To avoid the dialog box appearing on the screen temporarily, the dialog box's template in the resource file should not have a WS_VISIBLE property.
Loads a string from a resource file with the given resource identifier.
Syntax
TCHAR * WINAPI StringFromResource( TCHAR *pBuffer, int iResourceID );
Parameters
- pBuffer
- Pointer to the string corresponding to iResourceID.
- iResourceID
- Resource identifier of the string to retrieve.
Return Value
Returns the same string as pBuffer. If the function is not successful, returns a null string.
Remarks
The pBuffer buffer must be at least STR_MAX_LENGTH bytes.
Loads a Unicode string from a resource file with the given resource identifier.
Syntax
WCHAR * WINAPI WideStringFromResource( WCHAR *pBuffer, int iResourceID );
Parameters
- pBuffer
- Pointer to the string corresponding to iResourceID.
- iResourceID
- Resource identifier of the string to retrieve.
Return Value
Returns the same string as pBuffer. If the function is not successful, returns a null string.
Remarks
Property pages are typically called through their COM interfaces, which use Unicode strings regardless of how the binary is built. This function allows you to convert a resource string to a Unicode string. The function converts the resource to a Unicode string (if it is not already one) after loading it.
Top of Page
© 2000 Microsoft and/or its suppliers. All rights reserved. Terms of Use.