OpenTwin 0.1
OpenTwin
 
Loading...
Searching...
No Matches
OnePropertyDialog.h
Go to the documentation of this file.
1
4// ###########################################################################################################################################################################################################################################################################################################################
5
6#pragma once
7
8// OpenTwin header
10#include "OTWidgets/Dialog.h"
11
12namespace ot {
13
14 class PropertyInput;
15
18 public:
19 OnePropertyDialog(const OnePropertyDialogCfg& _config, QWidget* _parent = (QWidget*)nullptr);
20 virtual ~OnePropertyDialog();
21
22 void addPropertyInputValueToJson(ot::JsonValue& _object, const char* _memberNameValue, ot::JsonAllocator& _allocator);
23 QVariant getCurrentValue(void) const;
24
25 bool valueHasChanged(void) const { return m_changed; };
26
27 private Q_SLOTS:
28 void slotValueChanged(void);
29 void slotConfirm(void);
30 void slotCancel(void);
31
32 private:
33 PropertyInput* m_input;
34 bool m_changed;
35
36 OnePropertyDialog() = delete;
37 };
38}
#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 Dialog.h:19
Definition OnePropertyDialogCfg.h:15
Definition OnePropertyDialog.h:16
bool valueHasChanged(void) const
Definition OnePropertyDialog.h:25
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