tdf#130857 qt weld: Implement QtInstanceWidget::strip_mnemonic
[LibreOffice.git] / chart2 / source / controller / inc / res_LegendPosition.hxx
blob80ccaa85da6e00d6fa55c76a689cad582438e419
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>
23 #include <rtl/ref.hxx>
25 namespace com::sun::star::frame { class XModel; }
26 namespace com::sun::star::uno { class XComponentContext; }
27 namespace weld { class Builder; }
28 namespace weld { class CheckButton; }
29 namespace weld { class RadioButton; }
30 namespace weld { class Toggleable; }
32 namespace chart
34 class ChartModel;
36 class LegendPositionResources final
39 public:
40 //constructor without Display checkbox
41 LegendPositionResources(weld::Builder& rBuilder);
42 //constructor inclusive Display checkbox
43 LegendPositionResources(weld::Builder& rBuilder, css::uno::Reference<
44 css::uno::XComponentContext> xCC );
45 ~LegendPositionResources();
47 void writeToResources( const rtl::Reference<::chart::ChartModel>& xChartModel );
48 void writeToModel( const rtl::Reference<::chart::ChartModel>& xChartModel ) const;
50 void initFromItemSet( const SfxItemSet& rInAttrs );
51 void writeToItemSet( SfxItemSet& rOutAttrs ) const;
53 void SetChangeHdl( const Link<LinkParamNone*,void>& rLink );
55 DECL_LINK( PositionEnableHdl, weld::Toggleable&, void );
56 DECL_LINK( PositionChangeHdl, weld::Toggleable&, void );
58 private:
59 void impl_setRadioButtonToggleHdl();
60 void PositionEnable();
62 private:
63 css::uno::Reference< css::uno::XComponentContext> m_xCC;
64 Link<LinkParamNone*,void> m_aChangeLink;
66 std::unique_ptr<weld::CheckButton> m_xCbxShow;
67 std::unique_ptr<weld::RadioButton> m_xRbtLeft;
68 std::unique_ptr<weld::RadioButton> m_xRbtRight;
69 std::unique_ptr<weld::RadioButton> m_xRbtTop;
70 std::unique_ptr<weld::RadioButton> m_xRbtBottom;
73 } //namespace chart
75 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */