bump product version to 7.6.3.2-android
[LibreOffice.git] / include / vcl / IDialogRenderable.hxx
blob49e22c3c535722a91aa51e29b029e19b5063ef47
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 */
11 #ifndef INCLUDED_VCL_IDIALOGRENDERABLE_HXX
12 #define INCLUDED_VCL_IDIALOGRENDERABLE_HXX
14 #include <config_options.h>
15 #include <vcl/dllapi.h>
16 #include <rtl/ustring.hxx>
18 #include <vector>
20 namespace tools { class Rectangle; }
22 class SfxItemSet;
24 namespace vcl
27 typedef std::pair<const OString, const OString> LOKPayloadItem;
29 typedef sal_uInt32 LOKWindowId;
31 class VCL_DLLPUBLIC ILibreOfficeKitNotifier
33 public:
34 virtual ~ILibreOfficeKitNotifier();
36 /// Callbacks
37 virtual void notifyWindow(vcl::LOKWindowId nLOKWindowId,
38 const OUString& rAction,
39 const std::vector<LOKPayloadItem>& rPayload = std::vector<LOKPayloadItem>()) const = 0;
41 virtual void libreOfficeKitViewCallback(int nType, const OString& pPayload) const = 0;
43 /// Emits a LOK_CALLBACK_INVALIDATE_TILES.
44 virtual void notifyInvalidation(tools::Rectangle const *) const = 0;
47 } // namespace vcl
49 #endif // INCLUDED_VCL_IDIALOGRENDERABLE_HXX
51 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */