ACF $AcfVersion:0$
CCircleComp.h
Go to the documentation of this file.
1// SPDX-License-Identifier: LGPL-2.1-or-later OR GPL-2.0-or-later OR GPL-3.0-or-later OR LicenseRef-ACF-Commercial
2#pragma once
3
4
5// ACF includes
7#include <i2d/CCircle.h>
8
9
10namespace i2d
11{
12
13
18class CCircleComp: public TObject2dCompWrap<CCircle>
19{
20public:
22
23 I_BEGIN_COMPONENT(CCircleComp);
24 I_REGISTER_INTERFACE(CCircle);
25 I_REGISTER_INTERFACE(CPosition2d);
26 I_ASSIGN(m_centerXAttrPtr, "X", "X-Position of the circle center", true, 0);
27 I_ASSIGN(m_centerYAttrPtr, "Y", "Y-Position of the circle center", true, 0);
28 I_ASSIGN(m_radiusAttrPtr, "Radius", "Radius of the circle", true, 0);
29 I_END_COMPONENT;
30
31protected:
32 // reimplemented (icomp::CComponentBase)
33 virtual void OnComponentCreated() override;
34
35private:
36 I_ATTR(double, m_centerXAttrPtr);
37 I_ATTR(double, m_centerYAttrPtr);
38 I_ATTR(double, m_radiusAttrPtr);
39};
40
41
42} // namespace i2d
43
44
45
46
Implementation of a circle as a component.
Definition CCircleComp.h:19
TObject2dCompWrap< CCircle > BaseClass
Definition CCircleComp.h:21
virtual void OnComponentCreated() override
Definition of graphical circle object.
Definition CCircle.h:22
Definition of graphical point object.
Definition CPosition2d.h:18
Base class for all components implementing 2D objects.
Contains the 2D objects.
Definition CAffine2d.h:11