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

Last change on this file since 2179 was 2162, checked in by say1, 23 years ago

logging fixes. clearing objects in the GUI to ease garbage collection. menu item to force global garbage collections.

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 2.2 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: 2162 $
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 NEW_PERSON_ID = 101;
44 final static int NEW_GROUP_ID = 102;
45 final static int NEW_SPACE_ID = 103;
46 final static int QUIT_ID = 104;
47 final static int POLL_ID = 105;
48 final static int GARBAGE_ID = 106;
49
50/* Edit Menu */
51
52 final static int INFO_ID = 201;
53 final static int EDIT_ID = 202;
54 final static int WEIGHTS_ID = 207;
55
56
57
58/*Fonts */
59
60/* font for display of document contents */
61Font docFont = new Font("SansSerif", Font.PLAIN , 10);
62
63/* font for display of results */
64
65Font resultsFont = new Font("SansSerif", Font.PLAIN , 10);
66
67/* font for display of berrybasket contents */
68
69Font berryFont = new Font("SansSerif", Font.PLAIN , 10);
70
71/* font for display of queryHistory */
72
73Font queryHistoryFont = new Font("SansSerif", Font.PLAIN , 10);
74
75/* font for query input TextField */
76
77Font searchTextFieldFont = new Font("SansSerif", Font.BOLD , 11);
78
79
80
81}
Note: See TracBrowser for help on using the repository browser.