summaryrefslogtreecommitdiffstats
path: root/logo/src/xlogo/gui/translation/FirstPanel.java
blob: 1fc030919f9d8b49e7d1433328a085bed2ea3c31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
/* XLogo4Schools - A Logo Interpreter specialized for use in schools, based on XLogo by Lo�c Le Coq
 * Copyright (C) 2013 Marko Zivkovic
 * 
 * Contact Information: marko88zivkovic at gmail dot com
 * 
 * This program is free software; you can redistribute it and/or modify it 
 * under the terms of the GNU General Public License as published by the Free 
 * Software Foundation; either version 2 of the License, or (at your option) 
 * any later version.  This program is distributed in the hope that it will be 
 * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General 
 * Public License for more details.  You should have received a copy of the 
 * GNU General Public License along with this program; if not, write to the Free 
 * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 
 * MA 02110-1301, USA.
 * 
 * 
 * This Java source code belongs to XLogo4Schools, written by Marko Zivkovic
 * during his Bachelor thesis at the computer science department of ETH Z�rich,
 * in the year 2013 and/or during future work.
 * 
 * It is a reengineered version of XLogo written by Lo�c Le Coq, published
 * under the GPL License at http://xlogo.tuxfamily.org/
 * 
 * Contents of this file were initially written by Lo�c Le Coq,
 * modifications, extensions, refactorings migh have been applied by Marko Zivkovic 
 */

package xlogo.gui.translation;
import javax.swing.BorderFactory;
import javax.swing.ImageIcon;
import javax.swing.JLabel;
import javax.swing.JList;
import javax.swing.JPanel;
import javax.swing.ButtonGroup;
import javax.swing.JRadioButton;
import javax.swing.JButton;
import javax.swing.ListCellRenderer;
import javax.swing.JComboBox;

import java.awt.Component;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.Image;
import java.awt.Insets;
import java.awt.MediaTracker;
import java.awt.Toolkit;

import xlogo.Logo;
import xlogo.storage.WSManager;
import xlogo.utils.Utils;

import java.awt.event.*;
public class FirstPanel extends JPanel implements ActionListener{
	private static final long serialVersionUID = 1L;
	  	private Integer[] intArray;
	  	
	  	
	private JRadioButton consultButton;
	private JRadioButton modifyButton;
	private JRadioButton completeButton;
	private JRadioButton createButton;
	private JButton validButton;
	private ButtonGroup group=new ButtonGroup();
	private JLabel label;
	private JComboBox comboLangModify;
	private JComboBox comboLangComplete;
//	private JTextField textLang;
	private TranslateXLogo tx;
	protected FirstPanel(TranslateXLogo tx){
		this.tx=tx;
		int n=Logo.translationLanguage.length;
		intArray=new Integer[n];
  		for(int i=0;i<n;i++){
        	intArray[i]=new Integer(i);
    	}
		initGui();
	}
	protected String getAction(){
		if (modifyButton.isSelected()) return TranslateXLogo.MODIFY;
		else if (completeButton.isSelected()) return TranslateXLogo.COMPLETE;
		else if (consultButton.isSelected()) return TranslateXLogo.CONSULT;
		else if (createButton.isSelected()) return TranslateXLogo.CREATE;
		return null;
	}
	protected String getLang(){
		if (modifyButton.isSelected()) return String.valueOf(comboLangModify.getSelectedIndex());
		return String.valueOf(comboLangComplete.getSelectedIndex());
	}
/*	protected String getNewLang(){
		return textLang.getText();
	}*/
	private void initGui(){
		
		setLayout(new GridBagLayout());
		
	//	textLang=new JTextField();
		label=new JLabel(Logo.messages.getString("translatewant"));
		createButton=new JRadioButton(Logo.messages.getString("translatecreate"));
		modifyButton=new JRadioButton(Logo.messages.getString("translatemodify"));
		completeButton=new JRadioButton(Logo.messages.getString("translatecomplete"));
		consultButton=new JRadioButton(Logo.messages.getString("translateconsult"));
		createButton.setActionCommand(TranslateXLogo.CREATE);
		modifyButton.setActionCommand(TranslateXLogo.MODIFY);
		consultButton.setActionCommand(TranslateXLogo.CONSULT);
		completeButton.setActionCommand(TranslateXLogo.COMPLETE);
		createButton.addActionListener(this);
		completeButton.addActionListener(this);
		modifyButton.addActionListener(this);
		consultButton.addActionListener(this);
		comboLangModify=new JComboBox(intArray);
		comboLangModify.setRenderer(new Contenu());
		comboLangComplete=new JComboBox(intArray);
		comboLangComplete.setRenderer(new Contenu());
		validButton=new JButton(Logo.messages.getString("pref.ok"));
		validButton.setActionCommand(TranslateXLogo.OK);
		validButton.addActionListener(tx);
		setSize(new java.awt.Dimension(600,120));
		validButton.setSize(new java.awt.Dimension(100,50));
	//	textLang.setSize(new java.awt.Dimension(100,20));
		
		group.add(createButton);
		group.add(modifyButton);
		group.add(completeButton);
		group.add(consultButton);
		
		add(label, new GridBagConstraints(0, 0, 1, 1, 1.0, 1.0,
				GridBagConstraints.WEST, GridBagConstraints.BOTH, new Insets(
						0,0,0,0), 0, 0));
		add(createButton, new GridBagConstraints(0, 1, 1, 1, 1.0, 1.0,
				GridBagConstraints.WEST, GridBagConstraints.BOTH, new Insets(
						0,0,0,0), 0, 0));
		//add(textLang, new GridBagConstraints(1, 1, 1, 1, 1.0, 1.0,
			//	GridBagConstraints.WEST, GridBagConstraints.HORIZONTAL, new Insets(
				//		0,0,0,0), 0, 0));
		add(modifyButton, new GridBagConstraints(0, 2, 1, 1, 1.0, 1.0,
				GridBagConstraints.WEST, GridBagConstraints.BOTH, new Insets(
						0,0,0,0), 0, 0));
		add(comboLangModify, new GridBagConstraints(1, 2, 1, 1, 1.0, 1.0,
				GridBagConstraints.WEST, GridBagConstraints.NONE, new Insets(
						0,0,0,0), 0, 0));
		add(completeButton, new GridBagConstraints(0, 3, 1, 1, 1.0, 1.0,
				GridBagConstraints.WEST, GridBagConstraints.BOTH, new Insets(
						0,0,0,0), 0, 0));
		add(comboLangComplete, new GridBagConstraints(1, 3, 1, 1, 1.0, 1.0,
				GridBagConstraints.WEST, GridBagConstraints.NONE, new Insets(
						0,0,0,0), 0, 0));
		add(consultButton, new GridBagConstraints(0, 4, 1, 1, 1.0, 1.0,
				GridBagConstraints.WEST, GridBagConstraints.BOTH, new Insets(
						0,0,0,0), 0, 0));
		add(validButton, new GridBagConstraints(2, 5, 1, 1, 1.0, 1.0,
				GridBagConstraints.WEST, GridBagConstraints.NONE, new Insets(
						0,0,0,0), 0, 0));
		comboLangComplete.setVisible(false);
		comboLangModify.setVisible(false);
	//	textLang.setVisible(false);
		
	
		
	}
	public void actionPerformed(ActionEvent e){
		String cmd=e.getActionCommand();
		if (cmd.equals(TranslateXLogo.MODIFY)){
			comboLangComplete.setVisible(false);
			comboLangModify.setVisible(true);
		//	textLang.setVisible(false);
		}
		else if (cmd.equals(TranslateXLogo.CREATE)){
			comboLangComplete.setVisible(false);
			comboLangModify.setVisible(false);
			//textLang.setVisible(true);
			//textLang.validate();
		}
		else if (cmd.equals(TranslateXLogo.COMPLETE)){
			comboLangComplete.setVisible(true);
			comboLangModify.setVisible(false);
			//textLang.setVisible(false);
		}
		else if (cmd.equals(TranslateXLogo.CONSULT)){
			comboLangComplete.setVisible(false);
			comboLangModify.setVisible(false);
			//textLang.setVisible(false);
		}
	}

	
	
