]> git.xonotic.org Git - xonotic/netradiant.git/blob - contrib/bobtoolz/dialogs/DoorDialog.cpp
reformat code! now the code is only ugly on the *inside*
[xonotic/netradiant.git] / contrib / bobtoolz / dialogs / DoorDialog.cpp
1 /*
2    BobToolz plugin for GtkRadiant
3    Copyright (C) 2001 Gordon Biggans
4
5    This library is free software; you can redistribute it and/or
6    modify it under the terms of the GNU Lesser General Public
7    License as published by the Free Software Foundation; either
8    version 2.1 of the License, or (at your option) any later version.
9
10    This library is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    Lesser General Public License for more details.
14
15    You should have received a copy of the GNU Lesser General Public
16    License along with this library; if not, write to the Free Software
17    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18  */
19
20 // DoorDialog.cpp : implementation file
21 //
22
23 #include "../StdAfx.h"
24 #include "DoorDialog.h"
25
26 /////////////////////////////////////////////////////////////////////////////
27 // CDoorDialog dialog
28
29
30 CDoorDialog::CDoorDialog(CWnd *pParent /*=NULL*/ )
31         : CDialog(CDoorDialog::IDD, pParent)
32 {
33     //{{AFX_DATA_INIT(CDoorDialog)
34     m_fbTextureName = _T("");
35     m_bSclMainHor = TRUE;
36     m_bSclMainVert = TRUE;
37     m_bSclTrimHor = TRUE;
38     m_bSclTrimVert = FALSE;
39     m_trimTextureName = _T("");
40     m_trimTexSetBox = _T("");
41     m_mainTexSetBox = _T("");
42     m_doorDirection = -1;
43     //}}AFX_DATA_INIT
44 }
45
46
47 void CDoorDialog::DoDataExchange(CDataExchange *pDX)
48 {
49     CDialog::DoDataExchange(pDX);
50     //{{AFX_DATA_MAP(CDoorDialog)
51     DDX_Text(pDX, IDC_FBTEXTURE_EDIT, m_fbTextureName);
52     DDX_Check(pDX, IDC_TEXSCALE1_CHECK, m_bSclMainHor);
53     DDX_Check(pDX, IDC_TEXSCALE2_CHECK, m_bSclMainVert);
54     DDX_Check(pDX, IDC_TEXSCALE3_CHECK, m_bSclTrimHor);
55     DDX_Check(pDX, IDC_TEXSCALE4_CHECK, m_bSclTrimVert);
56     DDX_Text(pDX, IDC_TRIMTEXTURE_EDIT, m_trimTextureName);
57     DDX_CBString(pDX, IDC_TRIMTEX_COMBO, m_trimTexSetBox);
58     DDX_CBString(pDX, IDC_MAINTEX_COMBO, m_mainTexSetBox);
59     DDX_Radio(pDX, IDC_DIR_NS_RADIO, m_doorDirection);
60     //}}AFX_DATA_MAP
61 }
62
63
64 BEGIN_MESSAGE_MAP( CDoorDialog, CDialog
65 )
66 //{{AFX_MSG_MAP(CDoorDialog)
67 ON_BN_CLICKED( IDC_SET_MAINTEX_BTN, OnSetMaintexBtn
68 )
69 ON_BN_CLICKED( IDC_SET_TRIMTEX_BTN, OnSetTrimtexBtn
70 )
71
72 //}}AFX_MSG_MAP
73 END_MESSAGE_MAP()
74
75 /////////////////////////////////////////////////////////////////////////////
76 // CDoorDialog message handlers
77
78 void CDoorDialog::OnSetMaintexBtn()
79 {
80     UpdateData(TRUE);
81     m_fbTextureName = m_mainTexSetBox;
82     UpdateData(FALSE);
83 }
84
85 void CDoorDialog::OnSetTrimtexBtn()
86 {
87     UpdateData(TRUE);
88     m_trimTextureName = m_trimTexSetBox;
89     UpdateData(FALSE);
90 }