lok: calc - send other views our selection in their co-ordinates.
[LibreOffice.git] / include / vcl / IDialogRenderable.hxx
blob7e2d39c7a486e46e7ea860926077963e08fc088a
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 <vcl/dllapi.h>
16 #include <rtl/ustring.hxx>
18 #include <vector>
20 class SfxItemSet;
22 namespace vcl
25 typedef std::pair<const OString, const OString> LOKPayloadItem;
27 typedef sal_uInt32 LOKWindowId;
29 class VCL_DLLPUBLIC ILibreOfficeKitNotifier
31 public:
32 virtual ~ILibreOfficeKitNotifier();
34 /// Callbacks
35 virtual void notifyWindow(vcl::LOKWindowId nLOKWindowId,
36 const OUString& rAction,
37 const std::vector<LOKPayloadItem>& rPayload = std::vector<LOKPayloadItem>()) const = 0;
39 virtual void libreOfficeKitViewCallback(int nType, const char* pPayload) const = 0;
42 } // namespace vcl
44 #endif // INCLUDED_VCL_IDIALOGRENDERABLE_HXX
46 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */