1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 <com/sun/star/frame/ModuleManager.hpp>
22 #include <uifactory/menubarfactory.hxx>
23 #include <uielement/statusbarwrapper.hxx>
25 #include <cppuhelper/supportsservice.hxx>
26 #include <vcl/svapp.hxx>
27 #include <rtl/ustrbuf.hxx>
29 using namespace com::sun::star::uno
;
30 using namespace com::sun::star::lang
;
31 using namespace com::sun::star::frame
;
32 using namespace com::sun::star::beans
;
33 using namespace com::sun::star::util
;
34 using namespace ::com::sun::star::ui
;
36 using namespace framework
;
40 class StatusBarFactory
: public MenuBarFactory
43 StatusBarFactory( const css::uno::Reference
< css::uno::XComponentContext
>& xContext
);
45 virtual OUString SAL_CALL
getImplementationName()
46 throw (css::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
48 return OUString("com.sun.star.comp.framework.StatusBarFactory");
51 virtual sal_Bool SAL_CALL
supportsService(OUString
const & ServiceName
)
52 throw (css::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
54 return cppu::supportsService(this, ServiceName
);
57 virtual css::uno::Sequence
<OUString
> SAL_CALL
getSupportedServiceNames()
58 throw (css::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
60 css::uno::Sequence
< OUString
> aSeq(1);
61 aSeq
[0] = "com.sun.star.ui.StatusBarFactory";
66 virtual css::uno::Reference
< css::ui::XUIElement
> SAL_CALL
createUIElement( const OUString
& ResourceURL
, const css::uno::Sequence
< css::beans::PropertyValue
>& Args
) throw ( css::container::NoSuchElementException
, css::lang::IllegalArgumentException
, css::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
69 StatusBarFactory::StatusBarFactory( const ::com::sun::star::uno::Reference
< ::com::sun::star::uno::XComponentContext
>& xContext
) :
70 MenuBarFactory( xContext
)
75 Reference
< XUIElement
> SAL_CALL
StatusBarFactory::createUIElement(
76 const OUString
& ResourceURL
,
77 const Sequence
< PropertyValue
>& Args
)
78 throw ( ::com::sun::star::container::NoSuchElementException
, ::com::sun::star::lang::IllegalArgumentException
, ::com::sun::star::uno::RuntimeException
, std::exception
)
80 Reference
< ::com::sun::star::ui::XUIElement
> xStatusBar(
81 static_cast<OWeakObject
*>(new StatusBarWrapper(m_xContext
)), UNO_QUERY
);
82 MenuBarFactory::CreateUIElement(ResourceURL
, Args
, NULL
, "private:resource/statusbar/", xStatusBar
, m_xContext
);
88 extern "C" SAL_DLLPUBLIC_EXPORT
css::uno::XInterface
* SAL_CALL
89 com_sun_star_comp_framework_StatusBarFactory_get_implementation(
90 css::uno::XComponentContext
*context
,
91 css::uno::Sequence
<css::uno::Any
> const &)
93 return cppu::acquire(new StatusBarFactory(context
));
96 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */