Orcus
Loading...
Searching...
No Matches
import_interface_underline.hpp
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
6 */
7
8#pragma once
9
10#include "../env.hpp"
11#include "types.hpp"
12
13namespace orcus { namespace spreadsheet { namespace iface {
14
18class ORCUS_DLLPUBLIC import_underline
19{
20public:
22
28 virtual void set_style(underline_style_t e) = 0;
29
35 virtual void set_thickness(underline_thickness_t e) = 0;
36
43 virtual void set_spacing(underline_spacing_t e) = 0;
44
50 virtual void set_count(underline_count_t e) = 0;
51
62 virtual void set_color(color_elem_t alpha, color_elem_t red, color_elem_t green, color_elem_t blue) = 0;
63
67 virtual void commit() = 0;
68};
69
70}}}
71
72/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Definition import_interface_underline.hpp:19
virtual void set_style(underline_style_t e)=0
virtual void set_thickness(underline_thickness_t e)=0
virtual void set_color(color_elem_t alpha, color_elem_t red, color_elem_t green, color_elem_t blue)=0
virtual void set_spacing(underline_spacing_t e)=0
virtual void set_count(underline_count_t e)=0