qtk/src/app/toolbox.h

34 lines
962 B
C
Raw Normal View History

2021-09-03 16:56:57 +00:00
/*##############################################################################
## Author: Shaun Reed ##
2022-03-07 13:20:32 +00:00
## Legal: All Content (c) 2022 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 {
class QDESIGNER_WIDGET_EXPORT ToolBox : public QDockWidget {
Q_OBJECT
2021-09-03 16:56:57 +00:00
public:
explicit ToolBox(QWidget * parent = nullptr);
~ToolBox();
private:
Ui::ToolBox * ui;
};
} // namespace Qtk
#endif // TOOLBOX_H