OpenTwin 0.1
OpenTwin
 
Loading...
Searching...
No Matches
PropertyInputBool.h
Go to the documentation of this file.
1
4// ###########################################################################################################################################################################################################################################################################################################################
5
6#pragma once
7
8// OpenTwin header
10
11namespace ot {
12
13 class CheckBox;
14
17 public:
19 virtual ~PropertyInputBool();
20
21 virtual void addPropertyInputValueToJson(ot::JsonValue& _object, const char* _memberNameValue, ot::JsonAllocator& _allocator) override;
22 virtual QVariant getCurrentValue(void) const override;
23 virtual QWidget* getQWidget(void) override;
24 virtual const QWidget* getQWidget(void) const override;
25 virtual Property* createPropertyConfiguration(void) const override;
26 virtual bool setupFromConfiguration(const Property* _configuration) override;
27 virtual void focusPropertyInput(void) override;
28
29 void setChecked(bool _isChecked);
30 bool isChecked(void) const;
31
32 private:
33 CheckBox* m_checkBox;
34 };
35
36}
#define OT_DECL_NOCOPY(___class)
Removes the default copy constructor and assignment operator.
Definition OTClassHelper.h:14
#define OT_WIDGETS_API_EXPORT
Definition OTWidgetsAPIExport.h:12
Definition CheckBox.h:17
The Property class is used as a base class for all Properties that can be displayed and modified in t...
Definition Property.h:21
Definition PropertyInputBool.h:15
Definition PropertyInput.h:23
Definition Connector.h:8
rapidjson::Value JsonValue
Writable JSON value.
Definition JSON.h:27
rapidjson::MemoryPoolAllocator< rapidjson::CrtAllocator > JsonAllocator
Allocator used for writing to JSON values.
Definition JSON.h:30