-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathKosletDlg.h
55 lines (44 loc) · 1.01 KB
/
KosletDlg.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
// KosletDlg.h : header file
//
#pragma once
#include "CWorldParams.h"
// CKosletDlg dialog
class CKosletDlg : public CDialog
{
// Construction
public:
CKosletDlg(CWnd* pParent = nullptr); // standard constructor
void PutValues(CWorldParams& wp);
void GetValues(CWorldParams& wp);
// Dialog Data
#ifdef AFX_DESIGN_TIME
enum { IDD = IDD_KOSLET_DIALOG };
#endif
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
// Implementation
protected:
HICON m_hIcon;
// Generated message map functions
virtual BOOL OnInitDialog();
afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
afx_msg void OnPaint();
afx_msg HCURSOR OnQueryDragIcon();
DECLARE_MESSAGE_MAP()
int nG;
int nStepLength{ 2 };
int nCommon;
int nGiantStar;
int nBlackhole;
int nAntiGCommon;
int nAntiGGiantStar;
int nAntiGBlackhole;
CComboBox cmbTrail;
CComboBox cmbExplosion;
int nTrail, nExplosion;
BOOL bSaveSession;
BOOL bOSD;
afx_msg void OnClickedButtonAbout();
virtual void OnOK();
CComboBox cmbStepLength;
};