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/.
11 #ifndef INCLUDED_CUI_SOURCE_INC_FONTFEATURESDIALOG_HXX
12 #define INCLUDED_CUI_SOURCE_INC_FONTFEATURESDIALOG_HXX
14 #include <vcl/svapp.hxx>
15 #include <vcl/weld.hxx>
16 #include <vcl/font/Feature.hxx>
17 #include <svx/fntctrl.hxx>
22 struct FontFeatureItem
24 FontFeatureItem(weld::Widget
* pParent
)
27 , m_xBuilder(Application::CreateBuilder(pParent
, "cui/ui/fontfragment.ui"))
28 , m_xContainer(m_xBuilder
->weld_widget("fontentry"))
29 , m_xText(m_xBuilder
->weld_label("label"))
30 , m_xCombo(m_xBuilder
->weld_combo_box("combo"))
31 , m_xCheck(m_xBuilder
->weld_check_button("check"))
35 sal_uInt32 m_aFeatureCode
;
36 sal_uInt32 m_nDefault
;
37 std::unique_ptr
<weld::Builder
> m_xBuilder
;
38 std::unique_ptr
<weld::Widget
> m_xContainer
;
39 std::unique_ptr
<weld::Label
> m_xText
;
40 std::unique_ptr
<weld::ComboBox
> m_xCombo
;
41 std::unique_ptr
<weld::CheckButton
> m_xCheck
;
44 class FontFeaturesDialog
: public weld::GenericDialogController
47 std::vector
<FontFeatureItem
> m_aFeatureItems
;
49 OUString m_sResultFontName
;
51 SvxFontPrevWindow m_aPreviewWindow
;
52 std::unique_ptr
<weld::ScrolledWindow
> m_xContentWindow
;
53 std::unique_ptr
<weld::Container
> m_xContentGrid
;
54 std::unique_ptr
<weld::CustomWeld
> m_xPreviewWindow
;
57 OUString
createFontNameWithFeatures();
59 void fillGrid(std::vector
<vcl::font::Feature
> const& rFontFeatures
);
61 DECL_LINK(ComboBoxSelectedHdl
, weld::ComboBox
&, void);
62 DECL_LINK(CheckBoxToggledHdl
, weld::ToggleButton
&, void);
65 FontFeaturesDialog(weld::Window
* pParent
, OUString
const& rFontName
);
66 ~FontFeaturesDialog() override
;
67 virtual short run() override
;
69 OUString
const& getResultFontName() const { return m_sResultFontName
; }
71 void updateFontPreview();
74 } // end svx namespaces
76 #endif // INCLUDED_CUI_SOURCE_INC_FONTFEATURESDIALOG_HXX
78 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */