📄 homepanel.java.svn-base
字号:
/**
* $Revision: $
* $Date: $
*
* Copyright (C) 2006 Jive Software. All rights reserved.
*
* This software is published under the terms of the GNU Lesser Public License (LGPL),
* a copy of which is included in this distribution.
*/
package org.jivesoftware.sparkimpl.profile;
import org.jivesoftware.spark.util.ResourceUtils;
import org.jivesoftware.resource.Res;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTextField;
import java.awt.Component;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.Insets;
public class HomePanel extends JPanel {
private JLabel streetLabel = new JLabel();
private JLabel cityLabel = new JLabel();
private JLabel stateLabel = new JLabel();
private JLabel zipCodeLabel = new JLabel();
private JLabel countryLabel = new JLabel();
private JTextField cityField = new JTextField();
private JTextField stateField = new JTextField();
private JTextField zipCodeField = new JTextField();
private JTextField countryField = new JTextField();
private JTextField streetField = new JTextField();
private JLabel phoneLabel = new JLabel();
private JLabel faxLabel = new JLabel();
private JLabel pagerLabel = new JLabel();
private JLabel mobileLabel = new JLabel();
private JTextField phoneField = new JTextField();
private JTextField faxField = new JTextField();
private JTextField pagerField = new JTextField();
private JTextField mobileField = new JTextField();
private JTextField webPageField = new JTextField();
public HomePanel() {
this.setLayout(new GridBagLayout());
// Setup Resources
ResourceUtils.resLabel(streetLabel, streetField, Res.getString("label.street.address") + ":");
ResourceUtils.resLabel(cityLabel, cityField, Res.getString("label.city") + ":");
ResourceUtils.resLabel(stateLabel, stateField, Res.getString("label.state.and.province") + ":");
ResourceUtils.resLabel(zipCodeLabel, zipCodeField, Res.getString("label.postal.code") + ":");
ResourceUtils.resLabel(countryLabel, countryField, Res.getString("label.country") + ":");
ResourceUtils.resLabel(phoneLabel, phoneField, Res.getString("label.phone") + ":");
ResourceUtils.resLabel(faxLabel, faxField, Res.getString("label.fax") + ":");
ResourceUtils.resLabel(mobileLabel, mobileField, Res.getString("label.mobile") + ":");
ResourceUtils.resLabel(pagerLabel, pagerField, Res.getString("label.pager") + ":");
this.add(streetLabel, new GridBagConstraints(0, 0, 1, 1, 0.0, 0.0, GridBagConstraints.WEST, GridBagConstraints.NONE, new Insets(5, 5, 5, 5), 0, 0));
this.add(streetField, new GridBagConstraints(1, 0, 1, 1, 1.0, 0.0, GridBagConstraints.WEST, GridBagConstraints.HORIZONTAL, new Insets(5, 5, 5, 5), 0, 0));
this.add(cityLabel, new GridBagConstraints(0, 1, 1, 1, 0.0, 0.0, GridBagConstraints.WEST, GridBagConstraints.NONE, new Insets(5, 5, 5, 5), 0, 0));
this.add(cityField, new GridBagConstraints(1, 1, 1, 1, 1.0, 0.0, GridBagConstraints.WEST, GridBagConstraints.HORIZONTAL, new Insets(5, 5, 5, 5), 0, 0));
this.add(stateLabel, new GridBagConstraints(0, 2, 1, 1, 0.0, 0.0, GridBagConstraints.WEST, GridBagConstraints.NONE, new Insets(5, 5, 5, 5), 0, 0));
this.add(stateField, new GridBagConstraints(1, 2, 1, 1, 1.0, 0.0, GridBagConstraints.WEST, GridBagConstraints.HORIZONTAL, new Insets(5, 5, 5, 5), 0, 0));
this.add(zipCodeLabel, new GridBagConstraints(0, 3, 1, 1, 0.0, 0.0, GridBagConstraints.WEST, GridBagConstraints.NONE, new Insets(5, 5, 5, 5), 0, 0));
this.add(zipCodeField, new GridBagConstraints(1, 3, 1, 1, 1.0, 0.0, GridBagConstraints.WEST, GridBagConstraints.HORIZONTAL, new Insets(5, 5, 5, 5), 0, 0));
this.add(countryLabel, new GridBagConstraints(0, 4, 1, 1, 0.0, 0.0, GridBagConstraints.WEST, GridBagConstraints.NONE, new Insets(5, 5, 5, 5), 0, 0));
this.add(countryField, new GridBagConstraints(1, 4, 1, 1, 1.0, 0.0, GridBagConstraints.WEST, GridBagConstraints.HORIZONTAL, new Insets(5, 5, 5, 5), 0, 0));
this.add(phoneLabel, new GridBagConstraints(2, 0, 1, 1, 0.0, 0.0, GridBagConstraints.WEST, GridBagConstraints.NONE, new Insets(5, 5, 5, 5), 0, 0));
this.add(faxLabel, new GridBagConstraints(2, 1, 1, 1, 0.0, 0.0, GridBagConstraints.WEST, GridBagConstraints.NONE, new Insets(5, 5, 5, 5), 0, 0));
this.add(pagerLabel, new GridBagConstraints(2, 2, 1, 1, 0.0, 0.0, GridBagConstraints.WEST, GridBagConstraints.NONE, new Insets(5, 5, 5, 5), 0, 0));
this.add(mobileLabel, new GridBagConstraints(2, 3, 1, 1, 0.0, 0.0, GridBagConstraints.WEST, GridBagConstraints.NONE, new Insets(5, 5, 5, 5), 0, 0));
this.add(phoneField, new GridBagConstraints(3, 0, 1, 1, 1.0, 0.0, GridBagConstraints.WEST, GridBagConstraints.HORIZONTAL, new Insets(5, 5, 5, 5), 0, 0));
this.add(faxField, new GridBagConstraints(3, 1, 1, 1, 1.0, 0.0, GridBagConstraints.WEST, GridBagConstraints.HORIZONTAL, new Insets(5, 5, 5, 5), 0, 0));
this.add(pagerField, new GridBagConstraints(3, 2, 1, 1, 1.0, 0.0, GridBagConstraints.WEST, GridBagConstraints.HORIZONTAL, new Insets(5, 5, 5, 5), 0, 0));
this.add(mobileField, new GridBagConstraints(3, 3, 1, 1, 1.0, 0.0, GridBagConstraints.WEST, GridBagConstraints.HORIZONTAL, new Insets(5, 5, 5, 5), 0, 0));
streetField.setNextFocusableComponent(cityField);
cityField.setNextFocusableComponent(stateField);
stateField.setNextFocusableComponent(zipCodeField);
zipCodeField.setNextFocusableComponent(countryField);
phoneField.setNextFocusableComponent(faxField);
faxField.setNextFocusableComponent(pagerField);
pagerField.setNextFocusableComponent(mobileField);
mobileField.setNextFocusableComponent(webPageField);
countryField.setNextFocusableComponent(phoneField);
}
public void setStreetAddress(String address) {
streetField.setText(address);
}
public String getStreetAddress() {
return streetField.getText();
}
public void setCity(String city) {
cityField.setText(city);
}
public String getCity() {
return cityField.getText();
}
public void setState(String state) {
stateField.setText(state);
}
public String getState() {
return stateField.getText();
}
public void setZipCode(String zip) {
zipCodeField.setText(zip);
}
public String getZipCode() {
return zipCodeField.getText();
}
public void setCountry(String country) {
countryField.setText(country);
}
public String getCountry() {
return countryField.getText();
}
public void setPhone(String phone) {
phoneField.setText(phone);
}
public String getPhone() {
return phoneField.getText();
}
public void setFax(String fax) {
faxField.setText(fax);
}
public String getFax() {
return faxField.getText();
}
public void setPager(String pager) {
pagerField.setText(pager);
}
public String getPager() {
return pagerField.getText();
}
public void setMobile(String mobile) {
mobileField.setText(mobile);
}
public String getMobile() {
return mobileField.getText();
}
public void setWebPage(String webPage) {
webPageField.setText(webPage);
}
public String getWebPage() {
return webPageField.getText();
}
public void allowEditing(boolean allowEditing) {
Component[] comps = getComponents();
final int no = comps != null ? comps.length : 0;
for (int i = 0; i < no; i++) {
Component comp = comps[i];
if (comp instanceof JTextField) {
((JTextField)comp).setEditable(allowEditing);
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -