tdf#149529 crash on deref deleted ScDocument*
[LibreOffice.git] / include / vcl / keycod.hxx
blob68841ef85cac7238d15dc0b5cdb9e8e9b9ee2ea3
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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,
29 REDO, DELETE };
31 namespace vcl
34 class VCL_DLLPUBLIC KeyCode
36 private:
37 sal_uInt16 nKeyCodeAndModifiers;
38 KeyFuncType eFunc;
40 public:
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); }
54 bool IsShift() const
55 { return ((nKeyCodeAndModifiers & KEY_SHIFT) != 0); }
56 bool IsMod1() const
57 { return ((nKeyCodeAndModifiers & KEY_MOD1) != 0); }
58 bool IsMod2() const
59 { return ((nKeyCodeAndModifiers & KEY_MOD2) != 0); }
60 bool IsMod3() const
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;
76 } // namespace vcl
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;
87 if( bShift )
88 nKeyCodeAndModifiers |= KEY_SHIFT;
89 if( bMod1 )
90 nKeyCodeAndModifiers |= KEY_MOD1;
91 if( bMod2 )
92 nKeyCodeAndModifiers |= KEY_MOD2;
93 if( bMod3 )
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);
102 else
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);
110 else
111 return (GetFunction() != rKeyCode.GetFunction());
114 #endif // INCLUDED_VCL_KEYCOD_HXX
116 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */