Fri, 17 May 2013 03:11:47 +0300
Fixed: rotation point dialog didn't accept negative custom coords; objects were rotated by the grid angle's half
/* * LDForge: LDraw parts authoring CAD * Copyright (C) 2013 Santeri Piippo * * 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 3 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. If not, see <http://www.gnu.org/licenses/>. */ #include <QDialog> #include <QLineEdit> #include <QSpinBox> #include <QDialogButtonBox> #include <QFileDialog> #include <QLabel> #include <QPushButton> #include <QBoxLayout> #include <QGridLayout> #include "dialogs.h" #include "widgets.h" #include "gui.h" #include "gldraw.h" #include "docs.h" #include "file.h" #include "dialogs.h" extern_cfg (str, io_ldpath); // ============================================================================= OverlayDialog::OverlayDialog (QWidget* parent, Qt::WindowFlags f) : QDialog (parent, f) { rb_camera = new RadioBox ("Camera", {}, 0, Qt::Horizontal, this); for (int i = 0; i < 6; ++i) { if (i == 3) rb_camera->rowBreak (); rb_camera->addButton (g_CameraNames[i]); } GL::Camera cam = g_win->R ()->camera (); if (cam != GL::Free) rb_camera->setValue ((int) cam); QGroupBox* gb_image = new QGroupBox ("Image", this); QLabel* lb_fpath = new QLabel ("File:"); le_fpath = new QLineEdit; le_fpath->setFocus (); QLabel* lb_ofs = new QLabel ("Origin:"); btn_fpath = new QPushButton; btn_fpath->setIcon (getIcon ("folder")); connect (btn_fpath, SIGNAL (clicked ()), this, SLOT (slot_fpath ())); sb_ofsx = new QSpinBox; sb_ofsy = new QSpinBox; sb_ofsx->setRange (0, 10000); sb_ofsy->setRange (0, 10000); sb_ofsx->setSuffix (" px"); sb_ofsy->setSuffix (" px"); QLabel* lb_dimens = new QLabel ("Dimensions:"); dsb_lwidth = new QDoubleSpinBox; dsb_lheight = new QDoubleSpinBox; dsb_lwidth->setRange (0.0f, 10000.0f); dsb_lheight->setRange (0.0f, 10000.0f); dsb_lwidth->setSuffix (" LDU"); dsb_lheight->setSuffix (" LDU"); dsb_lwidth->setSpecialValueText ("Automatic"); dsb_lheight->setSpecialValueText ("Automatic"); dbb_buttons = makeButtonBox (*this); dbb_buttons->addButton (QDialogButtonBox::Help); connect (dbb_buttons, SIGNAL (helpRequested ()), this, SLOT (slot_help())); QHBoxLayout* fpathlayout = new QHBoxLayout; fpathlayout->addWidget (lb_fpath); fpathlayout->addWidget (le_fpath); fpathlayout->addWidget (btn_fpath); QGridLayout* metalayout = new QGridLayout; metalayout->addWidget (lb_ofs, 0, 0); metalayout->addWidget (sb_ofsx, 0, 1); metalayout->addWidget (sb_ofsy, 0, 2); metalayout->addWidget (lb_dimens, 1, 0); metalayout->addWidget (dsb_lwidth, 1, 1); metalayout->addWidget (dsb_lheight, 1, 2); QVBoxLayout* imagelayout = new QVBoxLayout (gb_image); imagelayout->addLayout (fpathlayout); imagelayout->addLayout (metalayout); QVBoxLayout* layout = new QVBoxLayout (this); layout->addWidget (rb_camera); layout->addWidget (gb_image); layout->addWidget (dbb_buttons); connect (dsb_lwidth, SIGNAL (valueChanged (double)), this, SLOT (slot_dimensionsChanged ())); connect (dsb_lheight, SIGNAL (valueChanged (double)), this, SLOT (slot_dimensionsChanged ())); connect (rb_camera, SIGNAL (valueChanged (int)), this, SLOT (fillDefaults (int))); slot_dimensionsChanged (); fillDefaults (cam); } void OverlayDialog::fillDefaults (int newcam) { overlayMeta& info = g_overlays[newcam]; if (info.img != null) { le_fpath->setText (info.fname); sb_ofsx->setValue (info.ox); sb_ofsy->setValue (info.oy); dsb_lwidth->setValue (info.lw); dsb_lheight->setValue (info.lh); } else { le_fpath->setText (""); sb_ofsx->setValue (0); sb_ofsy->setValue (0); dsb_lwidth->setValue (0.0f); dsb_lheight->setValue (0.0f); } } str OverlayDialog::fpath () const { return le_fpath->text (); } ushort OverlayDialog::ofsx () const { return sb_ofsx->value (); } ushort OverlayDialog::ofsy () const { return sb_ofsy->value (); } double OverlayDialog::lwidth () const { return dsb_lwidth->value (); } double OverlayDialog::lheight () const { return dsb_lheight->value (); } int OverlayDialog::camera () const { return rb_camera->value (); } void OverlayDialog::slot_fpath () { le_fpath->setText (QFileDialog::getOpenFileName (null, "Overlay image")); } void OverlayDialog::slot_help () { showDocumentation (g_docs_overlays); } void OverlayDialog::slot_dimensionsChanged () { bool enable = (dsb_lwidth->value () != 0) || (dsb_lheight->value () != 0); dbb_buttons->button (QDialogButtonBox::Ok)->setEnabled (enable); } ReplaceCoordsDialog::ReplaceCoordsDialog (QWidget* parent, Qt::WindowFlags f) : QDialog (parent, f) { cbg_axes = makeAxesBox (); lb_search = new QLabel ("Search:"); lb_replacement = new QLabel ("Replacement:"); dsb_search = new QDoubleSpinBox; dsb_search->setRange (-10000.0f, 10000.0f); dsb_replacement = new QDoubleSpinBox; dsb_replacement->setRange (-10000.0f, 10000.0f); QGridLayout* valueLayout = new QGridLayout; valueLayout->setColumnStretch (1, 1); valueLayout->addWidget (lb_search, 0, 0); valueLayout->addWidget (dsb_search, 0, 1); valueLayout->addWidget (lb_replacement, 1, 0); valueLayout->addWidget (dsb_replacement, 1, 1); QVBoxLayout* layout = new QVBoxLayout; layout->addWidget (cbg_axes); layout->addLayout (valueLayout); layout->addWidget (makeButtonBox (*this)); setLayout (layout); } double ReplaceCoordsDialog::searchValue () const { return dsb_search->value (); } double ReplaceCoordsDialog::replacementValue () const { return dsb_replacement->value (); } vector<int> ReplaceCoordsDialog::axes () const { return cbg_axes->checkedValues (); } // ============================================================================= // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // ============================================================================= SetContentsDialog::SetContentsDialog (QWidget* parent, Qt::WindowFlags f) : QDialog (parent, f) { setWindowTitle (APPNAME ": Set Contents"); lb_error = new QLabel; lb_errorIcon = new QLabel; lb_contents = new QLabel ("Set contents:", parent); le_contents = new QLineEdit (parent); le_contents->setWhatsThis ("The LDraw code of this object. The code written " "here is expected to be valid LDraw code, invalid code here results " "the object being turned into an error object. Please do refer to the " "<a href=\"http://www.ldraw.org/article/218.html\">official file format " "standard</a> for further information."); le_contents->setMinimumWidth (384); QHBoxLayout* bottomRow = new QHBoxLayout; bottomRow->addWidget (lb_errorIcon); bottomRow->addWidget (lb_error); bottomRow->addWidget (makeButtonBox (*this)); QVBoxLayout* layout = new QVBoxLayout (this); layout->addWidget (lb_contents); layout->addWidget (le_contents); layout->addLayout (bottomRow); setWindowTitle ("Set Contents"); setWindowIcon (getIcon ("set-contents")); } void SetContentsDialog::setObject (LDObject* obj) { le_contents->setText (obj->getContents ().chars()); if (obj->getType() == LDObject::Gibberish) { lb_error->setText (fmt ("<span style=\"color: #900\">%s</span>", static_cast<LDGibberish*> (obj)->reason.chars())); QPixmap errorPixmap = getIcon ("error").scaledToHeight (16); lb_errorIcon->setPixmap (errorPixmap); } } str SetContentsDialog::text () const { return le_contents->text (); } // ======================================================================================================================================== LDrawPathDialog::LDrawPathDialog (const bool validDefault, QWidget* parent, Qt::WindowFlags f) : QDialog (parent, f), m_validDefault (validDefault) { QLabel* lb_description = null; lb_resolution = new QLabel ("---"); if (validDefault == false) lb_description = new QLabel ("Please input your LDraw directory"); QLabel* lb_path = new QLabel ("LDraw path:"); le_path = new QLineEdit; btn_findPath = new QPushButton; btn_findPath->setIcon (getIcon ("folder")); btn_tryConfigure = new QPushButton ("Configure"); btn_tryConfigure->setIcon (getIcon ("settings")); btn_cancel = new QPushButton; if (validDefault == false) { btn_cancel->setText ("Exit"); btn_cancel->setIcon (getIcon ("exit")); } else { btn_cancel->setText ("Cancel"); btn_cancel->setIcon (getIcon ("cancel")); } dbb_buttons = new QDialogButtonBox (QDialogButtonBox::Ok); dbb_buttons->addButton (btn_tryConfigure, QDialogButtonBox::ActionRole); dbb_buttons->addButton (btn_cancel, QDialogButtonBox::RejectRole); okButton ()->setEnabled (false); QHBoxLayout* inputLayout = new QHBoxLayout; inputLayout->addWidget (lb_path); inputLayout->addWidget (le_path); inputLayout->addWidget (btn_findPath); QVBoxLayout* mainLayout = new QVBoxLayout; if (validDefault == false) mainLayout->addWidget (lb_description); mainLayout->addLayout (inputLayout); mainLayout->addWidget (lb_resolution); mainLayout->addWidget (dbb_buttons); setLayout (mainLayout); connect (le_path, SIGNAL (textEdited ()), this, SLOT (slot_tryConfigure ())); connect (btn_findPath, SIGNAL (clicked ()), this, SLOT (slot_findPath ())); connect (btn_tryConfigure, SIGNAL (clicked ()), this, SLOT (slot_tryConfigure ())); connect (dbb_buttons, SIGNAL (accepted ()), this, SLOT (accept ())); connect (dbb_buttons, SIGNAL (rejected ()), this, (validDefault) ? SLOT (reject ()) : SLOT (slot_exit ())); setPath (io_ldpath); if (validDefault) slot_tryConfigure (); } // ======================================================================================================================================== QPushButton* LDrawPathDialog::okButton () { return dbb_buttons->button (QDialogButtonBox::Ok); } // ======================================================================================================================================== void LDrawPathDialog::setPath (str path) { le_path->setText (path); } // ======================================================================================================================================== str LDrawPathDialog::path () const { return le_path->text (); } // ======================================================================================================================================== void LDrawPathDialog::slot_findPath () { str newpath = QFileDialog::getExistingDirectory (this, "Find LDraw Path"); if (~newpath > 0 && newpath != path ()) { setPath (newpath); slot_tryConfigure (); } } // ======================================================================================================================================== void LDrawPathDialog::slot_exit () { exit (1); } // ======================================================================================================================================== void LDrawPathDialog::slot_tryConfigure () { if (LDPaths::tryConfigure (path ()) == false) { lb_resolution->setText (fmt ("<span style=\"color:red; font-weight: bold;\">%s</span>", LDPaths::getError().chars ())); okButton ()->setEnabled (false); return; } lb_resolution->setText ("<span style=\"color: #7A0; font-weight: bold;\">OK!</span>"); okButton ()->setEnabled (true); } // ============================================================================= // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // ============================================================================= NewPartDialog::NewPartDialog (QWidget* parent, Qt::WindowFlags f) : QDialog (parent, f) { lb_brickIcon = new QLabel; lb_brickIcon->setPixmap (getIcon ("brick")); lb_name = new QLabel ("Name:"); le_name = new QLineEdit; le_name->setMinimumWidth (320); lb_author = new QLabel ("Author:"); le_author = new QLineEdit; rb_license = new RadioBox ("License", { "CCAL Redistributable", "Non-redistributable", "None", }, CCAL); rb_BFC = new RadioBox ("BFC Winding", { "CCW", "CW", "None" }, CCW); QHBoxLayout* boxes = new QHBoxLayout; boxes->addWidget (rb_license); boxes->addWidget (rb_BFC); QGridLayout* layout = new QGridLayout; layout->addWidget (lb_brickIcon, 0, 0); layout->addWidget (lb_name, 0, 1); layout->addWidget (le_name, 0, 2); layout->addWidget (lb_author, 1, 1); layout->addWidget (le_author, 1, 2); layout->addLayout (boxes, 2, 1, 1, 2); layout->addWidget (makeButtonBox (*this), 3, 2); setLayout (layout); setWindowTitle ("New Part"); } // ============================================================================= // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // ============================================================================= void NewPartDialog::StaticDialog () { NewPartDialog dlg (g_win); if (dlg.exec ()) { newFile (); short idx; str author = dlg.le_author->text (); vector<LDObject*>& objs = g_curfile->m_objs; idx = dlg.rb_BFC->value (); const LDBFC::Type BFCType = (idx == CCW) ? LDBFC::CertifyCCW : (idx == CW) ? LDBFC::CertifyCW : LDBFC::NoCertify; idx = dlg.rb_license->value (); const char* license = (idx == CCAL) ? "Redistributable under CCAL version 2.0 : see CAreadme.txt" : (idx == NonCA) ? "Not redistributable : see NonCAreadme.txt" : null; objs.push_back (new LDComment (dlg.le_name->text ())); objs.push_back (new LDComment ("Name: <untitled>.dat")); objs.push_back (new LDComment (fmt ("Author: %s", author.chars()))); objs.push_back (new LDComment (fmt ("!LDRAW_ORG Unofficial_Part"))); if (license != null) objs.push_back (new LDComment (fmt ("!LICENSE %s", license))); objs.push_back (new LDEmpty); objs.push_back (new LDBFC (BFCType)); objs.push_back (new LDEmpty); g_win->fullRefresh (); } } RotationPointDialog::RotationPointDialog (QWidget* parent, Qt::WindowFlags f) : QDialog (parent, f) { rb_rotpoint = new RadioBox ("Rotation Point", { "Object center", "Custom" }, 0, Qt::Vertical, this); connect (rb_rotpoint, SIGNAL (valueChanged (int)), this, SLOT (radioBoxChanged ())); gb_customPos = new QGroupBox ("Custom point", this); dsb_customX = new QDoubleSpinBox; dsb_customY = new QDoubleSpinBox; dsb_customZ = new QDoubleSpinBox; for (auto x : initlist<QDoubleSpinBox*> ({dsb_customX, dsb_customY, dsb_customZ})) x->setRange (-10000.0f, 10000.0f); QGridLayout* customLayout = new QGridLayout (gb_customPos); customLayout->setColumnStretch (1, 1); customLayout->addWidget (new QLabel ("X"), 0, 0); customLayout->addWidget (dsb_customX, 0, 1); customLayout->addWidget (new QLabel ("Y"), 1, 0); customLayout->addWidget (dsb_customY, 1, 1); customLayout->addWidget (new QLabel ("Z"), 2, 0); customLayout->addWidget (dsb_customZ, 2, 1); QVBoxLayout* layout = new QVBoxLayout (this); layout->addWidget (rb_rotpoint); layout->addWidget (gb_customPos); layout->addWidget (makeButtonBox (*this)); } bool RotationPointDialog::custom () const { return rb_rotpoint->value () == 1; } vertex RotationPointDialog::customPos () const { return vertex (dsb_customX->value (), dsb_customY->value (), dsb_customZ->value ()); } void RotationPointDialog::setCustom (bool custom) { rb_rotpoint->setValue (custom == true ? 1 : 0); gb_customPos->setEnabled (custom); } void RotationPointDialog::setCustomPos (const vertex& pos) { dsb_customX->setValue (pos[X]); dsb_customY->setValue (pos[Y]); dsb_customZ->setValue (pos[Z]); } void RotationPointDialog::radioBoxChanged () { setCustom (rb_rotpoint->value ()); }