/* * File : PluginStringParameter.java * Created : 15 dec. 2003} * By : Olivier * * Azureus - a Java Bittorrent client * * 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. * * 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 ( see the LICENSE file ). * * 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package org.gudy.azureus2.ui.swt.config.plugins; import org.eclipse.swt.SWT; import org.eclipse.swt.layout.GridData; import org.eclipse.swt.widgets.*; import org.gudy.azureus2.core3.internat.MessageText; import org.gudy.azureus2.ui.swt.Messages; import com.aelitis.azureus.ui.swt.imageloader.ImageLoader; import org.gudy.azureus2.pluginsimpl.local.ui.config.FileParameter; /** * @author Olivier * */ public class PluginFileParameter implements PluginParameterImpl { Control[] controls; public PluginFileParameter(final Composite pluginGroup,FileParameter parameter) { controls = new Control[3]; controls[0] = new Label(pluginGroup,SWT.NULL); Messages.setLanguageText(controls[0],parameter.getLabelKey()); final org.gudy.azureus2.ui.swt.config.StringParameter sp = new org.gudy.azureus2.ui.swt.config.StringParameter( pluginGroup, parameter.getKey(), parameter.getDefaultValue()); controls[1] = sp.getControl(); GridData gridData = new GridData(GridData.FILL_HORIZONTAL); controls[1].setLayoutData(gridData); Button browse = new Button(pluginGroup, SWT.PUSH); ImageLoader.getInstance().setButtonImage(browse, "openFolderButton"); browse.setToolTipText(MessageText.getString("ConfigView.button.browse")); browse.addListener(SWT.Selection, new Listener() { public void handleEvent(Event event) { FileDialog dialog = new FileDialog(pluginGroup.getShell(), SWT.APPLICATION_MODAL); dialog.setFilterPath(sp.getValue()); String path = dialog.open(); if (path != null) { sp.setValue(path); } } }); controls[2] = browse; } public Control[] getControls(){ return controls; } }