Coverage Report

Created: 2026-03-31 11:00

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/libreoffice/include/vcl/inputctx.hxx
Line
Count
Source
1
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2
/*
3
 * This file is part of the LibreOffice project.
4
 *
5
 * This Source Code Form is subject to the terms of the Mozilla Public
6
 * License, v. 2.0. If a copy of the MPL was not distributed with this
7
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8
 *
9
 * This file incorporates work covered by the following license notice:
10
 *
11
 *   Licensed to the Apache Software Foundation (ASF) under one or more
12
 *   contributor license agreements. See the NOTICE file distributed
13
 *   with this work for additional information regarding copyright
14
 *   ownership. The ASF licenses this file to you under the Apache
15
 *   License, Version 2.0 (the "License"); you may not use this file
16
 *   except in compliance with the License. You may obtain a copy of
17
 *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
18
 */
19
20
#pragma once
21
22
#include <vcl/dllapi.h>
23
#include <utility>
24
#include <vcl/font.hxx>
25
#include <o3tl/typed_flags_set.hxx>
26
27
28
enum class InputContextFlags
29
{
30
    NONE         = 0x0000,
31
    Text         = 0x0001,
32
    ExtText      = 0x0002
33
};
34
namespace o3tl
35
{
36
    template<> struct typed_flags<InputContextFlags> : is_typed_flags<InputContextFlags, 0x0003> {};
37
}
38
39
40
class VCL_DLLPUBLIC InputContext
41
{
42
private:
43
    vcl::Font          maFont;
44
    InputContextFlags  mnOptions;
45
46
public:
47
138k
                    InputContext() { mnOptions = InputContextFlags::NONE; }
48
                    InputContext( const InputContext& rInputContext ) :
49
4.08k
                        maFont( rInputContext.maFont )
50
4.08k
                    { mnOptions = rInputContext.mnOptions; }
51
                    InputContext( vcl::Font aFont, InputContextFlags nOptions = InputContextFlags::NONE ) :
52
4.08k
                        maFont(std::move( aFont ))
53
4.08k
                    { mnOptions = nOptions; }
54
55
0
    const vcl::Font& GetFont() const { return maFont; }
56
57
4.08k
    void              SetOptions( InputContextFlags nOptions ) { mnOptions = nOptions; }
58
4.08k
    InputContextFlags GetOptions() const { return mnOptions; }
59
60
    InputContext&   operator=( const InputContext& rInputContext );
61
    bool            operator==( const InputContext& rInputContext ) const;
62
    bool            operator!=( const InputContext& rInputContext ) const
63
0
                        { return !(InputContext::operator==( rInputContext )); }
64
};
65
66
inline InputContext& InputContext::operator=( const InputContext& rInputContext )
67
8.16k
{
68
8.16k
    maFont      = rInputContext.maFont;
69
8.16k
    mnOptions   = rInputContext.mnOptions;
70
8.16k
    return *this;
71
8.16k
}
72
73
inline bool InputContext::operator==( const InputContext& rInputContext ) const
74
0
{
75
0
    return ((mnOptions  == rInputContext.mnOptions) &&
76
0
            (maFont     == rInputContext.maFont));
77
0
}
78
79
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */