summaryrefslogtreecommitdiffstats
path: root/src/spreadsheet/global_settings.hpp
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-15 05:48:59 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-15 05:48:59 +0000
commitc484829272cd13a738e35412498e12f2c9a194ac (patch)
treea1f5ec09629ee895bd3963fa8820b45f2f4c574b /src/spreadsheet/global_settings.hpp
parentInitial commit. (diff)
downloadliborcus-upstream.tar.xz
liborcus-upstream.zip
Adding upstream version 0.19.2.upstream/0.19.2upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/spreadsheet/global_settings.hpp')
-rw-r--r--src/spreadsheet/global_settings.hpp41
1 files changed, 41 insertions, 0 deletions
diff --git a/src/spreadsheet/global_settings.hpp b/src/spreadsheet/global_settings.hpp
new file mode 100644
index 0000000..8213833
--- /dev/null
+++ b/src/spreadsheet/global_settings.hpp
@@ -0,0 +1,41 @@
+/* -*- 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/.
+ */
+
+#ifndef INCLUDED_ORCUS_SPREADSHEET_GLOBAL_SETTINGS_HPP
+#define INCLUDED_ORCUS_SPREADSHEET_GLOBAL_SETTINGS_HPP
+
+#include "orcus/spreadsheet/import_interface.hpp"
+
+#include <memory>
+
+namespace orcus { namespace spreadsheet {
+
+class document;
+class import_factory;
+
+class import_global_settings : public spreadsheet::iface::import_global_settings
+{
+ struct impl;
+ std::unique_ptr<impl> mp_impl;
+
+public:
+ import_global_settings(import_factory& factory, document& doc);
+ virtual ~import_global_settings() override;
+
+ virtual void set_origin_date(int year, int month, int day) override;
+
+ virtual void set_default_formula_grammar(orcus::spreadsheet::formula_grammar_t grammar) override;
+
+ virtual orcus::spreadsheet::formula_grammar_t get_default_formula_grammar() const override;
+
+ virtual void set_character_set(character_set_t charset) override;
+};
+
+}}
+
+#endif
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */