cid#1607171 Data race condition
[LibreOffice.git] / sdext / source / minimizer / pppoptimizertoken.hxx
blobf665e82ece1c3e849e9bfa55bab71e0e16ebcbdc
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/.
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 .
20 #ifndef INCLUDED_SDEXT_SOURCE_MINIMIZER_PPPOPTIMIZERTOKEN_HXX
21 #define INCLUDED_SDEXT_SOURCE_MINIMIZER_PPPOPTIMIZERTOKEN_HXX
23 #include <rtl/ustring.hxx>
25 enum PPPOptimizerTokenEnum
27 TK_btnNavFinish,
29 TK_DocumentService,
30 TK_FileSizeDestination,
31 TK_FileSizeSource,
32 TK_FilterName,
33 TK_Flags,
34 TK_DocumentFrame,
35 TK_DialogParentWindow,
36 TK_Name,
37 TK_Progress,
38 TK_Settings,
39 TK_StatusDispatcher,
40 TK_Type,
41 TK_UIName,
43 TK_JPEGCompression,
44 TK_JPEGQuality,
45 TK_RemoveCropArea,
46 TK_ImageResolution,
47 TK_EmbedLinkedGraphics,
48 TK_OLEOptimization,
49 TK_OLEOptimizationType,
50 TK_DeleteUnusedMasterPages,
51 TK_DeleteHiddenSlides,
52 TK_DeleteNotesPages,
53 TK_CustomShowName,
54 TK_SaveAs,
55 TK_SaveAsURL,
56 TK_OpenNewDocument,
57 TK_EstimatedFileSize,
59 TK_Status,
60 TK_Pages,
62 STR_SUN_OPTIMIZATION_WIZARD2,
63 STR_INTRODUCTION,
64 STR_IMAGE_OPTIMIZATION,
65 STR_OLE_OBJECTS,
66 STR_OLE_OBJECTS_DESC,
67 STR_NO_OLE_OBJECTS_DESC,
68 STR_SLIDES,
69 STR_SUMMARY,
70 STR_DELETE_SLIDES,
71 STR_OPTIMIZE_IMAGES,
72 STR_CREATE_REPLACEMENT,
73 STR_MY_SETTINGS,
74 STR_OK,
75 STR_INFO_PRIMARY,
76 STR_INFO_SECONDARY_1,
77 STR_INFO_SECONDARY_2,
78 STR_INFO_SECONDARY_3,
79 STR_INFO_SECONDARY_4,
80 STR_DUPLICATING_PRESENTATION,
81 STR_DELETING_SLIDES,
82 STR_OPTIMIZING_GRAPHICS,
83 STR_CREATING_OLE_REPLACEMENTS,
84 STR_FILESIZESEPARATOR,
85 STR_FILENAME_SUFFIX,
86 STR_WARN_UNSAVED_PRESENTATION,
87 TK_NotFound
90 PPPOptimizerTokenEnum TKGet(std::u16string_view);
91 OUString TKGet(const PPPOptimizerTokenEnum);
93 #endif
95 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */