LibreOffice
LibreOffice 24.8 SDK API Reference
 
Loading...
Searching...
No Matches
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
10module org
11{
12module freedesktop
13{
14module PackageKit
15{
24{
29
30 void InstallPackageFiles([in] sequence< string > files, [in] string interaction);
31
36
37 void InstallProvideFiles([in] sequence< string > files, [in] string interaction);
38
43
44 void InstallCatalogs([in] sequence< string > files, [in] string interaction);
45
50
51 void InstallPackageNames([in] sequence< string > packages, [in] string interaction);
52
57
58 void InstallMimeTypes([in] sequence< string > mimeTypes, [in] string interaction);
59
64
65 void InstallFontconfigResources([in] sequence< string > resources, [in] string interaction);
66
71
72 void InstallGStreamerResources([in] sequence< string > resources, [in] string interaction);
73
78
79 void InstallResources([in] sequence< string > types, [in] sequence< string > resources, [in] string interaction);
80
85
86 void RemovePackageByFiles([in] sequence< string > files, [in] string interaction);
87
92
93 void InstallPrinterDrivers([in] sequence< string > files, [in] string interaction);
94};
95
96} ; // PackageKit
97} ; // freedesktop
98} ; // org
99
100
101/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
base interface of all UNO interfaces
Definition XInterface.idl:46
The interface used for modifying the package database.
Definition XModify.idl:24
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:10