001: /**
002: * Caption: Zaval Java Resource Editor
003: * $Revision: 0.37 $
004: * $Date: 2002/03/28 9:24:42 $
005: *
006: * @author: Victor Krapivin
007: * @version: 2.0
008: *
009: * Zaval JRC Editor is a visual editor which allows you to manipulate
010: * localization strings for all Java based software with appropriate
011: * support embedded.
012: *
013: * For more info on this product read Zaval Java Resource Editor User's Guide
014: * (It comes within this package).
015: * The latest product version is always available from the product's homepage:
016: * http://www.zaval.org/products/jrc-editor/
017: * and from the SourceForge:
018: * http://sourceforge.net/projects/zaval0002/
019: *
020: * Contacts:
021: * Support : support@zaval.org
022: * Change Requests : change-request@zaval.org
023: * Feedback : feedback@zaval.org
024: * Other : info@zaval.org
025: *
026: * Copyright (C) 2001-2004 Zaval Creative Engineering Group (http://www.zaval.org)
027: *
028: * This program is free software; you can redistribute it and/or
029: * modify it under the terms of the GNU General Public License
030: * (version 2) as published by the Free Software Foundation.
031: *
032: * This program is distributed in the hope that it will be useful,
033: * but WITHOUT ANY WARRANTY; without even the implied warranty of
034: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
035: * GNU General Public License for more details.
036: *
037: * You should have received a copy of the GNU General Public License
038: * along with this program; if not, write to the Free Software
039: * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
040: *
041: */package org.zaval.tools.i18n.translator;
042:
043: import org.zaval.awt.*;
044: import org.zaval.awt.dialog.*;
045:
046: import java.io.File;
047: import java.awt.*;
048: import java.util.*;
049:
050: public class SearchDialog extends EditDialog {
051: IERadioButton inKeys;
052: IERadioButton inVals;
053:
054: IERadioButton regex;
055: IERadioButton mask;
056: IERadioButton exact;
057:
058: IECheckbox cases;
059:
060: IERadioButton cg1[];
061: IERadioButton cg2[];
062:
063: public void setKVGroupLabels(String s1, String s2) {
064: inKeys.setLabel(s1);
065: inVals.setLabel(s2);
066: }
067:
068: public void setRMEGroupLabels(String s1, String s2, String s3) {
069: regex.setLabel(s1);
070: mask.setLabel(s2);
071: exact.setLabel(s3);
072: }
073:
074: public void setCaseLabel(String s1) {
075: cases.setLabel(s1);
076: }
077:
078: public boolean isKeyMatching() {
079: return inKeys.getState();
080: }
081:
082: public boolean isDataMatching() {
083: return inVals.getState();
084: }
085:
086: public boolean isExactMatching() {
087: return exact.getState();
088: }
089:
090: public boolean isMaskMatching() {
091: return mask.getState();
092: }
093:
094: public boolean isRegexMatching() {
095: return regex.getState();
096: }
097:
098: public boolean isCaseSensitive() {
099: return cases.getState();
100: }
101:
102: public SearchDialog(Frame f, String s, boolean b, Component l) {
103: super (f, s, b, l);
104:
105: cg1 = new IERadioButton[2];
106: cg2 = new IERadioButton[3];
107: cg1[0] = inKeys = new IERadioButton("", false);
108: cg1[1] = inVals = new IERadioButton("", true);
109:
110: cg2[0] = regex = new IERadioButton("", false);
111: cg2[1] = mask = new IERadioButton("", false);
112: cg2[2] = exact = new IERadioButton("", true);
113:
114: cases = new IECheckbox("");
115: cases.setState(true);
116:
117: Panel p = new Panel();
118: p.setLayout(new GridBagLayout());
119:
120: Panel p1 = new BorderedPanel();
121: p1.setLayout(new GridBagLayout());
122: Panel p2 = new BorderedPanel();
123: p2.setLayout(new GridBagLayout());
124:
125: constrain(p1, inVals, 0, 0, 1, 1, GridBagConstraints.NONE,
126: GridBagConstraints.NORTHWEST, 0.0, 0.0, 0, 5, 5, 0);
127: constrain(p1, inKeys, 0, 1, 1, 1, GridBagConstraints.NONE,
128: GridBagConstraints.NORTHWEST, 0.0, 0.0, 0, 5, 5, 0);
129:
130: constrain(p2, exact, 1, 0, 1, 1, GridBagConstraints.NONE,
131: GridBagConstraints.NORTHWEST, 0.0, 0.0, 0, 5, 5, 0);
132: constrain(p2, mask, 1, 1, 1, 1, GridBagConstraints.NONE,
133: GridBagConstraints.NORTHWEST, 0.0, 0.0, 0, 5, 5, 0);
134: constrain(p2, regex, 1, 2, 1, 1, GridBagConstraints.NONE,
135: GridBagConstraints.NORTHWEST, 0.0, 0.0, 0, 5, 5, 0);
136:
137: constrain(p, p1, 0, 0, 1, 1, GridBagConstraints.BOTH,
138: GridBagConstraints.NORTHWEST, 1.0, 1.0, 5, 0, 5, 0);
139: constrain(p, p2, 1, 0, 1, 1, GridBagConstraints.BOTH,
140: GridBagConstraints.NORTHWEST, 1.0, 1.0, 5, 0, 0, 0);
141: constrain(p, cases, 0, 3, 2, 1, GridBagConstraints.NONE,
142: GridBagConstraints.NORTHWEST, 0.0, 0.0, 5, 5, 5, 5);
143:
144: constrain(this , p, 0, 1, 2, 1, GridBagConstraints.BOTH,
145: GridBagConstraints.NORTHWEST, 1.0, 1.0, 5, 5, 5, 5);
146: }
147:
148: private void applyTo(IERadioButton[] group, IERadioButton b) {
149: int j;
150:
151: for (j = 0; j < group.length; ++j)
152: if (group[j] == b)
153: break;
154: if (j >= group.length)
155: return;
156: for (j = 0; j < group.length; ++j)
157: if (group[j] != b)
158: group[j].setState(false);
159: }
160:
161: public boolean action(Event evt, Object what) {
162: if (evt.target instanceof IERadioButton) {
163: applyTo(cg1, (IERadioButton) evt.target);
164: applyTo(cg2, (IERadioButton) evt.target);
165: return true;
166: }
167: return super.action(evt, what);
168: }
169: }
|