fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / shell / source / backends / macbe / macbackend.hxx
blob1486d1d9ccfcb15670d3b8bead1f5dbf46525b12
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef INCLUDED_SHELL_SOURCE_BACKENDS_MACBE_MACBACKEND_HXX
21 #define INCLUDED_SHELL_SOURCE_BACKENDS_MACBE_MACBACKEND_HXX
23 #include <com/sun/star/beans/XPropertySet.hpp>
24 #include <com/sun/star/lang/XServiceInfo.hpp>
25 #include <cppuhelper/implbase2.hxx>
26 #include <rtl/string.hxx>
28 // FIXME: stdio.h only for debugging...
29 #include <stdio.h>
31 namespace uno = css::uno;
32 namespace lang = css::lang;
34 class MacOSXBackend : public ::cppu::WeakImplHelper2 <css::beans::XPropertySet, lang::XServiceInfo >
37 public:
39 static MacOSXBackend* createInstance();
41 // XServiceInfo
42 virtual OUString SAL_CALL getImplementationName()
43 throw (uno::RuntimeException, std::exception) SAL_OVERRIDE;
45 virtual sal_Bool SAL_CALL supportsService(const OUString& aServiceName)
46 throw (uno::RuntimeException, std::exception) SAL_OVERRIDE;
48 virtual uno::Sequence<OUString> SAL_CALL getSupportedServiceNames()
49 throw (uno::RuntimeException, std::exception) SAL_OVERRIDE;
51 /**
52 Provides the implementation name.
54 @return implementation name
56 static OUString SAL_CALL getBackendName();
58 /**
59 Provides the supported services names
61 @return service names
63 static uno::Sequence<OUString> SAL_CALL getBackendServiceNames();
65 // XPropertySet
66 virtual css::uno::Reference< css::beans::XPropertySetInfo > SAL_CALL
67 getPropertySetInfo() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
68 { return css::uno::Reference< css::beans::XPropertySetInfo >(); }
70 virtual void SAL_CALL setPropertyValue(
71 OUString const &, css::uno::Any const &)
72 throw (
73 css::beans::UnknownPropertyException,
74 css::beans::PropertyVetoException,
75 css::lang::IllegalArgumentException,
76 css::lang::WrappedTargetException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
78 virtual css::uno::Any SAL_CALL getPropertyValue(
79 OUString const & PropertyName)
80 throw (
81 css::beans::UnknownPropertyException,
82 css::lang::WrappedTargetException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
84 virtual void SAL_CALL addPropertyChangeListener(
85 OUString const &,
86 css::uno::Reference< css::beans::XPropertyChangeListener > const &)
87 throw (
88 css::beans::UnknownPropertyException,
89 css::lang::WrappedTargetException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE
92 virtual void SAL_CALL removePropertyChangeListener(
93 OUString const &,
94 css::uno::Reference< css::beans::XPropertyChangeListener > const &)
95 throw (
96 css::beans::UnknownPropertyException,
97 css::lang::WrappedTargetException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE
100 virtual void SAL_CALL addVetoableChangeListener(
101 OUString const &,
102 css::uno::Reference< css::beans::XVetoableChangeListener > const &)
103 throw (
104 css::beans::UnknownPropertyException,
105 css::lang::WrappedTargetException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE
108 virtual void SAL_CALL removeVetoableChangeListener(
109 OUString const &,
110 css::uno::Reference< css::beans::XVetoableChangeListener > const &)
111 throw (
112 css::beans::UnknownPropertyException,
113 css::lang::WrappedTargetException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE
116 protected:
119 Service constructor from a service factory.
121 @param xContext component context
123 MacOSXBackend();
125 /** Destructor */
126 virtual ~MacOSXBackend();
129 #endif // INCLUDED_SHELL_SOURCE_BACKENDS_MACBE_MACBACKEND_HXX
131 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */