Ocular Engine
QuaternionProperty.hpp
1 
17 #pragma once
18 #ifndef __H__OCULAR_EDITOR_QUATERNION_PROPERTY__H__
19 #define __H__OCULAR_EDITOR_QUATERNION_PROPERTY__H__
20 
21 #include "Widgets/Properties/PropertyWidget.hpp"
22 #include "Widgets/Standard/LineEdit.hpp"
23 
24 //------------------------------------------------------------------------------------------
25 
30 namespace Ocular
31 {
36  namespace Editor
37  {
44  {
45  public:
46 
47  QuaternionProperty(QWidget* parent = nullptr);
48  virtual ~QuaternionProperty();
49 
50  virtual bool updateProperties() override;
51  virtual void setValue(void* value, uint32_t size) override;
52  virtual std::string getValue() const override;
53 
54  protected:
55 
56  private:
57 
58  QLabel* m_LabelX;
59  QLabel* m_LabelY;
60  QLabel* m_LabelZ;
61  QLabel* m_LabelW;
62 
63  LineEdit* m_EditX;
64  LineEdit* m_EditY;
65  LineEdit* m_EditZ;
66  LineEdit* m_EditW;
67  };
68  }
72 }
77 //------------------------------------------------------------------------------------------
78 
79 #endif
Parent class for all general property widgets.
Definition: PropertyWidget.hpp:51
virtual bool updateProperties() override
Definition: QuaternionProperty.cpp:66
Note: Once this library is made dynamic, this will no longer be needed.
Definition: Common.hpp:70
virtual void setValue(void *value, uint32_t size) override
Definition: QuaternionProperty.cpp:118
Definition: QuaternionProperty.hpp:43
Definition: LineEdit.hpp:56
virtual std::string getValue() const override
Definition: QuaternionProperty.cpp:141