// chicdial.h : header file // // This file is a part of the XTREME TOOLKIT PRO MFC class library. // (c)1998-2008 Codejock Software, All Rights Reserved. // // THIS SOURCE FILE IS THE PROPERTY OF CODEJOCK SOFTWARE AND IS NOT TO BE // RE-DISTRIBUTED BY ANY MEANS WHATSOEVER WITHOUT THE EXPRESSED WRITTEN // CONSENT OF CODEJOCK SOFTWARE. // // THIS SOURCE CODE CAN ONLY BE USED UNDER THE TERMS AND CONDITIONS OUTLINED // IN THE XTREME TOOLKIT PRO LICENSE AGREEMENT. CODEJOCK SOFTWARE GRANTS TO // YOU (ONE SOFTWARE DEVELOPER) THE LIMITED RIGHT TO USE THIS SOFTWARE ON A // SINGLE COMPUTER. // // CONTACT INFORMATION: // support@codejock.com // http://www.codejock.com // ///////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////// // CCSDialog dialog class CCSDialog : public CDialog { // Construction public: CCSDialog(); CCSDialog(LPCTSTR lpszTemplateName, CWnd* pParentWnd = NULL); CCSDialog(UINT nIDTemplate, CWnd* pParentWnd = NULL); // Implementation protected: virtual const DWORD* GetHelpIDs() = 0; // Generated message map functions //{{AFX_MSG(CCSDialog) virtual BOOL OnInitDialog(); //}}AFX_MSG afx_msg LRESULT OnHelp(WPARAM, LPARAM lParam); afx_msg LRESULT OnHelpContextMenu(WPARAM, LPARAM lParam); DECLARE_MESSAGE_MAP() }; class CCSPropertyPage : public CPropertyPage { // Construction public: CCSPropertyPage(UINT nIDTemplate, UINT nIDCaption = 0); CCSPropertyPage(LPCTSTR lpszTemplateName, UINT nIDCaption = 0); // Implementation protected: virtual const DWORD* GetHelpIDs() = 0; // Generated message map functions //{{AFX_MSG(CCSPropertyPage) //}}AFX_MSG afx_msg LRESULT OnHelp(WPARAM wParam, LPARAM lParam); afx_msg LRESULT OnHelpContextMenu(WPARAM wParam, LPARAM lParam); DECLARE_MESSAGE_MAP() }; class CCSPropertySheet : public CPropertySheet { // Construction public: CCSPropertySheet(UINT nIDCaption, CWnd *pParentWnd = NULL, UINT iSelectPage = 0); CCSPropertySheet(LPCTSTR pszCaption, CWnd *pParentWnd = NULL, UINT iSelectPage = 0); // Implementation protected: virtual BOOL PreCreateWindow(CREATESTRUCT& cs); // Generated message map functions //{{AFX_MSG(CCSPropertySheet) //}}AFX_MSG afx_msg LRESULT OnHelp(WPARAM wParam, LPARAM lParam); afx_msg LRESULT OnHelpContextMenu(WPARAM wParam, LPARAM lParam); DECLARE_MESSAGE_MAP() };