Sat, 05 Sep 2015 23:55:06 +0300
Refactor LDDocument's API
/* * LDForge: LDraw parts authoring CAD * Copyright (C) 2013 - 2015 Teemu 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 <QGridLayout> #include <QMessageBox> #include <QEvent> #include <QContextMenuEvent> #include <QMenuBar> #include <QStatusBar> #include <QSplitter> #include <QListWidget> #include <QToolButton> #include <QComboBox> #include <QDialogButtonBox> #include <QToolBar> #include <QProgressBar> #include <QLabel> #include <QFileDialog> #include <QPushButton> #include <QCoreApplication> #include <QTimer> #include <QMetaMethod> #include <QSettings> #include "main.h" #include "glRenderer.h" #include "mainwindow.h" #include "ldDocument.h" #include "miscallenous.h" #include "colors.h" #include "editHistory.h" #include "radioGroup.h" #include "addObjectDialog.h" #include "messageLog.h" #include "ui_mainwindow.h" #include "primitives.h" #include "editmodes/abstractEditMode.h" #include "toolsets/extprogramtoolset.h" #include "toolsets/toolset.h" #include "dialogs/configdialog.h" #include "guiutilities.h" #include "glCompiler.h" static bool g_isSelectionLocked = false; static QMap<QAction*, QKeySequence> g_defaultShortcuts; ConfigOption (bool ColorizeObjectsList = true) ConfigOption (QString QuickColorToolbar = "4:25:14:27:2:3:11:1:22:|:0:72:71:15") ConfigOption (bool ListImplicitFiles = false) ConfigOption (QStringList HiddenToolbars) // --------------------------------------------------------------------------------------------------------------------- // MainWindow::MainWindow (QWidget* parent, Qt::WindowFlags flags) : QMainWindow (parent, flags), m_configOptions (this), m_guiUtilities (new GuiUtilities (this)), ui (*new Ui_MainWindow), m_externalPrograms (nullptr), m_settings (makeSettings (this)), m_currentDocument (nullptr) { g_win = this; ui.setupUi (this); m_updatingTabs = false; m_renderer = new GLRenderer (this); m_tabs = new QTabBar; m_tabs->setTabsClosable (true); ui.verticalLayout->insertWidget (0, m_tabs); // Stuff the renderer into its frame QVBoxLayout* rendererLayout = new QVBoxLayout (ui.rendererFrame); rendererLayout->addWidget (R()); connect (ui.objectList, SIGNAL (itemSelectionChanged()), this, SLOT (slot_selectionChanged())); connect (ui.objectList, SIGNAL (itemDoubleClicked (QListWidgetItem*)), this, SLOT (slot_editObject (QListWidgetItem*))); connect (m_tabs, SIGNAL (currentChanged(int)), this, SLOT (tabSelected())); connect (m_tabs, SIGNAL (tabCloseRequested (int)), this, SLOT (closeTab (int))); if (ActivePrimitiveScanner() != null) connect (ActivePrimitiveScanner(), SIGNAL (workDone()), this, SLOT (updatePrimitives())); else updatePrimitives(); m_msglog = new MessageManager; m_msglog->setRenderer (R()); m_renderer->setMessageLog (m_msglog); m_quickColors = LoadQuickColorList(); setStatusBar (new QStatusBar); updateActions(); // Connect all actions and save default sequences applyToActions ([&](QAction* act) { connect (act, SIGNAL (triggered()), this, SLOT (slot_action())); g_defaultShortcuts[act] = act->shortcut(); }); updateGridToolBar(); updateEditModeActions(); updateRecentFilesMenu(); updateColorToolbar(); updateTitle(); loadShortcuts(); setMinimumSize (300, 200); connect (qApp, SIGNAL (aboutToQuit()), this, SLOT (slot_lastSecondCleanup())); connect (ui.ringToolHiRes, SIGNAL (clicked (bool)), this, SLOT (ringToolHiResClicked (bool))); connect (ui.ringToolSegments, SIGNAL (valueChanged (int)), this, SLOT (circleToolSegmentsChanged())); circleToolSegmentsChanged(); // invoke it manually for initial label text // Examine the toolsets and make a dictionary of tools m_toolsets = Toolset::createToolsets (this); QStringList ignore; for (int i = 0; i < Toolset::staticMetaObject.methodCount(); ++i) { QMetaMethod method = Toolset::staticMetaObject.method (i); ignore.append (QString::fromUtf8 (method.name())); } for (Toolset* toolset : m_toolsets) { const QMetaObject* meta = toolset->metaObject(); if (qobject_cast<ExtProgramToolset*> (toolset)) m_externalPrograms = static_cast<ExtProgramToolset*> (toolset); for (int i = 0; i < meta->methodCount(); ++i) { ToolInfo info; info.method = meta->method (i); info.object = toolset; QString methodName = QString::fromUtf8 (info.method.name()); if (ignore.contains (methodName)) continue; // The method was inherited from base classes QString actionName = "action" + methodName.left (1).toUpper() + methodName.mid (1); QAction* action = findChild<QAction*> (actionName); if (action == nullptr) print ("No action for %1::%2 (looked for %3)\n", meta->className(), methodName, actionName); else m_toolmap[action] = info; } } for (QVariant const& toolbarname : m_configOptions.hiddenToolbars()) { QToolBar* toolbar = findChild<QToolBar*> (toolbarname.toString()); if (toolbar != null) toolbar->hide(); } createBlankDocument(); m_renderer->setDocument (m_currentDocument); // If this is the first start, get the user to configuration. Especially point // them to the profile tab, it's the most important form to fill in. if (m_configOptions.firstStart()) { ConfigDialog* dialog = new ConfigDialog (this, ConfigDialog::ProfileTab); dialog->show(); m_configOptions.setFirstStart (false); } } MainWindow::~MainWindow() { g_win = null; } // --------------------------------------------------------------------------------------------------------------------- // void MainWindow::slot_action() { // Get the name of the sender object and use it to compose the slot name, // then invoke this slot to call the action. QAction* action = qobject_cast<QAction*> (sender()); if (action) { if (m_toolmap.contains (action)) { const ToolInfo& info = m_toolmap[action]; info.method.invoke (info.object, Qt::DirectConnection); } else print ("No tool info for %1!\n", action->objectName()); } endAction(); } // --------------------------------------------------------------------------------------------------------------------- // void MainWindow::endAction() { m_currentDocument->addHistoryStep(); updateDocumentListItem (m_currentDocument); refresh(); } // --------------------------------------------------------------------------------------------------------------------- // void MainWindow::slot_lastSecondCleanup() { delete m_renderer; delete &ui; } // --------------------------------------------------------------------------------------------------------------------- // void MainWindow::updateRecentFilesMenu() { // First, clear any items in the recent files menu for (QAction* recent : m_recentFiles) delete recent; m_recentFiles.clear(); QAction* first = null; for (const QVariant& it : m_configOptions.recentFiles()) { QString file = it.toString(); QAction* recent = new QAction (GetIcon ("open-recent"), file, this); connect (recent, SIGNAL (triggered()), this, SLOT (slot_recentFile())); ui.menuOpenRecent->insertAction (first, recent); m_recentFiles << recent; first = recent; } } // --------------------------------------------------------------------------------------------------------------------- // QList<LDQuickColor> LoadQuickColorList() { QList<LDQuickColor> colors; for (QString colorname : g_win->configBag()->quickColorToolbar().split (":")) { if (colorname == "|") colors << LDQuickColor::getSeparator(); else { LDColor color = colorname.toInt(); if (color.isValid()) colors << LDQuickColor (color, null); } } return colors; } // --------------------------------------------------------------------------------------------------------------------- // void MainWindow::updateColorToolbar() { m_colorButtons.clear(); ui.toolBarColors->clear(); ui.toolBarColors->addAction (ui.actionUncolor); ui.toolBarColors->addSeparator(); for (LDQuickColor& entry : m_quickColors) { if (entry.isSeparator()) { ui.toolBarColors->addSeparator(); } else { QToolButton* colorButton = new QToolButton; colorButton->setIcon (m_guiUtilities->makeColorIcon (entry.color(), 16)); colorButton->setIconSize (QSize (16, 16)); colorButton->setToolTip (entry.color().name()); connect (colorButton, SIGNAL (clicked()), this, SLOT (slot_quickColor())); ui.toolBarColors->addWidget (colorButton); m_colorButtons << colorButton; entry.setToolButton (colorButton); } } updateGridToolBar(); } // --------------------------------------------------------------------------------------------------------------------- // void MainWindow::updateGridToolBar() { // Ensure that the current grid - and only the current grid - is selected. int grid = m_configOptions.grid(); ui.actionGridCoarse->setChecked (grid == Grid::Coarse); ui.actionGridMedium->setChecked (grid == Grid::Medium); ui.actionGridFine->setChecked (grid == Grid::Fine); } // --------------------------------------------------------------------------------------------------------------------- // void MainWindow::updateTitle() { QString title = format (APPNAME " " VERSION_STRING); // Append our current file if we have one if (m_currentDocument) { title += ": "; title += m_currentDocument->getDisplayName(); if (m_currentDocument->getObjectCount() > 0 and m_currentDocument->getObject (0)->type() == OBJ_Comment) { // Append title LDComment* comm = static_cast <LDComment*> (m_currentDocument->getObject (0)); title += format (": %1", comm->text()); } if (m_currentDocument->hasUnsavedChanges()) title += '*'; } #ifdef DEBUG title += " [debug build]"; #elif BUILD_ID != BUILD_RELEASE title += " [pre-release build]"; #endif // DEBUG if (strlen (commitTimeString())) title += format (" (%1)", QString::fromUtf8 (commitTimeString())); setWindowTitle (title); } // --------------------------------------------------------------------------------------------------------------------- // int MainWindow::deleteSelection() { if (selectedObjects().isEmpty()) return 0; LDObjectList selCopy = selectedObjects(); // Delete the objects that were being selected for (LDObject* obj : selCopy) obj->destroy(); refresh(); return selCopy.size(); } // --------------------------------------------------------------------------------------------------------------------- // void MainWindow::buildObjList() { if (not m_currentDocument) return; // Lock the selection while we do this so that refreshing the object list // doesn't trigger selection updating so that the selection doesn't get lost // while this is done. g_isSelectionLocked = true; for (int i = 0; i < ui.objectList->count(); ++i) delete ui.objectList->item (i); ui.objectList->clear(); for (LDObject* obj : m_currentDocument->objects()) { QString descr; switch (obj->type()) { case OBJ_Comment: { descr = static_cast<LDComment*> (obj)->text(); // Remove leading whitespace while (descr[0] == ' ') descr.remove (0, 1); break; } case OBJ_Empty: break; // leave it empty case OBJ_Line: case OBJ_Triangle: case OBJ_Quad: case OBJ_CondLine: { for (int i = 0; i < obj->numVertices(); ++i) { if (i != 0) descr += ", "; descr += obj->vertex (i).toString (true); } break; } case OBJ_Error: { descr = format ("ERROR: %1", obj->asText()); break; } case OBJ_Subfile: { LDSubfile* ref = static_cast<LDSubfile*> (obj); descr = format ("%1 %2, (", ref->fileInfo()->getDisplayName(), ref->position().toString (true)); for (int i = 0; i < 9; ++i) descr += format ("%1%2", ref->transform()[i], (i != 8) ? " " : ""); descr += ')'; break; } case OBJ_BFC: { descr = LDBFC::StatementStrings[int (static_cast<LDBFC*> (obj)->statement())]; break; } case OBJ_Overlay: { LDOverlay* ovl = static_cast<LDOverlay*> (obj); descr = format ("[%1] %2 (%3, %4), %5 x %6", g_CameraNames[ovl->camera()], Basename (ovl->fileName()), ovl->x(), ovl->y(), ovl->width(), ovl->height()); break; } default: { descr = obj->typeName(); break; } } QListWidgetItem* item = new QListWidgetItem (descr); item->setIcon (GetIcon (obj->typeName())); // Use italic font if hidden if (obj->isHidden()) { QFont font = item->font(); font.setItalic (true); item->setFont (font); } // Color gibberish orange on red so it stands out. if (obj->type() == OBJ_Error) { item->setBackground (QColor ("#AA0000")); item->setForeground (QColor ("#FFAA00")); } else if (m_configOptions.colorizeObjectsList() and obj->isColored() and obj->color().isValid() and obj->color() != MainColor and obj->color() != EdgeColor) { // If the object isn't in the main or edge color, draw this list entry in that color. item->setForeground (obj->color().faceColor()); } obj->qObjListEntry = item; ui.objectList->insertItem (ui.objectList->count(), item); } g_isSelectionLocked = false; updateSelection(); scrollToSelection(); } // --------------------------------------------------------------------------------------------------------------------- // void MainWindow::scrollToSelection() { if (selectedObjects().isEmpty()) return; LDObject* obj = selectedObjects().last(); ui.objectList->scrollToItem (obj->qObjListEntry); } // --------------------------------------------------------------------------------------------------------------------- // void MainWindow::slot_selectionChanged() { if (g_isSelectionLocked == true or m_currentDocument == null) return; LDObjectList priorSelection = selectedObjects(); // Get the objects from the object list selection m_currentDocument->clearSelection(); const QList<QListWidgetItem*> items = ui.objectList->selectedItems(); for (LDObject* obj : m_currentDocument->objects()) { for (QListWidgetItem* item : items) { if (item == obj->qObjListEntry) { obj->select(); break; } } } // The select() method calls may have selected additional items (i.e. invertnexts) // Update it all now. updateSelection(); // Update the GL renderer LDObjectList compound = priorSelection + selectedObjects(); removeDuplicates (compound); for (LDObject* obj : compound) R()->compileObject (obj); R()->update(); } // --------------------------------------------------------------------------------------------------------------------- // void MainWindow::slot_recentFile() { QAction* qAct = static_cast<QAction*> (sender()); OpenMainModel (qAct->text()); } // --------------------------------------------------------------------------------------------------------------------- // void MainWindow::slot_quickColor() { QToolButton* button = static_cast<QToolButton*> (sender()); LDColor color = LDColor::nullColor(); for (const LDQuickColor& entry : m_quickColors) { if (entry.toolButton() == button) { color = entry.color(); break; } } if (not color.isValid()) return; for (LDObject* obj : selectedObjects()) { if (not obj->isColored()) continue; // uncolored object obj->setColor (color); R()->compileObject (obj); } endAction(); refresh(); } // --------------------------------------------------------------------------------------------------------------------- // int MainWindow::getInsertionPoint() { // If we have a selection, put the item after it. if (not selectedObjects().isEmpty()) return selectedObjects().last()->lineNumber() + 1; // Otherwise place the object at the end. return m_currentDocument->getObjectCount(); } // --------------------------------------------------------------------------------------------------------------------- // void MainWindow::doFullRefresh() { buildObjList(); m_renderer->hardRefresh(); } // --------------------------------------------------------------------------------------------------------------------- // void MainWindow::refresh() { buildObjList(); m_renderer->update(); } // --------------------------------------------------------------------------------------------------------------------- // void MainWindow::updateSelection() { g_isSelectionLocked = true; QItemSelection itemselect; int top = -1; int bottom = -1; for (LDObject* obj : selectedObjects()) { if (obj->qObjListEntry == null) continue; int row = ui.objectList->row (obj->qObjListEntry); if (top == -1) { top = bottom = row; } else { if (row != bottom + 1) { itemselect.select (ui.objectList->model()->index (top, 0), ui.objectList->model()->index (bottom, 0)); top = -1; } bottom = row; } } if (top != -1) { itemselect.select (ui.objectList->model()->index (top, 0), ui.objectList->model()->index (bottom, 0)); } ui.objectList->selectionModel()->select (itemselect, QItemSelectionModel::ClearAndSelect); g_isSelectionLocked = false; } // --------------------------------------------------------------------------------------------------------------------- // LDColor MainWindow::getSelectedColor() { LDColor result; for (LDObject* obj : selectedObjects()) { if (not obj->isColored()) continue; // This one doesn't use color so it doesn't have a say if (result.isValid() and obj->color() != result) return LDColor::nullColor(); // No consensus in object color if (not result.isValid()) result = obj->color(); } return result; } // --------------------------------------------------------------------------------------------------------------------- // void MainWindow::closeEvent (QCloseEvent* ev) { // Check whether it's safe to close all files. if (not IsSafeToCloseAll()) { ev->ignore(); return; } // Save the toolbar set QStringList hiddenToolbars; for (QToolBar* toolbar : findChildren<QToolBar*>()) { if (toolbar->isHidden()) hiddenToolbars << toolbar->objectName(); } // Save the configuration before leaving. m_configOptions.setHiddenToolbars (hiddenToolbars); syncSettings(); ev->accept(); } // --------------------------------------------------------------------------------------------------------------------- // void MainWindow::spawnContextMenu (const QPoint pos) { const bool single = (selectedObjects().size() == 1); LDObject* singleObj = single ? selectedObjects().first() : nullptr; bool hasSubfiles = false; for (LDObject* obj : selectedObjects()) { if (obj->type() == OBJ_Subfile) { hasSubfiles = true; break; } } QMenu* contextMenu = new QMenu; if (single and singleObj->type() != OBJ_Empty) { contextMenu->addAction (ui.actionEdit); contextMenu->addSeparator(); } contextMenu->addAction (ui.actionCut); contextMenu->addAction (ui.actionCopy); contextMenu->addAction (ui.actionPaste); contextMenu->addAction (ui.actionRemove); contextMenu->addSeparator(); contextMenu->addAction (ui.actionSetColor); if (single) contextMenu->addAction (ui.actionEditRaw); contextMenu->addAction (ui.actionMakeBorders); contextMenu->addAction (ui.actionSetOverlay); contextMenu->addAction (ui.actionClearOverlay); if (hasSubfiles) { contextMenu->addSeparator(); contextMenu->addAction (ui.actionOpenSubfiles); } contextMenu->addSeparator(); contextMenu->addAction (ui.actionModeSelect); contextMenu->addAction (ui.actionModeDraw); contextMenu->addAction (ui.actionModeCircle); if (not selectedObjects().isEmpty()) { contextMenu->addSeparator(); contextMenu->addAction (ui.actionSubfileSelection); } if (R()->camera() != EFreeCamera) { contextMenu->addSeparator(); contextMenu->addAction (ui.actionSetDrawDepth); } contextMenu->exec (pos); } // --------------------------------------------------------------------------------------------------------------------- // void MainWindow::deleteByColor (LDColor color) { LDObjectList objs; for (LDObject* obj : m_currentDocument->objects()) { if (not obj->isColored() or obj->color() != color) continue; objs << obj; } for (LDObject* obj : objs) obj->destroy(); } // --------------------------------------------------------------------------------------------------------------------- // void MainWindow::updateEditModeActions() { const EditModeType mode = R()->currentEditModeType(); ui.actionModeSelect->setChecked (mode == EditModeType::Select); ui.actionModeDraw->setChecked (mode == EditModeType::Draw); ui.actionModeRectangle->setChecked (mode == EditModeType::Rectangle); ui.actionModeCircle->setChecked (mode == EditModeType::Circle); ui.actionModeMagicWand->setChecked (mode == EditModeType::MagicWand); ui.actionModeLinePath->setChecked (mode == EditModeType::LinePath); } // --------------------------------------------------------------------------------------------------------------------- // void MainWindow::slot_editObject (QListWidgetItem* listitem) { for (LDObject* it : m_currentDocument->objects()) { if (it->qObjListEntry == listitem) { AddObjectDialog::staticDialog (it->type(), it); break; } } } // --------------------------------------------------------------------------------------------------------------------- // bool MainWindow::save (LDDocument* doc, bool saveAs) { if (doc->isCache()) return false; QString path = doc->fullPath(); int64 savesize; if (saveAs or path.isEmpty()) { QString name = doc->defaultName(); if (not doc->fullPath().isEmpty()) name = doc->fullPath(); else if (not doc->name().isEmpty()) name = doc->name(); name.replace ("\\", "/"); path = QFileDialog::getSaveFileName (this, tr ("Save As"), name, tr ("LDraw files (*.dat *.ldr)")); if (path.isEmpty()) { // User didn't give a file name, abort. return false; } } if (doc->save (path, &savesize)) { if (doc == m_currentDocument) updateTitle(); print ("Saved to %1 (%2)", path, MakePrettyFileSize (savesize)); // Add it to recent files AddRecentFile (path); return true; } QString message = format (tr ("Failed to save to %1: %2"), path, strerror (errno)); // Tell the user the save failed, and give the option for saving as with it. QMessageBox dlg (QMessageBox::Critical, tr ("Save Failure"), message, QMessageBox::Close, this); // Add a save-as button QPushButton* saveAsBtn = new QPushButton (tr ("Save As")); saveAsBtn->setIcon (GetIcon ("file-save-as")); dlg.addButton (saveAsBtn, QMessageBox::ActionRole); dlg.setDefaultButton (QMessageBox::Close); dlg.exec(); if (dlg.clickedButton() == saveAsBtn) return save (doc, true); // yay recursion! return false; } void MainWindow::addMessage (QString msg) { m_msglog->addLine (msg); } // ============================================================================ void ObjectList::contextMenuEvent (QContextMenuEvent* ev) { g_win->spawnContextMenu (ev->globalPos()); } // --------------------------------------------------------------------------------------------------------------------- // QPixmap GetIcon (QString iconName) { return (QPixmap (format (":/icons/%1.png", iconName))); } // --------------------------------------------------------------------------------------------------------------------- // bool Confirm (const QString& message) { return Confirm (MainWindow::tr ("Confirm"), message); } // --------------------------------------------------------------------------------------------------------------------- // bool Confirm (const QString& title, const QString& message) { return QMessageBox::question (g_win, title, message, (QMessageBox::Yes | QMessageBox::No), QMessageBox::No) == QMessageBox::Yes; } // --------------------------------------------------------------------------------------------------------------------- // void Critical (const QString& message) { QMessageBox::critical (g_win, MainWindow::tr ("Error"), message, (QMessageBox::Close), QMessageBox::Close); } // --------------------------------------------------------------------------------------------------------------------- // void MainWindow::updateDocumentList() { m_updatingTabs = true; while (m_tabs->count() > 0) m_tabs->removeTab (0); for (LDDocument* document : m_documents) { if (not document->isCache()) { // Add an item to the list for this file and store the tab index // in the document so we can find documents by tab index. document->setTabIndex (m_tabs->addTab ("")); updateDocumentListItem (document); } } m_updatingTabs = false; } // --------------------------------------------------------------------------------------------------------------------- // void MainWindow::updateDocumentListItem (LDDocument* doc) { bool oldUpdatingTabs = m_updatingTabs; m_updatingTabs = true; if (doc->tabIndex() == -1) { // We don't have a list item for this file, so the list either doesn't // exist yet or is out of date. Build the list now. updateDocumentList(); return; } // If this is the current file, it also needs to be the selected item on // the list. if (doc == m_currentDocument) m_tabs->setCurrentIndex (doc->tabIndex()); m_tabs->setTabText (doc->tabIndex(), doc->getDisplayName()); // If the document.has unsaved changes, draw a little icon next to it to mark that. m_tabs->setTabIcon (doc->tabIndex(), doc->hasUnsavedChanges() ? GetIcon ("file-save") : QIcon()); m_tabs->setTabData (doc->tabIndex(), doc->name()); m_updatingTabs = oldUpdatingTabs; } // --------------------------------------------------------------------------------------------------------------------- // // A file is selected from the list of files on the left of the screen. Find out // which file was picked and change to it. // void MainWindow::tabSelected() { if (m_updatingTabs) return; LDDocument* switchee = nullptr; int tabIndex = m_tabs->currentIndex(); // Find the file pointer of the item that was selected. for (LDDocument* document : m_documents) { if (not document->isCache() and document->tabIndex() == tabIndex) { switchee = document; break; } } if (switchee and switchee != m_currentDocument) changeDocument (switchee); } // --------------------------------------------------------------------------------------------------------------------- // void MainWindow::refreshObjectList() { #if 0 ui.objectList->clear(); LDDocument* f = getm_currentDocument; for (LDObject* obj : *f) ui.objectList->addItem (obj->qObjListEntry); #endif buildObjList(); } // --------------------------------------------------------------------------------------------------------------------- // void MainWindow::updateActions() { if (m_currentDocument != null and m_currentDocument->history() != null) { History* his = m_currentDocument->history(); int pos = his->position(); ui.actionUndo->setEnabled (pos != -1); ui.actionRedo->setEnabled (pos < (long) his->getSize() - 1); } ui.actionWireframe->setChecked (m_configOptions.drawWireframe()); ui.actionAxes->setChecked (m_configOptions.drawAxes()); ui.actionBfcView->setChecked (m_configOptions.bfcRedGreenView()); ui.actionRandomColors->setChecked (m_configOptions.randomColors()); ui.actionDrawAngles->setChecked (m_configOptions.drawAngles()); ui.actionDrawSurfaces->setChecked (m_configOptions.drawSurfaces()); ui.actionDrawEdgeLines->setChecked (m_configOptions.drawEdgeLines()); ui.actionDrawConditionalLines->setChecked (m_configOptions.drawConditionalLines()); } // --------------------------------------------------------------------------------------------------------------------- // void MainWindow::updatePrimitives() { PopulatePrimitives (ui.primitives); } // --------------------------------------------------------------------------------------------------------------------- // void MainWindow::closeTab (int tabindex) { LDDocument* doc = FindDocument (m_tabs->tabData (tabindex).toString()); if (doc == null) return; doc->close(); } // --------------------------------------------------------------------------------------------------------------------- // void MainWindow::loadShortcuts() { for (QAction* act : findChildren<QAction*>()) { QKeySequence seq = m_settings->value ("shortcut_" + act->objectName(), act->shortcut()).value<QKeySequence>(); act->setShortcut (seq); } } // --------------------------------------------------------------------------------------------------------------------- // void MainWindow::saveShortcuts() { applyToActions ([&](QAction* act) { QString const key = "shortcut_" + act->objectName(); if (g_defaultShortcuts[act] != act->shortcut()) m_settings->setValue (key, act->shortcut()); else m_settings->remove (key); }); } // --------------------------------------------------------------------------------------------------------------------- // void MainWindow::applyToActions (std::function<void(QAction*)> function) { for (QAction* act : findChildren<QAction*>()) { if (not act->objectName().isEmpty()) function (act); } } // --------------------------------------------------------------------------------------------------------------------- // QTreeWidget* MainWindow::getPrimitivesTree() const { return ui.primitives; } // --------------------------------------------------------------------------------------------------------------------- // QKeySequence MainWindow::defaultShortcut (QAction* act) // [static] { return g_defaultShortcuts[act]; } // --------------------------------------------------------------------------------------------------------------------- // bool MainWindow::ringToolHiRes() const { return ui.ringToolHiRes->isChecked(); } // --------------------------------------------------------------------------------------------------------------------- // int MainWindow::ringToolSegments() const { return ui.ringToolSegments->value(); } // --------------------------------------------------------------------------------------------------------------------- // void MainWindow::ringToolHiResClicked (bool checked) { if (checked) { ui.ringToolSegments->setMaximum (HighResolution); ui.ringToolSegments->setValue (ui.ringToolSegments->value() * 3); } else { ui.ringToolSegments->setValue (ui.ringToolSegments->value() / 3); ui.ringToolSegments->setMaximum (LowResolution); } } // --------------------------------------------------------------------------------------------------------------------- // void MainWindow::circleToolSegmentsChanged() { int numerator (ui.ringToolSegments->value()); int denominator (ui.ringToolHiRes->isChecked() ? HighResolution : LowResolution); Simplify (numerator, denominator); ui.ringToolSegmentsLabel->setText (format ("%1 / %2", numerator, denominator)); } // --------------------------------------------------------------------------------------------------------------------- // // Accessor to the settings object // QSettings* MainWindow::makeSettings (QObject* parent) { QString path = qApp->applicationDirPath() + "/" UNIXNAME ".ini"; return new QSettings (path, QSettings::IniFormat, parent); } // --------------------------------------------------------------------------------------------------------------------- // void MainWindow::syncSettings() { m_settings->sync(); } // --------------------------------------------------------------------------------------------------------------------- // QVariant MainWindow::getConfigValue (QString name) { QVariant value = m_settings->value (name, m_configOptions.defaultValueByName (name)); return value; } // --------------------------------------------------------------------------------------------------------------------- // void MainWindow::createBlankDocument() { // Create a new anonymous file and set it to our current LDDocument* f = newDocument(); f->setName (""); changeDocument (f); closeInitialDocument(); doFullRefresh(); updateActions(); } // --------------------------------------------------------------------------------------------------------------------- // LDDocument* MainWindow::newDocument (bool cache) { m_documents.append (new LDDocument (this)); if (not cache) m_documents.last()->openForEditing(); return m_documents.last(); } // --------------------------------------------------------------------------------------------------------------------- // const QList<LDDocument*>& MainWindow::allDocuments() { return m_documents; } // --------------------------------------------------------------------------------------------------------------------- // LDDocument* MainWindow::currentDocument() { return m_currentDocument; } // --------------------------------------------------------------------------------------------------------------------- // // TODO: document may be null, this shouldn't be the case // void MainWindow::changeDocument (LDDocument* document) { // Implicit files were loaded for caching purposes and may never be switched to. if (document != null and document->isCache()) return; m_currentDocument = document; if (document) { // A ton of stuff needs to be updated updateDocumentListItem (document); buildObjList(); updateTitle(); m_renderer->setDocument (document); m_renderer->compiler()->needMerge(); print ("Changed document to %1", document->getDisplayName()); } } // --------------------------------------------------------------------------------------------------------------------- // // This little beauty closes the initial file that was open at first when opening a new file over it. // void MainWindow::closeInitialDocument() { if (m_documents.size() == 2 and m_documents[0]->name().isEmpty() and not m_documents[1]->name().isEmpty() and not m_documents[0]->hasUnsavedChanges()) { m_documents.first()->close(); } } // --------------------------------------------------------------------------------------------------------------------- // const LDObjectList& MainWindow::selectedObjects() { return m_currentDocument->getSelection(); } // --------------------------------------------------------------------------------------------------------------------- // void MainWindow::currentDocumentClosed() { LDDocument* old = currentDocument(); // Find a replacement document to use for (LDDocument* doc : m_documents) { if (doc != old and not doc->isCache()) { changeDocument (doc); break; } } if (currentDocument() == old) { // Failed to change to a suitable document, open a new one. createBlankDocument(); } } // --------------------------------------------------------------------------------------------------------------------- // QImage GetImageFromScreencap (uchar* data, int w, int h) { // GL and Qt formats have R and B swapped. Also, GL flips Y - correct it as well. return QImage (data, w, h, QImage::Format_ARGB32).rgbSwapped().mirrored(); } // --------------------------------------------------------------------------------------------------------------------- // LDQuickColor::LDQuickColor (LDColor color, QToolButton* toolButton) : m_color (color), m_toolButton (toolButton) {} // --------------------------------------------------------------------------------------------------------------------- // LDQuickColor LDQuickColor::getSeparator() { return LDQuickColor (LDColor::nullColor(), null); } // --------------------------------------------------------------------------------------------------------------------- // bool LDQuickColor::isSeparator() const { return color() == LDColor::nullColor(); } // --------------------------------------------------------------------------------------------------------------------- // void PopulatePrimitives (QTreeWidget* tw, QString const& selectByDefault) { tw->clear(); for (PrimitiveCategory* cat : g_PrimitiveCategories) { SubfileListItem* parentItem = new SubfileListItem (tw, null); parentItem->setText (0, cat->name()); QList<QTreeWidgetItem*> subfileItems; for (Primitive& prim : cat->prims) { SubfileListItem* item = new SubfileListItem (parentItem, &prim); item->setText (0, format ("%1 - %2", prim.name, prim.title)); subfileItems << item; // If this primitive is the one the current object points to, // select it by default if (selectByDefault == prim.name) tw->setCurrentItem (item); } tw->addTopLevelItem (parentItem); } }