LibreOffice
LibreOffice 7.4 SDK API Reference
XModify.idl
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#ifndef org_freedesktop_PackageKit_XModify_idl
11#define org_freedesktop_PackageKit_XModify_idl
12
14
15module org
16{
17module freedesktop
18{
19module PackageKit
20{
29{
35 void InstallPackageFiles([in] sequence< string > files, [in] string interaction);
36
42 void InstallProvideFiles([in] sequence< string > files, [in] string interaction);
43
49 void InstallCatalogs([in] sequence< string > files, [in] string interaction);
50
56 void InstallPackageNames([in] sequence< string > packages, [in] string interaction);
57
63 void InstallMimeTypes([in] sequence< string > mimeTypes, [in] string interaction);
64
70 void InstallFontconfigResources([in] sequence< string > resources, [in] string interaction);
71
77 void InstallGStreamerResources([in] sequence< string > resources, [in] string interaction);
78
84 void InstallResources([in] sequence< string > types, [in] sequence< string > resources, [in] string interaction);
85
91 void RemovePackageByFiles([in] sequence< string > files, [in] string interaction);
92
98 void InstallPrinterDrivers([in] sequence< string > files, [in] string interaction);
99};
100
101} ; // PackageKit
102} ; // freedesktop
103} ; // org
104
105
106#endif
107
108/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
base interface of all UNO interfaces
Definition: XInterface.idl:48
The interface used for modifying the package database.
Definition: XModify.idl:29
void InstallGStreamerResources([in] sequence< string > resources, [in] string interaction)
Installs GStreamer resources ( [in] usually codecs) from a configured software source.
void InstallPackageFiles([in] sequence< string > files, [in] string interaction)
Installs local package sequence< string > files or service packs.
void InstallProvideFiles([in] sequence< string > files, [in] string interaction)
Installs sequence< string > packages to provide sequence< string > files.
void InstallFontconfigResources([in] sequence< string > resources, [in] string interaction)
Installs fontconfig resources ( [in] usually fonts) from a configured software source.
void InstallResources([in] sequence< string > types, [in] sequence< string > resources, [in] string interaction)
Installs resources of a given type from a configured software source.
void InstallPrinterDrivers([in] sequence< string > files, [in] string interaction)
Installs printer drivers from a configured software source.
void InstallMimeTypes([in] sequence< string > mimeTypes, [in] string interaction)
Installs mimetype handlers from a configured software source.
void InstallCatalogs([in] sequence< string > files, [in] string interaction)
Installs sequence< string > packages to provide sequence< string > files.
void InstallPackageNames([in] sequence< string > packages, [in] string interaction)
Installs sequence< string > packages from a configured software source.
void RemovePackageByFiles([in] sequence< string > files, [in] string interaction)
Removes sequence< string > packages that provide the given local sequence< string > files.
Definition: SyncDbusSessionHelper.idl:14