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 .
21 #include <svl/itemset.hxx>
22 #include <tools/link.hxx>
24 namespace com::sun::star::frame
{ class XModel
; }
25 namespace com::sun::star::uno
{ class XComponentContext
; }
26 namespace weld
{ class Builder
; }
27 namespace weld
{ class CheckButton
; }
28 namespace weld
{ class RadioButton
; }
29 namespace weld
{ class ToggleButton
; }
34 class LegendPositionResources final
38 //constructor without Display checkbox
39 LegendPositionResources(weld::Builder
& rBuilder
);
40 //constructor inclusive Display checkbox
41 LegendPositionResources(weld::Builder
& rBuilder
, const css::uno::Reference
<
42 css::uno::XComponentContext
>& xCC
);
43 ~LegendPositionResources();
45 void writeToResources( const css::uno::Reference
< css::frame::XModel
>& xChartModel
);
46 void writeToModel( const css::uno::Reference
< css::frame::XModel
>& xChartModel
) const;
48 void initFromItemSet( const SfxItemSet
& rInAttrs
);
49 void writeToItemSet( SfxItemSet
& rOutAttrs
) const;
51 void SetChangeHdl( const Link
<LinkParamNone
*,void>& rLink
);
53 DECL_LINK( PositionEnableHdl
, weld::ToggleButton
&, void );
54 DECL_LINK( PositionChangeHdl
, weld::ToggleButton
&, void );
57 void impl_setRadioButtonToggleHdl();
60 css::uno::Reference
< css::uno::XComponentContext
> m_xCC
;
61 Link
<LinkParamNone
*,void> m_aChangeLink
;
63 std::unique_ptr
<weld::CheckButton
> m_xCbxShow
;
64 std::unique_ptr
<weld::RadioButton
> m_xRbtLeft
;
65 std::unique_ptr
<weld::RadioButton
> m_xRbtRight
;
66 std::unique_ptr
<weld::RadioButton
> m_xRbtTop
;
67 std::unique_ptr
<weld::RadioButton
> m_xRbtBottom
;
72 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */