LibreOffice Module cui (master) 1
FontFeaturesDialog.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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/.
8 *
9 */
10
11#pragma once
12
13#include <vcl/svapp.hxx>
14#include <vcl/weld.hxx>
15#include <vcl/font/Feature.hxx>
16#include <svx/fntctrl.hxx>
17#include <memory>
18
19namespace cui
20{
22{
25 , m_nDefault(-1)
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"))
31 {
32 m_xCheck->connect_toggled(LINK(this, FontFeatureItem, CheckBoxToggledHdl));
33 }
34
35 sal_uInt32 m_aFeatureCode;
36 sal_Int32 m_nDefault;
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;
44
45private:
46 DECL_LINK(CheckBoxToggledHdl, weld::Toggleable&, void);
47};
48
50{
51private:
52 std::vector<std::unique_ptr<FontFeatureItem>> m_aFeatureItems;
53 OUString m_sFontName;
55
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;
65
66 void initialize();
68
69 // returns the max height of a row
70 int fillGrid(std::vector<vcl::font::Feature> const& rFontFeatures);
71
72 DECL_LINK(ComboBoxSelectedHdl, weld::ComboBox&, void);
73 DECL_LINK(CheckBoxToggledHdl, weld::Toggleable&, void);
74
75public:
76 FontFeaturesDialog(weld::Window* pParent, OUString aFontName);
77 ~FontFeaturesDialog() override;
78 virtual short run() override;
79
80 OUString const& getResultFontName() const { return m_sResultFontName; }
81
82 void updateFontPreview();
83};
84
85} // end svx namespaces
86
87/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
std::unique_ptr< weld::Container > m_xContentBox
virtual short run() override
std::vector< std::unique_ptr< FontFeatureItem > > m_aFeatureItems
DECL_LINK(CheckBoxToggledHdl, weld::Toggleable &, void)
std::unique_ptr< weld::Container > m_xStylisticSetsGrid
std::unique_ptr< weld::CustomWeld > m_xPreviewWindow
std::unique_ptr< weld::ScrolledWindow > m_xContentWindow
std::unique_ptr< weld::Container > m_xStylisticSetsBox
FontFeaturesDialog(weld::Window *pParent, OUString aFontName)
DECL_LINK(ComboBoxSelectedHdl, weld::ComboBox &, void)
std::unique_ptr< weld::Container > m_xCharacterVariantsGrid
std::unique_ptr< weld::Container > m_xCharacterVariantsBox
std::unique_ptr< weld::Container > m_xContentGrid
SvxFontPrevWindow m_aPreviewWindow
int fillGrid(std::vector< vcl::font::Feature > const &rFontFeatures)
OUString const & getResultFontName() const
FontFeatureItem(weld::Widget *pParent)
std::unique_ptr< weld::Builder > m_xBuilder
DECL_LINK(CheckBoxToggledHdl, weld::Toggleable &, void)
std::unique_ptr< weld::Widget > m_xContainer
std::unique_ptr< weld::ComboBox > m_xCombo
std::unique_ptr< weld::CheckButton > m_xCheck
weld::TriStateEnabled m_aTriStateEnabled
std::unique_ptr< weld::Label > m_xText
Link< weld::Toggleable &, void > m_aToggleHdl