1
0
Fork 0
libreoffice/sw/source/uibase/inc/optload.hxx
Daniel Baumann 8e63e14cf6
Adding upstream version 4:25.2.3.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-22 16:20:04 +02:00

221 lines
7.5 KiB
C++

/* -*- 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 .
*/
#pragma once
#include <tools/globname.hxx>
#include <tools/solar.h>
#include <sfx2/tabdlg.hxx>
#include <utility>
#include <vcl/customweld.hxx>
#include <vcl/textfilter.hxx>
#include <vcl/weld.hxx>
#include <sfx2/basedlgs.hxx>
#include <SwCapObjType.hxx>
#include <SwCapConfigProp.hxx>
class SwFieldMgr;
class SwWrtShell;
class SwFieldUnitTable
{
public:
static OUString GetString(sal_uInt32 i);
static sal_uInt32 Count();
static FieldUnit GetValue(sal_uInt32 i);
};
class TextFilterAutoConvert final : public TextFilter
{
private:
OUString m_sLastGoodText;
OUString m_sNone;
public:
TextFilterAutoConvert(OUString aNone)
: m_sNone(std::move(aNone))
{
}
virtual OUString filter(const OUString &rText) override;
};
class SwLoadOptPage final : public SfxTabPage
{
private:
SwWrtShell* m_pWrtShell;
sal_uInt16 m_nLastTab;
sal_Int32 m_nOldLinkMode;
std::unique_ptr<weld::RadioButton> m_xAlwaysRB;
std::unique_ptr<weld::RadioButton> m_xRequestRB;
std::unique_ptr<weld::RadioButton> m_xNeverRB;
std::unique_ptr<weld::Widget> m_xGridupdatelink;
std::unique_ptr<weld::Widget> m_xUpdateLinkImg;
std::unique_ptr<weld::CheckButton> m_xAutoUpdateFields;
std::unique_ptr<weld::Widget> m_xAutoUpdateFieldsImg;
std::unique_ptr<weld::CheckButton> m_xAutoUpdateCharts;
std::unique_ptr<weld::Widget> m_xAutoUpdateChartsImg;
std::unique_ptr<weld::ComboBox> m_xMetricLB;
std::unique_ptr<weld::Widget> m_xMetricImg;
std::unique_ptr<weld::Label> m_xTabFT;
std::unique_ptr<weld::MetricSpinButton> m_xTabMF;
std::unique_ptr<weld::Widget> m_xTabImg;
std::unique_ptr<weld::CheckButton> m_xUseSquaredPageMode;
std::unique_ptr<weld::Widget> m_xUseSquaredPageModeImg;
std::unique_ptr<weld::CheckButton> m_xUseCharUnit;
std::unique_ptr<weld::Widget> m_xUseCharUnitImg;
std::unique_ptr<weld::Entry> m_xWordCountED;
std::unique_ptr<weld::Widget> m_xWordCountImg;
std::unique_ptr<weld::CheckButton> m_xShowStandardizedPageCount;
std::unique_ptr<weld::Widget> m_xShowStandardizedPageCountImg;
std::unique_ptr<weld::SpinButton> m_xStandardizedPageSizeNF;
std::unique_ptr<weld::Widget> m_xStandardizedPageSizeImg;
DECL_LINK(MetricHdl, weld::ComboBox&, void);
DECL_LINK(StandardizedPageCountCheckHdl, weld::Toggleable&, void);
public:
SwLoadOptPage(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet& rSet);
virtual ~SwLoadOptPage() override;
static std::unique_ptr<SfxTabPage> Create( weld::Container* pPage, weld::DialogController* pController,
const SfxItemSet* rAttrSet);
virtual OUString GetAllStrings() override;
virtual bool FillItemSet( SfxItemSet* rSet ) override;
virtual void Reset( const SfxItemSet* rSet ) override;
};
class SwCaptionOptDlg final : public SfxSingleTabDialogController
{
public:
SwCaptionOptDlg(weld::Window* pParent, const SfxItemSet& rSet);
};
class SwCaptionPreview final : public weld::CustomWidgetController
{
private:
OUString maText;
bool mbFontInitialized;
vcl::Font maFont;
void ApplySettings(vcl::RenderContext& rRenderContext);
public:
SwCaptionPreview();
virtual void SetDrawingArea(weld::DrawingArea* pDrawingArea) override;
void SetPreviewText(const OUString& rText);
virtual void Paint(vcl::RenderContext& rRenderContext, const tools::Rectangle& rRect) override;
};
class SwCaptionOptPage final : public SfxTabPage
{
private:
OUString m_sSWTable;
OUString m_sSWFrame;
OUString m_sSWGraphic;
OUString m_sOLE;
OUString m_sIllustration;
OUString m_sTable;
OUString m_sText;
OUString m_sDrawing;
OUString m_sBegin;
OUString m_sEnd;
OUString m_sAbove;
OUString m_sBelow;
OUString m_sNone;
int m_nPrevSelectedEntry;
std::unique_ptr<SwFieldMgr> m_pMgr;
bool m_bHTMLMode;
TextFilterAutoConvert m_aTextFilter;
SwCaptionPreview m_aPreview;
std::unique_ptr<weld::TreeView> m_xCheckLB;
std::unique_ptr<weld::ComboBox> m_xLbCaptionOrder;
std::unique_ptr<weld::Widget> m_xLbCaptionOrderImg;
std::unique_ptr<weld::Widget> m_xSettingsGroup;
std::unique_ptr<weld::ComboBox> m_xCategoryBox;
std::unique_ptr<weld::Widget> m_xCategoryBoxImg;
std::unique_ptr<weld::Label> m_xFormatText;
std::unique_ptr<weld::ComboBox> m_xFormatBox;
std::unique_ptr<weld::Widget> m_xFormatBoxImg;
//#i61007# order of captions
std::unique_ptr<weld::Label> m_xNumberingSeparatorFT;
std::unique_ptr<weld::Entry> m_xNumberingSeparatorED;
std::unique_ptr<weld::Widget> m_xNumberingSeparatorImg;
std::unique_ptr<weld::Label> m_xTextText;
std::unique_ptr<weld::Entry> m_xTextEdit;
std::unique_ptr<weld::Widget> m_xTextEditImg;
std::unique_ptr<weld::ComboBox> m_xPosBox;
std::unique_ptr<weld::Widget> m_xPosBoxImg;
std::unique_ptr<weld::Widget> m_xNumCapt;
std::unique_ptr<weld::ComboBox> m_xLbLevel;
std::unique_ptr<weld::Widget> m_xLbLevelImg;
std::unique_ptr<weld::Entry> m_xEdDelim;
std::unique_ptr<weld::Widget> m_xEdDelimImg;
std::unique_ptr<weld::Widget> m_xCategory;
std::unique_ptr<weld::ComboBox> m_xCharStyleLB;
std::unique_ptr<weld::Widget> m_xCharStyleImg;
std::unique_ptr<weld::CheckButton> m_xApplyBorderCB;
std::unique_ptr<weld::Widget> m_xApplyBorderImg;
std::unique_ptr<weld::CustomWeld> m_xPreview;
DECL_LINK(SelectHdl, weld::ComboBox&, void);
DECL_LINK(SelectListBoxHdl, weld::ComboBox&, void);
DECL_LINK(ModifyEntryHdl, weld::Entry&, void);
DECL_LINK(ModifyComboHdl, weld::ComboBox&, void);
DECL_LINK(OrderHdl, weld::ComboBox&, void );
DECL_LINK(ShowEntryHdl, weld::TreeView&, void);
DECL_LINK(ToggleEntryHdl, const weld::TreeView::iter_col&, void);
DECL_LINK(TextFilterHdl, OUString&, bool);
void ModifyHdl();
void UpdateEntry(int nRow);
void DelUserData();
void SetOptions(const sal_uLong nPos, const SwCapObjType eType, const SvGlobalName *pOleId = nullptr);
void SaveEntry(int nEntry);
void InvalidatePreview();
public:
SwCaptionOptPage(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet& rSet);
virtual ~SwCaptionOptPage() override;
static std::unique_ptr<SfxTabPage> Create(weld::Container* pPage, weld::DialogController* pController,
const SfxItemSet* rAttrSet);
virtual OUString GetAllStrings() override;
virtual bool FillItemSet( SfxItemSet* rSet ) override;
virtual void Reset( const SfxItemSet* rSet ) override;
};
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */