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 .
22 #include <helper/uielementwrapperbase.hxx>
24 #include <com/sun/star/awt/XWindow.hpp>
26 #include <cppuhelper/weakref.hxx>
30 class ProgressBarWrapper final
: public UIElementWrapperBase
34 // constructor / destructor
37 virtual ~ProgressBarWrapper() override
;
40 void setStatusBar( const css::uno::Reference
< css::awt::XWindow
>& rStatusBar
, bool bOwnsInstance
= false );
41 css::uno::Reference
< css::awt::XWindow
> getStatusBar() const;
43 // wrapped methods of css::task::XStatusIndicator
44 /// @throws css::uno::RuntimeException
45 void start( const OUString
& Text
, ::sal_Int32 Range
);
46 /// @throws css::uno::RuntimeException
48 /// @throws css::uno::RuntimeException
49 void setText( const OUString
& Text
);
50 /// @throws css::uno::RuntimeException
51 void setValue( ::sal_Int32 Value
);
52 /// @throws css::uno::RuntimeException
57 virtual void SAL_CALL
dispose() override
;
60 virtual void SAL_CALL
initialize( const css::uno::Sequence
< css::uno::Any
>& aArguments
) override
;
63 virtual void SAL_CALL
update() override
;
66 virtual css::uno::Reference
< css::uno::XInterface
> SAL_CALL
getRealInterface() override
;
69 // (should be private everyway!)
72 css::uno::Reference
< css::awt::XWindow
> m_xStatusBar
; // Reference to our status bar XWindow
73 css::uno::WeakReference
< css::uno::XInterface
> m_xProgressBarIfacWrapper
;
74 bool m_bOwnsInstance
; // Indicator that we are owner of the XWindow
78 }; // class ProgressBarWrapper
80 } // namespace framework
82 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */