tdf#130857 qt weld: Implement QtInstanceWidget::strip_mnemonic
[LibreOffice.git] / offapi / org / freedesktop / PackageKit / XQuery.idl
blob3cda32cf6bce5e49937a6309f833bee317df9db4
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/.
8 */
10 module org
12 module freedesktop
14 module PackageKit
16 /**
17 * The interface used for querying the package database.
19 * @sa
20 * https://git.gnome.org/browse/gnome-software/tree/src/org.freedesktop.PackageKit.xml
21 * for documentation of the corresponding D-Bus interface
23 interface XQuery : com::sun::star::uno::XInterface
25 /**
26 * Installs local package files or service packs.
27 * @since LibreOffice 4.0
30 void IsInstalled([in] string packageName, [in] string interaction, [out] boolean installed);
32 /**
33 * Installs packages to provide files.
34 * @since LibreOffice 4.0
37 void SearchFile([in] string fileName, [in] string interaction, [out] boolean installed, [out] string packageName);
41 } ; // PackageKit
42 } ; // freedesktop
43 } ; // org
46 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */