Avoid potential negative array index access to cached text.
[LibreOffice.git] / chart2 / source / controller / dialogs / tp_TitleRotation.hxx
blob9d59b693f9a854f1a4d4e3477f6df016ab738d65
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 <sfx2/tabdlg.hxx>
22 #include <svx/dialcontrol.hxx>
23 #include <TextDirectionListBox.hxx>
25 namespace weld {
26 class CheckButton;
27 class CustomWeld;
28 class Label;
29 class SpinButton;
30 class ToggleButton;
33 namespace chart
36 class SchAlignmentTabPage : public SfxTabPage
38 private:
39 std::unique_ptr<weld::Label> m_xFtRotate;
40 std::unique_ptr<weld::MetricSpinButton> m_xNfRotate;
41 std::unique_ptr<weld::CheckButton> m_xCbStacked;
42 std::unique_ptr<weld::Label> m_xFtABCD;
43 TextDirectionListBox m_aLbTextDirection;
44 std::unique_ptr<svx::DialControl> m_xCtrlDial;
45 std::unique_ptr<weld::CustomWeld> m_xCtrlDialWin;
47 DECL_LINK(StackedToggleHdl, weld::Toggleable&, void);
49 public:
50 SchAlignmentTabPage(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet& rInAttrs, bool bWithRotation = true);
51 virtual ~SchAlignmentTabPage() override;
53 static std::unique_ptr<SfxTabPage> Create(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet* rInAttrs);
54 static std::unique_ptr<SfxTabPage> CreateWithoutRotation(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet* rInAttrs);
55 virtual bool FillItemSet(SfxItemSet* rOutAttrs) override;
56 virtual void Reset(const SfxItemSet* rInAttrs) override;
59 } //namespace chart
61 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */