bump product version to 6.3.0.0.beta1
[LibreOffice.git] / shell / source / backends / wininetbe / wininetbackend.hxx
blob8478f3512f4679b2d5f2d0fe919c9048242baee4
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_WININETBE_WININETBACKEND_HXX
21 #define INCLUDED_SHELL_SOURCE_BACKENDS_WININETBE_WININETBACKEND_HXX
23 #include <com/sun/star/beans/Optional.hpp>
24 #include <com/sun/star/beans/XPropertySet.hpp>
25 #include <com/sun/star/lang/XServiceInfo.hpp>
26 #include <cppuhelper/implbase.hxx>
27 #include <rtl/string.hxx>
29 namespace uno = css::uno ;
30 namespace lang = css::lang ;
32 class WinInetBackend : public ::cppu::WeakImplHelper <
33 css::beans::XPropertySet,
34 lang::XServiceInfo > {
36 public:
38 static WinInetBackend* createInstance();
40 // XServiceInfo
41 virtual OUString SAL_CALL
42 getImplementationName( ) override;
44 virtual sal_Bool SAL_CALL
45 supportsService( const OUString& aServiceName ) override;
47 virtual uno::Sequence<OUString> SAL_CALL
48 getSupportedServiceNames( ) override;
50 /**
51 Provides the implementation name.
53 @return implementation name
55 static OUString getBackendName() ;
56 /**
57 Provides the supported services names
59 @return service names
61 static uno::Sequence<OUString> getBackendServiceNames() ;
63 // XPropertySet
64 virtual css::uno::Reference< css::beans::XPropertySetInfo > SAL_CALL
65 getPropertySetInfo() override
66 { return css::uno::Reference< css::beans::XPropertySetInfo >(); }
68 virtual void SAL_CALL setPropertyValue(
69 OUString const &, css::uno::Any const &) override;
71 virtual css::uno::Any SAL_CALL getPropertyValue(
72 OUString const & PropertyName) override;
74 virtual void SAL_CALL addPropertyChangeListener(
75 OUString const &,
76 css::uno::Reference< css::beans::XPropertyChangeListener > const &) override
79 virtual void SAL_CALL removePropertyChangeListener(
80 OUString const &,
81 css::uno::Reference< css::beans::XPropertyChangeListener > const &) override
84 virtual void SAL_CALL addVetoableChangeListener(
85 OUString const &,
86 css::uno::Reference< css::beans::XVetoableChangeListener > const &) override
89 virtual void SAL_CALL removeVetoableChangeListener(
90 OUString const &,
91 css::uno::Reference< css::beans::XVetoableChangeListener > const &) override
94 protected:
95 /**
96 Service constructor from a service factory.
98 @param xContext component context
100 WinInetBackend();
102 /** Destructor */
103 ~WinInetBackend() override;
105 private:
106 css::beans::Optional< css::uno::Any >
107 valueProxyType_;
108 css::beans::Optional< css::uno::Any >
109 valueNoProxy_;
110 css::beans::Optional< css::uno::Any >
111 valueHttpProxyName_;
112 css::beans::Optional< css::uno::Any >
113 valueHttpProxyPort_;
114 css::beans::Optional< css::uno::Any >
115 valueHttpsProxyName_;
116 css::beans::Optional< css::uno::Any >
117 valueHttpsProxyPort_;
118 css::beans::Optional< css::uno::Any >
119 valueFtpProxyName_;
120 css::beans::Optional< css::uno::Any >
121 valueFtpProxyPort_;
125 #endif // INCLUDED_SHELL_SOURCE_BACKENDS_WININETBE_WININETBACKEND_HXX
127 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */