OpenTwin 0.1
OpenTwin
 
Loading...
Searching...
No Matches
GraphicsArcItem.h
Go to the documentation of this file.
1
4// ###########################################################################################################################################################################################################################################################################################################################
5
6#pragma once
7
8// OpenTwin header
9#include "OTCore/Rect.h"
11#include "OTGui/Outline.h"
13
14namespace ot {
15
18 public:
20 virtual ~GraphicsArcItem();
21
22 // ###########################################################################################################################################################################################################################################################################################################################
23
24 // Base class functions: ot::GraphicsItem
25
26 virtual bool setupFromConfig(const GraphicsItemCfg* _cfg) override;
27
28 // ###########################################################################################################################################################################################################################################################################################################################
29
30 // Base class functions: ot::CustomGraphicsItem
31
32 virtual QSizeF getPreferredGraphicsItemSize(void) const override;
33
34 protected:
35
37 virtual void paintCustomItem(QPainter* _painter, const QStyleOptionGraphicsItem* _opt, QWidget* _widget, const QRectF& _rect) override;
38
39 // ###########################################################################################################################################################################################################################################################################################################################
40
41 // Setter / Getter
42
43 public:
44 void setArcRect(const RectD& _rect);
45 void setArcRect(const QRectF& _rect);
46 const RectD& getArcRect(void) const;
47
48 void setStartAngle(double _angle);
49 double getStartAngle(void) const;
50
51 void setSpanAngle(double _angle);
52 double getSpanAngle(void) const;
53
54 void setLineStyle(const OutlineF& _style);
55 const OutlineF& getLineStyle(void) const;
56 };
57
58
59}
This file contains defines that may be used simplyfy class creation.
#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 CustomGraphicsItem.h:17
Definition GraphicsArcItem.h:16
The GraphicsItemCfg is the base class for all graphics item configurations.
Definition GraphicsItemCfg.h:33
The OutlineF class is used to describe how a outline should look like.
Definition Outline.h:161
Rectangle that holds the top left and bottom right corner in double values.
Definition Rect.h:234
Definition Connector.h:8