diff options
author | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2017-02-07 14:25:26 +0100 |
---|---|---|
committer | Tomaž Vajngerl <quikee@gmail.com> | 2017-02-12 22:22:06 +0000 |
commit | 8cc8ffdb04f9915c5b7dddd619ef89762c7a40c2 (patch) | |
tree | 2b2f1ed9fe71cc18ec5c38d7bdf3d63b57c3b9bb /offapi/com/sun/star/chart2 | |
parent | 614f4b5a32e569051b6ed058fe6369f96fea3b48 (diff) |
[API CHANGE] Add PopupRequest - a callback to open a pop-up win. in calc
Change-Id: Iea600e229deb69d1638a1a649008fc4738a5934a
Reviewed-on: https://gerrit.libreoffice.org/34005
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Tested-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'offapi/com/sun/star/chart2')
-rw-r--r-- | offapi/com/sun/star/chart2/data/PopupRequest.idl | 44 | ||||
-rw-r--r-- | offapi/com/sun/star/chart2/data/XDataReceiver.idl | 2 | ||||
-rw-r--r-- | offapi/com/sun/star/chart2/data/XPopupRequest.idl | 39 |
3 files changed, 85 insertions, 0 deletions
diff --git a/offapi/com/sun/star/chart2/data/PopupRequest.idl b/offapi/com/sun/star/chart2/data/PopupRequest.idl new file mode 100644 index 000000000000..bd49c69cc22a --- /dev/null +++ b/offapi/com/sun/star/chart2/data/PopupRequest.idl @@ -0,0 +1,44 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + * + */ + +#ifndef com_sun_star_chart2_data_PopupRequest_idl +#define com_sun_star_chart2_data_PopupRequest_idl + +#include <com/sun/star/chart2/data/XPopupRequest.idl> + +module com +{ +module sun +{ +module star +{ +module chart2 +{ +module data +{ + +/** + */ +service PopupRequest +{ + /** + */ + interface XPopupRequest; +}; + +} ; // data +} ; // chart2 +} ; // com +} ; // sun +} ; // star + +#endif + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/offapi/com/sun/star/chart2/data/XDataReceiver.idl b/offapi/com/sun/star/chart2/data/XDataReceiver.idl index ae7cf13c15c5..2ff74274c920 100644 --- a/offapi/com/sun/star/chart2/data/XDataReceiver.idl +++ b/offapi/com/sun/star/chart2/data/XDataReceiver.idl @@ -87,6 +87,8 @@ interface XDataReceiver : ::com::sun::star::uno::XInterface return an empty object.</p> */ XRangeHighlighter getRangeHighlighter(); + + XPopupRequest getPopupRequest(); }; } ; // data diff --git a/offapi/com/sun/star/chart2/data/XPopupRequest.idl b/offapi/com/sun/star/chart2/data/XPopupRequest.idl new file mode 100644 index 000000000000..e3294658a4a9 --- /dev/null +++ b/offapi/com/sun/star/chart2/data/XPopupRequest.idl @@ -0,0 +1,39 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + * + */ + +#ifndef com_sun_star_chart2_data_XPopupRequest_idl +#define com_sun_star_chart2_data_XPopupRequest_idl + +#include <com/sun/star/uno/XInterface.idl> + +module com +{ +module sun +{ +module star +{ +module chart2 +{ +module data +{ + +interface XPopupRequest : com::sun::star::awt::XRequestCallback +{ +}; + +} ; // data +} ; // chart2 +} ; // com +} ; // sun +} ; // star + +#endif + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |