Mercurial > hg > orthanc-stone
annotate Framework/Layers/LineMeasureTracker.cpp @ 431:26b90b110719 am-vsol-upgrade
added DelayedCallExecutor to avoid using sleep() in C++ that consumes 100% CPU once executed in WASM
author | am@osimis.io |
---|---|
date | Thu, 29 Nov 2018 19:25:15 +0100 |
parents | face7b7008de |
children | b70e9be013e4 |
rev | line source |
---|---|
0 | 1 /** |
2 * Stone of Orthanc | |
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics | |
4 * Department, University Hospital of Liege, Belgium | |
134
4cff7b1ed31d
upgrade to year 2018
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
47
diff
changeset
|
5 * Copyright (C) 2017-2018 Osimis S.A., Belgium |
0 | 6 * |
7 * This program is free software: you can redistribute it and/or | |
47 | 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. | |
0 | 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 | |
47 | 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 | |
0 | 18 * along with this program. If not, see <http://www.gnu.org/licenses/>. |
19 **/ | |
20 | |
21 | |
22 #include "LineMeasureTracker.h" | |
23 | |
24 #include <stdio.h> | |
25 | |
26 namespace OrthancStone | |
27 { | |
28 LineMeasureTracker::LineMeasureTracker(IStatusBar* statusBar, | |
110
53025eecbc95
renamed SliceGeometry as CoordinateSystem3D
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
47
diff
changeset
|
29 const CoordinateSystem3D& slice, |
0 | 30 double x, |
31 double y, | |
32 uint8_t red, | |
33 uint8_t green, | |
34 uint8_t blue, | |
367
face7b7008de
line and circle measure tools are now compatible with WebAssembly
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
332
diff
changeset
|
35 const Orthanc::Font& font) : |
0 | 36 statusBar_(statusBar), |
37 slice_(slice), | |
38 x1_(x), | |
39 y1_(y), | |
40 x2_(x), | |
41 y2_(y), | |
367
face7b7008de
line and circle measure tools are now compatible with WebAssembly
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
332
diff
changeset
|
42 font_(font) |
0 | 43 { |
44 color_[0] = red; | |
45 color_[1] = green; | |
46 color_[2] = blue; | |
47 } | |
48 | |
49 | |
50 void LineMeasureTracker::Render(CairoContext& context, | |
51 double zoom) | |
52 { | |
53 context.SetSourceColor(color_[0], color_[1], color_[2]); | |
54 | |
55 cairo_t* cr = context.GetObject(); | |
56 cairo_set_line_width(cr, 2.0 / zoom); | |
57 cairo_move_to(cr, x1_, y1_); | |
58 cairo_line_to(cr, x2_, y2_); | |
59 cairo_stroke(cr); | |
60 | |
367
face7b7008de
line and circle measure tools are now compatible with WebAssembly
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
332
diff
changeset
|
61 if (y2_ - y1_ < 0) |
0 | 62 { |
367
face7b7008de
line and circle measure tools are now compatible with WebAssembly
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
332
diff
changeset
|
63 context.DrawText(font_, FormatLength(), x2_, y2_ - 5, BitmapAnchor_BottomCenter); |
face7b7008de
line and circle measure tools are now compatible with WebAssembly
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
332
diff
changeset
|
64 } |
face7b7008de
line and circle measure tools are now compatible with WebAssembly
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
332
diff
changeset
|
65 else |
face7b7008de
line and circle measure tools are now compatible with WebAssembly
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
332
diff
changeset
|
66 { |
face7b7008de
line and circle measure tools are now compatible with WebAssembly
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
332
diff
changeset
|
67 context.DrawText(font_, FormatLength(), x2_, y2_ + 5, BitmapAnchor_TopCenter); |
0 | 68 } |
69 } | |
70 | |
71 | |
72 double LineMeasureTracker::GetLength() const // In millimeters | |
73 { | |
74 Vector a = slice_.MapSliceToWorldCoordinates(x1_, y1_); | |
75 Vector b = slice_.MapSliceToWorldCoordinates(x2_, y2_); | |
76 return boost::numeric::ublas::norm_2(b - a); | |
77 } | |
78 | |
79 | |
80 std::string LineMeasureTracker::FormatLength() const | |
81 { | |
82 char buf[64]; | |
83 sprintf(buf, "%0.01f cm", GetLength() / 10.0); | |
84 return buf; | |
85 } | |
86 | |
332
50e5ec1bdd46
separating ZoomMouseTracker and PanMouseTracker from WorldSceneWidget
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
287
diff
changeset
|
87 void LineMeasureTracker::MouseMove(int displayX, |
50e5ec1bdd46
separating ZoomMouseTracker and PanMouseTracker from WorldSceneWidget
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
287
diff
changeset
|
88 int displayY, |
50e5ec1bdd46
separating ZoomMouseTracker and PanMouseTracker from WorldSceneWidget
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
287
diff
changeset
|
89 double x, |
0 | 90 double y) |
91 { | |
92 x2_ = x; | |
93 y2_ = y; | |
94 | |
95 if (statusBar_ != NULL) | |
96 { | |
97 statusBar_->SetMessage("Line length: " + FormatLength()); | |
98 } | |
99 } | |
100 } |