nss: upgrade to release 3.73
[LibreOffice.git] / chart2 / source / controller / inc / res_LegendPosition.hxx
blobcfe3a12435fe71863afa0d03e6f3fa8524aa3b9a
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 .
19 #pragma once
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; }
31 namespace chart
34 class LegendPositionResources final
37 public:
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 );
56 private:
57 void impl_setRadioButtonToggleHdl();
59 private:
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;
70 } //namespace chart
72 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */