From 940b4d1848e8c70ab7642901a68594e8016caffc Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 27 Apr 2024 18:51:28 +0200 Subject: Adding upstream version 1:7.0.4. Signed-off-by: Daniel Baumann --- sc/source/ui/inc/tptable.hxx | 83 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 83 insertions(+) create mode 100644 sc/source/ui/inc/tptable.hxx (limited to 'sc/source/ui/inc/tptable.hxx') diff --git a/sc/source/ui/inc/tptable.hxx b/sc/source/ui/inc/tptable.hxx new file mode 100644 index 000000000..fe86f338e --- /dev/null +++ b/sc/source/ui/inc/tptable.hxx @@ -0,0 +1,83 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + * + * This file incorporates work covered by the following license notice: + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed + * with this work for additional information regarding copyright + * ownership. The ASF licenses this file to you under the Apache + * License, Version 2.0 (the "License"); you may not use this file + * except in compliance with the License. You may obtain a copy of + * the License at http://www.apache.org/licenses/LICENSE-2.0 . + */ + +#ifndef INCLUDED_SC_SOURCE_UI_INC_TPTABLE_HXX +#define INCLUDED_SC_SOURCE_UI_INC_TPTABLE_HXX + +#include + +class ScTablePage : public SfxTabPage +{ + static const sal_uInt16 pPageTableRanges[]; +public: + ScTablePage(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet& rCoreSet); + static std::unique_ptr Create(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet* rCoreSet); + virtual ~ScTablePage() override; + + static const sal_uInt16* GetRanges () { return pPageTableRanges; } + virtual bool FillItemSet ( SfxItemSet* rCoreSet ) override; + virtual void Reset ( const SfxItemSet* rCoreSet ) override; + virtual DeactivateRC DeactivatePage ( SfxItemSet* pSet ) override; + +private: + void ShowImage(); + +private: + sal_uInt16 m_nOrigScalePageWidth; + sal_uInt16 m_nOrigScalePageHeight; + + std::unique_ptr m_xBtnTopDown; + std::unique_ptr m_xBtnLeftRight; + std::unique_ptr m_xBmpPageDir; + std::unique_ptr m_xBtnPageNo; + std::unique_ptr m_xEdPageNo; + + std::unique_ptr m_xBtnHeaders; + std::unique_ptr m_xBtnGrid; + std::unique_ptr m_xBtnNotes; + std::unique_ptr m_xBtnObjects; + std::unique_ptr m_xBtnCharts; + std::unique_ptr m_xBtnDrawings; + std::unique_ptr m_xBtnFormulas; + std::unique_ptr m_xBtnNullVals; + + std::unique_ptr m_xLbScaleMode; + std::unique_ptr m_xBxScaleAll; + std::unique_ptr m_xEdScaleAll; + std::unique_ptr m_xGrHeightWidth; + std::unique_ptr m_xEdScalePageWidth; + std::unique_ptr m_xCbScalePageWidth; + std::unique_ptr m_xEdScalePageHeight; + std::unique_ptr m_xCbScalePageHeight; + std::unique_ptr m_xBxScalePageNum; + std::unique_ptr m_xEdScalePageNum; + +private: + + // Handler: + DECL_LINK(PageDirHdl, weld::ToggleButton&, void); + DECL_LINK(PageNoHdl, weld::ToggleButton&, void); + void PageNoHdl(const weld::ToggleButton* pBtn); + DECL_LINK(ScaleHdl, weld::ComboBox&, void); + DECL_LINK(ToggleHdl, weld::ToggleButton&, void); +}; + +#endif // INCLUDED_SC_SOURCE_UI_INC_TPTABLE_HXX + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ -- cgit v1.2.3