mirror of
https://github.com/ptitSeb/Serious-Engine
synced 2024-11-22 10:20:26 +01:00
78 lines
2.2 KiB
C++
78 lines
2.2 KiB
C++
/* Copyright (c) 2002-2012 Croteam Ltd.
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of version 2 of the GNU General Public License as published by
|
|
the Free Software Foundation
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License along
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */
|
|
|
|
// DlgInfoPgRendering.h : header file
|
|
//
|
|
#ifndef DLGINFOPGRENDERING
|
|
#define DLGINFOPGRENDERING 1
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CDlgInfoPgRendering dialog
|
|
|
|
class CDlgInfoPgRendering : public CPropertyPage
|
|
{
|
|
DECLARE_DYNCREATE(CDlgInfoPgRendering)
|
|
|
|
// Construction
|
|
public:
|
|
CDlgInfoPgRendering();
|
|
~CDlgInfoPgRendering();
|
|
BOOL OnIdle(LONG lCount);
|
|
|
|
CUpdateable m_udAllValues;
|
|
|
|
// Dialog Data
|
|
//{{AFX_DATA(CDlgInfoPgRendering)
|
|
enum { IDD = IDD_INFO_RENDERING };
|
|
CComboBox m_comboTranslucency;
|
|
CComboBox m_comboShading;
|
|
CColoredButton m_colorSpecular;
|
|
CColoredButton m_colorReflections;
|
|
CColoredButton m_colorDiffuse;
|
|
CColoredButton m_colorBump;
|
|
CString m_strMipModel;
|
|
CString m_strSurfaceName;
|
|
CCtrlEditBoolean m_IsDoubleSided;
|
|
CCtrlEditBoolean m_IsInvisible;
|
|
CCtrlEditBoolean m_IsDiffuse;
|
|
CCtrlEditBoolean m_IsReflections;
|
|
CCtrlEditBoolean m_IsSpecular;
|
|
CCtrlEditBoolean m_IsBump;
|
|
CCtrlEditBoolean m_IsDetail;
|
|
//}}AFX_DATA
|
|
|
|
|
|
// Overrides
|
|
// ClassWizard generate virtual function overrides
|
|
//{{AFX_VIRTUAL(CDlgInfoPgRendering)
|
|
public:
|
|
virtual BOOL PreTranslateMessage(MSG* pMsg);
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
|
//}}AFX_VIRTUAL
|
|
|
|
// Implementation
|
|
protected:
|
|
// Generated message map functions
|
|
//{{AFX_MSG(CDlgInfoPgRendering)
|
|
afx_msg void OnSelchangeShading();
|
|
afx_msg void OnSelchangeTranslucency();
|
|
afx_msg void OnSelectAllSurfaces();
|
|
//}}AFX_MSG
|
|
DECLARE_MESSAGE_MAP()
|
|
|
|
};
|
|
#endif // DLGINFOPGRENDERING
|