Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_UI_ADDRESSBOOKSOURCEDIALOG_HPP
2 : #define INCLUDED_COM_SUN_STAR_UI_ADDRESSBOOKSOURCEDIALOG_HPP
3 :
4 : #include "sal/config.h"
5 :
6 : #include <cassert>
7 :
8 : #include "com/sun/star/awt/XWindow.hpp"
9 : #include "com/sun/star/beans/XPropertySet.hpp"
10 : #include "com/sun/star/ui/dialogs/XExecutableDialog.hpp"
11 : #include "com/sun/star/uno/DeploymentException.hpp"
12 : #include "com/sun/star/uno/Exception.hpp"
13 : #include "com/sun/star/uno/RuntimeException.hpp"
14 : #include "com/sun/star/uno/XComponentContext.hpp"
15 : #include "com/sun/star/uno/Any.hxx"
16 : #include "com/sun/star/uno/Reference.hxx"
17 : #include "com/sun/star/uno/Sequence.hxx"
18 : #include "cppu/unotype.hxx"
19 : #include "rtl/ustring.h"
20 : #include "rtl/ustring.hxx"
21 :
22 : namespace com { namespace sun { namespace star { namespace ui {
23 :
24 : class AddressBookSourceDialog {
25 : public:
26 0 : static ::com::sun::star::uno::Reference< css::ui::dialogs::XExecutableDialog > createWithDataSource(::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > const & the_context, const ::com::sun::star::uno::Reference< css::awt::XWindow >& ParentWindow, const ::com::sun::star::uno::Reference< css::beans::XPropertySet >& DataSource, const ::rtl::OUString& DataSourceName, const ::rtl::OUString& Command, const ::rtl::OUString& Title) {
27 : assert(the_context.is());
28 0 : ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any > the_arguments(5);
29 0 : the_arguments[0] <<= ParentWindow;
30 0 : the_arguments[1] <<= DataSource;
31 0 : the_arguments[2] <<= DataSourceName;
32 0 : the_arguments[3] <<= Command;
33 0 : the_arguments[4] <<= Title;
34 0 : ::com::sun::star::uno::Reference< css::ui::dialogs::XExecutableDialog > the_instance;
35 : try {
36 0 : the_instance = ::com::sun::star::uno::Reference< css::ui::dialogs::XExecutableDialog >(the_context->getServiceManager()->createInstanceWithArgumentsAndContext(::rtl::OUString( "com.sun.star.ui.AddressBookSourceDialog" ), the_arguments, the_context), ::com::sun::star::uno::UNO_QUERY);
37 0 : } catch (const ::com::sun::star::uno::RuntimeException &) {
38 0 : throw;
39 0 : } catch (const ::com::sun::star::uno::Exception & the_exception) {
40 0 : throw ::com::sun::star::uno::DeploymentException(::rtl::OUString( "component context fails to supply service com.sun.star.ui.AddressBookSourceDialog of type com.sun.star.ui.dialogs.XExecutableDialog: " ) + the_exception.Message, the_context);
41 : }
42 0 : if (!the_instance.is()) {
43 0 : throw ::com::sun::star::uno::DeploymentException(::rtl::OUString( "component context fails to supply service com.sun.star.ui.AddressBookSourceDialog of type com.sun.star.ui.dialogs.XExecutableDialog" ), the_context);
44 : }
45 0 : return the_instance;
46 : }
47 :
48 : private:
49 : AddressBookSourceDialog(); // not implemented
50 : AddressBookSourceDialog(AddressBookSourceDialog &); // not implemented
51 : ~AddressBookSourceDialog(); // not implemented
52 : void operator =(AddressBookSourceDialog); // not implemented
53 : };
54 :
55 : } } } }
56 :
57 : #endif // INCLUDED_COM_SUN_STAR_UI_ADDRESSBOOKSOURCEDIALOG_HPP
|