1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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/.
13 #include <vcl/svapp.hxx>
14 #include <vcl/weld.hxx>
15 #include <vcl/font/Feature.hxx>
16 #include <svx/fntctrl.hxx>
21 struct FontFeatureItem
23 FontFeatureItem(weld::Widget
* pParent
)
26 , m_xBuilder(Application::CreateBuilder(pParent
, "cui/ui/fontfragment.ui"))
27 , m_xContainer(m_xBuilder
->weld_widget("fontentry"))
28 , m_xText(m_xBuilder
->weld_label("label"))
29 , m_xCombo(m_xBuilder
->weld_combo_box("combo"))
30 , m_xCheck(m_xBuilder
->weld_check_button("check"))
32 m_xCheck
->connect_toggled(LINK(this, FontFeatureItem
, CheckBoxToggledHdl
));
35 sal_uInt32 m_aFeatureCode
;
37 weld::TriStateEnabled m_aTriStateEnabled
;
38 Link
<weld::Toggleable
&, void> m_aToggleHdl
;
39 std::unique_ptr
<weld::Builder
> m_xBuilder
;
40 std::unique_ptr
<weld::Widget
> m_xContainer
;
41 std::unique_ptr
<weld::Label
> m_xText
;
42 std::unique_ptr
<weld::ComboBox
> m_xCombo
;
43 std::unique_ptr
<weld::CheckButton
> m_xCheck
;
46 DECL_LINK(CheckBoxToggledHdl
, weld::Toggleable
&, void);
49 class FontFeaturesDialog
: public weld::GenericDialogController
52 std::vector
<std::unique_ptr
<FontFeatureItem
>> m_aFeatureItems
;
54 OUString m_sResultFontName
;
56 SvxFontPrevWindow m_aPreviewWindow
;
57 std::unique_ptr
<weld::ScrolledWindow
> m_xContentWindow
;
58 std::unique_ptr
<weld::Container
> m_xContentBox
;
59 std::unique_ptr
<weld::Container
> m_xContentGrid
;
60 std::unique_ptr
<weld::Container
> m_xStylisticSetsBox
;
61 std::unique_ptr
<weld::Container
> m_xStylisticSetsGrid
;
62 std::unique_ptr
<weld::Container
> m_xCharacterVariantsBox
;
63 std::unique_ptr
<weld::Container
> m_xCharacterVariantsGrid
;
64 std::unique_ptr
<weld::CustomWeld
> m_xPreviewWindow
;
67 OUString
createFontNameWithFeatures();
69 // returns the max height of a row
70 int fillGrid(std::vector
<vcl::font::Feature
> const& rFontFeatures
);
72 DECL_LINK(ComboBoxSelectedHdl
, weld::ComboBox
&, void);
73 DECL_LINK(CheckBoxToggledHdl
, weld::Toggleable
&, void);
76 FontFeaturesDialog(weld::Window
* pParent
, OUString aFontName
);
77 ~FontFeaturesDialog() override
;
78 virtual short run() override
;
80 OUString
const& getResultFontName() const { return m_sResultFontName
; }
82 void updateFontPreview();
85 } // end svx namespaces
87 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */