First attempt.

This commit is contained in:
Ernie Pasveer
2022-09-18 20:46:48 -05:00
parent 5d58c79f56
commit 6ea8d63565
9 changed files with 140 additions and 27 deletions
+24
View File
@@ -0,0 +1,24 @@
#include "QHContainerWidget.h"
QHContainerWidget::QHContainerWidget (QWidget* parent) : QWidget(parent) {
// Construct the UI.
setupUi(this);
// Setup the widgets
// Connect things.
}
QHContainerWidget::~QHContainerWidget () {
}
void QHContainerWidget::addWidget (QWidget* widget) {
horizontalLayout->addWidget(widget);
}
void QHContainerWidget::removeWidget (QWidget* widget) {
horizontalLayout->removeWidget(widget);
}