vcl: allow for overriding the default PDF rendering resolution
[LibreOffice.git] / sdext / source / minimizer / pppoptimizertoken.hxx
blob8f83e8dd8f8e9b8216fb6e5d989d393cffaa8656
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_rdmNavi,
28 TK_btnNavBack,
29 TK_btnNavNext,
30 TK_btnNavFinish,
31 TK_btnNavCancel,
33 TK_Button0Pg0,
34 TK_RadioButton0Pg1,
35 TK_RadioButton1Pg1,
36 TK_CheckBox1Pg1,
37 TK_CheckBox2Pg1,
38 TK_CheckBox0Pg2,
39 TK_RadioButton0Pg2,
40 TK_RadioButton1Pg2,
41 TK_CheckBox0Pg3,
42 TK_CheckBox1Pg3,
43 TK_CheckBox2Pg3,
44 TK_CheckBox3Pg3,
45 TK_RadioButton0Pg4,
46 TK_RadioButton1Pg4,
47 TK_CheckBox1Pg4,
49 TK_DocumentService,
50 TK_FileSizeDestination,
51 TK_FileSizeSource,
52 TK_FilterName,
53 TK_Flags,
54 TK_InformationDialog,
55 TK_Name,
56 TK_Progress,
57 TK_Settings,
58 TK_StatusDispatcher,
59 TK_Type,
60 TK_UIName,
62 TK_JPEGCompression,
63 TK_JPEGQuality,
64 TK_RemoveCropArea,
65 TK_ImageResolution,
66 TK_EmbedLinkedGraphics,
67 TK_OLEOptimization,
68 TK_OLEOptimizationType,
69 TK_DeleteUnusedMasterPages,
70 TK_DeleteHiddenSlides,
71 TK_DeleteNotesPages,
72 TK_CustomShowName,
73 TK_SaveAs,
74 TK_SaveAsURL,
75 TK_OpenNewDocument,
76 TK_EstimatedFileSize,
78 TK_Status,
79 TK_Pages,
81 STR_SUN_OPTIMIZATION_WIZARD2,
82 STR_STEPS,
83 STR_BACK,
84 STR_NEXT,
85 STR_FINISH,
86 STR_CANCEL,
87 STR_INTRODUCTION,
88 STR_INTRODUCTION_T,
89 STR_CHOSE_SETTINGS,
90 STR_REMOVE,
91 STR_GRAPHIC_OPTIMIZATION,
92 STR_IMAGE_OPTIMIZATION,
93 STR_LOSSLESS_COMPRESSION,
94 STR_JPEG_COMPRESSION,
95 STR_QUALITY,
96 STR_REMOVE_CROP_AREA,
97 STR_IMAGE_RESOLUTION,
98 STR_IMAGE_RESOLUTION_0,
99 STR_IMAGE_RESOLUTION_1,
100 STR_IMAGE_RESOLUTION_2,
101 STR_IMAGE_RESOLUTION_3,
102 STR_EMBED_LINKED_GRAPHICS,
103 STR_OLE_OBJECTS,
104 STR_OLE_OPTIMIZATION,
105 STR_OLE_REPLACE,
106 STR_ALL_OLE_OBJECTS,
107 STR_ALIEN_OLE_OBJECTS_ONLY,
108 STR_OLE_OBJECTS_DESC,
109 STR_NO_OLE_OBJECTS_DESC,
110 STR_SLIDES,
111 STR_CHOOSE_SLIDES,
112 STR_DELETE_MASTER_PAGES,
113 STR_DELETE_NOTES_PAGES,
114 STR_DELETE_HIDDEN_SLIDES,
115 STR_CUSTOM_SHOW,
116 STR_SUMMARY,
117 STR_SUMMARY_TITLE,
118 STR_APPLY_TO_CURRENT,
119 STR_AUTOMATICALLY_OPEN,
120 STR_SAVE_SETTINGS,
121 STR_SAVE_AS,
122 STR_DELETE_SLIDES,
123 STR_OPTIMIZE_IMAGES,
124 STR_CREATE_REPLACEMENT,
125 STR_CURRENT_FILESIZE,
126 STR_ESTIMATED_FILESIZE,
127 STR_MY_SETTINGS,
128 STR_OK,
129 STR_INFO_1,
130 STR_INFO_2,
131 STR_INFO_3,
132 STR_INFO_4,
133 STR_DUPLICATING_PRESENTATION,
134 STR_DELETING_SLIDES,
135 STR_OPTIMIZING_GRAPHICS,
136 STR_CREATING_OLE_REPLACEMENTS,
137 STR_FILESIZESEPARATOR,
138 STR_FILENAME_SUFFIX,
139 STR_WARN_UNSAVED_PRESENTATION,
140 TK_NotFound
143 PPPOptimizerTokenEnum TKGet( const OUString& );
144 OUString TKGet( const PPPOptimizerTokenEnum );
146 #endif
148 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */