Update ooo320-m1
[ooovba.git] / svx / source / dialog / databaseregistrationui.cxx
blob84f5debf8c99a2167b0fee2232c05b42136dc8e3
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: databaseregistrationui.cxx,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 // MARKER(update_precomp.py): autogen include statement, do not remove
32 #include "precompiled_svx.hxx"
34 // === includes (declaration) ============================================
35 #include "databaseregistrationui.hxx"
37 // === includes (UNO) ====================================================
38 // === /includes (UNO) ===================================================
40 // === includes (project) ================================================
41 #include <svx/svxdlg.hxx>
42 #ifndef _SVX_DIALOGS_HRC
43 #include <svx/dialogs.hrc>
44 #endif
45 //#include "connpooloptions.hxx"
46 // === /includes (project) ===============================================
48 // === includes (global) =================================================
49 #include <sfx2/app.hxx>
50 #include <svtools/itemset.hxx>
51 #include <vcl/msgbox.hxx>
52 // === /includes (global) ================================================
54 namespace svx
56 USHORT administrateDatabaseRegistration( Window* _parentWindow )
58 USHORT nResult = RET_CANCEL;
60 SfxItemSet aRegistrationItems( SFX_APP()->GetPool(), SID_SB_DB_REGISTER, SID_SB_DB_REGISTER, 0 );
62 SvxAbstractDialogFactory* pDialogFactory = SvxAbstractDialogFactory::Create();
63 ::std::auto_ptr< SfxAbstractDialog > pDialog;
64 if ( pDialogFactory )
65 pDialog.reset( pDialogFactory->CreateSfxDialog( _parentWindow, aRegistrationItems, NULL, RID_SFXPAGE_DBREGISTER ) );
66 if ( pDialog.get() )
67 nResult = pDialog->Execute();
69 return nResult;
72 } // namespace svx