A basic panel that displays a small up or down arrow. : Panel « Swing Components « 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 Components » PanelScreenshots 
A basic panel that displays a small up or down arrow.
  
/* 
 * JCommon : a free general purpose class library for the Java(tm) platform
 
 *
 * (C) Copyright 2000-2005, by Object Refinery Limited and Contributors.
 
 * Project Info:  http://www.jfree.org/jcommon/index.html
 *
 * This library is free software; you can redistribute it and/or modify it 
 * under the terms of the GNU Lesser General Public License as published by 
 * the Free Software Foundation; either version 2.1 of the License, or 
 * (at your option) any later version.
 *
 * This library 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 Lesser General Public 
 * License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, 
 * USA.  
 *
 * [Java is a trademark or registered trademark of Sun Microsystems, Inc. 
 * in the United States and other countries.]
 
 * ---------------
 * ArrowPanel.java
 * ---------------
 * (C) Copyright 2002-2004, by Object Refinery Limited.
 *
 * Original Author:  David Gilbert (for Object Refinery Limited);
 * Contributor(s):   -;
 *
 * $Id: ArrowPanel.java,v 1.6 2007/11/02 17:50:36 taqua Exp $
 *
 * Changes
 * -------
 * 25-Sep-2002 : Version 1 (DG);
 * 13-Oct-2002 : Added Javadocs (DG);
 *
 */

import java.awt.Dimension;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.Insets;
import java.awt.Polygon;
import java.awt.Shape;
import java.awt.geom.Rectangle2D;

import javax.swing.JPanel;

/**
 * A basic panel that displays a small up or down arrow.
 
 @author David Gilbert
 */
public class ArrowPanel extends JPanel {

  /** A constant for the up arrow. */
  public static final int UP = 0;

  /** A constant for the down arrow. */
  public static final int DOWN = 1;

  /** The arrow type. */
  private int type = UP;

  /** The available area. */
  private Rectangle2D available = new Rectangle2D.Float();

  /**
   * Creates a new arrow panel.
   
   @param type
   *          the arrow type.
   */
  public ArrowPanel(final int type) {
    this.type = type;
    setPreferredSize(new Dimension(149));
  }

  /**
   * Paints the arrow panel.
   
   @param g
   *          the graphics device for drawing on.
   */
  public void paintComponent(final Graphics g) {

    super.paintComponent(g);
    final Graphics2D g2 = (Graphics2Dg;

    // first determine the size of the drawing area...
    final Dimension size = getSize();
    final Insets insets = getInsets();
    this.available.setRect(insets.left, insets.top, size.getWidth() - insets.left - insets.right,
        size.getHeight() - insets.top - insets.bottom);
    g2.translate(insets.left, insets.top);
    g2.fill(getArrow(this.type));

  }

  /**
   * Returns a shape for the arrow.
   
   @param t
   *          the arrow type.
   
   @return the arrow shape.
   */
  private Shape getArrow(final int t) {
    switch (t) {
    case UP:
      return getUpArrow();
    case DOWN:
      return getDownArrow();
    default:
      return getUpArrow();
    }
  }

  /**
   * Returns an up arrow.
   
   @return an up arrow.
   */
  private Shape getUpArrow() {
    final Polygon result = new Polygon();
    result.addPoint(72);
    result.addPoint(27);
    result.addPoint(127);
    return result;
  }

  /**
   * Returns a down arrow.
   
   @return a down arrow.
   */
  private Shape getDownArrow() {
    final Polygon result = new Polygon();
    result.addPoint(77);
    result.addPoint(22);
    result.addPoint(122);
    return result;
  }

}

   
    
  
Related examples in the same category
1. Yes / No Panel
2. Transparent PanelTransparent Panel
3. Swing Panel GroupSwing Panel Group
4. Swing Panel Group 2Swing Panel Group 2
5. Gradient Panel
6. Transfer focus from button to button with help of arrows keys.Transfer focus from button to button with help of arrows keys.
7. A JPanel with a textured background.
8. Time panel shows the current time.
9. Graph Canvas
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.