75 lines
1.9 KiB
C++
75 lines
1.9 KiB
C++
#if !defined(AFX_IADVRVW_HPP__A48E7299_F400_11D1_BB03_00A0245476ED__INCLUDED_)
|
|
#define AFX_IADVRVW_HPP__A48E7299_F400_11D1_BB03_00A0245476ED__INCLUDED_
|
|
|
|
#if _MSC_VER >= 1000
|
|
#pragma once
|
|
#endif // _MSC_VER >= 1000
|
|
// IADVrVw.hpp : header file
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// IAD_VariableView form view
|
|
|
|
#ifndef __AFXEXT_H__
|
|
#include <afxext.h>
|
|
#endif
|
|
|
|
#include "IAD_Res.h"
|
|
#include "IADLstVr.hpp"
|
|
|
|
class IAD_VariableView : public CFormView
|
|
{
|
|
protected:
|
|
IAD_VariableView(); // protected constructor used by dynamic creation
|
|
DECLARE_DYNCREATE(IAD_VariableView)
|
|
|
|
// Form Data
|
|
public:
|
|
//{{AFX_DATA(IAD_VariableView)
|
|
enum { IDD = IDD_IAD_VARIABLE };
|
|
IAD_ListVariable m_clListVariable;
|
|
//}}AFX_DATA
|
|
|
|
// Attributes
|
|
public:
|
|
|
|
// Operations
|
|
public:
|
|
// BEGIN ROMTEAM Cristi Petrescu 98-06-
|
|
void m_fn_vAddVariable (CString csName, CString csValue);
|
|
|
|
void m_fn_vUpdateVariables (IAD_EditorTreeNode *pclEngineLoop);
|
|
// END ROMTEAM Cristi Petrescu 98-06-
|
|
|
|
// Overrides
|
|
// ClassWizard generated virtual function overrides
|
|
//{{AFX_VIRTUAL(IAD_VariableView)
|
|
public:
|
|
virtual void OnInitialUpdate();
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
|
//}}AFX_VIRTUAL
|
|
|
|
// Implementation
|
|
protected:
|
|
virtual ~IAD_VariableView();
|
|
#ifdef _DEBUG
|
|
virtual void AssertValid() const;
|
|
virtual void Dump(CDumpContext& dc) const;
|
|
#endif
|
|
|
|
// Generated message map functions
|
|
//{{AFX_MSG(IAD_VariableView)
|
|
afx_msg BOOL OnHelpInfo(HELPINFO* pHelpInfo);
|
|
afx_msg void OnSize(UINT nType, int cx, int cy);
|
|
//}}AFX_MSG
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
//{{AFX_INSERT_LOCATION}}
|
|
// Microsoft Developer Studio will insert additional declarations immediately before the previous line.
|
|
|
|
#endif // !defined(AFX_IADVRVW_HPP__A48E7299_F400_11D1_BB03_00A0245476ED__INCLUDED_)
|