package cn.lastlySly.calendarpanel;
import cn.lastlySly.calendardeal.Calendardata;
import cn.lastlySly.note.note;
import javax.swing.*;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.io.IOException;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
/**
* 日历面板
* @author lastlySly
* @GitHub https://github.com/lastlySly
* @create 2016-05-31 21:52
**/
public class Calendarpanel extends JPanel implements ActionListener{
static public JLabel showMessage=new JLabel("",JLabel.CENTER);
JLabel labelday[]=new JLabel[42];
JLabel titlename[]=new JLabel[7];
String name[]={"周日","周一","周二","周三","周四","周五","周六"};
JTextField text1,text2;
JButton nextmonth,previousmonth,Enter;
JLabel lab1,lab2,lab3;
int year,month;
Calendardata calendar;
String Day="1";
/*JLabel showtip=new JLabel("点击日期进入当日日记编辑");*/
note nn=new note();
public Calendarpanel() {
// TODO Auto-generated constructor stub
JPanel pcenter=new JPanel();
pcenter.setLayout(new GridLayout(7,7));/*网格布局*/
/*设置星期标签*/
for(int i=0;i<7;i++){
titlename[i]=new JLabel(name[i],JLabel.CENTER);
pcenter.add(titlename[i]);
titlename[i].setBorder(BorderFactory.createLineBorder(Color.black));/*设置边界线color*/
titlename[i].setFont(new Font("TimesRoman", Font.BOLD, 16));
if(i==0){
titlename[i].setForeground(Color.RED);/*设置周六周日font为红色*/
}
if(i==6){
titlename[i].setForeground(Color.BLUE);
}
}
/*设置日期标签*/
for(int i=0;i<42;i++){
labelday[i]=new JLabel("",JLabel.CENTER);
labelday[i].setBorder(BorderFactory.createLineBorder(Color.blue));
labelday[i].setForeground(Color.darkGray);
pcenter.add(labelday[i]);
if(i%7==6){
labelday[i].setForeground(Color.blue);
}
if(i%7==0){
labelday[i].setForeground(Color.red);
}
final int j=i;
/*添加鼠标监听器内部类,适配器*/
labelday[j].addMouseListener(new MouseAdapter() {
@Override
public void mouseReleased(MouseEvent e) {
// TODO 自动生成的方法存根
/*处理鼠标释放*/
}
@Override
public void mousePressed(MouseEvent e) {
// TODO 自动生成的方法存根
/*处理鼠标按下*/
}
@Override
public void mouseExited(MouseEvent e) {
// TODO 自动生成的方法存根
/*处理鼠标离开*/
}
@Override
public void mouseEntered(MouseEvent e) {
// TODO 自动生成的方法存根
/*处理鼠标移入*/
}
@Override
public void mouseClicked(MouseEvent e){
// TODO 自动生成的方法存根
/*处理鼠标点击*/
/*获取日期 天*/
Day=labelday[j].getText();
try {
if(!Day.equals("")){
/*设置选中日期标签fontcolor*/
/*初始化上次点击的标签*/
for(int i=0;i<42;i++){
if(i%7==6){
labelday[i].setForeground(Color.blue);
labelday[i].setFont(new Font("TimesRoman", Font.BOLD, 13));
}
if(i%7==0){
labelday[i].setForeground(Color.red);
labelday[i].setFont(new Font("TimesRoman", Font.BOLD, 13));
}
if(!(i%7==6) && !(i%7==0)){
labelday[i].setForeground(Color.darkGray);
labelday[i].setFont(new Font("TimesRoman", Font.BOLD, 13));
}
}
labelday[j].setForeground(Color.green);
labelday[j].setFont(new Font("TimesRoman", Font.BOLD, 16));
showMessage.setText(calendar.getYear()+"年"+calendar.getMonth()+"月"+Day+"日");
text1.setText(""+calendar.getYear());
text2.setText(""+calendar.getMonth());
File file=new File("D:"+File.separator+"CalendarNotepadDataSpace"+File.separator+showMessage.getText()+".txt");
if(file.exists()){
String h=showMessage.getText();
String m=h+"有日志记录,是否查看?";
int ok=JOptionPane.showConfirmDialog(getParent(),m,"询问",JOptionPane.YES_NO_OPTION,JOptionPane.QUESTION_MESSAGE);
if(ok==JOptionPane.YES_OPTION){
try {
FileReader in=new FileReader(file);
BufferedReader bufr=new BufferedReader(in);
char a[]=new char[1024];
int len=bufr.read(a);
note.area.setText(new String(a,0,len));
/* System.out.println(new String(a,0,len));*/
bufr.close();
in.close();
} catch (IOException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
}
}
else{
JOptionPane.showMessageDialog(getParent(), showMessage.getText()+"没有日志记录,清编辑并保存");
note.area.setText("");
}
}
} catch (NullPointerException e2) {
// TODO: handle exception
/*JOptionPane.showMessageDialog(null, "此处为空日期");*/
}
}
});
}
/*初始化日期*/
calendar=new Calendardata();
year=calendar.getYear();
month=calendar.getMonth();
calendar.setYear(year);
calendar.setMonth(month);
String day[]=calendar.getCalendar();
/*设置日期标签名*/
for(int i=0;i<42;i++){
labelday[i].setText(day[i]);
}
/*组件添加*/
lab1=new JLabel("请输入日期");
lab2=new JLabel("年份");
lab3=new JLabel("月份");
Enter=new JButton("搜索");
text1=new JTextField(5);
text2=new JTextField(5);
nextmonth=new JButton("下月");
previousmonth=new JButton("上月");
Enter.addActionListener(this);
nextmonth.addActionListener(this);
previousmonth.addActionListener(this);
JPanel jpnorth=new JPanel(),jpsouth=new JPanel();
jpnorth.add(lab1);
jpnorth.add(lab2);
jpnorth.add(text1);
jpnorth.add(lab3);
jpnorth.add(text2);
jpnorth.add(Enter);
jpnorth.add(previousmonth);
jpnorth.add(nextmonth);
jpsouth.add(note.tim);
/*左侧面包下端提示*/
/*showtip.setForeground(Color.orange);
showtip.setFont(new Font("Time
没有合适的资源?快使用搜索试试~ 我知道了~
温馨提示
该资源内项目源码是个人的课程设计作业,代码都测试ok,都是运行成功后才上传资源,答辩评审平均分达到94.5分,放心下载使用! 1、该资源内项目代码都经过测试运行成功,功能ok的情况下才上传的,请放心下载使用! 2、本项目适合计算机相关专业(如计科、人工智能、通信工程、自动化、电子信息等)的在校学生、老师或者企业员工下载学习,也适合小白学习进阶,当然也可作为毕设项目、课程设计、作业、项目初期立项演示等。 3、如果基础还行,也可在此代码基础上进行修改,以实现其他功能,也可用于毕设、课设、作业等。 下载后请首先打开README.md文件(如有),仅供学习参考, 切勿用于商业用途。 -------- -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
资源推荐
资源详情
资源评论
收起资源包目录
CalendarNotepad-master.zip (12个子文件)
CalendarNotepad-master
src
cn
lastlySly
calendardeal
Calendardata.java 1KB
note
note.java 9KB
calendarpanel
Calendarpanel.java 11KB
mainclass
Main.java 1KB
background.png 2.38MB
.idea
description.html 97B
vcs.xml 180B
misc.xml 478B
compiler.xml 711B
modules.xml 270B
encodings.xml 260B
CalendarNotepad.iml 425B
共 12 条
- 1
资源评论
- weixin_744003132024-06-23资源很赞,希望多一些这类资源。
机智的程序员zero
- 粉丝: 2421
- 资源: 5014
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功