]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - contrib/bobtoolz/dialogs/pathplotterdialog.cpp
uncrustify! now the code is only ugly on the *inside*
[xonotic/netradiant.git] / contrib / bobtoolz / dialogs / pathplotterdialog.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 // PathPlotterDialog.cpp : implementation file
21 //
22
23 #include "../StdAfx.h"
24 #include "../bobtoolz.h"
25 #include "PathPlotterDialog.h"
26
27 #ifdef _DEBUG
28 #define new DEBUG_NEW
29 #undef THIS_FILE
30 static char THIS_FILE[] = __FILE__;
31 #endif
32
33 /////////////////////////////////////////////////////////////////////////////
34 // CPathPlotterDialog dialog
35
36
37 CPathPlotterDialog::CPathPlotterDialog( CWnd* pParent /*=NULL*/ )
38         : CDialog( CPathPlotterDialog::IDD, pParent ){
39         //{{AFX_DATA_INIT(CPathPlotterDialog)
40         m_fGravity = -800.0f;
41         m_fMultiplier = 3.0f;
42         m_bNoUpdate = FALSE;
43         m_nPoints = 25;
44         m_bShowExtra = FALSE;
45         //}}AFX_DATA_INIT
46 }
47
48
49 void CPathPlotterDialog::DoDataExchange( CDataExchange* pDX ){
50         CDialog::DoDataExchange( pDX );
51         //{{AFX_DATA_MAP(CPathPlotterDialog)
52         DDX_Text( pDX, IDC_GRAVITY_EDIT, m_fGravity );
53         DDV_MinMaxFloat( pDX, m_fGravity, -10000.f, -1.f );
54         DDX_Text( pDX, IDC_MULTIPLIER_EDIT, m_fMultiplier );
55         DDV_MinMaxFloat( pDX, m_fMultiplier, 1.f, 10.f );
56         DDX_Check( pDX, IDC_NOUPDATE_CHECK, m_bNoUpdate );
57         DDX_Text( pDX, IDC_POINTCOUNT_EDIT, m_nPoints );
58         DDV_MinMaxInt( pDX, m_nPoints, 1, 1000 );
59         DDX_Check( pDX, IDC_SHOWEXTRA_CHECK, m_bShowExtra );
60         //}}AFX_DATA_MAP
61 }
62
63
64 BEGIN_MESSAGE_MAP( CPathPlotterDialog, CDialog )
65 //{{AFX_MSG_MAP(CPathPlotterDialog)
66 ON_BN_CLICKED( IDYES, OnYes )
67 ON_BN_CLICKED( IDNO, OnNo )
68 //}}AFX_MSG_MAP
69 END_MESSAGE_MAP()
70
71 /////////////////////////////////////////////////////////////////////////////
72 // CPathPlotterDialog message handlers
73
74 void CPathPlotterDialog::OnYes(){
75         if ( UpdateData() ) {
76                 EndModalLoop( IDYES );
77         }
78 }
79
80 void CPathPlotterDialog::OnNo(){
81         EndModalLoop( IDNO );
82 }