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 <svtools/valueset.hxx>
26 #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 SdrObject
* mppSdrObject
;
54 SdrModel
* mpDestModel
;
56 std::vector
<VclPtr
< VirtualDevice
>> maFavoritesHorizontal
;
58 std::unique_ptr
<weld::IconView
> maCtlFavorites
;
59 std::unique_ptr
<weld::Button
> mxOKButton
;
61 void initFavorites(sal_uInt16 nThemeId
);
62 void insertSelectedFontwork();
63 void fillFavorites(sal_uInt16 nThemeId
);
65 DECL_LINK(DoubleClickFavoriteHdl
, weld::IconView
&, bool);
66 DECL_LINK(ClickOKHdl
, weld::Button
&, void );
69 FontWorkGalleryDialog(weld::Window
* pParent
, SdrView
& rView
);
70 virtual ~FontWorkGalleryDialog() override
;
72 // SJ: if the SdrObject** is set, the SdrObject is not inserted into the page when executing the dialog
73 void SetSdrObjectRef( SdrModel
* pModel
, bool bInsertIntoPage
= true );
74 SdrObject
* GetSdrObjectRef() { return mppSdrObject
; }
81 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */