vcl: allow for overriding the default PDF rendering resolution
[LibreOffice.git] / chart2 / source / controller / dialogs / tp_3D_SceneAppearance.hxx
blob6a00d3fb71be4b930e13ce1e7ef234c03a1696c1
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 #ifndef INCLUDED_CHART2_SOURCE_CONTROLLER_DIALOGS_TP_3D_SCENEAPPEARANCE_HXX
20 #define INCLUDED_CHART2_SOURCE_CONTROLLER_DIALOGS_TP_3D_SCENEAPPEARANCE_HXX
22 #include <vcl/weld.hxx>
24 namespace chart { class ControllerLockHelper; }
25 namespace com { namespace sun { namespace star { namespace frame { class XModel; } } } }
27 namespace chart
30 class ThreeD_SceneAppearance_TabPage
32 public:
33 ThreeD_SceneAppearance_TabPage(
34 weld::Container* pParent,
35 const css::uno::Reference< css::frame::XModel > & xChartModel,
36 ControllerLockHelper & rControllerLockHelper );
37 void ActivatePage();
38 ~ThreeD_SceneAppearance_TabPage();
40 private:
41 DECL_LINK( SelectSchemeHdl, weld::ComboBox&, void );
42 DECL_LINK( SelectShading, weld::ToggleButton&, void );
43 DECL_LINK( SelectRoundedEdgeOrObjectLines, weld::ToggleButton&, void );
45 void initControlsFromModel();
46 void applyShadeModeToModel();
47 void applyRoundedEdgeAndObjectLinesToModel();
48 void updateScheme();
50 private:
51 css::uno::Reference<css::frame::XModel> m_xChartModel;
53 bool m_bUpdateOtherControls;
54 bool m_bCommitToModel;
55 OUString m_aCustom;
57 ControllerLockHelper& m_rControllerLockHelper;
59 std::unique_ptr<weld::Builder> m_xBuilder;
60 std::unique_ptr<weld::Container> m_xContainer;
61 std::unique_ptr<weld::ComboBox> m_xLB_Scheme;
62 std::unique_ptr<weld::CheckButton> m_xCB_Shading;
63 std::unique_ptr<weld::CheckButton> m_xCB_ObjectLines;
64 std::unique_ptr<weld::CheckButton> m_xCB_RoundedEdge;
67 } //namespace chart
69 #endif
71 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */