From 3cad213a8ef164fe2c51ac3f3718fe1f2a6a80b3 Mon Sep 17 00:00:00 2001 From: Shaun Reed Date: Sun, 23 Mar 2025 09:07:41 -0400 Subject: [PATCH 01/12] Bump qtk version in example. --- example-app/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/example-app/CMakeLists.txt b/example-app/CMakeLists.txt index 7bc945d..28918bf 100644 --- a/example-app/CMakeLists.txt +++ b/example-app/CMakeLists.txt @@ -57,7 +57,7 @@ endif() # Allow add_subdirectory on this project to use target ALIAS if available. # If this example project is opened standalone we will use find_package. if(NOT TARGET Qtk::qtk) - find_package(Qtk 0.2 REQUIRED) + find_package(Qtk 0.3 REQUIRED) endif() find_package(Qt6 COMPONENTS Core Widgets OpenGLWidgets REQUIRED) @@ -100,4 +100,4 @@ if((Qt6_VERSION VERSION_GREATER_EQUAL "6.3.0" AND (WIN32 OR APPLE)) install(SCRIPT ${QTK_EXAMPLE_DEPLOY_SCRIPT} COMPONENT qtk_example) elseif(NOT Qtk_IS_TOP_LEVEL) message(WARNING "[Qtk] Installation is only supported on Qt >=6.5.\n") -endif() \ No newline at end of file +endif() -- 2.47.2 From 95fd1e997755966f78c3cca316828ac5c03d2070 Mon Sep 17 00:00:00 2001 From: Shaun Reed Date: Sun, 23 Mar 2025 09:07:58 -0400 Subject: [PATCH 02/12] Disable unimplemented buttons in toolbar. --- src/app/qtkmainwindow.ui | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/app/qtkmainwindow.ui b/src/app/qtkmainwindow.ui index d31489c..3078ef7 100644 --- a/src/app/qtkmainwindow.ui +++ b/src/app/qtkmainwindow.ui @@ -222,6 +222,9 @@ + + false + :/icons/fontawesome-free-6.2.1-desktop/svgs/solid/cube.svg:/icons/fontawesome-free-6.2.1-desktop/svgs/solid/cube.svg @@ -234,6 +237,9 @@ + + false + :/icons/fontawesome-free-6.2.1-desktop/svgs/regular/trash-can.svg:/icons/fontawesome-free-6.2.1-desktop/svgs/regular/trash-can.svg -- 2.47.2 From 5984763d43373421119a084e1926dc8618a645ab Mon Sep 17 00:00:00 2001 From: Shaun Reed Date: Sun, 23 Mar 2025 09:08:15 -0400 Subject: [PATCH 03/12] Fix setting light poition for models. --- src/app/qtkscene.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/qtkscene.cpp b/src/app/qtkscene.cpp index 2fe1d71..8fbaf54 100644 --- a/src/app/qtkscene.cpp +++ b/src/app/qtkscene.cpp @@ -485,7 +485,7 @@ void QtkScene::update() // Helper lambda to set the light position used by GLSL shaders on the model. // TODO: This could be a helper function on the Model class. auto setLightPosition = [](const std::string & lightName, Model * model) { - if (auto light = Model::getInstance(lightName.c_str()); light) { + if (auto light = MeshRenderer::getInstance(lightName.c_str()); light) { QVector3D position = light->getTransform().getTranslation(); model->setUniform("uLight.position", position); } else { -- 2.47.2 From 6528e872e5ec6140464284a7fa81d7ada6f86033 Mon Sep 17 00:00:00 2001 From: Shaun Reed Date: Sun, 23 Mar 2025 09:29:06 -0400 Subject: [PATCH 04/12] Add Model::setLightPosition. + Convert some std::strings to QStrings. --- src/app/qtkscene.cpp | 8 +------- src/designer-plugins/toolbox.cpp | 3 +-- src/designer-plugins/treeview.cpp | 2 +- src/qtk/meshrenderer.cpp | 2 +- src/qtk/model.cpp | 13 ++++++++++++- src/qtk/model.h | 10 +++++++++- src/qtk/object.h | 6 +++--- src/qtk/scene.cpp | 4 ++-- src/qtk/scene.h | 6 ++---- 9 files changed, 32 insertions(+), 22 deletions(-) diff --git a/src/app/qtkscene.cpp b/src/app/qtkscene.cpp index 8fbaf54..4fe51e9 100644 --- a/src/app/qtkscene.cpp +++ b/src/app/qtkscene.cpp @@ -485,13 +485,7 @@ void QtkScene::update() // Helper lambda to set the light position used by GLSL shaders on the model. // TODO: This could be a helper function on the Model class. auto setLightPosition = [](const std::string & lightName, Model * model) { - if (auto light = MeshRenderer::getInstance(lightName.c_str()); light) { - QVector3D position = light->getTransform().getTranslation(); - model->setUniform("uLight.position", position); - } else { - qDebug() << "[QtkScene] Failed to set light position: " - << lightName.c_str(); - } + }; QMatrix4x4 posMatrix; diff --git a/src/designer-plugins/toolbox.cpp b/src/designer-plugins/toolbox.cpp index b59b55e..eace17a 100644 --- a/src/designer-plugins/toolbox.cpp +++ b/src/designer-plugins/toolbox.cpp @@ -56,8 +56,7 @@ void ToolBox::createPageProperties(const Object * object) ui->toolBox->setCurrentWidget(widget); auto * layout = new QFormLayout; - layout->addRow(new QLabel(tr("Name:")), - new QLabel(object->getName().c_str())); + layout->addRow(new QLabel(tr("Name:")), new QLabel(object->getName())); layout->addRow(new QLabel(tr("Type:")), new QLabel(type == Object::Type::QTK_MESH ? "Mesh" : "Model")); diff --git a/src/designer-plugins/treeview.cpp b/src/designer-plugins/treeview.cpp index e79220b..72f22c6 100644 --- a/src/designer-plugins/treeview.cpp +++ b/src/designer-plugins/treeview.cpp @@ -43,7 +43,7 @@ void Qtk::TreeView::updateView(const Qtk::Scene * scene) mSceneName = scene->getSceneName(); auto objects = scene->getObjects(); for (const auto & object : objects) { - QStringList list(QStringList(QString(object->getName().c_str()))); + QStringList list(QStringList(QString(object->getName()))); ui->treeWidget->insertTopLevelItem(0, new QTreeWidgetItem(list)); } } diff --git a/src/qtk/meshrenderer.cpp b/src/qtk/meshrenderer.cpp index 3a021ed..7551e3a 100644 --- a/src/qtk/meshrenderer.cpp +++ b/src/qtk/meshrenderer.cpp @@ -45,7 +45,7 @@ MeshRenderer::MeshRenderer(const char * name, const ShapeBase & shape) : MeshRenderer::~MeshRenderer() { - sInstances.remove(mName.c_str()); + sInstances.remove(mName); } /******************************************************************************* diff --git a/src/qtk/model.cpp b/src/qtk/model.cpp index dc88f38..cb83ae6 100644 --- a/src/qtk/model.cpp +++ b/src/qtk/model.cpp @@ -56,6 +56,17 @@ void Model::flipTexture(const std::string & fileName, bool flipX, bool flipY) } } +void Model::setLightPosition(const QString & lightName, const char * uniform) +{ + if (auto light = MeshRenderer::getInstance(lightName); light) { + QVector3D position = light->getTransform().getTranslation(); + setUniform(uniform, position); + } else { + qDebug() << "[QtkScene] Failed to set " << mName + << "light position: " << lightName; + } +} + // Static function to access ModelManager for getting Models by name Model * Qtk::Model::getInstance(const char * name) { @@ -102,7 +113,7 @@ void Model::loadModel(const std::string & path) sortModelMeshes(); // Object finished loading, insert it into ModelManager - mManager.insert(getName().c_str(), this); + mManager.insert(getName(), this); } void Model::processNode(aiNode * node, const aiScene * scene) diff --git a/src/qtk/model.h b/src/qtk/model.h index ee1ed1d..64d15ee 100644 --- a/src/qtk/model.h +++ b/src/qtk/model.h @@ -63,7 +63,7 @@ namespace Qtk loadModel(mModelPath); } - inline ~Model() override { mManager.remove(getName().c_str()); } + inline ~Model() override { mManager.remove(getName()); } /************************************************************************* * Public Methods @@ -113,6 +113,14 @@ namespace Qtk } } + /** + * Sets the position of a light used in GLSL unfiroms. + * + * @param lightName Object name of the light + */ + void setLightPosition(const QString & lightName, + const char * uniform = "uLight.position"); + /************************************************************************* * Accessors ************************************************************************/ diff --git a/src/qtk/object.h b/src/qtk/object.h index 342c3e6..73211ae 100644 --- a/src/qtk/object.h +++ b/src/qtk/object.h @@ -100,7 +100,7 @@ namespace Qtk return mShape.mVertices; } - [[nodiscard]] inline std::string getName() const { return mName; } + [[nodiscard]] inline QString getName() const { return mName; } [[nodiscard]] inline const Type & getType() const { return mType; } @@ -143,7 +143,7 @@ namespace Qtk * Setters ************************************************************************/ - virtual inline void setName(const std::string & name) { mName = name; } + virtual inline void setName(const QString & name) { mName = name; } virtual inline void setColors(const Colors & value) { @@ -255,7 +255,7 @@ namespace Qtk Transform3D mTransform; Shape mShape; Texture mTexture; - std::string mName; + QString mName; bool mBound; Type mType = QTK_OBJECT; }; diff --git a/src/qtk/scene.cpp b/src/qtk/scene.cpp index 150d0ca..54fb66f 100644 --- a/src/qtk/scene.cpp +++ b/src/qtk/scene.cpp @@ -103,7 +103,7 @@ std::vector Scene::getObjects() const Object * Scene::getObject(const QString & name) const { for (const auto & object : getObjects()) { - if (object->getName() == name.toStdString()) { + if (object->getName() == name) { return object; } } @@ -121,6 +121,6 @@ void Scene::initSceneObjectName(Object * object) // If the object name exists make it unique. auto count = ++mObjectCount[object->getName()]; if (count > 1) { - object->setName(object->getName() + " (" + std::to_string(count) + ")"); + object->setName(object->getName() + " (" + QString::number(count) + ")"); } } diff --git a/src/qtk/scene.h b/src/qtk/scene.h index 446c1b2..a4f9180 100644 --- a/src/qtk/scene.h +++ b/src/qtk/scene.h @@ -120,9 +120,7 @@ namespace Qtk */ [[nodiscard]] uint64_t getObjectCount(const QString & name) { - return mObjectCount.count(name.toStdString()) - ? mObjectCount[name.toStdString()] - : 0; + return mObjectCount.count(name) ? mObjectCount[name] : 0; } /** @@ -248,7 +246,7 @@ namespace Qtk /* MeshRenderers used simple geometry. */ std::vector mMeshes {}; /* Track count of objects with same initial name. */ - std::unordered_map mObjectCount; + std::unordered_map mObjectCount; }; } // namespace Qtk -- 2.47.2 From 3d4df2eb7607ba953ce81d555857006a63071d0d Mon Sep 17 00:00:00 2001 From: Shaun Reed Date: Sun, 23 Mar 2025 09:35:07 -0400 Subject: [PATCH 05/12] Cleanup. --- src/qtk/model.cpp | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/src/qtk/model.cpp b/src/qtk/model.cpp index cb83ae6..114a837 100644 --- a/src/qtk/model.cpp +++ b/src/qtk/model.cpp @@ -68,7 +68,7 @@ void Model::setLightPosition(const QString & lightName, const char * uniform) } // Static function to access ModelManager for getting Models by name -Model * Qtk::Model::getInstance(const char * name) +Model * Model::getInstance(const char * name) { return mManager[name]; } @@ -272,13 +272,11 @@ ModelMesh::Textures Model::loadMaterialTextures(aiMaterial * mat, void Model::sortModelMeshes() { - auto cameraPos = Scene::getCamera().getTransform(); + auto cameraPos = Scene::getCamera().getTransform().getTranslation(); auto cameraDistance = [&cameraPos](const ModelMesh & a, const ModelMesh & b) { // Sort by the first vertex position in the model - return (cameraPos.getTranslation().distanceToPoint( - a.mVertices[0].mPosition)) - < (cameraPos.getTranslation().distanceToPoint( - b.mVertices[0].mPosition)); + return cameraPos.distanceToPoint(a.mVertices[0].mPosition) + < cameraPos.distanceToPoint(b.mVertices[0].mPosition); }; std::sort(mMeshes.begin(), mMeshes.end(), cameraDistance); } -- 2.47.2 From dc94d0a1300cab4eba495b671356f9e9e6856f61 Mon Sep 17 00:00:00 2001 From: Shaun Reed Date: Sun, 23 Mar 2025 10:33:24 -0400 Subject: [PATCH 06/12] Store ToolBox Transform fields as members. --- src/designer-plugins/toolbox.cpp | 83 ++++++++++++++++++-------------- src/designer-plugins/toolbox.h | 35 ++++++++++++++ 2 files changed, 82 insertions(+), 36 deletions(-) diff --git a/src/designer-plugins/toolbox.cpp b/src/designer-plugins/toolbox.cpp index eace17a..51fcff3 100644 --- a/src/designer-plugins/toolbox.cpp +++ b/src/designer-plugins/toolbox.cpp @@ -47,6 +47,42 @@ void ToolBox::removePages() } } +void ToolBox::createTransformPanel(const Object * object) +{ + auto rowLayout = transformPanel_.layout = new QHBoxLayout; + transformPanel_.spinBox.label = new QLabel(tr("Translation:")); + rowLayout->addWidget(transformPanel_.spinBox.label); + int minWidth = 75; + for (size_t i = 0; i < 3; i++) { + QDoubleSpinBox * spinBox; + if (i == 0) { + spinBox = transformPanel_.spinBox.x = new QDoubleSpinBox; + connect(spinBox, + &QDoubleSpinBox::valueChanged, + object, + &Object::setTranslationX); + } else if (i == 1) { + spinBox = transformPanel_.spinBox.y = new QDoubleSpinBox; + connect(spinBox, + &QDoubleSpinBox::valueChanged, + object, + &Object::setTranslationY); + } else if (i == 2) { + spinBox = transformPanel_.spinBox.z = new QDoubleSpinBox; + connect(spinBox, + &QDoubleSpinBox::valueChanged, + object, + &Object::setTranslationZ); + } + spinBox->setMinimum(std::numeric_limits::lowest()); + spinBox->setSingleStep(0.1); + spinBox->setValue(object->getTransform().getTranslation()[i]); + spinBox->setFixedWidth(minWidth); + + rowLayout->addWidget(spinBox); + } +} + void ToolBox::createPageProperties(const Object * object) { auto transform = object->getTransform(); @@ -55,43 +91,18 @@ void ToolBox::createPageProperties(const Object * object) ui->toolBox->addItem(widget, "Properties"); ui->toolBox->setCurrentWidget(widget); - auto * layout = new QFormLayout; - layout->addRow(new QLabel(tr("Name:")), new QLabel(object->getName())); + formLayout_ = new QFormLayout; + formLayout_->addRow(new QLabel(tr("Name:")), new QLabel(object->getName())); - layout->addRow(new QLabel(tr("Type:")), - new QLabel(type == Object::Type::QTK_MESH ? "Mesh" : "Model")); + formLayout_->addRow( + new QLabel(tr("Type:")), + new QLabel(type == Object::Type::QTK_MESH ? "Mesh" : "Model")); + + createTransformPanel(object); + formLayout_->addRow(transformPanel_.layout); - auto rowLayout = new QHBoxLayout; - rowLayout->addWidget(new QLabel(tr("Translation:"))); int minWidth = 75; - for (size_t i = 0; i < 3; i++) { - auto spinBox = new QDoubleSpinBox; - spinBox->setMinimum(std::numeric_limits::lowest()); - spinBox->setSingleStep(0.1); - spinBox->setValue(transform.getTranslation()[i]); - spinBox->setFixedWidth(minWidth); - rowLayout->addWidget(spinBox); - - if (i == 0) { - connect(spinBox, - &QDoubleSpinBox::valueChanged, - object, - &Object::setTranslationX); - } else if (i == 1) { - connect(spinBox, - &QDoubleSpinBox::valueChanged, - object, - &Object::setTranslationY); - } else if (i == 2) { - connect(spinBox, - &QDoubleSpinBox::valueChanged, - object, - &Object::setTranslationZ); - } - } - layout->addRow(rowLayout); - - rowLayout = new QHBoxLayout; + auto rowLayout = new QHBoxLayout; rowLayout->addWidget(new QLabel(tr("Scale:"))); for (size_t i = 0; i < 3; i++) { auto spinBox = new QDoubleSpinBox; @@ -112,8 +123,8 @@ void ToolBox::createPageProperties(const Object * object) spinBox, &QDoubleSpinBox::valueChanged, object, &Object::setScaleZ); } } - layout->addRow(rowLayout); - widget->setLayout(layout); + formLayout_->addRow(rowLayout); + widget->setLayout(formLayout_); } void ToolBox::createPageShader(const Object * object) diff --git a/src/designer-plugins/toolbox.h b/src/designer-plugins/toolbox.h index 674fec4..f3ef226 100644 --- a/src/designer-plugins/toolbox.h +++ b/src/designer-plugins/toolbox.h @@ -13,7 +13,10 @@ #include #include #include +#include #include +#include +#include #include "qtk/scene.h" @@ -40,6 +43,13 @@ namespace Qtk void removePages(); + /** + * Creates the transform panel and controls. + * + * @param object The Qtk::Object associated with this panel. + */ + void createTransformPanel(const Object * object); + void createPageProperties(const Object * object); void createPageShader(const Object * object); @@ -52,6 +62,31 @@ namespace Qtk * Private Members ************************************************************************/ + /// Spinbox with 3 fields and label. + struct SpinBox3D { + QLabel * label; + QDoubleSpinBox * x; + QDoubleSpinBox * y; + QDoubleSpinBox * z; + }; + + /// Transform controls and layout. + struct TransformPanel { + QHBoxLayout * layout; + SpinBox3D spinBox; + }; + TransformPanel transformPanel_; + + /// Scale controls and layout. + struct ScalePanel { + QHBoxLayout * layout; + SpinBox3D spinBox; + }; + ScalePanel scalePanel_; + + /// The root layout for the primary widget. + QFormLayout * formLayout_; + Ui::ToolBox * ui; }; } // namespace Qtk -- 2.47.2 From 034d0a8b4e93055a1100d246ab71a78c49bba826 Mon Sep 17 00:00:00 2001 From: Shaun Reed Date: Sun, 23 Mar 2025 11:37:54 -0400 Subject: [PATCH 07/12] Store ToolBox ObjectDetails fields as members. --- src/designer-plugins/toolbox.cpp | 24 +++++++++++--------- src/designer-plugins/toolbox.h | 38 +++++++++++++++++++++++++++++++- 2 files changed, 50 insertions(+), 12 deletions(-) diff --git a/src/designer-plugins/toolbox.cpp b/src/designer-plugins/toolbox.cpp index 51fcff3..a670907 100644 --- a/src/designer-plugins/toolbox.cpp +++ b/src/designer-plugins/toolbox.cpp @@ -16,7 +16,8 @@ using namespace Qtk; -ToolBox::ToolBox(QWidget * parent) : QDockWidget(parent), ui(new Ui::ToolBox) +ToolBox::ToolBox(QWidget * parent) : + QDockWidget(parent), objectDetails_(this), ui(new Ui::ToolBox) { ui->setupUi(this); setMinimumWidth(350); @@ -81,25 +82,27 @@ void ToolBox::createTransformPanel(const Object * object) rowLayout->addWidget(spinBox); } + + // Add the layout for this panel to the layout for the primary widget. + formLayout_->addRow(transformPanel_.layout); } void ToolBox::createPageProperties(const Object * object) { auto transform = object->getTransform(); - auto type = object->getType(); auto * widget = new QWidget; + formLayout_ = new QFormLayout; + widget->setLayout(formLayout_); + ui->toolBox->addItem(widget, "Properties"); ui->toolBox->setCurrentWidget(widget); - - formLayout_ = new QFormLayout; - formLayout_->addRow(new QLabel(tr("Name:")), new QLabel(object->getName())); - - formLayout_->addRow( - new QLabel(tr("Type:")), - new QLabel(type == Object::Type::QTK_MESH ? "Mesh" : "Model")); + objectDetails_.setDetails(object); + // TODO: Do this in ToolBox ctor after initializing the form. + formLayout_->addRow(objectDetails_.name.label, objectDetails_.name.value); + formLayout_->addRow(objectDetails_.objectType.label, + objectDetails_.objectType.value); createTransformPanel(object); - formLayout_->addRow(transformPanel_.layout); int minWidth = 75; auto rowLayout = new QHBoxLayout; @@ -124,7 +127,6 @@ void ToolBox::createPageProperties(const Object * object) } } formLayout_->addRow(rowLayout); - widget->setLayout(formLayout_); } void ToolBox::createPageShader(const Object * object) diff --git a/src/designer-plugins/toolbox.h b/src/designer-plugins/toolbox.h index f3ef226..075862f 100644 --- a/src/designer-plugins/toolbox.h +++ b/src/designer-plugins/toolbox.h @@ -14,7 +14,6 @@ #include #include #include -#include #include #include @@ -62,6 +61,43 @@ namespace Qtk * Private Members ************************************************************************/ + /// Displays details on the object. + struct ObjectDetails { + /// Single item containing a label and value. + struct Item { + explicit Item(QWidget * parent) : + label(new QLabel(parent)), value(new QLabel(parent)) + { + } + + void setItem(const QString & l, const QString & v) + { + label->setText(l); + value->setText(v); + } + + QLabel * label; + QLabel * value; + }; + + /// We pass the parent widget so that Qt handles releasing memory. + explicit ObjectDetails(QWidget * parent) : + name(parent), objectType(parent) + { + } + + void setDetails(const Qtk::Object * object) + { + name.setItem(tr("Name:"), object->getName()); + objectType.setItem( + tr("Type:"), + object->getType() == Object::QTK_MESH ? "Mesh" : "Model"); + } + + Item name, objectType; + }; + ObjectDetails objectDetails_; + /// Spinbox with 3 fields and label. struct SpinBox3D { QLabel * label; -- 2.47.2 From 6218928e152f83747856102e65fc6095f1a2e055 Mon Sep 17 00:00:00 2001 From: Shaun Reed Date: Sun, 23 Mar 2025 15:31:00 -0400 Subject: [PATCH 08/12] Refresh object details without reloading widget. + Clean up ToolBox widget tree. --- src/designer-plugins/toolbox.cpp | 192 +++++++++++++------------------ src/designer-plugins/toolbox.h | 67 +++++++---- 2 files changed, 121 insertions(+), 138 deletions(-) diff --git a/src/designer-plugins/toolbox.cpp b/src/designer-plugins/toolbox.cpp index a670907..909bdf1 100644 --- a/src/designer-plugins/toolbox.cpp +++ b/src/designer-plugins/toolbox.cpp @@ -17,20 +17,53 @@ using namespace Qtk; ToolBox::ToolBox(QWidget * parent) : - QDockWidget(parent), objectDetails_(this), ui(new Ui::ToolBox) + QDockWidget(parent), objectDetails_(this), + transformPanel_(this, "Transform:"), scalePanel_(this, "Scale:"), + vertex_(this, "Vertex Shader:"), fragment_(this, "Fragment Shader:"), + properiesForm_(new QFormLayout), shaderForm_(new QFormLayout), + ui(new Ui::ToolBox) { ui->setupUi(this); setMinimumWidth(350); + + // Object Properties. + ui->page_properties->setLayout(properiesForm_); + properiesForm_->addRow(objectDetails_.name.label, objectDetails_.name.value); + properiesForm_->addRow(objectDetails_.objectType.label, + objectDetails_.objectType.value); + properiesForm_->addRow(reinterpret_cast(&transformPanel_)); + properiesForm_->addRow(reinterpret_cast(&scalePanel_)); + ui->toolBox->setCurrentWidget(ui->page_properties); + + // Shader views. + ui->page_shaders->setLayout(shaderForm_); + shaderForm_->addRow(vertex_.path.label, vertex_.path.value); + shaderForm_->addRow(vertex_.editor); + shaderForm_->addRow(fragment_.path.label, fragment_.path.value); + shaderForm_->addRow(fragment_.editor); } void ToolBox::updateFocus(const QString & name) { auto object = - Qtk::QtkWidget::mWidgetManager.get_widget()->getScene()->getObject(name); + QtkWidget::mWidgetManager.get_widget()->getScene()->getObject(name); if (object != Q_NULLPTR) { - removePages(); - createPageProperties(object); - createPageShader(object); + refreshProperties(object); + refreshShaders(object); + } +} + +ToolBox::SpinBox3D::SpinBox3D(QLayout * layout, const char * l) : + label(new QLabel(tr(l))), x(new QDoubleSpinBox), y(new QDoubleSpinBox), + z(new QDoubleSpinBox), fields({x, y, z}) +{ + // The layout owns the widget and will clean it up on destruction. + layout->addWidget(label); + for (const auto & f : fields) { + layout->addWidget(f); + f->setMinimum(std::numeric_limits::lowest()); + f->setSingleStep(0.1); + f->setFixedWidth(75); } } @@ -39,121 +72,52 @@ ToolBox::~ToolBox() delete ui; } -void ToolBox::removePages() +void ToolBox::refreshProperties(const Object * object) { - // Remove all existing pages. - for (size_t i = 0; i < ui->toolBox->count(); i++) { - delete ui->toolBox->widget(i); - ui->toolBox->removeItem(i); - } -} - -void ToolBox::createTransformPanel(const Object * object) -{ - auto rowLayout = transformPanel_.layout = new QHBoxLayout; - transformPanel_.spinBox.label = new QLabel(tr("Translation:")); - rowLayout->addWidget(transformPanel_.spinBox.label); - int minWidth = 75; - for (size_t i = 0; i < 3; i++) { - QDoubleSpinBox * spinBox; - if (i == 0) { - spinBox = transformPanel_.spinBox.x = new QDoubleSpinBox; - connect(spinBox, - &QDoubleSpinBox::valueChanged, - object, - &Object::setTranslationX); - } else if (i == 1) { - spinBox = transformPanel_.spinBox.y = new QDoubleSpinBox; - connect(spinBox, - &QDoubleSpinBox::valueChanged, - object, - &Object::setTranslationY); - } else if (i == 2) { - spinBox = transformPanel_.spinBox.z = new QDoubleSpinBox; - connect(spinBox, - &QDoubleSpinBox::valueChanged, - object, - &Object::setTranslationZ); - } - spinBox->setMinimum(std::numeric_limits::lowest()); - spinBox->setSingleStep(0.1); - spinBox->setValue(object->getTransform().getTranslation()[i]); - spinBox->setFixedWidth(minWidth); - - rowLayout->addWidget(spinBox); - } - - // Add the layout for this panel to the layout for the primary widget. - formLayout_->addRow(transformPanel_.layout); -} - -void ToolBox::createPageProperties(const Object * object) -{ - auto transform = object->getTransform(); - auto * widget = new QWidget; - formLayout_ = new QFormLayout; - widget->setLayout(formLayout_); - - ui->toolBox->addItem(widget, "Properties"); - ui->toolBox->setCurrentWidget(widget); objectDetails_.setDetails(object); - // TODO: Do this in ToolBox ctor after initializing the form. - formLayout_->addRow(objectDetails_.name.label, objectDetails_.name.value); - formLayout_->addRow(objectDetails_.objectType.label, - objectDetails_.objectType.value); - createTransformPanel(object); - - int minWidth = 75; - auto rowLayout = new QHBoxLayout; - rowLayout->addWidget(new QLabel(tr("Scale:"))); + // Reconnect transform panel controls to the new object. + connect(transformPanel_.spinBox.x, + &QDoubleSpinBox::valueChanged, + object, + &Object::setTranslationX); + connect(transformPanel_.spinBox.y, + &QDoubleSpinBox::valueChanged, + object, + &Object::setTranslationY); + connect(transformPanel_.spinBox.z, + &QDoubleSpinBox::valueChanged, + object, + &Object::setTranslationZ); + // Set the values in the spin box to the object's current X,Y,Z position. + auto transform = object->getTransform(); for (size_t i = 0; i < 3; i++) { - auto spinBox = new QDoubleSpinBox; - spinBox->setMinimum(std::numeric_limits::lowest()); - spinBox->setSingleStep(0.1); - spinBox->setValue(transform.getScale()[i]); - spinBox->setFixedWidth(minWidth); - rowLayout->addWidget(spinBox); - - if (i == 0) { - connect( - spinBox, &QDoubleSpinBox::valueChanged, object, &Object::setScaleX); - } else if (i == 1) { - connect( - spinBox, &QDoubleSpinBox::valueChanged, object, &Object::setScaleY); - } else if (i == 2) { - connect( - spinBox, &QDoubleSpinBox::valueChanged, object, &Object::setScaleZ); - } + transformPanel_.spinBox.fields[i]->setValue(transform.getTranslation()[i]); + } + + // Reconnect scale panel controls to the new object. + connect(scalePanel_.spinBox.x, + &QDoubleSpinBox::valueChanged, + object, + &Object::setScaleX); + connect(scalePanel_.spinBox.y, + &QDoubleSpinBox::valueChanged, + object, + &Object::setScaleY); + connect(scalePanel_.spinBox.z, + &QDoubleSpinBox::valueChanged, + object, + &Object::setScaleZ); + // Set the values in the spin box to the object's current X,Y,Z scale. + for (size_t i = 0; i < 3; i++) { + scalePanel_.spinBox.fields[i]->setValue(transform.getScale()[i]); } - formLayout_->addRow(rowLayout); } -void ToolBox::createPageShader(const Object * object) +void ToolBox::refreshShaders(const Object * object) { - // Shaders page. - auto widget = new QWidget; - ui->toolBox->addItem(widget, "Shaders"); - auto mainLayout = new QFormLayout; - auto rowLayout = new QHBoxLayout; - rowLayout->addWidget(new QLabel("Vertex Shader:")); - rowLayout->addWidget(new QLabel(object->getVertexShader().c_str())); - mainLayout->addRow(rowLayout); - - auto shaderView = new QTextEdit; - shaderView->setReadOnly(true); - shaderView->setText(object->getVertexShaderSourceCode().c_str()); - mainLayout->addRow(shaderView); - - rowLayout = new QHBoxLayout; - rowLayout->addWidget(new QLabel("Fragment Shader:")); - rowLayout->addWidget(new QLabel(object->getFragmentShader().c_str())); - mainLayout->addRow(rowLayout); - - shaderView = new QTextEdit; - shaderView->setReadOnly(true); - shaderView->setText(object->getFragmentShaderSourceCode().c_str()); - mainLayout->addRow(shaderView); - - widget->setLayout(mainLayout); + vertex_.path.setItem(object->getVertexShader().c_str()); + vertex_.editor->setText(object->getVertexShaderSourceCode().c_str()); + fragment_.path.setItem(object->getFragmentShader().c_str()); + fragment_.editor->setText(object->getFragmentShaderSourceCode().c_str()); } diff --git a/src/designer-plugins/toolbox.h b/src/designer-plugins/toolbox.h index 075862f..18a3905 100644 --- a/src/designer-plugins/toolbox.h +++ b/src/designer-plugins/toolbox.h @@ -16,6 +16,7 @@ #include #include #include +#include #include "qtk/scene.h" @@ -27,7 +28,7 @@ namespace Ui namespace Qtk { - class ToolBox : public QDockWidget + class ToolBox final : public QDockWidget { Q_OBJECT @@ -40,18 +41,9 @@ namespace Qtk ~ToolBox(); - void removePages(); + void refreshProperties(const Object * object); - /** - * Creates the transform panel and controls. - * - * @param object The Qtk::Object associated with this panel. - */ - void createTransformPanel(const Object * object); - - void createPageProperties(const Object * object); - - void createPageShader(const Object * object); + void refreshShaders(const Object * object); void updateFocus(const QString & name); @@ -65,11 +57,17 @@ namespace Qtk struct ObjectDetails { /// Single item containing a label and value. struct Item { - explicit Item(QWidget * parent) : - label(new QLabel(parent)), value(new QLabel(parent)) + explicit Item(QWidget * parent, + const char * l = "Item:", + const char * v = "") : + label(new QLabel(tr(l), parent)), + value(new QLabel(tr(v), parent)) { + value->setText(v); } + void setItem(const QString & v) { setItem(label->text(), v); } + void setItem(const QString & l, const QString & v) { label->setText(l); @@ -82,7 +80,7 @@ namespace Qtk /// We pass the parent widget so that Qt handles releasing memory. explicit ObjectDetails(QWidget * parent) : - name(parent), objectType(parent) + name(parent, "Name:"), objectType(parent, "ObjectType:") { } @@ -100,28 +98,49 @@ namespace Qtk /// Spinbox with 3 fields and label. struct SpinBox3D { + /// We pass a layout to ensure Qt will clean up resources. + explicit SpinBox3D(QLayout * layout, const char * l = "SpinBox3D:"); + QLabel * label; QDoubleSpinBox * x; QDoubleSpinBox * y; QDoubleSpinBox * z; + std::array fields; }; /// Transform controls and layout. - struct TransformPanel { + class SpinBoxHorizontal3D : QWidget + { + public: + explicit SpinBoxHorizontal3D( + QWidget * parent, const char * l = "SpinBoxHorizontal3D:") : + QWidget(parent), layout(new QHBoxLayout(this)), spinBox(layout, l) + { + } QHBoxLayout * layout; SpinBox3D spinBox; }; - TransformPanel transformPanel_; + SpinBoxHorizontal3D transformPanel_, scalePanel_; - /// Scale controls and layout. - struct ScalePanel { - QHBoxLayout * layout; - SpinBox3D spinBox; + class ShaderView + { + public: + explicit ShaderView(QWidget * parent = nullptr, + const char * l = "ShaderView:") : + path(parent, l), editor(new QTextEdit(parent)) + { + editor->setReadOnly(true); + } + + /// Shader name and path on disk. + ObjectDetails::Item path; + /// Read-only (for now) display of the shader source code. + QTextEdit * editor; }; - ScalePanel scalePanel_; + ShaderView vertex_, fragment_; - /// The root layout for the primary widget. - QFormLayout * formLayout_; + QFormLayout * properiesForm_; + QFormLayout * shaderForm_; Ui::ToolBox * ui; }; -- 2.47.2 From 48598de9c88e4abc5c03e200089c115425ff8240 Mon Sep 17 00:00:00 2001 From: Shaun Reed Date: Sun, 23 Mar 2025 15:43:10 -0400 Subject: [PATCH 09/12] Convert ShaderView to QWidget. --- src/designer-plugins/toolbox.cpp | 6 ++---- src/designer-plugins/toolbox.h | 11 +++++++++-- 2 files changed, 11 insertions(+), 6 deletions(-) diff --git a/src/designer-plugins/toolbox.cpp b/src/designer-plugins/toolbox.cpp index 909bdf1..c75ef44 100644 --- a/src/designer-plugins/toolbox.cpp +++ b/src/designer-plugins/toolbox.cpp @@ -37,10 +37,8 @@ ToolBox::ToolBox(QWidget * parent) : // Shader views. ui->page_shaders->setLayout(shaderForm_); - shaderForm_->addRow(vertex_.path.label, vertex_.path.value); - shaderForm_->addRow(vertex_.editor); - shaderForm_->addRow(fragment_.path.label, fragment_.path.value); - shaderForm_->addRow(fragment_.editor); + shaderForm_->addRow(reinterpret_cast(&vertex_)); + shaderForm_->addRow(reinterpret_cast(&fragment_)); } void ToolBox::updateFocus(const QString & name) diff --git a/src/designer-plugins/toolbox.h b/src/designer-plugins/toolbox.h index 18a3905..4a172ba 100644 --- a/src/designer-plugins/toolbox.h +++ b/src/designer-plugins/toolbox.h @@ -122,16 +122,23 @@ namespace Qtk }; SpinBoxHorizontal3D transformPanel_, scalePanel_; - class ShaderView + class ShaderView final : QWidget { public: explicit ShaderView(QWidget * parent = nullptr, const char * l = "ShaderView:") : - path(parent, l), editor(new QTextEdit(parent)) + layout(new QVBoxLayout(this)), path(parent, l), + editor(new QTextEdit(parent)) { + auto * pathLayout = new QHBoxLayout; + pathLayout->addWidget(path.label); + pathLayout->addWidget(path.value); + layout->addLayout(pathLayout); + layout->addWidget(editor); editor->setReadOnly(true); } + QVBoxLayout * layout; /// Shader name and path on disk. ObjectDetails::Item path; /// Read-only (for now) display of the shader source code. -- 2.47.2 From 8eaebee2c63adf745444838bb9bb2f265c53622c Mon Sep 17 00:00:00 2001 From: Shaun Reed Date: Sun, 23 Mar 2025 17:29:56 -0400 Subject: [PATCH 10/12] Release QObject connections on refresh. --- src/designer-plugins/toolbox.cpp | 107 +++++++++++++++++-------------- src/designer-plugins/toolbox.h | 82 +++++++++++++++++------ src/qtk/object.h | 15 +++++ 3 files changed, 135 insertions(+), 69 deletions(-) diff --git a/src/designer-plugins/toolbox.cpp b/src/designer-plugins/toolbox.cpp index c75ef44..eb3b768 100644 --- a/src/designer-plugins/toolbox.cpp +++ b/src/designer-plugins/toolbox.cpp @@ -17,11 +17,10 @@ using namespace Qtk; ToolBox::ToolBox(QWidget * parent) : - QDockWidget(parent), objectDetails_(this), - transformPanel_(this, "Transform:"), scalePanel_(this, "Scale:"), - vertex_(this, "Vertex Shader:"), fragment_(this, "Fragment Shader:"), - properiesForm_(new QFormLayout), shaderForm_(new QFormLayout), - ui(new Ui::ToolBox) + QDockWidget(parent), objectDetails_(this), transformPanel_(this), + scalePanel_(this), vertex_(this, "Vertex Shader:"), + fragment_(this, "Fragment Shader:"), properiesForm_(new QFormLayout), + shaderForm_(new QFormLayout), ui(new Ui::ToolBox) { ui->setupUi(this); setMinimumWidth(350); @@ -51,17 +50,60 @@ void ToolBox::updateFocus(const QString & name) } } -ToolBox::SpinBox3D::SpinBox3D(QLayout * layout, const char * l) : - label(new QLabel(tr(l))), x(new QDoubleSpinBox), y(new QDoubleSpinBox), - z(new QDoubleSpinBox), fields({x, y, z}) +ToolBox::SpinBox3D::SpinBox3D(QWidget * parent, const char * l) : + QWidget(parent), layout(new QHBoxLayout(this)), label(new QLabel(tr(l))) { // The layout owns the widget and will clean it up on destruction. layout->addWidget(label); for (const auto & f : fields) { - layout->addWidget(f); - f->setMinimum(std::numeric_limits::lowest()); - f->setSingleStep(0.1); - f->setFixedWidth(75); + layout->addWidget(f->spinBox); + f->spinBox->setMinimum(std::numeric_limits::lowest()); + f->spinBox->setSingleStep(0.1); + f->spinBox->setFixedWidth(75); + } +} + +void ToolBox::SpinBox::disconnect() const +{ + Object::disconnect(connection); +} + +void ToolBox::TransformPanel::setObject(const Qtk::Object * object) +{ + // Reconnect translation panel controls to the new object. + const std::vector binds = {&Object::setTranslationX, + &Object::setTranslationY, + &Object::setTranslationZ}; + for (size_t i = 0; i < spinBox3D.fields.size(); i++) { + auto * f = spinBox3D.fields[i]; + // Disconnect before changing spin box value. + f->disconnect(); + + // Set the values in the spin box to the object's current X,Y,Z + f->spinBox->setValue(object->getTransform().getTranslation()[i]); + + // Reconnect to bind spin box value to the new object's position. + f->connection = + connect(f->spinBox, &QDoubleSpinBox::valueChanged, object, binds[i]); + } +} + +void ToolBox::ScalePanel::setObject(const Qtk::Object * object) +{ + // Reconnect scale panel controls to the new object. + const std::vector binds = { + &Object::setScaleX, &Object::setScaleY, &Object::setScaleZ}; + for (size_t i = 0; i < spinBox3D.fields.size(); i++) { + auto * f = spinBox3D.fields[i]; + // Disconnect before changing spin box value. + f->disconnect(); + + // Set the values in the spin box to the object's current X,Y,Z + f->spinBox->setValue(object->getTransform().getScale()[i]); + + // Reconnect to bind spin box value to the new object's scale. + f->connection = + connect(f->spinBox, &QDoubleSpinBox::valueChanged, object, binds[i]); } } @@ -72,44 +114,11 @@ ToolBox::~ToolBox() void ToolBox::refreshProperties(const Object * object) { - objectDetails_.setDetails(object); - + // Refresh to show the new object's details. + objectDetails_.setObject(object); // Reconnect transform panel controls to the new object. - connect(transformPanel_.spinBox.x, - &QDoubleSpinBox::valueChanged, - object, - &Object::setTranslationX); - connect(transformPanel_.spinBox.y, - &QDoubleSpinBox::valueChanged, - object, - &Object::setTranslationY); - connect(transformPanel_.spinBox.z, - &QDoubleSpinBox::valueChanged, - object, - &Object::setTranslationZ); - // Set the values in the spin box to the object's current X,Y,Z position. - auto transform = object->getTransform(); - for (size_t i = 0; i < 3; i++) { - transformPanel_.spinBox.fields[i]->setValue(transform.getTranslation()[i]); - } - - // Reconnect scale panel controls to the new object. - connect(scalePanel_.spinBox.x, - &QDoubleSpinBox::valueChanged, - object, - &Object::setScaleX); - connect(scalePanel_.spinBox.y, - &QDoubleSpinBox::valueChanged, - object, - &Object::setScaleY); - connect(scalePanel_.spinBox.z, - &QDoubleSpinBox::valueChanged, - object, - &Object::setScaleZ); - // Set the values in the spin box to the object's current X,Y,Z scale. - for (size_t i = 0; i < 3; i++) { - scalePanel_.spinBox.fields[i]->setValue(transform.getScale()[i]); - } + transformPanel_.setObject(object); + scalePanel_.setObject(object); } void ToolBox::refreshShaders(const Object * object) diff --git a/src/designer-plugins/toolbox.h b/src/designer-plugins/toolbox.h index 4a172ba..2ab4fbd 100644 --- a/src/designer-plugins/toolbox.h +++ b/src/designer-plugins/toolbox.h @@ -84,7 +84,8 @@ namespace Qtk { } - void setDetails(const Qtk::Object * object) + /// Refresh to display the new object's details + void setObject(const Qtk::Object * object) { name.setItem(tr("Name:"), object->getName()); objectType.setItem( @@ -96,32 +97,67 @@ namespace Qtk }; ObjectDetails objectDetails_; - /// Spinbox with 3 fields and label. - struct SpinBox3D { - /// We pass a layout to ensure Qt will clean up resources. - explicit SpinBox3D(QLayout * layout, const char * l = "SpinBox3D:"); + /// Structure to associate a QSpinBox with a connection. + struct SpinBox { + /** + * Default constructor passes no parent to the QSpinBox. + * It must be added to a layout for Qt to clean up the resources. + */ + SpinBox() : spinBox(new QDoubleSpinBox) {} - QLabel * label; - QDoubleSpinBox * x; - QDoubleSpinBox * y; - QDoubleSpinBox * z; - std::array fields; + /// Disconnect the associated connection. + void disconnect() const; + + QDoubleSpinBox * spinBox; + QMetaObject::Connection connection; }; - /// Transform controls and layout. - class SpinBoxHorizontal3D : QWidget + /// Spinbox with 3 fields and a single label. + class SpinBox3D final : QWidget { public: - explicit SpinBoxHorizontal3D( - QWidget * parent, const char * l = "SpinBoxHorizontal3D:") : - QWidget(parent), layout(new QHBoxLayout(this)), spinBox(layout, l) + /// We pass a parent to ensure Qt will clean up resources. + /// Assigning a QWidget to a QLayout also ensures Qt will clean up. + explicit SpinBox3D(QWidget * parent, const char * l = "SpinBox3D:"); + + /// The main layout for the SpinBox3D widget. + QHBoxLayout * layout {this}; + + /// Label for the SpinBox3D. + QLabel * label; + + /// SpinBox and a connection for each field. + SpinBox x, y, z; + /// Array for iterating over fields. + std::array fields {&x, &y, &z}; + }; + + /// Initialize the transform panel and configure QObject connections. + struct TransformPanel { + explicit TransformPanel(QWidget * parent) : + spinBox3D(parent, "Transform:") { } - QHBoxLayout * layout; - SpinBox3D spinBox; - }; - SpinBoxHorizontal3D transformPanel_, scalePanel_; + /// Reconnect QObject connections and spin box values in UI. + void setObject(const Qtk::Object * object); + + SpinBox3D spinBox3D; + }; + TransformPanel transformPanel_; + + /// Initialize the scale panel and configure QObject connections. + struct ScalePanel { + explicit ScalePanel(QWidget * parent) : spinBox3D(parent, "Scale:") {} + + /// Reconnect QObject connections and spin box values in UI. + void setObject(const Qtk::Object * object); + + SpinBox3D spinBox3D; + }; + ScalePanel scalePanel_; + + /// Displays shader name, path, and read-only text view. class ShaderView final : QWidget { public: @@ -130,17 +166,23 @@ namespace Qtk layout(new QVBoxLayout(this)), path(parent, l), editor(new QTextEdit(parent)) { + // Create a child horizontal layout for shader name and file path. auto * pathLayout = new QHBoxLayout; pathLayout->addWidget(path.label); pathLayout->addWidget(path.value); layout->addLayout(pathLayout); - layout->addWidget(editor); + + // Add the read-only text editor widget to the main layout. editor->setReadOnly(true); + layout->addWidget(editor); } + /// The main layout for the ShaderView widget. QVBoxLayout * layout; + /// Shader name and path on disk. ObjectDetails::Item path; + /// Read-only (for now) display of the shader source code. QTextEdit * editor; }; diff --git a/src/qtk/object.h b/src/qtk/object.h index 73211ae..14cf28e 100644 --- a/src/qtk/object.h +++ b/src/qtk/object.h @@ -244,6 +244,21 @@ namespace Qtk mProgram.release(); } + /************************************************************************* + * Public Static Methods + ************************************************************************/ + + /** + * Helper to disconnect a QObject connection, only if it's valid. + * If the connection is valid and we fail to disconnect log a message. + */ + static void disconnect(const QMetaObject::Connection & con) + { + if (con && !QObject::disconnect(con)) { + qDebug() << "[Qtk] Failed to disconnect valid connection: " << con; + } + } + private: /************************************************************************* * Private Members -- 2.47.2 From 96a004e029c0eba5ee96b6a5c6efc88d003234b0 Mon Sep 17 00:00:00 2001 From: Shaun Reed Date: Sun, 23 Mar 2025 17:41:25 -0400 Subject: [PATCH 11/12] Cleanup. --- src/app/qtkscene.cpp | 12 +++--------- src/designer-plugins/toolbox.cpp | 4 ++-- src/designer-plugins/toolbox.h | 7 +++---- src/qtk/object.h | 2 ++ 4 files changed, 10 insertions(+), 15 deletions(-) diff --git a/src/app/qtkscene.cpp b/src/app/qtkscene.cpp index 4fe51e9..4322432 100644 --- a/src/app/qtkscene.cpp +++ b/src/app/qtkscene.cpp @@ -482,15 +482,9 @@ void QtkScene::update() myCube->getTransform().rotate(-0.75f, 0.0f, 1.0f, 0.0f); } - // Helper lambda to set the light position used by GLSL shaders on the model. - // TODO: This could be a helper function on the Model class. - auto setLightPosition = [](const std::string & lightName, Model * model) { - - }; - QMatrix4x4 posMatrix; if (auto alien = getModel("alienTest"); alien) { - setLightPosition("alienTestLight", alien); + alien->setLightPosition("alienTestLight"); alien->setUniform("uCameraPosition", cameraPosition); posMatrix = alien->getTransform().toMatrix(); @@ -502,7 +496,7 @@ void QtkScene::update() } if (auto spartan = getModel("spartanTest"); spartan) { - setLightPosition("spartanTestLight", spartan); + spartan->setLightPosition("spartanTestLight"); spartan->setUniform("uCameraPosition", cameraPosition); posMatrix = spartan->getTransform().toMatrix(); @@ -514,7 +508,7 @@ void QtkScene::update() } if (auto phong = getModel("testPhong"); phong) { - setLightPosition("testLight", phong); + phong->setLightPosition("testLight"); phong->getTransform().rotate(0.75f, 1.0f, 0.5f, 0.0f); phong->bindShaders(); diff --git a/src/designer-plugins/toolbox.cpp b/src/designer-plugins/toolbox.cpp index eb3b768..4d57129 100644 --- a/src/designer-plugins/toolbox.cpp +++ b/src/designer-plugins/toolbox.cpp @@ -123,8 +123,8 @@ void ToolBox::refreshProperties(const Object * object) void ToolBox::refreshShaders(const Object * object) { - vertex_.path.setItem(object->getVertexShader().c_str()); + vertex_.path.setValue(object->getVertexShader().c_str()); vertex_.editor->setText(object->getVertexShaderSourceCode().c_str()); - fragment_.path.setItem(object->getFragmentShader().c_str()); + fragment_.path.setValue(object->getFragmentShader().c_str()); fragment_.editor->setText(object->getFragmentShaderSourceCode().c_str()); } diff --git a/src/designer-plugins/toolbox.h b/src/designer-plugins/toolbox.h index 2ab4fbd..e0dfe4f 100644 --- a/src/designer-plugins/toolbox.h +++ b/src/designer-plugins/toolbox.h @@ -63,10 +63,9 @@ namespace Qtk label(new QLabel(tr(l), parent)), value(new QLabel(tr(v), parent)) { - value->setText(v); } - void setItem(const QString & v) { setItem(label->text(), v); } + void setValue(const QString & v) { value->setText(v); } void setItem(const QString & l, const QString & v) { @@ -121,7 +120,7 @@ namespace Qtk explicit SpinBox3D(QWidget * parent, const char * l = "SpinBox3D:"); /// The main layout for the SpinBox3D widget. - QHBoxLayout * layout {this}; + QHBoxLayout * layout; /// Label for the SpinBox3D. QLabel * label; @@ -161,7 +160,7 @@ namespace Qtk class ShaderView final : QWidget { public: - explicit ShaderView(QWidget * parent = nullptr, + explicit ShaderView(QWidget * parent, const char * l = "ShaderView:") : layout(new QVBoxLayout(this)), path(parent, l), editor(new QTextEdit(parent)) diff --git a/src/qtk/object.h b/src/qtk/object.h index 14cf28e..046ce0e 100644 --- a/src/qtk/object.h +++ b/src/qtk/object.h @@ -251,6 +251,8 @@ namespace Qtk /** * Helper to disconnect a QObject connection, only if it's valid. * If the connection is valid and we fail to disconnect log a message. + * + * @param con QObject connection handle to disconnect. */ static void disconnect(const QMetaObject::Connection & con) { -- 2.47.2 From 92b10d7dcce06054e79eab065eb70608269e0dac Mon Sep 17 00:00:00 2001 From: Shaun Reed Date: Sun, 23 Mar 2025 18:08:38 -0400 Subject: [PATCH 12/12] More tr() into constructor. --- src/designer-plugins/toolbox.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/designer-plugins/toolbox.h b/src/designer-plugins/toolbox.h index e0dfe4f..6eb9769 100644 --- a/src/designer-plugins/toolbox.h +++ b/src/designer-plugins/toolbox.h @@ -65,12 +65,12 @@ namespace Qtk { } - void setValue(const QString & v) { value->setText(v); } + void setValue(const char * v) { value->setText(tr(v)); } - void setItem(const QString & l, const QString & v) + void setItem(const char * l, const char * v) { - label->setText(l); - value->setText(v); + label->setText(tr(l)); + value->setText(tr(v)); } QLabel * label; @@ -79,16 +79,16 @@ namespace Qtk /// We pass the parent widget so that Qt handles releasing memory. explicit ObjectDetails(QWidget * parent) : - name(parent, "Name:"), objectType(parent, "ObjectType:") + name(parent, "Name:"), objectType(parent, "Object Type:") { } /// Refresh to display the new object's details void setObject(const Qtk::Object * object) { - name.setItem(tr("Name:"), object->getName()); + name.setItem("Name:", object->getName().toStdString().c_str()); objectType.setItem( - tr("Type:"), + "Type:", object->getType() == Object::QTK_MESH ? "Mesh" : "Model"); } -- 2.47.2