Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_DEPLOYMENT_UI_PACKAGEMANAGERDIALOG_HPP
2 : #define INCLUDED_COM_SUN_STAR_DEPLOYMENT_UI_PACKAGEMANAGERDIALOG_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/ui/dialogs/XAsynchronousExecutableDialog.hpp"
10 : #include "com/sun/star/uno/DeploymentException.hpp"
11 : #include "com/sun/star/uno/Exception.hpp"
12 : #include "com/sun/star/uno/RuntimeException.hpp"
13 : #include "com/sun/star/uno/XComponentContext.hpp"
14 : #include "com/sun/star/uno/Any.hxx"
15 : #include "com/sun/star/uno/Reference.hxx"
16 : #include "com/sun/star/uno/Sequence.hxx"
17 : #include "cppu/unotype.hxx"
18 : #include "rtl/ustring.h"
19 : #include "rtl/ustring.hxx"
20 :
21 : namespace com { namespace sun { namespace star { namespace deployment { namespace ui {
22 :
23 : class PackageManagerDialog {
24 : public:
25 : static ::com::sun::star::uno::Reference< css::ui::dialogs::XAsynchronousExecutableDialog > createDefault(::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > const & the_context) {
26 : assert(the_context.is());
27 : ::com::sun::star::uno::Reference< css::ui::dialogs::XAsynchronousExecutableDialog > the_instance;
28 : try {
29 : the_instance = ::com::sun::star::uno::Reference< css::ui::dialogs::XAsynchronousExecutableDialog >(the_context->getServiceManager()->createInstanceWithArgumentsAndContext(::rtl::OUString( "com.sun.star.deployment.ui.PackageManagerDialog" ), ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any >(), the_context), ::com::sun::star::uno::UNO_QUERY);
30 : } catch (const ::com::sun::star::uno::RuntimeException &) {
31 : throw;
32 : } catch (const ::com::sun::star::uno::Exception & the_exception) {
33 : throw ::com::sun::star::uno::DeploymentException(::rtl::OUString( "component context fails to supply service com.sun.star.deployment.ui.PackageManagerDialog of type com.sun.star.ui.dialogs.XAsynchronousExecutableDialog: " ) + the_exception.Message, the_context);
34 : }
35 : if (!the_instance.is()) {
36 : throw ::com::sun::star::uno::DeploymentException(::rtl::OUString( "component context fails to supply service com.sun.star.deployment.ui.PackageManagerDialog of type com.sun.star.ui.dialogs.XAsynchronousExecutableDialog" ), the_context);
37 : }
38 : return the_instance;
39 : }
40 :
41 : static ::com::sun::star::uno::Reference< css::ui::dialogs::XAsynchronousExecutableDialog > create(::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > const & the_context, const ::com::sun::star::uno::Reference< css::awt::XWindow >& xParent, const ::rtl::OUString& focussedContext) {
42 : assert(the_context.is());
43 : ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any > the_arguments(2);
44 : the_arguments[0] <<= xParent;
45 : the_arguments[1] <<= focussedContext;
46 : ::com::sun::star::uno::Reference< css::ui::dialogs::XAsynchronousExecutableDialog > the_instance;
47 : try {
48 : the_instance = ::com::sun::star::uno::Reference< css::ui::dialogs::XAsynchronousExecutableDialog >(the_context->getServiceManager()->createInstanceWithArgumentsAndContext(::rtl::OUString( "com.sun.star.deployment.ui.PackageManagerDialog" ), the_arguments, the_context), ::com::sun::star::uno::UNO_QUERY);
49 : } catch (const ::com::sun::star::uno::RuntimeException &) {
50 : throw;
51 : } catch (const ::com::sun::star::uno::Exception & the_exception) {
52 : throw ::com::sun::star::uno::DeploymentException(::rtl::OUString( "component context fails to supply service com.sun.star.deployment.ui.PackageManagerDialog of type com.sun.star.ui.dialogs.XAsynchronousExecutableDialog: " ) + the_exception.Message, the_context);
53 : }
54 : if (!the_instance.is()) {
55 : throw ::com::sun::star::uno::DeploymentException(::rtl::OUString( "component context fails to supply service com.sun.star.deployment.ui.PackageManagerDialog of type com.sun.star.ui.dialogs.XAsynchronousExecutableDialog" ), the_context);
56 : }
57 : return the_instance;
58 : }
59 :
60 0 : static ::com::sun::star::uno::Reference< css::ui::dialogs::XAsynchronousExecutableDialog > createAndInstall(::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > const & the_context, const ::rtl::OUString& extensionURL) {
61 : assert(the_context.is());
62 0 : ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any > the_arguments(1);
63 0 : the_arguments[0] <<= extensionURL;
64 0 : ::com::sun::star::uno::Reference< css::ui::dialogs::XAsynchronousExecutableDialog > the_instance;
65 : try {
66 0 : the_instance = ::com::sun::star::uno::Reference< css::ui::dialogs::XAsynchronousExecutableDialog >(the_context->getServiceManager()->createInstanceWithArgumentsAndContext(::rtl::OUString( "com.sun.star.deployment.ui.PackageManagerDialog" ), the_arguments, the_context), ::com::sun::star::uno::UNO_QUERY);
67 0 : } catch (const ::com::sun::star::uno::RuntimeException &) {
68 0 : throw;
69 0 : } catch (const ::com::sun::star::uno::Exception & the_exception) {
70 0 : throw ::com::sun::star::uno::DeploymentException(::rtl::OUString( "component context fails to supply service com.sun.star.deployment.ui.PackageManagerDialog of type com.sun.star.ui.dialogs.XAsynchronousExecutableDialog: " ) + the_exception.Message, the_context);
71 : }
72 0 : if (!the_instance.is()) {
73 0 : throw ::com::sun::star::uno::DeploymentException(::rtl::OUString( "component context fails to supply service com.sun.star.deployment.ui.PackageManagerDialog of type com.sun.star.ui.dialogs.XAsynchronousExecutableDialog" ), the_context);
74 : }
75 0 : return the_instance;
76 : }
77 :
78 : private:
79 : PackageManagerDialog(); // not implemented
80 : PackageManagerDialog(PackageManagerDialog &); // not implemented
81 : ~PackageManagerDialog(); // not implemented
82 : void operator =(PackageManagerDialog); // not implemented
83 : };
84 :
85 : } } } } }
86 :
87 : #endif // INCLUDED_COM_SUN_STAR_DEPLOYMENT_UI_PACKAGEMANAGERDIALOG_HPP
|