1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #ifndef INCLUDED_VCL_KEYCOD_HXX
21 #define INCLUDED_VCL_KEYCOD_HXX
23 #include <rtl/ustring.hxx>
24 #include <vcl/dllapi.h>
25 #include <vcl/keycodes.hxx>
27 enum class KeyFuncType
: sal_Int32
{ DONTKNOW
,
28 CUT
, COPY
, PASTE
, UNDO
,
34 class VCL_DLLPUBLIC KeyCode
37 sal_uInt16 nKeyCodeAndModifiers
;
41 KeyCode() { nKeyCodeAndModifiers
= 0; eFunc
= KeyFuncType::DONTKNOW
; }
42 KeyCode( sal_uInt16 nKey
, sal_uInt16 nModifier
= 0 );
43 KeyCode( sal_uInt16 nKey
, bool bShift
, bool bMod1
, bool bMod2
, bool bMod3
);
44 KeyCode( KeyFuncType eFunction
);
46 sal_uInt16
GetFullCode() const { return nKeyCodeAndModifiers
; }
47 KeyFuncType
GetFullFunction() const { return eFunc
; }
49 sal_uInt16
GetCode() const
50 { return (nKeyCodeAndModifiers
& KEY_CODE_MASK
); }
52 sal_uInt16
GetModifier() const
53 { return (nKeyCodeAndModifiers
& KEY_MODIFIERS_MASK
); }
55 { return ((nKeyCodeAndModifiers
& KEY_SHIFT
) != 0); }
57 { return ((nKeyCodeAndModifiers
& KEY_MOD1
) != 0); }
59 { return ((nKeyCodeAndModifiers
& KEY_MOD2
) != 0); }
61 { return ((nKeyCodeAndModifiers
& KEY_MOD3
) != 0); }
62 sal_uInt16
GetGroup() const
63 { return (nKeyCodeAndModifiers
& KEYGROUP_TYPE
); }
65 OUString
GetName() const;
67 bool IsFunction() const
68 { return (eFunc
!= KeyFuncType::DONTKNOW
); }
70 KeyFuncType
GetFunction() const;
72 bool operator ==( const KeyCode
& rKeyCode
) const;
73 bool operator !=( const KeyCode
& rKeyCode
) const;
78 inline vcl::KeyCode::KeyCode( sal_uInt16 nKey
, sal_uInt16 nModifier
)
80 nKeyCodeAndModifiers
= nKey
| nModifier
;
81 eFunc
= KeyFuncType::DONTKNOW
;
84 inline vcl::KeyCode::KeyCode( sal_uInt16 nKey
, bool bShift
, bool bMod1
, bool bMod2
, bool bMod3
)
86 nKeyCodeAndModifiers
= nKey
;
88 nKeyCodeAndModifiers
|= KEY_SHIFT
;
90 nKeyCodeAndModifiers
|= KEY_MOD1
;
92 nKeyCodeAndModifiers
|= KEY_MOD2
;
94 nKeyCodeAndModifiers
|= KEY_MOD3
;
95 eFunc
= KeyFuncType::DONTKNOW
;
98 inline bool vcl::KeyCode::operator ==( const vcl::KeyCode
& rKeyCode
) const
100 if ( (eFunc
== KeyFuncType::DONTKNOW
) && (rKeyCode
.eFunc
== KeyFuncType::DONTKNOW
) )
101 return (nKeyCodeAndModifiers
== rKeyCode
.nKeyCodeAndModifiers
);
103 return (GetFunction() == rKeyCode
.GetFunction());
106 inline bool vcl::KeyCode::operator !=( const vcl::KeyCode
& rKeyCode
) const
108 if ( (eFunc
== KeyFuncType::DONTKNOW
) && (rKeyCode
.eFunc
== KeyFuncType::DONTKNOW
) )
109 return (nKeyCodeAndModifiers
!= rKeyCode
.nKeyCodeAndModifiers
);
111 return (GetFunction() != rKeyCode
.GetFunction());
114 #endif // INCLUDED_VCL_KEYCOD_HXX
116 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */