LibreOffice Module shell (master) 1
localebackend.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_LOCALEBE_LOCALEBACKEND_HXX
21#define INCLUDED_SHELL_SOURCE_BACKENDS_LOCALEBE_LOCALEBACKEND_HXX
22
23#include <sal/config.h>
24
25#include <com/sun/star/beans/Optional.hpp>
26#include <com/sun/star/beans/XPropertySet.hpp>
27#include <com/sun/star/lang/XServiceInfo.hpp>
29
30
31namespace uno = css::uno ;
32namespace lang = css::lang ;
33
34class LocaleBackend final : public ::cppu::WeakImplHelper <
35 css::beans::XPropertySet,
36 lang::XServiceInfo >
37{
38
39 public:
40
41 // XServiceInfo
42 virtual OUString SAL_CALL
43 getImplementationName( ) override ;
44
45 virtual sal_Bool SAL_CALL
46 supportsService( const OUString& aServiceName ) override ;
47
48 virtual uno::Sequence<OUString> SAL_CALL
49 getSupportedServiceNames( ) override ;
50
51 // XPropertySet
52 virtual css::uno::Reference< css::beans::XPropertySetInfo > SAL_CALL
54 { return css::uno::Reference< css::beans::XPropertySetInfo >(); }
55
56 virtual void SAL_CALL setPropertyValue(
57 OUString const &, css::uno::Any const &) override;
58
59 virtual css::uno::Any SAL_CALL getPropertyValue(
60 OUString const & PropertyName) override;
61
62 virtual void SAL_CALL addPropertyChangeListener(
63 OUString const &,
64 css::uno::Reference< css::beans::XPropertyChangeListener > const &) override
65 {}
66
67 virtual void SAL_CALL removePropertyChangeListener(
68 OUString const &,
69 css::uno::Reference< css::beans::XPropertyChangeListener > const &) override
70 {}
71
72 virtual void SAL_CALL addVetoableChangeListener(
73 OUString const &,
74 css::uno::Reference< css::beans::XVetoableChangeListener > const &) override
75 {}
76
77 virtual void SAL_CALL removeVetoableChangeListener(
78 OUString const &,
79 css::uno::Reference< css::beans::XVetoableChangeListener > const &) override
80 {}
81
88
90 virtual ~LocaleBackend() override ;
91
92 private:
93 // Returns the user locale
94 static css::beans::Optional<css::uno::Any> getLocale();
95
96 // Returns the user UI locale
97 static css::beans::Optional<css::uno::Any> getUILocale();
98
99 // Returns the system default locale
100 static css::beans::Optional<css::uno::Any> getSystemLocale();
101} ;
102
103
104#endif // INCLUDED_SHELL_SOURCE_BACKENDS_LOCALEBE_LOCALEBACKEND_HXX
105
106/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
virtual void SAL_CALL setPropertyValue(OUString const &, css::uno::Any const &) override
virtual css::uno::Reference< css::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo() override
virtual uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override
static css::beans::Optional< css::uno::Any > getLocale()
virtual void SAL_CALL addVetoableChangeListener(OUString const &, css::uno::Reference< css::beans::XVetoableChangeListener > const &) override
virtual OUString SAL_CALL getImplementationName() override
virtual sal_Bool SAL_CALL supportsService(const OUString &aServiceName) override
virtual css::uno::Any SAL_CALL getPropertyValue(OUString const &PropertyName) override
virtual void SAL_CALL addPropertyChangeListener(OUString const &, css::uno::Reference< css::beans::XPropertyChangeListener > const &) override
virtual void SAL_CALL removeVetoableChangeListener(OUString const &, css::uno::Reference< css::beans::XVetoableChangeListener > const &) override
static css::beans::Optional< css::uno::Any > getSystemLocale()
static css::beans::Optional< css::uno::Any > getUILocale()
virtual ~LocaleBackend() override
Destructor.
virtual void SAL_CALL removePropertyChangeListener(OUString const &, css::uno::Reference< css::beans::XPropertyChangeListener > const &) override
LocaleBackend()
Service constructor from a service factory.
unsigned char sal_Bool