Branch libreoffice-5-0-4
[LibreOffice.git] / include / vcl / apptypes.hxx
blobadc1b88f6d52128512ff5e6be06b1049c9b13eda
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_APPTYPES_HXX
21 #define INCLUDED_VCL_APPTYPES_HXX
23 #include <vcl/dllapi.h>
24 #include <tools/rtti.hxx>
25 #include <o3tl/typed_flags_set.hxx>
27 #define EXC_RSCNOTLOADED ((sal_uInt16)0x0100)
28 #define EXC_SYSTEM ((sal_uInt16)0x0300)
29 #define EXC_DISPLAY ((sal_uInt16)0x0400)
30 #define EXC_REMOTE ((sal_uInt16)0x0500)
31 #define EXC_USER ((sal_uInt16)0x1000)
32 #define EXC_MAJORTYPE ((sal_uInt16)0xFF00)
33 #define EXC_MINORTYPE ((sal_uInt16)0x00FF)
35 enum class VclInputFlags {
36 NONE = 0x0000,
37 MOUSE = 0x0001,
38 KEYBOARD = 0x0002,
39 PAINT = 0x0004,
40 TIMER = 0x0008,
41 OTHER = 0x0010,
42 APPEVENT = 0x0020,
44 namespace o3tl
46 template<> struct typed_flags<VclInputFlags> : is_typed_flags<VclInputFlags, 0x003f> {};
49 #define VCL_INPUT_MOUSEANDKEYBOARD (VclInputFlags::MOUSE | VclInputFlags::KEYBOARD)
50 #define VCL_INPUT_ANY (VCL_INPUT_MOUSEANDKEYBOARD | VclInputFlags::PAINT | VclInputFlags::TIMER | VclInputFlags::OTHER | VclInputFlags::APPEVENT)
52 #endif // INCLUDED_VCL_APPTYPES_HXX
54 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */