protected void onPropertyChange( JXHeader h, String propertyName, Object oldValue, final Object newValue) { if ("title".equals(propertyName)) { titleLabel.setText(h.getTitle()); } else if ("description".equals(propertyName)) { descriptionPane.setText(h.getDescription()); } else if ("icon".equals(propertyName)) { imagePanel.setIcon(h.getIcon()); } else if ("enabled".equals(propertyName)) { boolean enabled = h.isEnabled(); titleLabel.setEnabled(enabled); descriptionPane.setEnabled(enabled); imagePanel.setEnabled(enabled); } else if ("titleFont".equals(propertyName)) { titleLabel.setFont((Font) newValue); } else if ("descriptionFont".equals(propertyName)) { descriptionPane.setFont((Font) newValue); } else if ("titleForeground".equals(propertyName)) { titleLabel.setForeground((Color) newValue); } else if ("descriptionForeground".equals(propertyName)) { descriptionPane.setForeground((Color) newValue); } else if ("iconPosition".equals(propertyName)) { resetLayout(h); } }
/** * Configures the specified component appropriate for the look and feel. This method is invoked * when the <code>ComponentUI</code> instance is being installed as the UI delegate on the * specified component. This method should completely configure the component for the look and * feel, including the following: * * <ol> * <li>Install any default property values for color, fonts, borders, icons, opacity, etc. on * the component. Whenever possible, property values initialized by the client program * should <i>not</i> be overridden. * <li>Install a <code>LayoutManager</code> on the component if necessary. * <li>Create/add any required sub-components to the component. * <li>Create/install event listeners on the component. * <li>Create/install a <code>PropertyChangeListener</code> on the component in order to detect * and respond to component property changes appropriately. * <li>Install keyboard UI (mnemonics, traversal, etc.) on the component. * <li>Initialize any appropriate instance data. * </ol> * * @param c the component where this UI delegate is being installed * @see #uninstallUI * @see javax.swing.JComponent#setUI * @see javax.swing.JComponent#updateUI */ @Override public void installUI(JComponent c) { super.installUI(c); assert c instanceof JXHeader; JXHeader header = (JXHeader) c; titleLabel = new JLabel(); descriptionPane = new DescriptionPane(); descriptionPane.setLineWrap(true); descriptionPane.setOpaque(false); installDefaults(header); imagePanel = new JLabel(); imagePanel.setIcon( header.getIcon() == null ? UIManager.getIcon("Header.defaultIcon") : header.getIcon()); installComponents(header); installListeners(header); }