blob: b49d2744fb72d09b2d721b314f60bff5cd246d01 (
plain)
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
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
#pragma once
#include <orcus/spreadsheet/import_interface.hpp>
#include <orcus/spreadsheet/document_types.hpp>
#include <memory>
namespace ixion {
class model_context;
}
namespace orcus {
class string_pool;
namespace spreadsheet {
class styles;
class shared_strings;
namespace detail {
class import_shared_strings : public iface::import_shared_strings
{
orcus::string_pool& m_string_pool;
ixion::model_context& m_cxt;
styles& m_styles;
shared_strings& m_ss_store;
std::string m_cur_segment_string;
format_run m_cur_format;
std::unique_ptr<format_runs_t> mp_cur_format_runs;
public:
import_shared_strings(
string_pool& sp, ixion::model_context& cxt, styles& st,
orcus::spreadsheet::shared_strings& ss_store);
virtual ~import_shared_strings() override;
virtual size_t append(std::string_view s) override;
virtual size_t add(std::string_view s) override;
virtual void set_segment_font(size_t font_index) override;
virtual void set_segment_bold(bool b) override;
virtual void set_segment_italic(bool b) override;
virtual void set_segment_font_name(std::string_view s) override;
virtual void set_segment_font_size(double point) override;
virtual void set_segment_font_color(color_elem_t alpha, color_elem_t red, color_elem_t green, color_elem_t blue) override;
virtual void append_segment(std::string_view s) override;
virtual size_t commit_segments() override;
};
}}} // namespace orcus::spreadsheet::detail
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|