RDKit
Open-source cheminformatics and machine learning.
Loading...
Searching...
No Matches
DrawTextFTJS.h
Go to the documentation of this file.
1//
2// Copyright (C) 2020-2022 Greg Landrum and other RDKit contributors
3//
4// @@ All Rights Reserved @@
5// This file is part of the RDKit.
6// The contents are covered by the terms of the BSD license
7// which is included in the file license.txt, found at the root
8// of the RDKit source tree.
9//
10// Original author: Greg Landrum
11//
12
13#ifndef RDKIT_DRAWTEXTFTJS_H
14#define RDKIT_DRAWTEXTFTJS_H
15
16#include <iosfwd>
17#include <emscripten.h>
18#include <emscripten/val.h>
20
21namespace RDKit {
22class MolDraw2DJS;
23namespace MolDraw2D_detail {
24// ****************************************************************************
25class DrawTextFTJS : public DrawTextFT {
26 public:
27 ~DrawTextFTJS() override = default;
28
30 const std::string &font_file, emscripten::val &context);
31 DrawTextFTJS(const DrawTextFTJS &) = delete;
35
36 int MoveToFunctionImpl(const FT_Vector *to) override;
37 int LineToFunctionImpl(const FT_Vector *to) override;
39 const FT_Vector *to) override;
41 const FT_Vector *controlTwo,
42 const FT_Vector *to) override;
43
44 // adds x_trans_ and y_trans_ to coords returns x advance distance
45 double extractOutline() override;
46
47 emscripten::val &context_;
48};
49
50} // namespace MolDraw2D_detail
51} // namespace RDKit
52
53#endif // RDKIT_DRAWTEXTFTSVG_H
int MoveToFunctionImpl(const FT_Vector *to) override
int CubicToFunctionImpl(const FT_Vector *controlOne, const FT_Vector *controlTwo, const FT_Vector *to) override
DrawTextFTJS(double max_fnt_sz, double min_fnt_sz, const std::string &font_file, emscripten::val &context)
DrawTextFTJS & operator=(DrawTextFTJS &&)=delete
int LineToFunctionImpl(const FT_Vector *to) override
DrawTextFTJS & operator=(const DrawTextFTJS &)=delete
int ConicToFunctionImpl(const FT_Vector *control, const FT_Vector *to) override
DrawTextFTJS(const DrawTextFTJS &)=delete
DrawTextFTJS(DrawTextFTJS &&)=delete
Std stuff.
bool rdvalue_is(const RDValue_cast_t)