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/.
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>
20 namespace tools
{ class Rectangle
; }
27 typedef std::pair
<const OString
, const OString
> LOKPayloadItem
;
29 typedef sal_uInt32 LOKWindowId
;
31 class VCL_DLLPUBLIC ILibreOfficeKitNotifier
34 virtual ~ILibreOfficeKitNotifier();
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;
49 #endif // INCLUDED_VCL_IDIALOGRENDERABLE_HXX
51 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */