]> icculus.org git repositories - icculus/iodoom3.git/blob - neo/tools/radiant/RotateDlg.cpp
Various Mac OS X tweaks to get this to build. Probably breaking things.
[icculus/iodoom3.git] / neo / tools / radiant / RotateDlg.cpp
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
42 /////////////////////////////////////////////////////////////////////////////
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
80 /////////////////////////////////////////////////////////////////////////////
81 // CRotateDlg message handlers
82
83 void CRotateDlg::OnOK() 
84 {
85   OnApply();
86   CDialog::OnOK();
87 }
88
89 void CRotateDlg::OnApply() 
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
103 BOOL CRotateDlg::OnInitDialog() 
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
134 void CRotateDlg::ApplyNoPaint()
135 {
136
137 }