LibreOffice Module svx (master) 1
fontworkgallery.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 * This file incorporates work covered by the following license notice:
10 *
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 */
19
20
21#ifndef INCLUDED_SVX_FONTWORKGALLERY_HXX
22#define INCLUDED_SVX_FONTWORKGALLERY_HXX
23
24#include <svx/svxdllapi.h>
25#include <vcl/weld.hxx>
26#include <map>
27#include <vector>
28
29class SdrView;
30class SdrObject;
31class SdrModel;
32
33namespace svx
34{
35
37{
38 std::unique_ptr<weld::MetricSpinButton> m_xMtrScale;
39
40public:
41 FontworkCharacterSpacingDialog(weld::Window* pParent, sal_Int32 nScale);
42 virtual ~FontworkCharacterSpacingDialog() override;
43
44 sal_Int32 getScale() const;
45};
46
48{
49 sal_uInt16 mnThemeId;
51
55
56 std::vector<VclPtr< VirtualDevice >> maFavoritesHorizontal;
57 // mapping between item ID and item title
58 std::map<OUString, OUString> maIdToTitleMap;
59
60 std::unique_ptr<weld::IconView> maCtlFavorites;
61 std::unique_ptr<weld::Button> mxOKButton;
62
63 void initFavorites(sal_uInt16 nThemeId);
64 void insertSelectedFontwork();
65 void fillFavorites(sal_uInt16 nThemeId);
66
67 DECL_DLLPRIVATE_LINK(DoubleClickFavoriteHdl, weld::IconView&, bool);
68 DECL_DLLPRIVATE_LINK(ClickOKHdl, weld::Button&, void );
69 DECL_DLLPRIVATE_LINK(QueryTooltipHandler, const weld::TreeIter&, OUString);
70
71public:
73 virtual ~FontWorkGalleryDialog() override;
74
75 // SJ: if the SdrObject** is set, the SdrObject is not inserted into the page when executing the dialog
76 void SetSdrObjectRef( SdrModel* pModel );
77 SdrObject* GetSdrObjectRef() { return mxSdrObject.get(); }
78};
79
80}
81
82#endif
83
84/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Abstract DrawObject.
Definition: svdobj.hxx:260
std::unique_ptr< weld::IconView > maCtlFavorites
DECL_DLLPRIVATE_LINK(QueryTooltipHandler, const weld::TreeIter &, OUString)
std::unique_ptr< weld::Button > mxOKButton
std::map< OUString, OUString > maIdToTitleMap
DECL_DLLPRIVATE_LINK(ClickOKHdl, weld::Button &, void)
std::vector< VclPtr< VirtualDevice > > maFavoritesHorizontal
rtl::Reference< SdrObject > mxSdrObject
DECL_DLLPRIVATE_LINK(DoubleClickFavoriteHdl, weld::IconView &, bool)
std::unique_ptr< weld::MetricSpinButton > m_xMtrScale
#define SVXCORE_DLLPUBLIC
Definition: svxdllapi.h:35
#define SAL_WARN_UNUSED