71 lines
1.4 KiB
C++
71 lines
1.4 KiB
C++
// MainFrm.h : interface of the CMainFrame class
|
|
//
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
#ifndef _MAINFRM_H_
|
|
#define _MAINFRM_H_
|
|
|
|
#if _MSC_VER >= 1000
|
|
#pragma once
|
|
#endif // _MSC_VER >= 1000
|
|
|
|
#include "Defines.hpp"
|
|
|
|
//--------------------------------------------
|
|
#define C_ROW_INDEX_LISTS 0
|
|
#define C_ROW_INDEX_CONTROL 1
|
|
#define C_ROW_INDEX_MINI_STRUC 2
|
|
|
|
//-----------------IR-------------------------
|
|
#define C_ROW_INDEX_DES_VAR 3
|
|
#define C_NUMBER_OF_PANES 4
|
|
//--------------------------------------------
|
|
|
|
class CMainFrame : public CSplitFrame
|
|
{
|
|
public:
|
|
CMainFrame();
|
|
|
|
protected: // create from serialization only
|
|
DECLARE_DYNCREATE(CMainFrame)
|
|
|
|
// Attributes
|
|
public:
|
|
|
|
private:
|
|
|
|
// Operations
|
|
public:
|
|
|
|
// Overrides
|
|
// ClassWizard generated virtual function overrides
|
|
//{{AFX_VIRTUAL(CMainFrame)
|
|
protected:
|
|
virtual BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext);
|
|
//}}AFX_VIRTUAL
|
|
|
|
// Implementation
|
|
public:
|
|
virtual ~CMainFrame();
|
|
#ifdef _DEBUG
|
|
virtual void AssertValid() const;
|
|
virtual void Dump(CDumpContext& dc) const;
|
|
#endif
|
|
|
|
//Attributes
|
|
public:
|
|
|
|
protected: // control bar embedded members
|
|
|
|
// Generated message map functions
|
|
protected:
|
|
//{{AFX_MSG(CMainFrame)
|
|
afx_msg BOOL OnHelpInfo(HELPINFO* pHelpInfo);
|
|
afx_msg void OnPaint();
|
|
//}}AFX_MSG
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
#endif //_MAINFRM_H_
|
|
|