qtk/src/app/toolbox.h

43 lines
1.3 KiB
C
Raw Normal View History

2021-09-03 16:56:57 +00:00
/*##############################################################################
## Author: Shaun Reed ##
2023-01-02 03:26:58 +00:00
## Legal: All Content (c) 2023 Shaun Reed, all rights reserved ##
## About: Toolbox plugin for object details and options ##
2021-09-03 16:56:57 +00:00
## ##
## Contact: shaunrd0@gmail.com | URL: www.shaunreed.com | GitHub: shaunrd0 ##
################################################################################
*/
2021-09-03 16:56:57 +00:00
#ifndef TOOLBOX_H
#define TOOLBOX_H
2021-09-03 16:56:57 +00:00
#include <QDesignerExportWidget>
#include <QDockWidget>
2021-09-03 16:56:57 +00:00
namespace Ui {
class ToolBox;
}
2021-09-03 16:56:57 +00:00
namespace Qtk {
2023-01-21 13:01:13 +00:00
class ToolBox : public QDockWidget {
Q_OBJECT
2021-09-03 16:56:57 +00:00
public:
2023-01-02 03:26:58 +00:00
/*************************************************************************
2023-01-03 03:19:38 +00:00
* Contructors / Destructors
*************************************************************************/
2023-01-02 03:26:58 +00:00
explicit ToolBox(QWidget * parent = nullptr);
2023-01-02 03:26:58 +00:00
~ToolBox();
private:
2023-01-02 03:26:58 +00:00
/*************************************************************************
* Private Members
************************************************************************/
Ui::ToolBox * ui;
};
} // namespace Qtk
#endif // TOOLBOX_H