Water mark text field : TextField « Swing JFC « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Class
8. Collections Data Structure
9. Data Type
10. Database SQL JDBC
11. Design Pattern
12. Development Class
13. EJB3
14. Email
15. Event
16. File Input Output
17. Game
18. Generics
19. GWT
20. Hibernate
21. I18N
22. J2EE
23. J2ME
24. JDK 6
25. JNDI LDAP
26. JPA
27. JSP
28. JSTL
29. Language Basics
30. Network Protocol
31. PDF RTF
32. Reflection
33. Regular Expressions
34. Scripting
35. Security
36. Servlets
37. Spring
38. Swing Components
39. Swing JFC
40. SWT JFace Eclipse
41. Threads
42. Tiny Application
43. Velocity
44. Web Services SOA
45. XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java » Swing JFC » TextFieldScreenshots 
Water mark text field
   
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.Rectangle;
import java.awt.TexturePaint;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;

import javax.imageio.ImageIO;
import javax.swing.JFrame;
import javax.swing.JTextField;

public class WatermarkTextField extends JTextField {
  BufferedImage img;

  TexturePaint texture;

  public WatermarkTextField(File file)  {
    super();
    try {
      img = ImageIO.read(file);
    catch (IOException e) {
      e.printStackTrace();
    }
    Rectangle rect = new Rectangle(00, img.getWidth(null), img.getHeight(null));
    texture = new TexturePaint(img, rect);
    setOpaque(false);
  }

  public void paintComponent(Graphics g) {
    Graphics2D g2 = (Graphics2Dg;
    g2.setPaint(texture);
    g.fillRect(00, getWidth(), getHeight());
    super.paintComponent(g);
  }

  public static void main(String[] args) {
    JFrame frame = new JFrame();
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    
    JTextField textfield = new WatermarkTextField(new File("waterMarkImage.png"));
    textfield.setText("www.java2java.com");
    frame.getContentPane().add(textfield);
    frame.pack();
    frame.setVisible(true);
  }

}

           
         
    
    
  
Related examples in the same category
1. Make a Text Field two columns wide
2. Auto complete TextField
3. Text fields and Java eventsText fields and Java events
4. JTextField Alignment SampleJTextField Alignment Sample
5. Create the textfieldCreate the textfield
6. FieldEdit - an Applet to validate data as it's being entered
7. TextField with only Integer value
8. File Name Bean
9. Textfield only accepts numbersTextfield only accepts numbers
10. Overwritable TextFieldOverwritable TextField
11. Numeric TextFieldNumeric TextField
12. Passive TextField 1Passive TextField 1
13. Passive TextField 2Passive TextField 2
14. Text Accelerator ExampleText Accelerator Example
15. TextField Look Ahead ExampleTextField Look Ahead Example
16. Passive TextField 3Passive TextField 3
17. Non Wrapping(Wrap) TextPaneNon Wrapping(Wrap) TextPane
18. EditabilityExampleEditabilityExample
19. Bounded TextFieldBounded TextField
20. TextField ElementsTextField Elements
21. TextFieldViews 2TextFieldViews 2
22. TextField with ConstaintsTextField with Constaints
23. JTextField Sample 2JTextField Sample 2
24. JTextField Verifier SampleJTextField Verifier Sample
25. A simple label for field form panelA simple label for field form panel
26. A hack to make a JTextField really 2 columns wideA hack to make a JTextField really 2 columns wide
27. Limit JTextField input to a maximum length
28. Make sure that my JTextField has the focus when a JFrame is created
29. Make the ENTER key act like the TAB key
30. Setting up a textfield and modifying its horizontal alignment at runtimeSetting up a textfield and modifying its horizontal alignment at runtime
31. Aligning the Text in a JTextField Component
32. Based on JTextField content, enable or disable a JButton
33. Cut, paste, and copy in a JTextField under program control.
34. Add key listener event handler to JTextField
35. Right justified JTextfield content
36. Set the focus on a particular JTextField
37. Associate JLabel component with a JTextField
38. Right justified JTextField contents
39. Validate a value on the lostFocus event
40. Modify horizontal alignment of text field at runtime
41. Make sure that my Text field has the focus when a JFrame is created
42. Firing Item Events
43. extends JTextField to create integer JTextField
44. JTextField Max Length
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.