1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
21 module com
{ module sun
{ module star
{ module util
{
25 @since LibreOffice 4.1
27 published
interface XPathSettings
29 /** Main interface to have access to the path properties. */
30 interface com
::sun
::star
::beans
::XPropertySet
;
32 /** Specifies the directory that contains spreadsheet add-ins which use
34 [attribute
] string Addin
;
36 /** The settings of the AutoCorrect dialog. The value can be more than
37 one path separated by a semicolon.
39 [attribute
] string AutoCorrect
;
41 /**The directory which contains the AutoText modules. The value can be more than
42 one path separated by a semicolon.*/
43 [attribute
] string AutoText
;
45 /** Automatic backup copies of documents are stored here. */
46 [attribute
] string Backup
;
48 /** The Basic files, used by the AutoPilots, can be found here. The value can be more than
49 one path separated by a semicolon.*/
50 [attribute
] string Basic
;
52 /** This directory contains the icons for the toolbars. */
53 [attribute
] string Bitmap
;
55 /** The configuration files are located here. This entry cannot be changed
56 by the user in Office user interface. */
57 [attribute
] string Config
;
59 /** The provided dictionaries are stored here. */
60 [attribute
] string Dictionary
;
62 /** Path to save folder bookmarks */
63 [attribute
] string Favorite
;
65 /** Specifies the directory where all the filters are stored. */
66 [attribute
] string Filter
;
68 /** Specifies the directories which contains the Gallery
69 database and multimedia files. The value can be more than
70 one path separated by a semicolon.*/
71 [attribute
] string Gallery
;
73 /** This directory is displayed when the dialog for opening a graphic
74 or for saving a new graphic is called. */
75 [attribute
] string Graphic
;
77 /** The path to the Office help files. */
78 [attribute
] string Help
;
80 /** The files that are necessary for the spell check are saved here. */
81 [attribute
] string Linguistic
;
83 /** This is the path for the modules. */
84 [attribute
] string Module;
86 /** This is the path to the palette files *.SOB to *.SOF containing
87 user-defined colors and patterns. The value can be more than
88 one path separated by a semicolon.*/
89 [attribute
] string Palette
;
91 /** Plugins are saved in these directories. The value can be more than
92 one path separated by a semicolon.*/
93 [attribute
] string Plugin
;
95 /** Mail, News files and other information (for example, about FTP Server)
97 [attribute
] string Storage
;
99 /** The base url to the office temp-files */
100 [attribute
] string Temp
;
102 /** The templates originate from these folders and sub-folders. The value
103 can be more than one path separated by a semicolon.*/
104 [attribute
] string Template
;
106 /** Global directories to look for user interface configuration files. The
107 user interface configuration will be merged with user settings stored
108 in the directory specified by <var>UserConfig</var>. The value can be more
109 than one path separated by a semicolon.*/
110 [attribute
] string UIConfig
;
112 /** Specifies the folder with the user settings. */
113 [attribute
] string UserConfig
;
115 /** The custom dictionaries are contained here.
118 [attribute
] string UserDictionary
;
120 /** The path of the work folder can be modified according to the
121 user's needs. The path specified here can be seen in the Open
123 [attribute
] string Work
;
125 [attribute
] string BasePathShareLayer
;
126 [attribute
] string BasePathUserLayer
;
132 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */