bump product version to 6.3.0.0.beta1
[LibreOffice.git] / include / svx / fontworkgallery.hxx
blob0a6bac625e94a33108f3ff47cea93b406c4007cb
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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>
27 #include <vector>
29 class SdrView;
30 class SdrObject;
31 class SdrModel;
33 namespace svx
36 class SAL_WARN_UNUSED FontworkCharacterSpacingDialog : public weld::GenericDialogController
38 std::unique_ptr<weld::MetricSpinButton> m_xMtrScale;
40 public:
41 FontworkCharacterSpacingDialog(weld::Window* pParent, sal_Int32 nScale);
42 virtual ~FontworkCharacterSpacingDialog() override;
44 sal_Int32 getScale() const;
47 class SAL_WARN_UNUSED SVX_DLLPUBLIC FontWorkGalleryDialog : public weld::GenericDialogController
49 sal_uInt16 mnThemeId;
50 SdrView& mrSdrView;
52 SdrObject** mppSdrObject;
53 SdrModel* mpDestModel;
55 std::vector<BitmapEx> maFavoritesHorizontal;
57 SvtValueSet maCtlFavorites;
58 std::unique_ptr<weld::CustomWeld> mxCtlFavorites;
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, SvtValueSet*, void);
66 DECL_LINK(ClickOKHdl, weld::Button&, void );
68 public:
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( SdrObject**, SdrModel* pModel );
78 #endif
80 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */