You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ovdCStringSettingView.h 559B

12345678910111213141516171819202122232425
  1. #pragma once
  2. #include "../ovd_base.h"
  3. #include "ovdCAbstractSettingView.h"
  4. namespace OpenViBE {
  5. namespace Designer {
  6. namespace Setting {
  7. class CStringSettingView final : public CAbstractSettingView
  8. {
  9. public:
  10. CStringSettingView(Kernel::IBox& box, const size_t index, CString& builderName);
  11. void getValue(CString& value) const override;
  12. void setValue(const CString& value) override;
  13. void onChange();
  14. private:
  15. GtkEntry* m_entry = nullptr;
  16. bool m_onValueSetting = false;
  17. };
  18. } // namespace Setting
  19. } // namespace Designer
  20. } // namespace OpenViBE