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 namespace vcl
{ class Window
; }
29 enum class KeyFuncType
: sal_Int32
{ DONTKNOW
, NEW
, OPEN
, SAVE
,
30 SAVEAS
, PRINT
, CLOSE
, QUIT
,
31 CUT
, COPY
, PASTE
, UNDO
,
32 REDO
, DELETE
, REPEAT
, FIND
,
33 FINDBACKWARD
, PROPERTIES
, FRONT
};
38 class VCL_DLLPUBLIC KeyCode
41 sal_uInt16 nKeyCodeAndModifiers
;
45 KeyCode() { nKeyCodeAndModifiers
= 0; eFunc
= KeyFuncType::DONTKNOW
; }
46 KeyCode( sal_uInt16 nKey
, sal_uInt16 nModifier
= 0 );
47 KeyCode( sal_uInt16 nKey
, bool bShift
, bool bMod1
, bool bMod2
, bool bMod3
);
48 KeyCode( KeyFuncType eFunction
);
50 sal_uInt16
GetFullCode() const { return nKeyCodeAndModifiers
; }
51 KeyFuncType
GetFullFunction() const { return eFunc
; }
53 sal_uInt16
GetCode() const
54 { return (nKeyCodeAndModifiers
& KEY_CODE_MASK
); }
56 sal_uInt16
GetModifier() const
57 { return (nKeyCodeAndModifiers
& KEY_MODIFIERS_MASK
); }
59 { return ((nKeyCodeAndModifiers
& KEY_SHIFT
) != 0); }
61 { return ((nKeyCodeAndModifiers
& KEY_MOD1
) != 0); }
63 { return ((nKeyCodeAndModifiers
& KEY_MOD2
) != 0); }
65 { return ((nKeyCodeAndModifiers
& KEY_MOD3
) != 0); }
66 sal_uInt16
GetGroup() const
67 { return (nKeyCodeAndModifiers
& KEYGROUP_TYPE
); }
69 OUString
GetName( vcl::Window
* pWindow
= nullptr ) const;
71 bool IsFunction() const
72 { return (eFunc
!= KeyFuncType::DONTKNOW
); }
74 KeyFuncType
GetFunction() const;
76 bool operator ==( const KeyCode
& rKeyCode
) const;
77 bool operator !=( const KeyCode
& rKeyCode
) const;
82 inline vcl::KeyCode::KeyCode( sal_uInt16 nKey
, sal_uInt16 nModifier
)
84 nKeyCodeAndModifiers
= nKey
| nModifier
;
85 eFunc
= KeyFuncType::DONTKNOW
;
88 inline vcl::KeyCode::KeyCode( sal_uInt16 nKey
, bool bShift
, bool bMod1
, bool bMod2
, bool bMod3
)
90 nKeyCodeAndModifiers
= nKey
;
92 nKeyCodeAndModifiers
|= KEY_SHIFT
;
94 nKeyCodeAndModifiers
|= KEY_MOD1
;
96 nKeyCodeAndModifiers
|= KEY_MOD2
;
98 nKeyCodeAndModifiers
|= KEY_MOD3
;
99 eFunc
= KeyFuncType::DONTKNOW
;
102 inline bool vcl::KeyCode::operator ==( const vcl::KeyCode
& rKeyCode
) const
104 if ( (eFunc
== KeyFuncType::DONTKNOW
) && (rKeyCode
.eFunc
== KeyFuncType::DONTKNOW
) )
105 return (nKeyCodeAndModifiers
== rKeyCode
.nKeyCodeAndModifiers
);
107 return (GetFunction() == rKeyCode
.GetFunction());
110 inline bool vcl::KeyCode::operator !=( const vcl::KeyCode
& rKeyCode
) const
112 if ( (eFunc
== KeyFuncType::DONTKNOW
) && (rKeyCode
.eFunc
== KeyFuncType::DONTKNOW
) )
113 return (nKeyCodeAndModifiers
!= rKeyCode
.nKeyCodeAndModifiers
);
115 return (GetFunction() != rKeyCode
.GetFunction());
118 #endif // INCLUDED_VCL_KEYCOD_HXX
120 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */