Overwritable TextField : 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 
Overwritable TextField
Overwritable TextField
   
/*
Core SWING Advanced Programming 
By Kim Topley
ISBN: 0 13 083292 8       
Publisher: Prentice Hall  
*/

import java.awt.Graphics;
import java.awt.Rectangle;
import java.awt.event.ActionEvent;
import java.awt.event.FocusEvent;
import java.awt.event.KeyEvent;

import javax.swing.Action;
import javax.swing.JFrame;
import javax.swing.JTextField;
import javax.swing.KeyStroke;
import javax.swing.UIManager;
import javax.swing.plaf.TextUI;
import javax.swing.text.BadLocationException;
import javax.swing.text.Caret;
import javax.swing.text.DefaultCaret;
import javax.swing.text.Document;
import javax.swing.text.JTextComponent;
import javax.swing.text.Keymap;
import javax.swing.text.TextAction;

public class OverwritableTextField extends JTextField {
  public OverwritableTextField() {
    this(null, null, 0);
  }

  public OverwritableTextField(String text) {
    this(null, text, 0);
  }

  public OverwritableTextField(int columns) {
    this(null, null, columns);
  }

  public OverwritableTextField(String text, int columns) {
    this(null, text, columns);
  }

  public OverwritableTextField(Document doc, String text, int columns) {
    super(doc, text, columns);
    overwriteCaret = new OverwriteCaret();
    super.setCaret(overwriting ? overwriteCaret : insertCaret);
  }

  public void setKeymap(Keymap map) {
    if (map == null) {
      super.setKeymap(null);
      sharedKeymap = null;
      return;
    }

    if (getKeymap() == null) {
      if (sharedKeymap == null) {
        // Switch keymaps. Add extra bindings.
        removeKeymap(keymapName);
        sharedKeymap = addKeymap(keymapName, map);
        loadKeymap(sharedKeymap, bindings, defaultActions);
      }
      map = sharedKeymap;
    }
    super.setKeymap(map);
  }

  public void replaceSelection(String content) {
    Document doc = getDocument();
    if (doc != null) {
      // If we are not overwriting, just do the
      // usual insert. Also, if there is a selection,
      // just overwrite that (and that only).
      if (overwriting == true && getSelectionStart() == getSelectionEnd()) {

        // Overwrite and no selection. Remove
        // the stretch that we will overwrite,
        // then use the usual code to insert the
        // new text.
        int insertPosition = getCaretPosition();
        int overwriteLength = doc.getLength() - insertPosition;
        int length = content.length();

        if (overwriteLength > length) {
          overwriteLength = length;
        }

        // Remove the range being overwritten
        try {
          doc.remove(insertPosition, overwriteLength);
        catch (BadLocationException e) {
          // Won't happen
        }
      }
    }

    super.replaceSelection(content);
  }

  // Change the global overwriting mode
  public static void setOverwriting(boolean overwriting) {
    OverwritableTextField.overwriting = overwriting;
  }

  public static boolean isOverwriting() {
    return overwriting;
  }

  // Configuration of the insert caret
  public void setCaret(Caret caret) {
    insertCaret = caret;
  }

  // Allow configuration of a new
  // overwrite caret.
  public void setOverwriteCaret(Caret caret) {
    overwriteCaret = caret;
  }

  public Caret getOverwriteCaret() {
    return overwriteCaret;
  }

  // Caret switching
  public void processFocusEvent(FocusEvent evt) {
    if (evt.getID() == FocusEvent.FOCUS_GAINED) {
      selectCaret();
    }
    super.processFocusEvent(evt);
  }

  protected void selectCaret() {
    // Select the appropriate caret for the
    // current overwrite mode.
    Caret newCaret = overwriting ? overwriteCaret : insertCaret;

    if (newCaret != getCaret()) {
      Caret caret = getCaret();
      int mark = caret.getMark();
      int dot = caret.getDot();
      caret.setVisible(false);

      super.setCaret(newCaret);

      newCaret.setDot(mark);
      newCaret.moveDot(dot);
      newCaret.setVisible(true);
    }
  }

  protected Caret overwriteCaret;

  protected Caret insertCaret;

  protected static boolean overwriting = true;

  public static final String toggleOverwriteAction = "toggle-overwrite";

  protected static Keymap sharedKeymap;

  protected static final String keymapName = "OverwriteMap";

  protected static final Action[] defaultActions = new ToggleOverwriteAction() };

  protected static JTextComponent.KeyBinding[] bindings = new JTextComponent.KeyBinding(
      KeyStroke.getKeyStroke(KeyEvent.VK_INSERT, 0),
      toggleOverwriteAction) };

  // Insert/overwrite toggling action
  public static class ToggleOverwriteAction extends TextAction {
    ToggleOverwriteAction() {
      super(toggleOverwriteAction);
    }

    public void actionPerformed(ActionEvent evt) {
      OverwritableTextField.setOverwriting(!OverwritableTextField
          .isOverwriting());
      JTextComponent target = getFocusedComponent();
      if (target instanceof OverwritableTextField) {
        OverwritableTextField field = (OverwritableTextFieldtarget;
        field.selectCaret();
      }
    }
  }

  public static void main(String[] args) {
    try {
        UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
    catch (Exception evt) {}
  
    JFrame f = new JFrame("Overwrite test");

    OverwritableTextField tf = new OverwritableTextField(20);
    f.getContentPane().add(tf, "North");
    tf = new OverwritableTextField(20);
    f.getContentPane().add(tf, "South");

    f.pack();
    f.setVisible(true);
  }
}

class OverwriteCaret extends DefaultCaret {
  protected synchronized void damage(Rectangle r) {
    if (r != null) {
      try {
        JTextComponent comp = getComponent();
        TextUI mapper = comp.getUI();
        Rectangle r2 = mapper.modelToView(comp, getDot() 1);
        int width = r2.x - r.x;
        if (width == 0) {
          width = MIN_WIDTH;
        }
        comp.repaint(r.x, r.y, width, r.height);

        // Swing 1.1 beta 2 compat
        this.x = r.x;
        this.y = r.y;
        this.width = width;
        this.height = r.height;
      catch (BadLocationException e) {
      }
    }
  }

  public void paint(Graphics g) {
    if (isVisible()) {
      try {
        JTextComponent comp = getComponent();
        TextUI mapper = comp.getUI();
        Rectangle r1 = mapper.modelToView(comp, getDot());
        Rectangle r2 = mapper.modelToView(comp, getDot() 1);
        g = g.create();
        g.setColor(comp.getForeground());
        g.setXORMode(comp.getBackground());
        int width = r2.x - r1.x;
        if (width == 0) {
          width = MIN_WIDTH;
        }
        g.fillRect(r1.x, r1.y, width, r1.height);
        g.dispose();
      catch (BadLocationException e) {
      }
    }
  }

  protected static final int MIN_WIDTH = 8;
}


           
         
    
    
  
Related examples in the same category
1. Make a Text Field two columns wide
2. Water mark text field
3. Auto complete TextField
4. Text fields and Java eventsText fields and Java events
5. JTextField Alignment SampleJTextField Alignment Sample
6. Create the textfieldCreate the textfield
7. FieldEdit - an Applet to validate data as it's being entered
8. TextField with only Integer value
9. File Name Bean
10. Textfield only accepts numbersTextfield only accepts numbers
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.