doom3-gpl
Doom 3 GPL source release
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
RotateDlg.cpp
Go to the documentation of this file.
1 /*
2 ===========================================================================
3 
4 Doom 3 GPL Source Code
5 Copyright (C) 1999-2011 id Software LLC, a ZeniMax Media company.
6 
7 This file is part of the Doom 3 GPL Source Code (?Doom 3 Source Code?).
8 
9 Doom 3 Source Code is free software: you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation, either version 3 of the License, or
12 (at your option) any later version.
13 
14 Doom 3 Source Code is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18 
19 You should have received a copy of the GNU General Public License
20 along with Doom 3 Source Code. If not, see <http://www.gnu.org/licenses/>.
21 
22 In addition, the Doom 3 Source Code is also subject to certain additional terms. You should have received a copy of these additional terms immediately following the terms and conditions of the GNU General Public License which accompanied the Doom 3 Source Code. If not, please request a copy in writing from id Software at the address below.
23 
24 If you have questions concerning this license or the applicable additional terms, you may contact in writing id Software LLC, c/o ZeniMax Media Inc., Suite 120, Rockville, Maryland 20850 USA.
25 
26 ===========================================================================
27 */
28 
29 #include "../../idlib/precompiled.h"
30 #pragma hdrstop
31 
32 #include "qe3.h"
33 #include "Radiant.h"
34 #include "RotateDlg.h"
35 
36 #ifdef _DEBUG
37 #define new DEBUG_NEW
38 #undef THIS_FILE
39 static char THIS_FILE[] = __FILE__;
40 #endif
41 
43 // CRotateDlg dialog
44 
45 
46 CRotateDlg::CRotateDlg(CWnd* pParent /*=NULL*/)
47  : CDialog(CRotateDlg::IDD, pParent)
48 {
49  //{{AFX_DATA_INIT(CRotateDlg)
50  m_strX = _T("");
51  m_strY = _T("");
52  m_strZ = _T("");
53  //}}AFX_DATA_INIT
54 }
55 
56 
57 void CRotateDlg::DoDataExchange(CDataExchange* pDX)
58 {
59  CDialog::DoDataExchange(pDX);
60  //{{AFX_DATA_MAP(CRotateDlg)
61  DDX_Control(pDX, IDC_SPIN3, m_wndSpin3);
62  DDX_Control(pDX, IDC_SPIN2, m_wndSpin2);
63  DDX_Control(pDX, IDC_SPIN1, m_wndSpin1);
64  DDX_Text(pDX, IDC_ROTX, m_strX);
65  DDX_Text(pDX, IDC_ROTY, m_strY);
66  DDX_Text(pDX, IDC_ROTZ, m_strZ);
67  //}}AFX_DATA_MAP
68 }
69 
70 
71 BEGIN_MESSAGE_MAP(CRotateDlg, CDialog)
72  //{{AFX_MSG_MAP(CRotateDlg)
73  ON_BN_CLICKED(IDC_APPLY, OnApply)
74  ON_NOTIFY(UDN_DELTAPOS, IDC_SPIN1, OnDeltaposSpin1)
75  ON_NOTIFY(UDN_DELTAPOS, IDC_SPIN2, OnDeltaposSpin2)
76  ON_NOTIFY(UDN_DELTAPOS, IDC_SPIN3, OnDeltaposSpin3)
77  //}}AFX_MSG_MAP
78 END_MESSAGE_MAP()
79 
81 // CRotateDlg message handlers
82 
83 void CRotateDlg::OnOK()
84 {
85  OnApply();
86  CDialog::OnOK();
87 }
88 
90 {
91  UpdateData(TRUE);
92  float f = atof(m_strX);
93  if (f != 0.0)
94  Select_RotateAxis(0,f);
95  f = atof(m_strY);
96  if (f != 0.0)
97  Select_RotateAxis(1,f);
98  f = atof(m_strZ);
99  if (f != 0.0)
100  Select_RotateAxis(2,f);
101 }
102 
104 {
105  CDialog::OnInitDialog();
106  m_wndSpin1.SetRange(0, 359);
107  m_wndSpin2.SetRange(0, 359);
108  m_wndSpin3.SetRange(0, 359);
109  return TRUE; // return TRUE unless you set the focus to a control
110  // EXCEPTION: OCX Property Pages should return FALSE
111 }
112 
113 void CRotateDlg::OnDeltaposSpin1(NMHDR* pNMHDR, LRESULT* pResult)
114 {
115  NM_UPDOWN* pNMUpDown = (NM_UPDOWN*)pNMHDR;
116  Select_RotateAxis(0, pNMUpDown->iDelta);
117  *pResult = 0;
118 }
119 
120 void CRotateDlg::OnDeltaposSpin2(NMHDR* pNMHDR, LRESULT* pResult)
121 {
122  NM_UPDOWN* pNMUpDown = (NM_UPDOWN*)pNMHDR;
123  Select_RotateAxis(1, pNMUpDown->iDelta);
124  *pResult = 0;
125 }
126 
127 void CRotateDlg::OnDeltaposSpin3(NMHDR* pNMHDR, LRESULT* pResult)
128 {
129  NM_UPDOWN* pNMUpDown = (NM_UPDOWN*)pNMHDR;
130  Select_RotateAxis(2, pNMUpDown->iDelta);
131  *pResult = 0;
132 }
133 
135 {
136 
137 }
#define IDC_SPIN2
void ApplyNoPaint()
Definition: RotateDlg.cpp:134
CSpinButtonCtrl m_wndSpin3
Definition: RotateDlg.h:49
CString m_strZ
Definition: RotateDlg.h:54
#define IDC_SPIN1
afx_msg void OnDeltaposSpin2(NMHDR *pNMHDR, LRESULT *pResult)
Definition: RotateDlg.cpp:120
#define BOOL
Definition: mprintf.c:71
afx_msg void OnDeltaposSpin3(NMHDR *pNMHDR, LRESULT *pResult)
Definition: RotateDlg.cpp:127
CRotateDlg(CWnd *pParent=NULL)
Definition: RotateDlg.cpp:46
#define IDC_SPIN3
CString m_strY
Definition: RotateDlg.h:53
#define IDC_APPLY
afx_msg void OnDeltaposSpin1(NMHDR *pNMHDR, LRESULT *pResult)
Definition: RotateDlg.cpp:113
tuple f
Definition: idal.py:89
CSpinButtonCtrl m_wndSpin1
Definition: RotateDlg.h:51
#define IDC_ROTY
CSpinButtonCtrl m_wndSpin2
Definition: RotateDlg.h:50
#define TRUE
Definition: mprintf.c:69
virtual void DoDataExchange(CDataExchange *pDX)
Definition: RotateDlg.cpp:57
#define IDC_ROTX
afx_msg void OnApply()
Definition: RotateDlg.cpp:89
#define IDC_ROTZ
virtual BOOL OnInitDialog()
Definition: RotateDlg.cpp:103
CString m_strX
Definition: RotateDlg.h:52