Ocular Engine
MainStatusBar.hpp
1 
17 #pragma once
18 #ifndef __H__OCULAR_EDITOR_MAIN_STATUS_BAR__H__
19 #define __H__OCULAR_EDITOR_MAIN_STATUS_BAR__H__
20 
21 #include <QtWidgets/qstatusbar.h>
22 
23 //------------------------------------------------------------------------------------------
24 
29 namespace Ocular
30 {
35  namespace Editor
36  {
37  class MainMenuBar;
38 
43  class MainStatusBar : public QStatusBar
44  {
45  public:
46 
47  MainStatusBar(QWidget* parent = nullptr);
48  ~MainStatusBar();
49 
50  void setPermanentMessage(std::string const& message);
51 
52  protected:
53 
54  QLabel* m_PermanentMessageLabel;
55 
56  private:
57 
58  };
59  }
63 }
68 //------------------------------------------------------------------------------------------
69 
70 #endif
Note: Once this library is made dynamic, this will no longer be needed.
Definition: Common.hpp:70
Main status bar for the Ocular Editor application.
Definition: MainStatusBar.hpp:43