Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_DATATRANSFER_CLIPBOARD_SYSTEMCLIPBOARD_HPP
2 : #define INCLUDED_COM_SUN_STAR_DATATRANSFER_CLIPBOARD_SYSTEMCLIPBOARD_HPP
3 :
4 : #include "sal/config.h"
5 :
6 : #include <cassert>
7 :
8 : #include "com/sun/star/awt/XDisplayConnection.hpp"
9 : #include "com/sun/star/datatransfer/clipboard/XSystemClipboard.hpp"
10 : #include "com/sun/star/script/XInvocation.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 datatransfer { namespace clipboard {
23 :
24 : class SystemClipboard {
25 : public:
26 1 : static ::com::sun::star::uno::Reference< css::datatransfer::clipboard::XSystemClipboard > createDefault(::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > const & the_context) {
27 : assert(the_context.is());
28 1 : ::com::sun::star::uno::Reference< css::datatransfer::clipboard::XSystemClipboard > the_instance;
29 : try {
30 1 : the_instance = ::com::sun::star::uno::Reference< css::datatransfer::clipboard::XSystemClipboard >(the_context->getServiceManager()->createInstanceWithArgumentsAndContext(::rtl::OUString( "com.sun.star.datatransfer.clipboard.SystemClipboard" ), ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any >(), the_context), ::com::sun::star::uno::UNO_QUERY);
31 0 : } catch (const ::com::sun::star::uno::RuntimeException &) {
32 0 : throw;
33 0 : } catch (const ::com::sun::star::uno::Exception & the_exception) {
34 0 : throw ::com::sun::star::uno::DeploymentException(::rtl::OUString( "component context fails to supply service com.sun.star.datatransfer.clipboard.SystemClipboard of type com.sun.star.datatransfer.clipboard.XSystemClipboard: " ) + the_exception.Message, the_context);
35 : }
36 1 : if (!the_instance.is()) {
37 0 : throw ::com::sun::star::uno::DeploymentException(::rtl::OUString( "component context fails to supply service com.sun.star.datatransfer.clipboard.SystemClipboard of type com.sun.star.datatransfer.clipboard.XSystemClipboard" ), the_context);
38 : }
39 1 : return the_instance;
40 : }
41 :
42 1263 : static ::com::sun::star::uno::Reference< css::datatransfer::clipboard::XSystemClipboard > createUnix(::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > const & the_context, const ::com::sun::star::uno::Reference< css::awt::XDisplayConnection >& DisplayConnection, const ::rtl::OUString& ClipboardName, const ::com::sun::star::uno::Reference< css::script::XInvocation >& BmpConverter) {
43 : assert(the_context.is());
44 1263 : ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any > the_arguments(3);
45 1263 : the_arguments[0] <<= DisplayConnection;
46 1263 : the_arguments[1] <<= ClipboardName;
47 1263 : the_arguments[2] <<= BmpConverter;
48 1263 : ::com::sun::star::uno::Reference< css::datatransfer::clipboard::XSystemClipboard > the_instance;
49 : try {
50 1263 : the_instance = ::com::sun::star::uno::Reference< css::datatransfer::clipboard::XSystemClipboard >(the_context->getServiceManager()->createInstanceWithArgumentsAndContext(::rtl::OUString( "com.sun.star.datatransfer.clipboard.SystemClipboard" ), the_arguments, the_context), ::com::sun::star::uno::UNO_QUERY);
51 0 : } catch (const ::com::sun::star::uno::RuntimeException &) {
52 0 : throw;
53 0 : } catch (const ::com::sun::star::uno::Exception & the_exception) {
54 0 : throw ::com::sun::star::uno::DeploymentException(::rtl::OUString( "component context fails to supply service com.sun.star.datatransfer.clipboard.SystemClipboard of type com.sun.star.datatransfer.clipboard.XSystemClipboard: " ) + the_exception.Message, the_context);
55 : }
56 1263 : if (!the_instance.is()) {
57 627 : throw ::com::sun::star::uno::DeploymentException(::rtl::OUString( "component context fails to supply service com.sun.star.datatransfer.clipboard.SystemClipboard of type com.sun.star.datatransfer.clipboard.XSystemClipboard" ), the_context);
58 : }
59 1263 : return the_instance;
60 : }
61 :
62 : private:
63 : SystemClipboard(); // not implemented
64 : SystemClipboard(SystemClipboard &); // not implemented
65 : ~SystemClipboard(); // not implemented
66 : void operator =(SystemClipboard); // not implemented
67 : };
68 :
69 : } } } } }
70 :
71 : #endif // INCLUDED_COM_SUN_STAR_DATATRANSFER_CLIPBOARD_SYSTEMCLIPBOARD_HPP
|