OpenTwin 0.1
OpenTwin
 
Loading...
Searching...
No Matches
ImagePainter.h
Go to the documentation of this file.
1
4// ###########################################################################################################################################################################################################################################################################################################################
5
6#pragma once
7
8// OpenTwin header
11
12// Qt header
13#include <QtCore/qrect.h>
14#include <QtCore/qsize.h>
15
16class QPainter;
17
18namespace ot {
19
22 public:
24 virtual ~ImagePainter() {};
25
26 virtual void paintImage(QPainter* _painter, const QRectF& _bounds) const = 0;
27
28 virtual QSizeF getDefaultImageSize(void) const = 0;
29
30 };
31
32}
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
Definition ImagePainter.h:20
virtual void paintImage(QPainter *_painter, const QRectF &_bounds) const =0
ImagePainter()
Definition ImagePainter.h:23
virtual ~ImagePainter()
Definition ImagePainter.h:24
virtual QSizeF getDefaultImageSize(void) const =0
Definition Connector.h:8