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/.
9 * This file incorporates work covered by the following license notice:
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 .
21 #ifndef INCLUDED_SVX_FONTWORKGALLERY_HXX
22 #define INCLUDED_SVX_FONTWORKGALLERY_HXX
24 #include <svx/svxdllapi.h>
25 #include <vcl/weld.hxx>
36 class SAL_WARN_UNUSED FontworkCharacterSpacingDialog final
: public weld::GenericDialogController
38 std::unique_ptr
<weld::MetricSpinButton
> m_xMtrScale
;
41 FontworkCharacterSpacingDialog(weld::Window
* pParent
, sal_Int32 nScale
);
42 virtual ~FontworkCharacterSpacingDialog() override
;
44 sal_Int32
getScale() const;
47 class SAL_WARN_UNUSED SVXCORE_DLLPUBLIC FontWorkGalleryDialog final
: public weld::GenericDialogController
52 bool mbInsertIntoPage
;
53 rtl::Reference
<SdrObject
> mxSdrObject
;
54 SdrModel
* mpDestModel
;
56 std::vector
<VclPtr
< VirtualDevice
>> maFavoritesHorizontal
;
57 // mapping between item ID and item title
58 std::map
<OUString
, OUString
> maIdToTitleMap
;
60 std::unique_ptr
<weld::IconView
> maCtlFavorites
;
61 std::unique_ptr
<weld::Button
> mxOKButton
;
63 css::uno::Reference
<css::frame::XFrame
> mxFrame
;
65 void initFavorites(sal_uInt16 nThemeId
);
66 void insertSelectedFontwork();
67 void fillFavorites(sal_uInt16 nThemeId
);
69 DECL_DLLPRIVATE_LINK(DoubleClickFavoriteHdl
, weld::IconView
&, bool);
70 DECL_DLLPRIVATE_LINK(ClickOKHdl
, weld::Button
&, void );
71 DECL_DLLPRIVATE_LINK(QueryTooltipHandler
, const weld::TreeIter
&, OUString
);
74 FontWorkGalleryDialog(weld::Window
* pParent
, SdrView
& rView
,
75 css::uno::Reference
<css::frame::XFrame
> xFrame
);
76 virtual ~FontWorkGalleryDialog() override
;
78 // SJ: if the SdrObject** is set, the SdrObject is not inserted into the page when executing the dialog
79 void SetSdrObjectRef( SdrModel
* pModel
);
80 SdrObject
* GetSdrObjectRef() { return mxSdrObject
.get(); }
87 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */