/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /************************************************************************* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 * only, as published by the Free Software Foundation. * * OpenOffice.org is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License version 3 for more details * (a copy is included in the LICENSE file that accompanied this code). * * You should have received a copy of the GNU Lesser General Public License * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. * ************************************************************************/ #ifndef _VCL_APPTYPES_HXX #define _VCL_APPTYPES_HXX #include #include #include // --------------------- // - Application-Types - // --------------------- #define EXC_RSCNOTLOADED ((sal_uInt16)0x0100) #define EXC_SYSOBJNOTCREATED ((sal_uInt16)0x0200) #define EXC_SYSTEM ((sal_uInt16)0x0300) #define EXC_DISPLAY ((sal_uInt16)0x0400) #define EXC_REMOTE ((sal_uInt16)0x0500) #define EXC_USER ((sal_uInt16)0x1000) #define EXC_MAJORTYPE ((sal_uInt16)0xFF00) #define EXC_MINORTYPE ((sal_uInt16)0x00FF) #define UNIQUEID_SV_BEGIN 64000 class VCL_DLLPUBLIC ApplicationProperty { public: virtual ~ApplicationProperty() {} TYPEINFO(); }; #define VCL_INPUT_MOUSE 0x0001 #define VCL_INPUT_KEYBOARD 0x0002 #define VCL_INPUT_PAINT 0x0004 #define VCL_INPUT_TIMER 0x0008 #define VCL_INPUT_OTHER 0x0010 #define VCL_INPUT_APPEVENT 0x0020 #define VCL_INPUT_MOUSEANDKEYBOARD (VCL_INPUT_MOUSE | VCL_INPUT_KEYBOARD) #define VCL_INPUT_ANY (VCL_INPUT_MOUSEANDKEYBOARD | VCL_INPUT_PAINT | VCL_INPUT_TIMER | VCL_INPUT_OTHER | VCL_INPUT_APPEVENT) #endif // _VCL_APPTYPES_HXX /* vim:set shiftwidth=4 softtabstop=4 expandtab: */