Calendar in a JWindow : Calendar « 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 » CalendarScreenshots 
Calendar in a JWindow
  
/*
Swing Hacks Tips and Tools for Killer GUIs
By Joshua Marinacci, Chris Adamson
First Edition June 2005  
Series: Hacks
ISBN: 0-596-00907-0
Pages: 542
website: http://www.oreilly.com/catalog/swinghks/
*/

import java.awt.Color;
import java.awt.Container;
import java.awt.Dimension;
import java.awt.Font;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.Image;
import java.awt.Point;
import java.awt.RenderingHints;
import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;
import java.awt.event.MouseMotionListener;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;

import javax.swing.ImageIcon;
import javax.swing.JComponent;
import javax.swing.JFrame;
import javax.swing.JPanel;

public class CalendarHack extends JPanel {
  protected Image background = new ImageIcon("calendar.png").getImage();
  protected Image highlight = new ImageIcon("highlight.png").getImage();
  protected Image day_img = new ImageIcon("day.png").getImage();

  protected SimpleDateFormat month = new SimpleDateFormat("MMMM");

  protected SimpleDateFormat year = new SimpleDateFormat("yyyy");

  protected SimpleDateFormat day = new SimpleDateFormat("d");

  protected Date date = new Date();

  public void setDate(Date date) {
    this.date = date;
  }

  public CalendarHack() {
    this.setPreferredSize(new Dimension(300280));
  }

  public void paintComponent(Graphics g) {
    ((Graphics2Dg).setRenderingHint(RenderingHints.KEY_ANTIALIASING,
        RenderingHints.VALUE_ANTIALIAS_ON);
    g.drawImage(background, 00null);
    g.setColor(Color.black);
    g.setFont(new Font("SansSerif", Font.PLAIN, 18));
    g.drawString(month.format(date)3436);
    g.setColor(Color.white);
    g.drawString(year.format(date)23536);

    Calendar today = Calendar.getInstance();
    today.setTime(date);
    Calendar cal = Calendar.getInstance();
    cal.setTime(date);
    cal.set(Calendar.DATE, 1);
    cal.add(Calendar.DATE, -cal.get(Calendar.DAY_OF_WEEK1);
    for (int week = 0; week < 6; week++) {
      for (int d = 0; d < 7; d++) {
        Image img = day_img;
        Color col = Color.black;
        // only draw if it's actually in this month
        if (cal.get(Calendar.MONTH== today.get(Calendar.MONTH)) {
          if (cal.equals(today)) {
            img = highlight;
            col = Color.white;
          }
          g.drawImage(img, d * 30 46, week * 29 81null);
          g.drawString(day.format(cal.getTime()), d * 30 46 4, week * 29 81 20);
        }
        cal.add(Calendar.DATE, +1);
      }
    }
  }

  public static void main(String[] args) {
    JFrame frame = new JFrame();
    CalendarHack ch = new CalendarHack();
    ch.setDate(new Date());
    frame.getContentPane().add(ch);
    frame.setUndecorated(true);

    MoveMouseListener mml = new MoveMouseListener(ch);
    ch.addMouseListener(mml);
    ch.addMouseMotionListener(mml);

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

class MoveMouseListener implements MouseListener, MouseMotionListener {
  JComponent target;

  Point start_drag;

  Point start_loc;

  public MoveMouseListener(JComponent target) {
    this.target = target;
  }

  public static JFrame getFrame(Container target) {
    if (target instanceof JFrame) {
      return (JFrametarget;
    }
    return getFrame(target.getParent());
  }

  Point getScreenLocation(MouseEvent e) {
    Point cursor = e.getPoint();
    Point target_location = this.target.getLocationOnScreen();
    return new Point((int) (target_location.getX() + cursor.getX()),
        (int) (target_location.getY() + cursor.getY()));
  }

  public void mouseClicked(MouseEvent e) {
  }

  public void mouseEntered(MouseEvent e) {
  }

  public void mouseExited(MouseEvent e) {
  }

  public void mousePressed(MouseEvent e) {
    this.start_drag = this.getScreenLocation(e);
    this.start_loc = this.getFrame(this.target).getLocation();
  }

  public void mouseReleased(MouseEvent e) {
  }

  public void mouseDragged(MouseEvent e) {
    Point current = this.getScreenLocation(e);
    Point offset = new Point((intcurrent.getX() (intstart_drag.getX()(intcurrent.getY()
        (intstart_drag.getY());
    JFrame frame = this.getFrame(target);
    Point new_location = new Point((int) (this.start_loc.getX() + offset.getX()),
        (int) (this.start_loc.getY() + offset.getY()));
    frame.setLocation(new_location);
  }

  public void mouseMoved(MouseEvent e) {
  }
}

           
         
    
  
Related examples in the same category
1. Paint a calendar
2. toedter: Java Calendartoedter: Java Calendar
3. Java Date Chooser (ComboBox)Java Date Chooser (ComboBox)
4. Java Day ChooserJava Day Chooser
5. Java Month ChooserJava Month Chooser
6. Java Year ChooserJava Year Chooser
7. Swing Date chooser (Selector)
8. Swing Date selector (Chooser): more monthsSwing Date selector (Chooser): more months
9. Swing Date selector (Chooser): darg to choose multiple datesSwing Date selector (Chooser): darg to choose multiple dates
10. Swing Date selector (Chooser): toggle selectionSwing Date selector (Chooser): toggle selection
11. Swing Date selector (Chooser): highlightSwing Date selector (Chooser): highlight
12. Bean to display a month calendar in a JPanelBean to display a month calendar in a JPanel
13. Swing Date selector (Chooser) with source code
14. A panel that allows the user to select a date.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.