File: DrawTextFTSVG.cpp

package info (click to toggle)
rdkit 202503.1-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 220,160 kB
  • sloc: cpp: 399,240; python: 77,453; ansic: 25,517; java: 8,173; javascript: 4,005; sql: 2,389; yacc: 1,565; lex: 1,263; cs: 1,081; makefile: 580; xml: 229; fortran: 183; sh: 105
file content (108 lines) | stat: -rw-r--r-- 3,658 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
//
//  Copyright (C) 2020-2022 David Cosgrove and other RDKit contributors
//
//   @@ All Rights Reserved @@
//  This file is part of the RDKit.
//  The contents are covered by the terms of the BSD license
//  which is included in the file license.txt, found at the root
//  of the RDKit source tree.
//
// Original author: David Cosgrove (CozChemIx) on 08/05/2020.
//

#include <GraphMol/MolDraw2D/MolDraw2DDetails.h>
#include <GraphMol/MolDraw2D/DrawTextFTSVG.h>

namespace RDKit {

std::string DrawColourToSVG(const DrawColour &col);

namespace MolDraw2D_detail {
// ****************************************************************************
DrawTextFTSVG::DrawTextFTSVG(double max_fnt_sz, double min_fnt_sz,
                             const std::string &font_file, std::ostream &oss,
                             std::string &d_act_class)
    : DrawTextFT(max_fnt_sz, min_fnt_sz, font_file),
      oss_(oss),
      d_active_class_(d_act_class) {}

// ****************************************************************************
double DrawTextFTSVG::extractOutline() {
  std::string col = DrawColourToSVG(colour());

  oss_ << "<path ";
  if (!d_active_class_.empty()) {
    oss_ << "class='" << d_active_class_ << "'"
         << " d='";
  } else {
    oss_ << "d='";
  }

  double adv = DrawTextFT::extractOutline();
  oss_ << "' fill='" << col << "'/>"
       << "\n";

  return adv;
}

// ****************************************************************************
int DrawTextFTSVG::MoveToFunctionImpl(const FT_Vector *to) {
  double dx, dy;
  fontPosToDrawPos(to->x, to->y, dx, dy);
  oss_ << "M " << MolDraw2D_detail::formatDouble(dx) << ' '
       << MolDraw2D_detail::formatDouble(dy) << "\n";

  return 0;
}

// ****************************************************************************
int DrawTextFTSVG::LineToFunctionImpl(const FT_Vector *to) {
  double dx, dy;
  fontPosToDrawPos(to->x, to->y, dx, dy);
  oss_ << "L " << MolDraw2D_detail::formatDouble(dx) << ' '
       << MolDraw2D_detail::formatDouble(dy) << "\n";

  return 0;
}

// ****************************************************************************
int DrawTextFTSVG::ConicToFunctionImpl(const FT_Vector *control,
                                       const FT_Vector *to) {
  double controlX, controlY;
  fontPosToDrawPos(control->x, control->y, controlX, controlY);

  double dx, dy;
  fontPosToDrawPos(to->x, to->y, dx, dy);

  oss_ << "Q " << MolDraw2D_detail::formatDouble(controlX) << ' '
       << MolDraw2D_detail::formatDouble(controlY) << ", "
       << MolDraw2D_detail::formatDouble(dx) << ' '
       << MolDraw2D_detail::formatDouble(dy) << "\n";

  return 0;
}

// ****************************************************************************
int DrawTextFTSVG::CubicToFunctionImpl(const FT_Vector *controlOne,
                                       const FT_Vector *controlTwo,
                                       const FT_Vector *to) {
  double controlOneX, controlOneY;
  fontPosToDrawPos(controlOne->x, controlOne->y, controlOneX, controlOneY);
  double controlTwoX, controlTwoY;
  fontPosToDrawPos(controlTwo->x, controlTwo->y, controlTwoX, controlTwoY);

  double dx, dy;
  fontPosToDrawPos(to->x, to->y, dx, dy);

  oss_ << "C " << MolDraw2D_detail::formatDouble(controlOneX) << ' '
       << MolDraw2D_detail::formatDouble(controlOneY) << ", "
       << MolDraw2D_detail::formatDouble(controlTwoX) << ' '
       << MolDraw2D_detail::formatDouble(controlTwoY) << ", "
       << MolDraw2D_detail::formatDouble(dx) << ' '
       << MolDraw2D_detail::formatDouble(dy) << "\n";

  return 0;
}

}  // namespace MolDraw2D_detail
}  // namespace RDKit