Starshatter_Open
Open source Starshatter engine
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
GridProps.h
Go to the documentation of this file.
1 /* Project Magic 2.0
2  Destroyer Studios LLC
3  Copyright © 1997-2004. All Rights Reserved.
4 
5  SUBSYSTEM: Magic.exe
6  FILE: GridProps.h
7  AUTHOR: John DiCamillo
8 
9 
10  OVERVIEW
11  ========
12  Grid Properties Dialog interface file
13 */
14 
15 #if !defined(AFX_GRIDPROPS_H__79C78890_ABB9_4789_BFFC_29617CAC606E__INCLUDED_)
16 #define AFX_GRIDPROPS_H__79C78890_ABB9_4789_BFFC_29617CAC606E__INCLUDED_
17 
18 #if _MSC_VER > 1000
19 #pragma once
20 #endif
21 
22 // +--------------------------------------------------------------------+
23 // GridProps dialog
24 // +--------------------------------------------------------------------+
25 
26 class Grid;
27 
28 class GridProps : public CDialog
29 {
30 // Construction
31 public:
32  GridProps(Grid* g, CWnd* pParent = NULL); // standard constructor
33 
34 // Dialog Data
35  //{{AFX_DATA(GridProps)
36  enum { IDD = IDD_GRIDPROPS };
37  BOOL mGridShow;
38  BOOL mGridSnap;
39  CString mReferencePlan;
40  CString mReferenceFront;
41  CString mReferenceSide;
42  int mGridSize;
43  //}}AFX_DATA
44 
45 
46 // Overrides
47  // ClassWizard generated virtual function overrides
48  //{{AFX_VIRTUAL(GridProps)
49  protected:
50  virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
51  //}}AFX_VIRTUAL
52 
53 // Implementation
54 protected:
56 
57  // Generated message map functions
58  //{{AFX_MSG(GridProps)
59  afx_msg void OnFilePlan();
60  afx_msg void OnFileFront();
61  afx_msg void OnFileSide();
62  //}}AFX_MSG
63  DECLARE_MESSAGE_MAP()
64 };
65 
66 //{{AFX_INSERT_LOCATION}}
67 // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
68 
69 #endif