Mercurial > hg > orthanc-stone
annotate OrthancStone/Sources/Fonts/Glyph.cpp @ 1791:9b650ab68d4c
replaced unneeded use of boost::share_ptr for MeasureCommand mementos by std::unique_ptr
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Mon, 17 May 2021 16:11:17 +0200 |
parents | 9ac2a65d4172 |
children | 3889ae96d2e9 |
rev | line source |
---|---|
576 | 1 /** |
2 * Stone of Orthanc | |
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics | |
4 * Department, University Hospital of Liege, Belgium | |
1739
9ac2a65d4172
upgrade to year 2021
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1598
diff
changeset
|
5 * Copyright (C) 2017-2021 Osimis S.A., Belgium |
576 | 6 * |
7 * This program is free software: you can redistribute it and/or | |
1598
8563ea5d8ae4
relicensing some files, cf. osimis bm26 and chu agreement on 2020-05-20
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1596
diff
changeset
|
8 * modify it under the terms of the GNU Lesser General Public License |
576 | 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 | |
1598
8563ea5d8ae4
relicensing some files, cf. osimis bm26 and chu agreement on 2020-05-20
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1596
diff
changeset
|
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
8563ea5d8ae4
relicensing some files, cf. osimis bm26 and chu agreement on 2020-05-20
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1596
diff
changeset
|
15 * Lesser General Public License for more details. |
1596
4fb8fdf03314
removed annoying whitespace
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1512
diff
changeset
|
16 * |
1598
8563ea5d8ae4
relicensing some files, cf. osimis bm26 and chu agreement on 2020-05-20
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1596
diff
changeset
|
17 * You should have received a copy of the GNU Lesser General Public |
8563ea5d8ae4
relicensing some files, cf. osimis bm26 and chu agreement on 2020-05-20
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1596
diff
changeset
|
18 * License along with this program. If not, see |
8563ea5d8ae4
relicensing some files, cf. osimis bm26 and chu agreement on 2020-05-20
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1596
diff
changeset
|
19 * <http://www.gnu.org/licenses/>. |
576 | 20 **/ |
21 | |
22 | |
23 #include "Glyph.h" | |
24 | |
1455
30deba7bc8e2
simplifying include_directories
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1270
diff
changeset
|
25 #include <OrthancException.h> |
576 | 26 |
27 | |
28 namespace OrthancStone | |
29 { | |
30 Glyph::Glyph(const Glyph& other) : | |
31 width_(other.width_), | |
32 height_(other.height_), | |
33 offsetLeft_(other.offsetLeft_), | |
34 offsetTop_(other.offsetTop_), | |
35 advanceX_(other.advanceX_), | |
36 lineHeight_(other.lineHeight_) | |
37 { | |
38 } | |
39 | |
40 | |
41 Glyph::Glyph(unsigned int width, | |
42 unsigned int height, | |
43 int offsetLeft, | |
44 int offsetTop, | |
45 int advanceX, | |
46 unsigned int lineHeight) : | |
47 width_(width), | |
48 height_(height), | |
49 offsetLeft_(offsetLeft), | |
50 offsetTop_(offsetTop), | |
51 advanceX_(advanceX), | |
52 lineHeight_(lineHeight) | |
53 { | |
54 } | |
55 | |
56 | |
57 void Glyph::SetPayload(Orthanc::IDynamicObject* payload) // Takes ownership | |
58 { | |
59 if (payload == NULL) | |
60 { | |
61 throw Orthanc::OrthancException(Orthanc::ErrorCode_NullPointer); | |
62 } | |
63 else | |
64 { | |
65 payload_.reset(payload); | |
66 } | |
67 } | |
68 | |
69 | |
70 const Orthanc::IDynamicObject& Glyph::GetPayload() const | |
71 { | |
72 if (payload_.get() == NULL) | |
73 { | |
74 throw Orthanc::OrthancException(Orthanc::ErrorCode_BadSequenceOfCalls); | |
75 } | |
76 else | |
77 { | |
78 return *payload_; | |
79 } | |
80 } | |
81 | |
82 | |
83 Orthanc::IDynamicObject* Glyph::ReleasePayload() | |
84 { | |
85 if (payload_.get() == NULL) | |
86 { | |
87 throw Orthanc::OrthancException(Orthanc::ErrorCode_BadSequenceOfCalls); | |
88 } | |
89 else | |
90 { | |
91 return payload_.release(); | |
92 } | |
93 } | |
94 } |