mirror of
https://github.com/ptitSeb/Serious-Engine
synced 2024-11-22 18:30:27 +01:00
65 lines
1.6 KiB
C
65 lines
1.6 KiB
C
|
/* Copyright (c) 2002-2012 Croteam Ltd. All rights reserved. */
|
||
|
|
||
|
// DlgInfoSheet.h : header file
|
||
|
//
|
||
|
|
||
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
// CDlgInfoSheet
|
||
|
|
||
|
#define IM_NONE 0
|
||
|
#define IM_NORMAL 1
|
||
|
#define IM_MAPPING 2
|
||
|
|
||
|
class CDlgInfoSheet : public CPropertySheet
|
||
|
{
|
||
|
// Construction
|
||
|
public:
|
||
|
CUpdateable m_Updateable;
|
||
|
CModelerView *m_LastViewUpdated;
|
||
|
INDEX m_InfoMode;
|
||
|
BOOL OnIdle(LONG lCount);
|
||
|
DECLARE_DYNAMIC(CDlgInfoSheet)
|
||
|
CDlgInfoSheet(CWnd* pWndParent);
|
||
|
void CustomSetActivePage( CPropertyPage *pppToActivate);
|
||
|
|
||
|
CDlgInfoPgNone m_PgInfoNone;
|
||
|
CDlgInfoPgRendering m_PgInfoRendering;
|
||
|
CDlgInfoPgGlobal m_PgInfoGlobal;
|
||
|
CDlgInfoPgMip m_PgInfoMip;
|
||
|
CDlgInfoPgPos m_PgInfoPos;
|
||
|
CDlgInfoPgAnim m_PgInfoAnim;
|
||
|
CDlgPgCollision m_PgInfoCollision;
|
||
|
CDlgPgInfoAttachingPlacement m_PgAttachingPlacement;
|
||
|
CDlgPgInfoAttachingSound m_PgAttachingSound;
|
||
|
CDlgInfoSheet(UINT nIDCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
|
||
|
CDlgInfoSheet(LPCTSTR pszCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
|
||
|
|
||
|
// Attributes
|
||
|
public:
|
||
|
|
||
|
// Operations
|
||
|
public:
|
||
|
|
||
|
// Overrides
|
||
|
// ClassWizard generated virtual function overrides
|
||
|
//{{AFX_VIRTUAL(CDlgInfoSheet)
|
||
|
public:
|
||
|
virtual BOOL PreTranslateMessage(MSG* pMsg);
|
||
|
protected:
|
||
|
virtual void DoDataExchange(CDataExchange* pDX);
|
||
|
virtual void PostNcDestroy();
|
||
|
//}}AFX_VIRTUAL
|
||
|
|
||
|
// Implementation
|
||
|
public:
|
||
|
virtual ~CDlgInfoSheet();
|
||
|
|
||
|
// Generated message map functions
|
||
|
protected:
|
||
|
//{{AFX_MSG(CDlgInfoSheet)
|
||
|
//}}AFX_MSG
|
||
|
DECLARE_MESSAGE_MAP()
|
||
|
};
|
||
|
|
||
|
/////////////////////////////////////////////////////////////////////////////
|