Package org.geoforge.guillc.panel

Source Code of org.geoforge.guillc.panel.GfrPnlKeyValueTfdSmall

/*
*  Copyright (C) 2011-2014 GeoForge Project
*
*  This program is free software; you can redistribute it and/or
*  modify it under the terms of the GNU Lesser 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 Lesser General Public License for more details.
*
*  You should have received a copy of the GNU Lesser 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.geoforge.guillc.panel;

import java.awt.BorderLayout;
import java.awt.Dimension;
import javax.swing.JTextField;
import javax.swing.event.DocumentListener;
import org.geoforge.guillc.label.GfrLbl;
import org.geoforge.guillc.textfield.GfrTfdTextSmall;

/**
*
* @author bantchao
*/
public class GfrPnlKeyValueTfdSmall extends GfrPnlKeyValueAbs
{
   public GfrPnlKeyValueTfdSmall(String strKey, String strValue)
   {
      super(strKey);
     
      super._objText = new GfrTfdTextSmall((String) null, (DocumentListener) null);
     
      ((JTextField) super._objText).setText(strValue);
      ((JTextField) super._objText).setEditable(false);
   }
  
   public GfrPnlKeyValueTfdSmall(
           String strKey,
           String strValue,
           String strUnit,
           int widthUnit)
   {
      super(strKey);
     
     
      GfrPnl pnl = new GfrPnl();
      pnl.init();
     
      GfrTfdTextSmall tfd = new GfrTfdTextSmall((String) null, (DocumentListener) null);
     
     
      GfrPnl pnlUnit = new GfrPnl();
     
      pnlUnit.setLayout(new BorderLayout());
      pnlUnit.init();
     
      pnlUnit.setMinimumSize(new Dimension(widthUnit, 2));
      pnlUnit.setPreferredSize(new Dimension(widthUnit, 2));
      pnlUnit.setMaximumSize(new Dimension(widthUnit, 2));
     
      GfrLbl lblRight = new GfrLbl(strUnit);
      GfrLbl lblSpace = new GfrLbl(" ");
     
      pnlUnit.add(lblSpace, BorderLayout.WEST);
      pnlUnit.add(lblRight, BorderLayout.CENTER);
     
      ((JTextField) tfd).setText(strValue);
      ((JTextField) tfd).setEditable(false);
     
      pnl.setLayout(new BorderLayout());
      pnl.add(tfd, BorderLayout.CENTER);
      pnl.add(pnlUnit, BorderLayout.EAST);
     
      super._objText = pnl;

   }

  
}
TOP

Related Classes of org.geoforge.guillc.panel.GfrPnlKeyValueTfdSmall

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.