An implementation of JSpinner with customized content--icons : Spinner « 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 » SpinnerScreenshots 
An implementation of JSpinner with customized content--icons
An implementation of JSpinner with customized content--icons
  
/*
Java Swing, 2nd Edition
By Marc Loy, Robert Eckstein, Dave Wood, James Elliott, Brian Cole
ISBN: 0-596-00408-7
Publisher: O'Reilly 
*/

// IconSpinner.java
//An implementation of JSpinner with customized content--icons in this case.
//A standard spinner model is used with a custom editor (IconEditor.java).
//

import java.awt.Container;
import java.awt.GridLayout;

import javax.swing.Icon;
import javax.swing.ImageIcon;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JSpinner;
import javax.swing.SpinnerListModel;
import javax.swing.event.ChangeEvent;
import javax.swing.event.ChangeListener;

public class IconSpinner extends JFrame {

  public IconSpinner() {
    super("JSpinner Icon Test");
    setSize(30080);
    setDefaultCloseOperation(EXIT_ON_CLOSE);

    Container c = getContentPane();
    c.setLayout(new GridLayout(02));

    Icon nums[] new Icon[] { new ImageIcon("1.gif"),
        new ImageIcon("2.gif")new ImageIcon("3.gif"),
        new ImageIcon("4.gif")new ImageIcon("5.gif"),
        new ImageIcon("6.gif") };
    JSpinner s1 = new JSpinner(new SpinnerListModel(nums));
    s1.setEditor(new IconEditor(s1));
    c.add(new JLabel(" Icon Spinner"));
    c.add(s1);

    setVisible(true);
  }

  public static void main(String args[]) {
    new IconSpinner();
  }
}

class IconEditor extends JLabel implements ChangeListener {

  JSpinner spinner;

  Icon icon;

  public IconEditor(JSpinner s) {
    super((Icons.getValue(), CENTER);
    icon = (Icons.getValue();
    spinner = s;
    spinner.addChangeListener(this);
  }

  public void stateChanged(ChangeEvent ce) {
    icon = (Iconspinner.getValue();
    setIcon(icon);
  }

  public JSpinner getSpinner() {
    return spinner;
  }

  public Icon getIcon() {
    return icon;
  }
}
           
         
    
  
Related examples in the same category
1. A quick test of various spinnersA quick test of various spinners
2. An example of JSpinner with a custom editorAn example of JSpinner with a custom editor
3. Create a spinnerCreate a spinner
4. Demonstrating the JSpinner ComponentDemonstrating the JSpinner Component
5. Demonstrate the Swing Spinner control
6. Spinner 2Spinner 2
7. Listening for Changes to the Value in a JSpinner Component
8. Creating a SpinnerListModel That Loops Through Its Values
9. Customizing the Editor in a JSpinner Component: Create a color spinner
10. Setting the Margin Space on a JSpinner Component
11. Limiting the Values in a Number JSpinner Component
12. Disabling Keyboard Editing in a JSpinner Component
13. Creating an Hour JSpinner Component
14. Creating a JSpinner Component: A number spinner:
15. A list spinner
16. A date spinner
17. A spinner of dates
18. Use an Icon Editor for use with the JSpinner component
19. Use images in tooltips
20. Number spinner
21. Date spinner
22. List based spinner
23. Java Spinner ComponentJava Spinner Component
24. Enhanced Spinner List Formatter
25. Enhanced Spinner List Model
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.