You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
859 B
33 lines
859 B
/****************************************************************************\
|
|
*
|
|
* MSLUPROP.H
|
|
*
|
|
* Created: William Taylor (wtaylor) 12/14/00
|
|
*
|
|
* MS Ratings Property Sheet Class
|
|
*
|
|
\****************************************************************************/
|
|
|
|
#ifndef MSLU_PROPSHEET_H
|
|
#define MSLU_PROPSHEET_H
|
|
|
|
struct PRSD; // Forward Declaration
|
|
|
|
class PropSheet{
|
|
private:
|
|
PROPSHEETHEADER psHeader;
|
|
|
|
public:
|
|
PropSheet();
|
|
~PropSheet();
|
|
|
|
BOOL Init(HWND hwnd, int nPages, char *szCaption, BOOL fApplyNow);
|
|
int Run();
|
|
|
|
void MakePropPage( HPROPSHEETPAGE hPage );
|
|
|
|
int PropPageCount( void ) { return psHeader.nPages; }
|
|
void SetStartPage( int m_nStartPage ) { psHeader.nStartPage = m_nStartPage; }
|
|
};
|
|
|
|
#endif
|