LibreOffice Module chart2 (master) 1
res_Titles.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
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 .
18 */
19#pragma once
20
21#include "TitleDialogData.hxx"
22
23template <typename Arg, typename Ret> class Link;
24namespace weld
25{
26class Builder;
27}
28namespace weld
29{
30class Entry;
31}
32namespace weld
33{
34class Label;
35}
36
37namespace chart
38{
39class TitleResources final
40{
41public:
42 TitleResources(weld::Builder& rParent, bool bShowSecondaryAxesTitle);
44
45 void writeToResources(const TitleDialogData& rInput);
47
50 void save_value();
51
52private:
53 std::unique_ptr<weld::Label> m_xFT_Main;
54 std::unique_ptr<weld::Label> m_xFT_Sub;
55 std::unique_ptr<weld::Entry> m_xEd_Main;
56 std::unique_ptr<weld::Entry> m_xEd_Sub;
57
58 std::unique_ptr<weld::Label> m_xFT_XAxis;
59 std::unique_ptr<weld::Label> m_xFT_YAxis;
60 std::unique_ptr<weld::Label> m_xFT_ZAxis;
61 std::unique_ptr<weld::Entry> m_xEd_XAxis;
62 std::unique_ptr<weld::Entry> m_xEd_YAxis;
63 std::unique_ptr<weld::Entry> m_xEd_ZAxis;
64
65 std::unique_ptr<weld::Label> m_xFT_SecondaryXAxis;
66 std::unique_ptr<weld::Label> m_xFT_SecondaryYAxis;
67 std::unique_ptr<weld::Entry> m_xEd_SecondaryXAxis;
68 std::unique_ptr<weld::Entry> m_xEd_SecondaryYAxis;
69};
70
71} //namespace chart
72
73/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
std::unique_ptr< weld::Label > m_xFT_YAxis
Definition: res_Titles.hxx:59
std::unique_ptr< weld::Entry > m_xEd_SecondaryYAxis
Definition: res_Titles.hxx:68
bool get_value_changed_from_saved() const
Definition: res_Titles.cxx:61
std::unique_ptr< weld::Entry > m_xEd_YAxis
Definition: res_Titles.hxx:62
std::unique_ptr< weld::Entry > m_xEd_ZAxis
Definition: res_Titles.hxx:63
std::unique_ptr< weld::Entry > m_xEd_SecondaryXAxis
Definition: res_Titles.hxx:67
std::unique_ptr< weld::Label > m_xFT_SecondaryYAxis
Definition: res_Titles.hxx:66
std::unique_ptr< weld::Entry > m_xEd_Sub
Definition: res_Titles.hxx:56
std::unique_ptr< weld::Label > m_xFT_Main
Definition: res_Titles.hxx:53
std::unique_ptr< weld::Label > m_xFT_SecondaryXAxis
Definition: res_Titles.hxx:65
std::unique_ptr< weld::Entry > m_xEd_Main
Definition: res_Titles.hxx:55
std::unique_ptr< weld::Label > m_xFT_Sub
Definition: res_Titles.hxx:54
void writeToResources(const TitleDialogData &rInput)
Definition: res_Titles.cxx:82
std::unique_ptr< weld::Label > m_xFT_ZAxis
Definition: res_Titles.hxx:60
std::unique_ptr< weld::Entry > m_xEd_XAxis
Definition: res_Titles.hxx:61
void connect_changed(const Link< weld::Entry &, void > &rLink)
Definition: res_Titles.cxx:50
std::unique_ptr< weld::Label > m_xFT_XAxis
Definition: res_Titles.hxx:58
void readFromResources(TitleDialogData &rOutput)
Definition: res_Titles.cxx:109
TitleResources(weld::Builder &rParent, bool bShowSecondaryAxesTitle)
Definition: res_Titles.cxx:26