LibreOffice Module vcl (master) 1
IDialogRenderable.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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/.
8 *
9 */
10
11#ifndef INCLUDED_VCL_IDIALOGRENDERABLE_HXX
12#define INCLUDED_VCL_IDIALOGRENDERABLE_HXX
13
14#include <config_options.h>
15#include <vcl/dllapi.h>
16#include <rtl/ustring.hxx>
17
18#include <vector>
19
20namespace tools { class Rectangle; }
21
22class SfxItemSet;
23
24namespace vcl
25{
26
27typedef std::pair<const OString, const OString> LOKPayloadItem;
28
29typedef sal_uInt32 LOKWindowId;
30
32{
33public:
35
37 virtual void notifyWindow(vcl::LOKWindowId nLOKWindowId,
38 const OUString& rAction,
39 const std::vector<LOKPayloadItem>& rPayload = std::vector<LOKPayloadItem>()) const = 0;
40
41 virtual void libreOfficeKitViewCallback(int nType, const OString& pPayload) const = 0;
42
44 virtual void notifyInvalidation(tools::Rectangle const *) const = 0;
45};
46
47} // namespace vcl
48
49#endif // INCLUDED_VCL_IDIALOGRENDERABLE_HXX
50
51/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
virtual void notifyInvalidation(tools::Rectangle const *) const =0
Emits a LOK_CALLBACK_INVALIDATE_TILES.
virtual void libreOfficeKitViewCallback(int nType, const OString &pPayload) const =0
virtual void notifyWindow(vcl::LOKWindowId nLOKWindowId, const OUString &rAction, const std::vector< LOKPayloadItem > &rPayload=std::vector< LOKPayloadItem >()) const =0
Callbacks.
#define VCL_DLLPUBLIC
Definition: dllapi.h:29
sal_uInt32 LOKWindowId
std::pair< const OString, const OString > LOKPayloadItem