/* -*- 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 #include #include #include #include #include #include // forward --------------------------------------------------------------- class SvxFontListItem; class FontList; class SvxCharBasePage : public SfxTabPage { protected: SvxFontPrevWindow m_aPreviewWin; std::unique_ptr m_xPreviewWin; bool m_bPreviewBackgroundToCharacter; SvxCharBasePage(weld::Container* pPage, weld::DialogController* pController, const OUString& rUIXMLDescription, const OString& rID, const SfxItemSet& rAttrSet); void SetPrevFontWidthScale( const SfxItemSet& rSet ); void SetPrevFontEscapement( sal_uInt8 nProp, sal_uInt8 nEscProp, short nEsc ); inline SvxFont& GetPreviewFont(); inline SvxFont& GetPreviewCJKFont(); inline SvxFont& GetPreviewCTLFont(); public: virtual ~SvxCharBasePage() override; virtual void ActivatePage( const SfxItemSet& rSet ) override; }; // class SvxCharNamePage ------------------------------------------------- struct SvxCharNamePage_Impl; class SvxCharNamePage : public SvxCharBasePage { private: static const sal_uInt16 pNameRanges[]; std::unique_ptr m_pImpl; std::unique_ptr m_xWestFrame; std::unique_ptr m_xWestFontNameFT; std::unique_ptr m_xWestFontNameLB; std::unique_ptr m_xWestFontStyleFT; std::unique_ptr m_xWestFontStyleLB; std::unique_ptr m_xWestFontSizeFT; std::unique_ptr m_xWestFontSizeLB; std::unique_ptr m_xWestFontLanguageFT; std::unique_ptr m_xWestFontLanguageLB; std::unique_ptr m_xWestFontTypeFT; std::unique_ptr m_xWestFontFeaturesButton; std::unique_ptr m_xEastFrame; std::unique_ptr m_xEastFontNameFT; std::unique_ptr m_xEastFontNameLB; std::unique_ptr m_xEastFontStyleFT; std::unique_ptr m_xEastFontStyleLB; std::unique_ptr m_xEastFontSizeFT; std::unique_ptr m_xEastFontSizeLB; std::unique_ptr m_xEastFontLanguageFT; std::unique_ptr m_xEastFontLanguageLB; std::unique_ptr m_xEastFontTypeFT; std::unique_ptr m_xEastFontFeaturesButton; std::unique_ptr m_xCTLFrame; std::unique_ptr m_xCTLFontNameFT; std::unique_ptr m_xCTLFontNameLB; std::unique_ptr m_xCTLFontStyleFT; std::unique_ptr m_xCTLFontStyleLB; std::unique_ptr m_xCTLFontSizeFT; std::unique_ptr m_xCTLFontSizeLB; std::unique_ptr m_xCTLFontLanguageFT; std::unique_ptr m_xCTLFontLanguageLB; std::unique_ptr m_xCTLFontTypeFT; std::unique_ptr m_xCTLFontFeaturesButton; void Initialize(); const FontList* GetFontList() const; void UpdatePreview_Impl(); void FillStyleBox_Impl(const weld::Widget& rBox); void FillSizeBox_Impl(const weld::Widget& rBox); enum LanguageGroup { /** Language for western text. */ Western = 0, /** Language for asian text. */ Asian, /** Language for ctl text. */ Ctl }; void Reset_Impl( const SfxItemSet& rSet, LanguageGroup eLangGrp ); bool FillItemSet_Impl( SfxItemSet& rSet, LanguageGroup eLangGrp ); DECL_LINK(UpdateHdl_Impl, Timer *, void ); DECL_LINK(FontModifyComboBoxHdl_Impl, weld::ComboBox&, void); DECL_LINK(FontFeatureButtonClicked, weld::Button&, void); void FontModifyHdl_Impl(const weld::Widget&); public: virtual void ActivatePage( const SfxItemSet& rSet ) override; virtual DeactivateRC DeactivatePage( SfxItemSet* pSet ) override; public: SvxCharNamePage(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet& rSet); static std::unique_ptr Create( weld::Container* pPage, weld::DialogController* pController, const SfxItemSet* rSet ); virtual ~SvxCharNamePage() override; static const sal_uInt16* GetRanges() { return pNameRanges; } virtual void Reset( const SfxItemSet* rSet ) override; virtual bool FillItemSet( SfxItemSet* rSet ) override; virtual void ChangesApplied() override; void SetFontList( const SvxFontListItem& rItem ); void EnableRelativeMode(); void EnableSearchMode(); void DisableControls( sal_uInt16 nDisable ); virtual void PageCreated(const SfxAllItemSet& aSet) override; }; // class SvxCharEffectsPage ---------------------------------------------- class SvxCharEffectsPage : public SvxCharBasePage { private: static const sal_uInt16 pEffectsRanges[]; bool m_bOrigFontColor; bool m_bNewFontColor; bool m_bEnableNoneFontColor; Color m_aOrigFontColor; sal_uInt16 m_nHtmlMode; weld::TriStateEnabled m_aOutlineState; weld::TriStateEnabled m_aShadowState; weld::TriStateEnabled m_aHiddenState; weld::TriStateEnabled m_aIndividualWordsState; std::unique_ptr m_xFontColorFT; std::unique_ptr m_xFontColorLB; std::unique_ptr m_xFontTransparencyFT; std::unique_ptr m_xFontTransparencyMtr; std::unique_ptr m_xEffectsFT; std::unique_ptr m_xEffectsLB; std::unique_ptr m_xReliefFT; std::unique_ptr m_xReliefLB; std::unique_ptr m_xOutlineBtn; std::unique_ptr m_xShadowBtn; std::unique_ptr m_xHiddenBtn; std::unique_ptr m_xOverlineLB; std::unique_ptr m_xOverlineColorFT; std::unique_ptr m_xOverlineColorLB; std::unique_ptr m_xStrikeoutLB; std::unique_ptr m_xUnderlineLB; std::unique_ptr m_xUnderlineColorFT; std::unique_ptr m_xUnderlineColorLB; std::unique_ptr m_xIndividualWordsBtn; std::unique_ptr m_xEmphasisFT; std::unique_ptr m_xEmphasisLB; std::unique_ptr m_xPositionFT; std::unique_ptr m_xPositionLB; std::unique_ptr m_xA11yWarningFT; void Initialize(); void UpdatePreview_Impl(); void SetCaseMap_Impl( SvxCaseMap eCaseMap ); void ResetColor_Impl( const SfxItemSet& rSet ); bool FillItemSetColor_Impl( SfxItemSet& rSet ); void EnableNoneFontColor(); void SelectHdl_Impl(const weld::ComboBox*); DECL_LINK(SelectListBoxHdl_Impl, weld::ComboBox&, void); DECL_LINK(OutlineBtnClickHdl, weld::Toggleable&, void); DECL_LINK(ShadowBtnClickHdl, weld::Toggleable&, void); DECL_LINK(HiddenBtnClickHdl, weld::Toggleable&, void); DECL_LINK(CbClickHdl_Impl, weld::Toggleable&, void); DECL_LINK(ColorBoxSelectHdl_Impl, ColorListBox&, void); DECL_LINK(ModifyFontTransparencyHdl_Impl, weld::MetricSpinButton&, void); public: SvxCharEffectsPage(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet& rSet); static std::unique_ptr Create( weld::Container* pPage, weld::DialogController* pController, const SfxItemSet* rSet ); virtual ~SvxCharEffectsPage() override; virtual DeactivateRC DeactivatePage( SfxItemSet* pSet ) override; public: static const sal_uInt16* GetRanges() { return pEffectsRanges; } virtual void Reset( const SfxItemSet* rSet ) override; virtual bool FillItemSet( SfxItemSet* rSet ) override; virtual void ChangesApplied() override; void DisableControls( sal_uInt16 nDisable ); virtual void PageCreated(const SfxAllItemSet& aSet) override; }; // class SvxCharPositionPage --------------------------------------------- class SvxCharPositionPage : public SvxCharBasePage { static const sal_uInt16 pPositionRanges[]; private: short m_nSuperEsc; short m_nSubEsc; sal_uInt16 m_nScaleWidthItemSetVal; sal_uInt16 m_nScaleWidthInitialVal; sal_uInt8 m_nSuperProp; sal_uInt8 m_nSubProp; std::unique_ptr m_xHighPosBtn; std::unique_ptr m_xNormalPosBtn; std::unique_ptr m_xLowPosBtn; std::unique_ptr m_xHighLowFT; std::unique_ptr m_xHighLowMF; std::unique_ptr m_xHighLowRB; std::unique_ptr m_xFontSizeFT; std::unique_ptr m_xFontSizeMF; std::unique_ptr m_xRotationContainer; std::unique_ptr m_xScalingFT; std::unique_ptr m_xScalingAndRotationFT; std::unique_ptr m_x0degRB; std::unique_ptr m_x90degRB; std::unique_ptr m_x270degRB; std::unique_ptr m_xFitToLineCB; std::unique_ptr m_xScaleWidthMF; std::unique_ptr m_xKerningMF; std::unique_ptr m_xPairKerningBtn; void Initialize(); void UpdatePreview_Impl( sal_uInt8 nProp, sal_uInt8 nEscProp, short nEsc ); void SetEscapement_Impl( SvxEscapement nEsc ); DECL_LINK(PositionHdl_Impl, weld::Toggleable&, void); DECL_LINK(RotationHdl_Impl, weld::Toggleable&, void); DECL_LINK(AutoPositionHdl_Impl, weld::Toggleable&, void); DECL_LINK(FitToLineHdl_Impl, weld::Toggleable&, void); DECL_LINK(KerningModifyHdl_Impl, weld::MetricSpinButton&, void); DECL_LINK(ValueChangedHdl_Impl, weld::MetricSpinButton&, void); DECL_LINK(ScaleWidthModifyHdl_Impl, weld::MetricSpinButton&, void); void FontModifyHdl_Impl(); public: SvxCharPositionPage(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet& rSet); static std::unique_ptr Create( weld::Container* pPage, weld::DialogController* pController, const SfxItemSet* rSet ); virtual ~SvxCharPositionPage() override; virtual DeactivateRC DeactivatePage( SfxItemSet* pSet ) override; public: static const sal_uInt16* GetRanges() { return pPositionRanges; } virtual void Reset( const SfxItemSet* rSet ) override; virtual bool FillItemSet( SfxItemSet* rSet ) override; virtual void ChangesApplied() override; virtual void FillUserData() override; virtual void PageCreated(const SfxAllItemSet& aSet) override; }; // class SvxCharTwoLinesPage --------------------------------------------- class SvxCharTwoLinesPage : public SvxCharBasePage { private: static const sal_uInt16 pTwoLinesRanges[]; sal_uInt16 m_nStartBracketPosition; sal_uInt16 m_nEndBracketPosition; std::unique_ptr m_xTwoLinesBtn; std::unique_ptr m_xEnclosingFrame; std::unique_ptr m_xStartBracketLB; std::unique_ptr m_xEndBracketLB; void UpdatePreview_Impl(); void Initialize(); void SelectCharacter(weld::TreeView* pBox); void SetBracket(sal_Unicode cBracket, bool bStart); DECL_LINK(TwoLinesHdl_Impl, weld::Toggleable&, void); DECL_LINK(CharacterMapHdl_Impl, weld::TreeView&, void); public: SvxCharTwoLinesPage(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet& rSet); static std::unique_ptr Create( weld::Container* pPage, weld::DialogController* pController, const SfxItemSet* rSet ); virtual ~SvxCharTwoLinesPage() override; virtual void ActivatePage( const SfxItemSet& rSet ) override; virtual DeactivateRC DeactivatePage( SfxItemSet* pSet ) override; static const sal_uInt16* GetRanges() { return pTwoLinesRanges; } virtual void Reset( const SfxItemSet* rSet ) override; virtual bool FillItemSet( SfxItemSet* rSet ) override; virtual void PageCreated(const SfxAllItemSet& aSet) override; }; /* vim:set shiftwidth=4 softtabstop=4 expandtab: */