LibreOffice Module shell (master) 1
macbackend.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
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 .
18 */
19
20#ifndef INCLUDED_SHELL_SOURCE_BACKENDS_MACBE_MACBACKEND_HXX
21#define INCLUDED_SHELL_SOURCE_BACKENDS_MACBE_MACBACKEND_HXX
22
23#include <com/sun/star/beans/XPropertySet.hpp>
24#include <com/sun/star/lang/XServiceInfo.hpp>
26#include <rtl/string.hxx>
27
28// FIXME: stdio.h only for debugging...
29#include <stdio.h>
30
31namespace uno = css::uno;
32namespace lang = css::lang;
33
34class MacOSXBackend : public ::cppu::WeakImplHelper <css::beans::XPropertySet, lang::XServiceInfo >
35{
36
37public:
38
39 // XServiceInfo
40 virtual OUString SAL_CALL getImplementationName() override;
41
42 virtual sal_Bool SAL_CALL supportsService(const OUString& aServiceName) override;
43
44 virtual uno::Sequence<OUString> SAL_CALL getSupportedServiceNames() override;
45
46 // XPropertySet
47 virtual css::uno::Reference< css::beans::XPropertySetInfo > SAL_CALL
49 { return css::uno::Reference< css::beans::XPropertySetInfo >(); }
50
51 virtual void SAL_CALL setPropertyValue(
52 OUString const &, css::uno::Any const &) override;
53
54 virtual css::uno::Any SAL_CALL getPropertyValue(
55 OUString const & PropertyName) override;
56
57 virtual void SAL_CALL addPropertyChangeListener(
58 OUString const &,
59 css::uno::Reference< css::beans::XPropertyChangeListener > const &) override
60 {}
61
62 virtual void SAL_CALL removePropertyChangeListener(
63 OUString const &,
64 css::uno::Reference< css::beans::XPropertyChangeListener > const &) override
65 {}
66
67 virtual void SAL_CALL addVetoableChangeListener(
68 OUString const &,
69 css::uno::Reference< css::beans::XVetoableChangeListener > const &) override
70 {}
71
72 virtual void SAL_CALL removeVetoableChangeListener(
73 OUString const &,
74 css::uno::Reference< css::beans::XVetoableChangeListener > const &) override
75 {}
76
83
85 virtual ~MacOSXBackend() override;
86};
87
88#endif // INCLUDED_SHELL_SOURCE_BACKENDS_MACBE_MACBACKEND_HXX
89
90/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
virtual OUString SAL_CALL getImplementationName() override
Definition: macbackend.mm:372
virtual ~MacOSXBackend() override
Destructor.
Definition: macbackend.mm:150
virtual sal_Bool SAL_CALL supportsService(const OUString &aServiceName) override
Definition: macbackend.mm:377
virtual void SAL_CALL addVetoableChangeListener(OUString const &, css::uno::Reference< css::beans::XVetoableChangeListener > const &) override
Definition: macbackend.hxx:67
virtual uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override
Definition: macbackend.mm:382
virtual void SAL_CALL addPropertyChangeListener(OUString const &, css::uno::Reference< css::beans::XPropertyChangeListener > const &) override
Definition: macbackend.hxx:57
virtual void SAL_CALL removeVetoableChangeListener(OUString const &, css::uno::Reference< css::beans::XVetoableChangeListener > const &) override
Definition: macbackend.hxx:72
virtual void SAL_CALL setPropertyValue(OUString const &, css::uno::Any const &) override
Definition: macbackend.mm:184
virtual void SAL_CALL removePropertyChangeListener(OUString const &, css::uno::Reference< css::beans::XPropertyChangeListener > const &) override
Definition: macbackend.hxx:62
MacOSXBackend()
Service constructor from a service factory.
Definition: macbackend.mm:146
virtual css::uno::Any SAL_CALL getPropertyValue(OUString const &PropertyName) override
Definition: macbackend.mm:192
virtual css::uno::Reference< css::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo() override
Definition: macbackend.hxx:48
unsigned char sal_Bool