	  class Contenu extends JLabel implements ListCellRenderer{
			private static final long serialVersionUID = 1L;
		  	private ImageIcon[] drapeau;
		
		  	Contenu(){
		  		drapeau=new ImageIcon[Logo.translationLanguage.length];
		  		cree_icone();	
		  	}
		  	void cree_icone(){
		  		for (int i=0;i<drapeau.length;i++){
		  		Image image=null;
	  			image= Toolkit.getDefaultToolkit().getImage(Utils.class.getResource("drapeau"+i+".png"));
	  			MediaTracker tracker=new MediaTracker(this);
	  			tracker.addImage(image,0);
	  			try{tracker.waitForID(0);}
	  			catch(InterruptedException e1){}
	  			int largeur=image.getWidth(this);
	  			int hauteur=image.getHeight(this);
	  			double facteur = (double) WSManager.getWorkspaceConfig().getFont().getSize()/(double)hauteur;
	  			image=image.getScaledInstance((int)(facteur*largeur),(int)(facteur*hauteur),Image.SCALE_SMOOTH);
	  			tracker=new MediaTracker(this);
				tracker.addImage(image,0);
				try{tracker.waitForID(0);}
				catch(InterruptedException e1){}
				drapeau[i]=new ImageIcon();
	  			drapeau[i].setImage(image);
//				drapeau[i]=new ImageIcon(image);
		  		}
		  		
		  	}
		  	public Component getListCellRendererComponent(JList list, Object value,int 
		  index, boolean isSelected,boolean cellHasFocus){ 
		  		setOpaque(true);
		  		int selectedIndex = ((Integer)value).intValue();
		  		setText(Logo.translationLanguage[selectedIndex]); 
		  		setIcon(drapeau[selectedIndex]);
		  		if (isSelected) {
		  			setBackground(list.getSelectionBackground());
		  			setForeground(list.getSelectionForeground()); } 
		  		else{
		  			setBackground(list.getBackground());
		  			setForeground(list.getForeground()); 
		  		}
		  		setBorder(BorderFactory.createEmptyBorder(5,0,5,5));
//		  		setEnabled(list.isEnabled());
		 		return(this); 
		 		} 
		  	}
	  
}