Line data Source code
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 <tools/solar.h>
24 : #include <vcl/dllapi.h>
25 : #include <vcl/font.hxx>
26 :
27 :
28 : // - InputContext-Flags -
29 :
30 :
31 : #define INPUTCONTEXT_TEXT ((sal_uLong)0x00000001)
32 : #define INPUTCONTEXT_EXTTEXTINPUT ((sal_uLong)0x00000002)
33 : #define INPUTCONTEXT_EXTTEXTINPUT_ON ((sal_uLong)0x00000004)
34 : #define INPUTCONTEXT_EXTTEXTINPUT_OFF ((sal_uLong)0x00000008)
35 :
36 :
37 : // - InputContext -
38 :
39 :
40 0 : class VCL_DLLPUBLIC InputContext
41 : {
42 : private:
43 : Font maFont;
44 : sal_uLong mnOptions;
45 :
46 : public:
47 0 : InputContext() { mnOptions = 0; }
48 0 : InputContext( const InputContext& rInputContext ) :
49 0 : maFont( rInputContext.maFont )
50 0 : { mnOptions = rInputContext.mnOptions; }
51 0 : InputContext( const Font& rFont, sal_uLong nOptions = 0 ) :
52 0 : maFont( rFont )
53 0 : { mnOptions = nOptions; }
54 :
55 : void SetFont( const Font& rFont ) { maFont = rFont; }
56 0 : const Font& GetFont() const { return maFont; }
57 :
58 0 : void SetOptions( sal_uLong nOptions ) { mnOptions = nOptions; }
59 0 : sal_uLong 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 :
67 0 : inline InputContext& InputContext::operator=( const InputContext& rInputContext )
68 : {
69 0 : maFont = rInputContext.maFont;
70 0 : mnOptions = rInputContext.mnOptions;
71 0 : return *this;
72 : }
73 :
74 0 : inline bool InputContext::operator==( const InputContext& rInputContext ) const
75 : {
76 0 : return ((mnOptions == rInputContext.mnOptions) &&
77 0 : (maFont == rInputContext.maFont));
78 : }
79 :
80 : #endif // INCLUDED_VCL_INPUTCTX_HXX
81 :
82 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|