/* * Sphere2NurbsDialog.cpp * * Copyright (C) 1999 Stephen F. White, 2003 Thomas Rothermel * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program (see the file "COPYING" for details); if * not, write to the Free Software Foundation, Inc., 675 Mass Ave, * Cambridge, MA 02139, USA. */ #include "stdafx.h" #include "Sphere2NurbsDialog.h" #include #include #include "swt.h" #include "resource.h" #include "DuneApp.h" Sphere2NurbsDialog::Sphere2NurbsDialog(SWND parent, int narcslong, int narcslat, int uDegree, int vDegree, bool spherical) : Dialog(parent, IDD_SPHERE2NURBS) { _narcslong = narcslong; _narcslat = narcslat; _uDegree = uDegree; _vDegree = vDegree; _spherical = spherical; LoadData(); } Sphere2NurbsDialog::~Sphere2NurbsDialog() { } void Sphere2NurbsDialog::SaveData() { char buf[128]; swGetText(swGetDialogItem(_dlg, IDC_SPHERE_NARCSLONG), buf, 128); _narcslong = atoi(buf); swGetText(swGetDialogItem(_dlg, IDC_SPHERE_NARCSLAT), buf, 128); _narcslat = atoi(buf); swGetText(swGetDialogItem(_dlg, IDC_SPHERE_U_DEGREE), buf, 128); _uDegree = atoi(buf); swGetText(swGetDialogItem(_dlg, IDC_SPHERE_V_DEGREE), buf, 128); _vDegree = atoi(buf); } bool Sphere2NurbsDialog::Validate() { bool valid = true; if (_spherical) { if (_narcslong < 3) valid = false; } else { if (_narcslong < 2) valid = false; } if (_narcslat < 3) valid = false; if (valid) valid = _uDegree > 0 && _vDegree > 0; return valid; } void Sphere2NurbsDialog::LoadData() { char buf[128]; snprintf(buf, 128, "%d", _narcslong); swSetText(swGetDialogItem(_dlg, IDC_SPHERE_NARCSLONG), buf); snprintf(buf, 128, "%d", _narcslat); swSetText(swGetDialogItem(_dlg, IDC_SPHERE_NARCSLAT), buf); snprintf(buf, 128, "%d", _uDegree); swSetText(swGetDialogItem(_dlg, IDC_SPHERE_U_DEGREE), buf); snprintf(buf, 128, "%d", _vDegree); swSetText(swGetDialogItem(_dlg, IDC_SPHERE_V_DEGREE), buf); }