LibreOffice Module vcl (master) 1
inputctx.hxx
Go to the documentation of this file.
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#ifndef INCLUDED_VCL_INPUTCTX_HXX
21#define INCLUDED_VCL_INPUTCTX_HXX
22
23#include <vcl/dllapi.h>
24#include <utility>
25#include <vcl/font.hxx>
27
28
30{
31 NONE = 0x0000,
32 Text = 0x0001,
33 ExtText = 0x0002
34};
35namespace o3tl
36{
37 template<> struct typed_flags<InputContextFlags> : is_typed_flags<InputContextFlags, 0x0003> {};
38}
39
40
42{
43private:
46
47public:
49 InputContext( const InputContext& rInputContext ) :
50 maFont( rInputContext.maFont )
51 { mnOptions = rInputContext.mnOptions; }
53 maFont(std::move( aFont ))
54 { mnOptions = nOptions; }
55
56 const vcl::Font& GetFont() const { return maFont; }
57
58 void SetOptions( InputContextFlags nOptions ) { mnOptions = nOptions; }
59 InputContextFlags GetOptions() const { return mnOptions; }
60
61 InputContext& operator=( const InputContext& rInputContext );
62 bool operator==( const InputContext& rInputContext ) const;
63 bool operator!=( const InputContext& rInputContext ) const
64 { return !(InputContext::operator==( rInputContext )); }
65};
66
67inline InputContext& InputContext::operator=( const InputContext& rInputContext )
68{
69 maFont = rInputContext.maFont;
70 mnOptions = rInputContext.mnOptions;
71 return *this;
72}
73
74inline bool InputContext::operator==( const InputContext& rInputContext ) const
75{
76 return ((mnOptions == rInputContext.mnOptions) &&
77 (maFont == rInputContext.maFont));
78}
79
80#endif // INCLUDED_VCL_INPUTCTX_HXX
81
82/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
InputContextFlags GetOptions() const
Definition: inputctx.hxx:59
const vcl::Font & GetFont() const
Definition: inputctx.hxx:56
vcl::Font maFont
Definition: inputctx.hxx:44
InputContextFlags mnOptions
Definition: inputctx.hxx:45
bool operator==(const InputContext &rInputContext) const
Definition: inputctx.hxx:74
InputContext & operator=(const InputContext &rInputContext)
Definition: inputctx.hxx:67
bool operator!=(const InputContext &rInputContext) const
Definition: inputctx.hxx:63
InputContext(const InputContext &rInputContext)
Definition: inputctx.hxx:49
void SetOptions(InputContextFlags nOptions)
Definition: inputctx.hxx:58
InputContext(vcl::Font aFont, InputContextFlags nOptions=InputContextFlags::NONE)
Definition: inputctx.hxx:52
#define VCL_DLLPUBLIC
Definition: dllapi.h:29
InputContextFlags
Definition: inputctx.hxx:30
NONE
bool operator==(const ItalicMatrix &a, const ItalicMatrix &b)
Definition: vclenum.hxx:175