source: trunk/Lucide/SOURCE/gui/messages.h@ 91

Last change on this file since 91 was 91, checked in by Eugene Romanenko, 19 years ago

bitmap printing, preliminary postscript printing, export to PS for djvu plugin, other improvements

File size: 3.6 KB
Line 
1/* ***** BEGIN LICENSE BLOCK *****
2 * Version: CDDL 1.0/LGPL 2.1
3 *
4 * The contents of this file are subject to the COMMON DEVELOPMENT AND
5 * DISTRIBUTION LICENSE (CDDL) Version 1.0 (the "License"); you may not use
6 * this file except in compliance with the License. You may obtain a copy of
7 * the License at http://www.sun.com/cddl/
8 *
9 * Software distributed under the License is distributed on an "AS IS" basis,
10 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11 * for the specific language governing rights and limitations under the
12 * License.
13 *
14 * The Initial Developer of the Original Code is
15 * Eugene Romanenko, netlabs.org.
16 * Portions created by the Initial Developer are Copyright (C) 2006
17 * the Initial Developer. All Rights Reserved.
18 *
19 * Contributor(s):
20 *
21 * Alternatively, the contents of this file may be used under the terms of
22 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
23 * in which case the provisions of the LGPL are applicable instead of those
24 * above. If you wish to allow use of your version of this file only under the
25 * terms of the LGPL, and not to allow others to use your version of this file
26 * under the terms of the CDDL, indicate your decision by deleting the
27 * provisions above and replace them with the notice and other provisions
28 * required by the LGPL. If you do not delete the provisions above, a recipient
29 * may use your version of this file under the terms of any one of the CDDL
30 * or the LGPL.
31 *
32 * ***** END LICENSE BLOCK ***** */
33
34
35#ifndef __MESSAGES_H
36#define __MESSAGES_H
37
38
39// Toolbar hints
40extern const char *TBHINT_OPEN;
41extern const char *TBHINT_PRINT;
42extern const char *TBHINT_SHOW_NAV_PANE;
43extern const char *TBHINT_FIRST_PAGE;
44extern const char *TBHINT_PREV_PAGE;
45extern const char *TBHINT_NEXT_PAGE;
46extern const char *TBHINT_LAST_PAGE;
47extern const char *TBHINT_ACTUAL_SIZE;
48extern const char *TBHINT_FIT_WINDOW;
49extern const char *TBHINT_FIT_WIDTH;
50extern const char *TBHINT_FIND;
51extern const char *TBHINT_FINDAGAIN;
52// toolbar's page number
53extern const char *TB_PAGENUM;
54
55// Lucide messages
56extern const char *MSGS_MAIN_WIN_TITLE;
57extern const char *MSGS_NO_SUIT_PLUG;
58extern const char *MSGS_FILE_LOAD_ERROR;
59extern const char *MSGS_LOADING_DOCUMENT;
60extern const char *MSGS_WARNING;
61extern const char *MSGS_OVERWRITE_FILE;
62extern const char *MSGS_FILE_SAVE_ERROR;
63
64// Settings dialog
65extern const char *SD_SINGLE_PAGE;
66extern const char *SD_CONTINUOUS;
67
68// Plugins List columns titles
69extern const char *PLUGLIST_PLUGIN_NAME;
70extern const char *PLUGLIST_SUPP_EXTS;
71extern const char *PLUGLIST_PLUGIN_DESC;
72
73// 'Fonts Info' List columns titles
74extern const char *FONTINFO_NAME;
75extern const char *FONTINFO_TYPE;
76extern const char *FONTINFO_EMBEDDED;
77
78
79// "Document info" dialog, Document info keys
80extern const char *DOCINFO_TITLE;
81extern const char *DOCINFO_FORMAT;
82extern const char *DOCINFO_AUTHOR;
83extern const char *DOCINFO_SUBJECT;
84extern const char *DOCINFO_KEYWORDS;
85extern const char *DOCINFO_CREATOR;
86extern const char *DOCINFO_PRODUCER;
87extern const char *DOCINFO_CREATION_DATE;
88extern const char *DOCINFO_MOD_DATE;
89
90// "Find" dialog, other 'find'-related messages
91extern const char *FIND_SEARCH_PAGE_OF;
92extern const char *FIND_NOT_FOUND;
93
94// 'Go to page' dialog
95extern const char *GTP_OF;
96
97// Printing, other 'print'-related messages
98extern const char *PRINT_PRINTING_PAGE_OF;
99extern const char *PRINT_GENERATING_POSTSCRIPT;
100extern const char *PRINT_SPOOLING_POSTSCRIPT;
101extern const char *PRINT_FAILED;
102
103
104#endif // __MESSAGES_H
Note: See TracBrowser for help on using the repository browser.