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 .
19 #ifndef INCLUDED_FRAMEWORK_INC_UIELEMENT_STATUSBARITEM_HXX
20 #define INCLUDED_FRAMEWORK_INC_UIELEMENT_STATUSBARITEM_HXX
22 #include <com/sun/star/ui/XStatusbarItem.hpp>
23 #include <cppuhelper/compbase1.hxx>
24 #include <cppuhelper/basemutex.hxx>
25 #include <vcl/vclptr.hxx>
32 struct AddonStatusbarItemData
;
34 typedef cppu::WeakComponentImplHelper1
< com::sun::star::ui::XStatusbarItem
> StatusbarItem_Base
;
36 class StatusbarItem
: protected cppu::BaseMutex
,
37 public StatusbarItem_Base
40 explicit StatusbarItem(
41 StatusBar
*pStatusBar
,
42 AddonStatusbarItemData
*pItemData
,
44 const rtl::OUString
& aCommand
);
45 virtual ~StatusbarItem();
47 void SAL_CALL
disposing() SAL_OVERRIDE
;
49 // com::sun::star::ui::XStatusbarItem Attributes
50 virtual ::rtl::OUString SAL_CALL
getCommand() throw (::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
51 virtual ::sal_uInt16 SAL_CALL
getItemId() throw (::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
52 virtual ::sal_uInt32 SAL_CALL
getWidth() throw (::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
53 virtual ::sal_uInt16 SAL_CALL
getStyle() throw (::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
54 virtual ::sal_Int32 SAL_CALL
getOffset() throw (::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
55 virtual ::com::sun::star::awt::Rectangle SAL_CALL
getItemRect() throw (::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
56 virtual ::rtl::OUString SAL_CALL
getText() throw (::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
57 virtual void SAL_CALL
setText( const rtl::OUString
& rText
) throw (::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
58 virtual ::rtl::OUString SAL_CALL
getHelpText() throw (::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
59 virtual void SAL_CALL
setHelpText( const rtl::OUString
& rHelpText
) throw (::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
60 virtual ::rtl::OUString SAL_CALL
getQuickHelpText() throw (::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
61 virtual void SAL_CALL
setQuickHelpText( const rtl::OUString
& rQuickHelpText
) throw (::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
62 virtual ::rtl::OUString SAL_CALL
getAccessibleName() throw (::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
63 virtual void SAL_CALL
setAccessibleName( const rtl::OUString
& rAccessibleName
) throw (::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
64 virtual sal_Bool SAL_CALL
getVisible() throw (::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
65 virtual void SAL_CALL
setVisible( sal_Bool bVisible
) throw (::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
67 // com::sun::star::ui::XStatusbarItem Methods
68 virtual void SAL_CALL
repaint( ) throw (::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
71 VclPtr
<StatusBar
> m_pStatusBar
;
72 AddonStatusbarItemData
*m_pItemData
;
75 rtl::OUString m_aCommand
;
83 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */