merge the formfield patch from ooo-build
[ooovba.git] / connectivity / source / drivers / mozab / bootstrap / MNSProfileManager.hxx
blob0f0bc24f406a6f99de8474b2ae0a76de263b774f
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: MNSProfileManager.hxx,v $
10 * $Revision: 1.5 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 #ifndef __MNSProfileManager_h___
32 #define __MNSProfileManager_h___
34 #include "mozilla_profilemanager.h"
36 #include <sal/types.h>
37 #include <osl/diagnose.h>
38 #include <osl/conditn.hxx>
39 #ifndef _COM_SUN_STAR_MOZILLA_MOZILLPRODUCTTYPE_HPP_
40 #include <com/sun/star/mozilla/MozillaProductType.hpp>
41 #endif
42 #include <com/sun/star/uno/RuntimeException.hpp>
43 #include <com/sun/star/uno/Sequence.hxx>
45 #include <rtl/ustring.hxx>
46 #include <vector>
47 #include <map>
49 #ifdef XP_OS2
50 #define INCL_DOSERRORS
51 #define INCL_DOSFILEMGR
52 #include <os2.h>
53 #endif
55 using namespace com::sun::star::mozilla;
56 class nsProfile;
57 namespace connectivity
59 namespace mozab
61 class ProfileManager
63 public:
65 virtual ~ProfileManager();
66 ProfileManager();
68 ::sal_Int32 SAL_CALL bootupProfile( ::com::sun::star::mozilla::MozillaProductType product, const ::rtl::OUString& profileName ) throw (::com::sun::star::uno::RuntimeException) ;
69 ::sal_Int32 SAL_CALL shutdownProfile( ) throw (::com::sun::star::uno::RuntimeException) ;
70 ::com::sun::star::mozilla::MozillaProductType SAL_CALL getCurrentProduct( ) throw (::com::sun::star::uno::RuntimeException) ;
71 ::rtl::OUString SAL_CALL getCurrentProfile( ) throw (::com::sun::star::uno::RuntimeException) ;
72 ::rtl::OUString SAL_CALL setCurrentProfile( ::com::sun::star::mozilla::MozillaProductType product, const ::rtl::OUString& profileName ) throw (::com::sun::star::uno::RuntimeException) ;
74 protected:
75 ::com::sun::star::mozilla::MozillaProductType m_CurrentProduct;
76 nsProfile *aProfile;
82 #endif // __MNSProfileManager_h___