1 /************************************************************************* 2 * 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 * 5 * Copyright 2000, 2010 Oracle and/or its affiliates. 6 * 7 * OpenOffice.org - a multi-platform office productivity suite 8 * 9 * This file is part of OpenOffice.org. 10 * 11 * OpenOffice.org is free software: you can redistribute it and/or modify 12 * it under the terms of the GNU Lesser General Public License version 3 13 * only, as published by the Free Software Foundation. 14 * 15 * OpenOffice.org is distributed in the hope that it will be useful, 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 * GNU Lesser General Public License version 3 for more details 19 * (a copy is included in the LICENSE file that accompanied this code). 20 * 21 * You should have received a copy of the GNU Lesser General Public License 22 * version 3 along with OpenOffice.org. If not, see 23 * <http://www.openoffice.org/license.html> 24 * for a copy of the LGPLv3 License. 25 * 26 ************************************************************************/ 27 28 29 #ifndef _FPSERVICEINFO_HXX_ 30 #define _FPSERVICEINFO_HXX_ 31 32 //------------------------------------------------------------------------ 33 // defines 34 //------------------------------------------------------------------------ 35 36 // the service name is a description of a set of 37 // interfaces (is the same as component categories in COM) 38 39 #define TMPL95_FILEOPEN_READONLY_VERSION_BOX_ID 1000 40 #define TMPL2000_FILEOPEN_READONLY_VERSION_BOX_ID 1001 41 42 #define TMPL95_FILEOPEN_LINK_PREVIEW_BOX_ID 2000 43 #define TMPL2000_FILEOPEN_LINK_PREVIEW_BOX_ID 2001 44 45 #define TMPL95_FILEOPEN_AUTOEXT_TEMPLATE_BOX_ID 3000 46 #define TMPL2000_FILEOPEN_AUTOEXT_TEMPLATE_BOX_ID 3001 47 48 #define TMPL95_FILESAVE_AUTOEXT_PASSWORD_BOX_ID 4000 49 #define TMPL2000_FILESAVE_AUTOEXT_PASSWORD_BOX_ID 4001 50 51 #define TMPL95_AUTOEXT_PASSWORD_FILTEROPTION_BOX 5000 52 #define TMPL2000_AUTOEXT_PASSWORD_FILTEROPTION_BOX 5001 53 54 #define TMPL95_PLAY_PUSHBUTTON 6000 55 #define TMPL2000_PLAY_PUSHBUTTON 6001 56 57 #define TMPL95_AUTOEXT_SELECTION_BOX 7000 58 #define TMPL2000_AUTOEXT_SELECTION_BOX 7001 59 60 #define TMPL95_FILEOPEN_LINK_PREVIEW_BOX_SIMPLE_ID 8000 61 #define TMPL2000_FILEOPEN_LINK_PREVIEW_BOX_SIMPLE_ID 8001 62 63 #define TMPL95_FILESAVE_AUTOEXT 9000 64 #define TMPL2000_FILESAVE_AUTOEXT 9001 65 66 // the service names 67 #define FILE_PICKER_SERVICE_NAME "com.sun.star.ui.dialogs.SystemFilePicker" 68 69 // the implementation names 70 #define FILE_PICKER_IMPL_NAME "com.sun.star.ui.dialogs.Win32FilePicker" 71 72 // the registry key names 73 // a key under which this service will be registered, Format: -> "/ImplName/UNO/SERVICES/ServiceName" 74 // < Implementation-Name ></UNO/SERVICES/>< Service-Name > 75 #define FILE_PICKER_REGKEY_NAME "/com.sun.star.ui.dialogs.Win32FilePicker/UNO/SERVICES/com.sun.star.ui.dialogs.SystemFilePicker" 76 77 #endif 78