Version 6.4.0.0.beta1, tag libreoffice-6.4.0.0.beta1
[LibreOffice.git] / framework / source / uifactory / statusbarfactory.cxx
blob5756fb3465ca7c56edbe0e3516ba28ebef890295
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 #include <uifactory/menubarfactory.hxx>
21 #include <uielement/statusbarwrapper.hxx>
23 #include <cppuhelper/supportsservice.hxx>
24 #include <vcl/svapp.hxx>
25 #include <rtl/ustrbuf.hxx>
27 using namespace com::sun::star::uno;
28 using namespace com::sun::star::lang;
29 using namespace com::sun::star::beans;
30 using namespace com::sun::star::util;
31 using namespace ::com::sun::star::ui;
33 using namespace framework;
35 namespace {
37 class StatusBarFactory : public MenuBarFactory
39 public:
40 explicit StatusBarFactory( const css::uno::Reference< css::uno::XComponentContext >& xContext );
42 virtual OUString SAL_CALL getImplementationName() override
44 return "com.sun.star.comp.framework.StatusBarFactory";
47 virtual sal_Bool SAL_CALL supportsService(OUString const & ServiceName) override
49 return cppu::supportsService(this, ServiceName);
52 virtual css::uno::Sequence<OUString> SAL_CALL getSupportedServiceNames() override
54 return {"com.sun.star.ui.StatusBarFactory"};
57 // XUIElementFactory
58 virtual css::uno::Reference< css::ui::XUIElement > SAL_CALL createUIElement( const OUString& ResourceURL, const css::uno::Sequence< css::beans::PropertyValue >& Args ) override;
61 StatusBarFactory::StatusBarFactory( const css::uno::Reference< css::uno::XComponentContext >& xContext ) :
62 MenuBarFactory( xContext )
66 // XUIElementFactory
67 Reference< XUIElement > SAL_CALL StatusBarFactory::createUIElement(
68 const OUString& ResourceURL,
69 const Sequence< PropertyValue >& Args )
71 Reference< css::ui::XUIElement > xStatusBar(
72 static_cast<OWeakObject *>(new StatusBarWrapper(m_xContext)), UNO_QUERY);
73 MenuBarFactory::CreateUIElement(ResourceURL, Args, "private:resource/statusbar/", xStatusBar, m_xContext);
74 return xStatusBar;
79 extern "C" SAL_DLLPUBLIC_EXPORT css::uno::XInterface *
80 com_sun_star_comp_framework_StatusBarFactory_get_implementation(
81 css::uno::XComponentContext *context,
82 css::uno::Sequence<css::uno::Any> const &)
84 return cppu::acquire(new StatusBarFactory(context));
87 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */