2021-09-03 12:56:57 -04:00
|
|
|
/*##############################################################################
|
|
|
|
## Author: Shaun Reed ##
|
2023-03-12 02:02:26 +00:00
|
|
|
## Legal: All Content (c) 2023 Shaun Reed, all rights reserved ##
|
|
|
|
## About: Toolbox plugin for object details and options ##
|
2021-09-03 12:56:57 -04:00
|
|
|
## ##
|
|
|
|
## Contact: shaunrd0@gmail.com | URL: www.shaunreed.com | GitHub: shaunrd0 ##
|
2023-03-12 02:02:26 +00:00
|
|
|
################################################################################
|
|
|
|
*/
|
2021-09-03 12:56:57 -04:00
|
|
|
|
2023-03-12 02:02:26 +00:00
|
|
|
#include "toolbox.h"
|
|
|
|
#include "ui_toolbox.h"
|
2022-08-07 13:12:12 -04:00
|
|
|
|
2023-03-12 02:02:26 +00:00
|
|
|
Qtk::ToolBox::ToolBox(QWidget * parent) :
|
|
|
|
QDockWidget(parent), ui(new Ui::ToolBox) {
|
|
|
|
ui->setupUi(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
Qtk::ToolBox::~ToolBox() {
|
|
|
|
delete ui;
|
|
|
|
}
|