source: trunk/java-client/org/nzdl/gsdl/SimpleGraphicalClient/Constants.java@ 2195

Last change on this file since 2195 was 2190, checked in by daven, 23 years ago

preference for displaying raw text or HTML now working

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 2.3 KB
Line 
1/*
2 * SimpleGraphicalClient.java
3 * Copyright (C) 2001 New Zealand Digital Library Project
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19package org.nzdl.gsdl.SimpleGraphicalClient;
20
21import java.awt.Font;
22
23/**
24 * Class
25 *
26 * A class to
27 *
28 * @author Dave Nichols ([email protected])
29 * @author stuart yeates ([email protected])
30 * @version $Revision: 2190 $
31 * @see org.nzdl.gsdl.service.SimpleGraphicalClient.SimpleGraphicalClient
32 */
33
34
35public interface Constants
36
37{
38
39/* Menu Item IDs */
40
41/* File Menu */
42
43 final static int QUIT_ID = 104;
44 final static int POLL_ID = 105;
45 final static int GARBAGE_ID = 106;
46
47/* Edit Menu */
48
49 final static int PREF_ID = 201;
50
51
52 /* Preference Strings */
53
54 String DISPLAY_FIRST_DOC = "Automatically display the first document";
55 String RAW_TEXT = "Always display raw text (don't interpret HTML)";
56 String MULTIPLE_SERVERS = "Connect to multiple servers";
57 String LOG_SERVICE = "Log at the NzdlService level";
58 String CACHE_CORBA = "Cache corba requests";
59 String SAVE_DOCS = "Save documents";
60
61/*Fonts */
62
63/* font for display of document contents */
64Font docFont = new Font("SansSerif", Font.PLAIN , 10);
65
66/* font for display of results */
67
68Font resultsFont = new Font("SansSerif", Font.PLAIN , 10);
69
70/* font for display of berrybasket contents */
71
72Font berryFont = new Font("SansSerif", Font.PLAIN , 10);
73
74/* font for display of queryHistory */
75
76Font queryHistoryFont = new Font("SansSerif", Font.PLAIN , 10);
77
78/* font for query input TextField */
79
80Font searchTextFieldFont = new Font("SansSerif", Font.BOLD , 11);
81
82
83
84}
Note: See TracBrowser for help on using the repository browser.