Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_FORM_RUNTIME_FORMOPERATIONS_HPP
2 : #define INCLUDED_COM_SUN_STAR_FORM_RUNTIME_FORMOPERATIONS_HPP
3 :
4 : #include "sal/config.h"
5 :
6 : #include <cassert>
7 :
8 : #include "com/sun/star/form/XForm.hpp"
9 : #include "com/sun/star/form/runtime/XFormController.hpp"
10 : #include "com/sun/star/form/runtime/XFormOperations.hpp"
11 : #include "com/sun/star/lang/IllegalArgumentException.hpp"
12 : #include "com/sun/star/uno/DeploymentException.hpp"
13 : #include "com/sun/star/uno/Exception.hpp"
14 : #include "com/sun/star/uno/RuntimeException.hpp"
15 : #include "com/sun/star/uno/XComponentContext.hpp"
16 : #include "com/sun/star/uno/Any.hxx"
17 : #include "com/sun/star/uno/Reference.hxx"
18 : #include "com/sun/star/uno/Sequence.hxx"
19 : #include "cppu/unotype.hxx"
20 : #include "rtl/ustring.h"
21 : #include "rtl/ustring.hxx"
22 :
23 : namespace com { namespace sun { namespace star { namespace form { namespace runtime {
24 :
25 : class FormOperations {
26 : public:
27 72 : static ::com::sun::star::uno::Reference< css::form::runtime::XFormOperations > createWithFormController(::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > const & the_context, const ::com::sun::star::uno::Reference< css::form::runtime::XFormController >& Controller) {
28 : assert(the_context.is());
29 72 : ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any > the_arguments(1);
30 72 : the_arguments[0] <<= Controller;
31 72 : ::com::sun::star::uno::Reference< css::form::runtime::XFormOperations > the_instance;
32 : try {
33 72 : the_instance = ::com::sun::star::uno::Reference< css::form::runtime::XFormOperations >(the_context->getServiceManager()->createInstanceWithArgumentsAndContext(::rtl::OUString( "com.sun.star.form.runtime.FormOperations" ), the_arguments, the_context), ::com::sun::star::uno::UNO_QUERY);
34 0 : } catch (const ::com::sun::star::uno::RuntimeException &) {
35 0 : throw;
36 0 : } catch (const ::com::sun::star::uno::Exception & the_exception) {
37 0 : throw ::com::sun::star::uno::DeploymentException(::rtl::OUString( "component context fails to supply service com.sun.star.form.runtime.FormOperations of type com.sun.star.form.runtime.XFormOperations: " ) + the_exception.Message, the_context);
38 : }
39 72 : if (!the_instance.is()) {
40 0 : throw ::com::sun::star::uno::DeploymentException(::rtl::OUString( "component context fails to supply service com.sun.star.form.runtime.FormOperations of type com.sun.star.form.runtime.XFormOperations" ), the_context);
41 : }
42 72 : return the_instance;
43 : }
44 :
45 : static ::com::sun::star::uno::Reference< css::form::runtime::XFormOperations > createWithForm(::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > const & the_context, const ::com::sun::star::uno::Reference< css::form::XForm >& Form) {
46 : assert(the_context.is());
47 : ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any > the_arguments(1);
48 : the_arguments[0] <<= Form;
49 : ::com::sun::star::uno::Reference< css::form::runtime::XFormOperations > the_instance;
50 : try {
51 : the_instance = ::com::sun::star::uno::Reference< css::form::runtime::XFormOperations >(the_context->getServiceManager()->createInstanceWithArgumentsAndContext(::rtl::OUString( "com.sun.star.form.runtime.FormOperations" ), the_arguments, the_context), ::com::sun::star::uno::UNO_QUERY);
52 : } catch (const ::com::sun::star::uno::RuntimeException &) {
53 : throw;
54 : } catch (const ::com::sun::star::uno::Exception & the_exception) {
55 : throw ::com::sun::star::uno::DeploymentException(::rtl::OUString( "component context fails to supply service com.sun.star.form.runtime.FormOperations of type com.sun.star.form.runtime.XFormOperations: " ) + the_exception.Message, the_context);
56 : }
57 : if (!the_instance.is()) {
58 : throw ::com::sun::star::uno::DeploymentException(::rtl::OUString( "component context fails to supply service com.sun.star.form.runtime.FormOperations of type com.sun.star.form.runtime.XFormOperations" ), the_context);
59 : }
60 : return the_instance;
61 : }
62 :
63 : private:
64 : FormOperations(); // not implemented
65 : FormOperations(FormOperations &); // not implemented
66 : ~FormOperations(); // not implemented
67 : void operator =(FormOperations); // not implemented
68 : };
69 :
70 : } } } } }
71 :
72 : #endif // INCLUDED_COM_SUN_STAR_FORM_RUNTIME_FORMOPERATIONS_HPP
|