Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_FORM_TABORDERDIALOG_HPP
2 : #define INCLUDED_COM_SUN_STAR_FORM_TABORDERDIALOG_HPP
3 :
4 : #include "sal/config.h"
5 :
6 : #include <cassert>
7 :
8 : #include "com/sun/star/awt/XControlContainer.hpp"
9 : #include "com/sun/star/awt/XTabControllerModel.hpp"
10 : #include "com/sun/star/awt/XWindow.hpp"
11 : #include "com/sun/star/ui/dialogs/XExecutableDialog.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 {
24 :
25 : class TabOrderDialog {
26 : public:
27 0 : static ::com::sun::star::uno::Reference< css::ui::dialogs::XExecutableDialog > createWithModel(::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > const & the_context, const ::com::sun::star::uno::Reference< css::awt::XTabControllerModel >& TabbingModel, const ::com::sun::star::uno::Reference< css::awt::XControlContainer >& ControlContext, const ::com::sun::star::uno::Reference< css::awt::XWindow >& ParentWindow) {
28 : assert(the_context.is());
29 0 : ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any > the_arguments(3);
30 0 : the_arguments[0] <<= TabbingModel;
31 0 : the_arguments[1] <<= ControlContext;
32 0 : the_arguments[2] <<= ParentWindow;
33 0 : ::com::sun::star::uno::Reference< css::ui::dialogs::XExecutableDialog > the_instance;
34 : try {
35 0 : the_instance = ::com::sun::star::uno::Reference< css::ui::dialogs::XExecutableDialog >(the_context->getServiceManager()->createInstanceWithArgumentsAndContext(::rtl::OUString( "com.sun.star.form.TabOrderDialog" ), the_arguments, the_context), ::com::sun::star::uno::UNO_QUERY);
36 0 : } catch (const ::com::sun::star::uno::RuntimeException &) {
37 0 : throw;
38 0 : } catch (const ::com::sun::star::uno::Exception & the_exception) {
39 0 : throw ::com::sun::star::uno::DeploymentException(::rtl::OUString( "component context fails to supply service com.sun.star.form.TabOrderDialog of type com.sun.star.ui.dialogs.XExecutableDialog: " ) + the_exception.Message, the_context);
40 : }
41 0 : if (!the_instance.is()) {
42 0 : throw ::com::sun::star::uno::DeploymentException(::rtl::OUString( "component context fails to supply service com.sun.star.form.TabOrderDialog of type com.sun.star.ui.dialogs.XExecutableDialog" ), the_context);
43 : }
44 0 : return the_instance;
45 : }
46 :
47 : private:
48 : TabOrderDialog(); // not implemented
49 : TabOrderDialog(TabOrderDialog &); // not implemented
50 : ~TabOrderDialog(); // not implemented
51 : void operator =(TabOrderDialog); // not implemented
52 : };
53 :
54 : } } } }
55 :
56 : #endif // INCLUDED_COM_SUN_STAR_FORM_TABORDERDIALOG_HPP
|