// XTPResizePropertySheet.h: interface for the CXTPResizePropertySheet class. // // This file is a part of the XTREME CONTROLS MFC class library. // (c)1998-2012 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 // ///////////////////////////////////////////////////////////////////////////// //{{AFX_CODEJOCK_PRIVATE #if !defined(__XTPRESIZEPROPERTYSHEET_H__) #define __XTPRESIZEPROPERTYSHEET_H__ //}}AFX_CODEJOCK_PRIVATE #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 //=========================================================================== // Summary: // CXTPResizePropertySheet is a multiple inheritance class derived from // CPropertySheet and CXTPResize. CXTPResizePropertySheet is used to create // a resizable CPropertySheet type object that allows its dialog items // to be resized or moved dynamically. //=========================================================================== class _XTP_EXT_CLASS CXTPResizePropertySheet : public CPropertySheet, public CXTPResize { DECLARE_DYNCREATE(CXTPResizePropertySheet) public: //---------------------------------------------------------------------- // Summary: // Constructs a CXTPResizePropertySheet object // Parameters: // nCaption - ID of the caption to be used for the property sheet. // pszCaption - Points to a string containing the caption to be used for the property // sheet. It cannot be NULL. // pParent - Points to the parent window of the property sheet. If NULL, the parent // window will be the main window of the application. // nSelectPage - The index of the page that will initially be on top. Default is the // first page added to the sheet. // nFlags - Flags that are to be passed to CXTPResize that specify the attributes // of the resizing property page. They can be one or more of the values in the Remarks section. // Remarks: // Styles to be added or removed can be combined by using the bitwise // OR (|) operator. It can be one or more of the following:
// * xtpResizeNoSizeIcon Do not add size icon. // * xtpResizeNoHorizontal No horizontal resizing. // * xtpResizeNoVertical No vertical resizing. // * xtpResizeNoMinsize Do not require a minimum size. // * xtpResizeNoClipChildren Do not set clip children style. // * xtpResizeNoTransparentGroup Do not set transparent style // for group boxes. // //---------------------------------------------------------------------- CXTPResizePropertySheet(); CXTPResizePropertySheet(const UINT nCaption, CWnd* pParent = 0, const UINT nSelectPage = 0, const UINT nFlags = 0); //