/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code 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
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/**
* Provides the Synth L&F UI delegate for {@link javax.swing.JTextField}.
* <p>
* <strong>Warning:</strong>
* Serialized objects of this class will not be compatible with
* future Swing releases. The current serialization support is
* appropriate for short term storage or RMI between applications running
* the same version of Swing. As of 1.4, support for long term storage
* of all JavaBeans<sup><font size="-2">TM</font></sup>
* has been added to the <code>java.beans</code> package.
* Please see {@link java.beans.XMLEncoder}.
*
* @author Shannon Hickey
* @since 1.7
*/
/**
* Creates a UI for a JTextField.
*
* @param c the text field
* @return the UI object
*/
return new SynthTextFieldUI();
}
}
}
}
}
}
}
}
if (s == null || s instanceof UIResource) {
}
}
}
// Some places assume margins are non-null.
}
}
if (caret instanceof UIResource) {
}
}
}
/**
* @inheritDoc
*/
}
}
/**
* Notifies this UI delegate to repaint the specified component.
* This method paints the component background, then calls
* the {@link #paint(SynthContext,Graphics)} method.
*
* <p>In general, this method does not need to be overridden by subclasses.
* All Look and Feel rendering code should reside in the {@code paint} method.
*
* @param g the {@code Graphics} object used for painting
* @param c the component being painted
* @see #paint(SynthContext,Graphics)
*/
paintBackground(context, g, c);
}
/**
* Paints the specified component.
* <p>This is routed to the {@link #paintSafely} method under
* the guarantee that the model does not change from the view of this
* thread while it is rendering (if the associated model is
* derived from {@code AbstractDocument}). This enables the
* model to potentially be updated asynchronously.
*
* @param context context for the component being painted
* @param g the {@code Graphics} object used for painting
* @see #update(Graphics,JComponent)
*/
super.paint(g, getComponent());
}
}
/**
* @inheritDoc
*/
int y, int w, int h) {
}
/**
* @inheritDoc
* Overridden to do nothing.
*/
}
/**
* This method gets called when a bound property is changed
* on the associated JTextComponent. This is a hook
* which UI implementations may change to reflect how the
* UI displays bound properties of JTextComponent subclasses.
* This is implemented to do nothing (i.e. the response to
* properties in JTextComponent itself are handled prior
* to calling this method).
*
* @param evt the property change event
*/
}
super.propertyChange(evt);
}
/**
* @inheritDoc
*/
protected void installDefaults() {
// Installs the text cursor on the component
super.installDefaults();
}
/**
* @inheritDoc
*/
protected void uninstallDefaults() {
super.uninstallDefaults();
}
getComponent().repaint();
}
getComponent().repaint();
}
}
}