Ocular Engine
ToolbarCommon.hpp
1 
17 #pragma once
18 #ifndef __H__OCULAR_EDITOR_TOOL_BAR_COMMON__H__
19 #define __H__OCULAR_EDITOR_TOOL_BAR_COMMON__H__
20 
21 #include <QtWidgets/qtoolbar.h>
22 
23 //------------------------------------------------------------------------------------------
24 
29 namespace Ocular
30 {
35  namespace Editor
36  {
41  class ToolbarCommon : public QToolBar
42  {
43  public:
44 
45  ToolbarCommon(QWidget* parent = nullptr);
46  ~ToolbarCommon();
47 
48  virtual QSize sizeHint() const override;
49 
50  protected:
51 
52  private:
53 
54  };
55  }
59 }
64 //------------------------------------------------------------------------------------------
65 
66 #endif
Note: Once this library is made dynamic, this will no longer be needed.
Definition: Common.hpp:70
Tool Bar for common actions (save, camera behaviour, etc.)
Definition: ToolbarCommon.hpp:41