fdo#74697 Add Bluez 5 support for impress remote.
[LibreOffice.git] / include / vcl / apptypes.hxx
blobebb1eb7032126a6ab47f543de698854b16b7d1da
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 _VCL_APPTYPES_HXX
21 #define _VCL_APPTYPES_HXX
23 #include <tools/solar.h>
24 #include <vcl/dllapi.h>
25 #include <tools/rtti.hxx>
27 // ---------------------
28 // - Application-Types -
29 // ---------------------
31 #define EXC_RSCNOTLOADED ((sal_uInt16)0x0100)
32 #define EXC_SYSOBJNOTCREATED ((sal_uInt16)0x0200)
33 #define EXC_SYSTEM ((sal_uInt16)0x0300)
34 #define EXC_DISPLAY ((sal_uInt16)0x0400)
35 #define EXC_REMOTE ((sal_uInt16)0x0500)
36 #define EXC_USER ((sal_uInt16)0x1000)
37 #define EXC_MAJORTYPE ((sal_uInt16)0xFF00)
38 #define EXC_MINORTYPE ((sal_uInt16)0x00FF)
40 #define VCL_INPUT_MOUSE 0x0001
41 #define VCL_INPUT_KEYBOARD 0x0002
42 #define VCL_INPUT_PAINT 0x0004
43 #define VCL_INPUT_TIMER 0x0008
44 #define VCL_INPUT_OTHER 0x0010
45 #define VCL_INPUT_APPEVENT 0x0020
46 #define VCL_INPUT_MOUSEANDKEYBOARD (VCL_INPUT_MOUSE | VCL_INPUT_KEYBOARD)
47 #define VCL_INPUT_ANY (VCL_INPUT_MOUSEANDKEYBOARD | VCL_INPUT_PAINT | VCL_INPUT_TIMER | VCL_INPUT_OTHER | VCL_INPUT_APPEVENT)
49 #endif // _VCL_APPTYPES_HXX
51 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */