Total members 11889 |It is currently Thu Mar 28, 2024 9:39 am Login / Join Codemiles

Java

C/C++

PHP

C#

HTML

CSS

ASP

Javascript

JQuery

AJAX

XSD

Python

Matlab

R Scripts

Weka





draw Calendar in java
Code:
import java.awt.*;
import javax.swing.*;
import java.util.Calendar;
import java.text.DecimalFormat;

public class CalendarIconExample extends JComponent {
  int SIZE = 60;
  Dimension dim = new Dimension(SIZE, SIZE);
  int nx, ny, width = 38, height = 38;
  Calendar cal;
  Font dateFont, dayFont, monthFont;
  FontMetrics date, day, month ;
  boolean showTime = true;
  String[] days ={"SUN", "MON", "TUE", "WED", "THU", "FRI", "SAT"};
  String[] months={"JAN", "FEB", "MAR", "APR", "MAY", "JUN", "JUL",
      "AUG", "SEP", "OCT", "NOV", "DEC", };

  public CalendarIconExample(boolean show) {
    this(Calendar.getInstance(), show);
  }
  public CalendarIconExample(Calendar c, boolean show) {
    super();
    cal = c; 
    ny 
= 5;
    nx = 10; 
    dateFont 
= new Font("Serif", Font.BOLD, 18);
    date = getFontMetrics(dateFont);
    dayFont = new Font("Book Antiqua", Font.BOLD, 10);
    day = getFontMetrics(dayFont);
    monthFont = new Font("Book Antiqua", Font.BOLD, 10);
    month = getFontMetrics(monthFont);
  }
  public void paint(Graphics graphics) {
   paintIcon(this, graphics, 0, 0);
  }
  public void paintIcon(Component component, Graphics g,
       int x, int y) {
    g.drawRect(x, y, dim.width - 2, dim.height - 2);
    g.setColor(Color.gray);
    g.fillRect(+ nx + 3, y + ny + 3, width, height);
    g.setColor(Color.white);
    g.fillRect(+ nx, y + ny, width, height);
  g.setColor(Color.black);
  if (showTime)
     super.paint(g);
  
    String st 
= days[cal.get(Calendar.DAY_OF_WEEK) - 1];
    g.setFont(dayFont);
  g.setColor(Color.red);
    int w = day.stringWidth(st);
    g.drawString(st, x + nx + ((width - w) / 2), y + ny + 10);

    st = Integer.toString(cal.get(Calendar.DAY_OF_MONTH));
    g.setFont(dateFont);
  g.setColor(Color.black);
    w = date.stringWidth(st);
    g.drawString(st, x + nx + ((width - w) / 2), y + ny + 25);

    st = months[cal.get(Calendar.MONTH)];
    g.setFont(monthFont);
  g.setColor(Color.red);
    w = month.stringWidth(st);
    g.drawString(st, x + nx + ((width - w) / 2), y + ny + 35);
}
   public static void main(String[] args) {
    JFrame frame = new JFrame("Calendar");
    Container container= frame.getContentPane();
    CalendarIconExample iconExample = new CalendarIconExample(true);
    container.add(iconExample);
    frame.setSize(100, 100);
    frame.show();
  }
}
 





Attachments:
File comment: calender icon
calendarIcon.gif
calendarIcon.gif [ 1.95 KiB | Viewed 11285 times ]

_________________
M. S. Rakha, Ph.D.
Queen's University
Canada
Author:
Mastermind
User avatar Posts: 2715
Have thanks: 74 time
Post new topic Reply to topic  [ 1 post ] 

  Related Posts  to : draw Calendar in java
 Programming Calendar Java     -  
 java.util Calendar To TimeStamp     -  
 Draw An Arc in java     -  
 draw Oval in java     -  
 Draw Flag in Java     -  
 Calendar Generator     -  
 draw text effects in java     -  
 Draw Dashed Oval in java     -  
 simple javascript calendar     -  
 Changing the color of a graph draw in java     -  



Topic Tags

Java Graphics
cron





Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
All copyrights reserved to codemiles.com 2007-2011
mileX v1.0 designed by codemiles team
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com