diff options
author | Szymon Kłos <szymon.klos@collabora.com> | 2021-07-16 10:06:43 +0200 |
---|---|---|
committer | Szymon Kłos <szymon.klos@collabora.com> | 2021-08-19 10:02:15 +0200 |
commit | f54ccf09a5073b6e544c976da68de0c9fc0bdf6c (patch) | |
tree | 63f5c2db742cb8c53cb8763e15e535c578d58ac6 /offapi/com/sun | |
parent | abd08d042fb397fbf97b93d8ca1a6426c1b304e6 (diff) |
Make Custom Color Picker dialog async
- now supports also XAsynchronousExecutableDialog
- inherits from SfxDialogController to attach correct LOKNotifier
Change-Id: Ic21db4057b8087d74a437b1c8ec95408ade5264d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/119012
Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com>
Reviewed-by: Szymon Kłos <szymon.klos@collabora.com>
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/120670
Tested-by: Jenkins
Diffstat (limited to 'offapi/com/sun')
-rw-r--r-- | offapi/com/sun/star/cui/AsyncColorPicker.idl | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/offapi/com/sun/star/cui/AsyncColorPicker.idl b/offapi/com/sun/star/cui/AsyncColorPicker.idl new file mode 100644 index 000000000000..a4f8c28d9b3e --- /dev/null +++ b/offapi/com/sun/star/cui/AsyncColorPicker.idl @@ -0,0 +1,41 @@ +/* -*- 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/. + * + * This file incorporates work covered by the following license notice: + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed + * with this work for additional information regarding copyright + * ownership. The ASF licenses this file to you under the Apache + * License, Version 2.0 (the "License"); you may not use this file + * except in compliance with the License. You may obtain a copy of + * the License at http://www.apache.org/licenses/LICENSE-2.0 . + */ +#ifndef __com_sun_star_cui_AsyncColorPicker_idl__ +#define __com_sun_star_cui_AsyncColorPicker_idl__ + +#include <com/sun/star/ui/dialogs/XAsynchronousExecutableDialog.idl> +#include <com/sun/star/awt/XWindow.idl> + + +module com { module sun { module star { module cui { + +/** + @since LibreOffice 7.2 + */ +service AsyncColorPicker : com::sun::star::ui::dialogs::XAsynchronousExecutableDialog +{ + createWithParent([in] com::sun::star::awt::XWindow Parent); +}; + +}; }; }; }; + +#endif + + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |