📄 vtext.java
字号:
/******************************************************************************
* The contents of this file are subject to the Compiere License Version 1.1
* ("License"); You may not use this file except in compliance with the License
* You may obtain a copy of the License at http://www.compiere.org/license.html
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
* the specific language governing rights and limitations under the License.
* The Original Code is Compiere ERP & CRM Business Solution
* The Initial Developer of the Original Code is Jorg Janke and ComPiere, Inc.
* Portions created by Jorg Janke are Copyright (C) 1999-2001 Jorg Janke, parts
* created by ComPiere are Copyright (C) ComPiere, Inc.; All Rights Reserved.
* Contributor(s): ______________________________________.
*****************************************************************************/
package org.compiere.grid.ed;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.table.*;
import javax.swing.event.*;
import javax.swing.border.*;
import java.util.*;
import java.beans.*;
import org.compiere.util.*;
import org.compiere.apps.*;
import org.compiere.plaf.*;
import org.compiere.swing.*;
/**
* Text Control (JTextArea embedded in JScrollPane)
*
* @author Jorg Janke
* @version $Id: VText.java,v 1.17 2003/04/29 09:21:41 jpedersen Exp $
*/
public class VText extends CText
implements VEditor, KeyListener, FocusListener, ActionListener
{
/**
* IDE Baan Constructor
*/
public VText()
{
this("", false, false, true, 60, 2000);
} // VText
/**
* Standard Constructor
* @param columnName
* @param mandatory
* @param isReadOnly
* @param isUpdateable
* @param displayLength
* @param fieldLength
*/
public VText (String columnName, boolean mandatory, boolean isReadOnly, boolean isUpdateable,
int displayLength, int fieldLength)
{
super (3, 50);
LookAndFeel.installBorder(this, "TextField.border");
this.addFocusListener(this); // to activate editor
// Create Editor
setColumns(displayLength>VString.MAXDISPLAY_LENGTH ? VString.MAXDISPLAY_LENGTH : displayLength); // 46
setForeground(CompierePLAF.getTextColor_Normal());
setBackground(CompierePLAF.getFieldBackground_Normal());
setLineWrap(true);
setWrapStyleWord(true);
addFocusListener(this);
setInputVerifier(new CInputVerifier()); //Must be added AFTER FocusListener in order to work
setMandatory(mandatory);
m_columnName = columnName;
if (isReadOnly || !isUpdateable)
setReadWrite(false);
addKeyListener(this);
// Popup
addMouseListener(new VText_mouseAdapter(this));
if (columnName.equals("Script"))
menuEditor = new JMenuItem(Msg.getMsg(Env.getCtx(), "Script"), Env.getImageIcon("Script16.gif"));
else
menuEditor = new JMenuItem(Msg.getMsg(Env.getCtx(), "Editor"), Env.getImageIcon("Editor16.gif"));
menuEditor.addActionListener(this);
popupMenu.add(menuEditor);
} // VText
/**
* Dispose
*/
public void dispose()
{
} // dispose
JPopupMenu popupMenu = new JPopupMenu();
private JMenuItem menuEditor;
private String m_columnName;
private String m_oldText = "";
private boolean m_firstChange;
/**
* Set Editor to value
* @param value
*/
public void setValue(Object value)
{
super.setValue(value);
m_firstChange = true;
} // setValue
/**
* Property Change Listener
* @param evt
*/
public void propertyChange (PropertyChangeEvent evt)
{
if (evt.getPropertyName().equals(org.compiere.model.MField.PROPERTY))
setValue(evt.getNewValue());
} // propertyChange
/**
* ActionListener
* @param e
*/
public void actionPerformed(ActionEvent e)
{
if (e.getSource() == menuEditor)
{
menuEditor.setEnabled(false);
String s = null;
if (m_columnName.equals("Script"))
s = ScriptEditor.start (Msg.translate(Env.getCtx(), m_columnName), getText(), isEditable(), 0);
else
s = Editor.startEditor (this, Msg.translate(Env.getCtx(), m_columnName), getText(), isEditable());
menuEditor.setEnabled(true);
setValue(s);
try
{
fireVetoableChange(m_columnName, null, getText());
m_oldText = getText();
}
catch (PropertyVetoException pve) {}
}
} // actionPerformed
/**
* Action Listener Interface - NOP
* @param listener
*/
public void addActionListener(ActionListener listener)
{
} // addActionListener
/**************************************************************************
* Key Listener Interface
* @param e
*/
public void keyTyped(KeyEvent e) {}
public void keyPressed(KeyEvent e) {}
/**
* Escape - Restore old Text.
* Indicate Change
* @param e
*/
public void keyReleased(KeyEvent e)
{
// ESC
if (e.getKeyCode() == KeyEvent.VK_ESCAPE && !getText().equals(m_oldText))
{
Log.trace(Log.l5_DData, "VText.keyReleased - ESC");
setText(m_oldText);
return;
}
// Indicate Change
if (m_firstChange && !m_oldText.equals(getText()))
{
Log.trace(Log.l5_DData, "VText.keyReleased - firstChange");
m_firstChange = false;
try
{
String text = getText();
fireVetoableChange(m_columnName, text, null); // No data committed - done when focus lost !!!
}
catch (PropertyVetoException pve) {}
} // firstChange
} // keyReleased
/**
* Focus Gained - Save for Escape
* @param e
*/
public void focusGained (FocusEvent e)
{
// Log.trace(Log.l4_Data, "VText.focusGained " + e.getSource(), e.paramString());
if (e.getSource() instanceof VText)
requestFocus();
else
m_oldText = getText();
} // focusGained
/**
* Data Binding to MTable (via GridController)
* @param e
*/
public void focusLost (FocusEvent e)
{
return;
} // focusLost
/*************************************************************************/
/**
* Set Field/WindowNo for ValuePreference (NOP)
* @param mField
*/
public void setField (org.compiere.model.MField mField)
{
} // setField
class CInputVerifier extends InputVerifier {
public boolean verify(JComponent input) {
//Note: We always return true since Inputverifier is just used to guarantee that fireChange is called in due time
if (getText() == null && m_oldText == null)
return true;
else if (getText().equals(m_oldText))
return true;
//
try
{
String text = getText();
fireVetoableChange(m_columnName, null, text);
m_oldText = text;
return true;
}
catch (PropertyVetoException pve) {}
return true;
} // verify
} // CInputVerifier
} // VText
/*****************************************************************************/
/**
* Mouse Listener
*/
final class VText_mouseAdapter extends MouseAdapter
{
/**
* Constructor
* @param adaptee
*/
VText_mouseAdapter(VText adaptee)
{
this.adaptee = adaptee;
} // VText_mouseAdapter
private VText adaptee;
/**
* Mouse Listener
* @param e
*/
public void mouseClicked(MouseEvent e)
{
// popup menu
if (SwingUtilities.isRightMouseButton(e))
adaptee.popupMenu.show((Component)e.getSource(), e.getX(), e.getY());
} // mouse Clicked
} // VText_mouseAdapter
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -