comparison Framework/Deprecated/Layers/LineLayerRenderer.h @ 754:92c400a09f1b

Merge from default
author Benjamin Golinvaux <bgo@osimis.io>
date Wed, 22 May 2019 16:13:46 +0200
parents c35e98d22764
children 2d8ab34c8c91
comparison
equal deleted inserted replaced
753:a386bbc955dc 754:92c400a09f1b
1 /**
2 * Stone of Orthanc
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics
4 * Department, University Hospital of Liege, Belgium
5 * Copyright (C) 2017-2019 Osimis S.A., Belgium
6 *
7 * This program is free software: you can redistribute it and/or
8 * modify it under the terms of the GNU Affero General Public License
9 * as published by the Free Software Foundation, either version 3 of
10 * the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Affero General Public License for more details.
16 *
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 **/
20
21
22 #pragma once
23
24 #include "ILayerRenderer.h"
25
26 namespace Deprecated
27 {
28 class LineLayerRenderer : public ILayerRenderer
29 {
30 private:
31 double x1_;
32 double y1_;
33 double x2_;
34 double y2_;
35 OrthancStone::CoordinateSystem3D plane_;
36 bool visible_;
37 uint8_t color_[3];
38
39 public:
40 LineLayerRenderer(double x1,
41 double y1,
42 double x2,
43 double y2,
44 const OrthancStone::CoordinateSystem3D& plane);
45
46 virtual bool RenderLayer(OrthancStone::CairoContext& context,
47 const ViewportGeometry& view);
48
49 virtual void SetLayerStyle(const RenderStyle& style);
50
51 virtual const OrthancStone::CoordinateSystem3D& GetLayerPlane()
52 {
53 return plane_;
54 }
55
56 virtual bool IsFullQuality()
57 {
58 return true;
59 }
60 };
61 }