package edu.ch4;

import java.awt.Color;
import java.awt.Font;
import java.awt.Frame;
import java.util.Calendar;
import java.util.Date;

import org.eclipse.jface.window.ApplicationWindow;
import org.eclipse.swt.SWT;
import org.eclipse.swt.awt.SWT_AWT;
import org.eclipse.swt.graphics.Point;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widgets.TabFolder;
import org.eclipse.swt.widgets.TabItem;
import org.jfree.chart.ChartFactory;
import org.jfree.chart.ChartPanel;
import org.jfree.chart.JFreeChart;
import org.jfree.chart.plot.PiePlot;
import org.jfree.chart.title.TextTitle;
import org.jfree.data.category.IntervalCategoryDataset;
import org.jfree.data.gantt.Task;
import org.jfree.data.gantt.TaskSeries;
import org.jfree.data.gantt.TaskSeriesCollection;
import org.jfree.data.general.DefaultPieDataset;

public class Test extends ApplicationWindow {

/** *//**
     * Create the application window
     */
    public Test() {
        super(null);
        addToolBar(SWT.FLAT | SWT.WRAP);
        addMenuBar();
        addStatusLine();
    }

/** *//**
     * Create contents of the application window
     *
     * @param parent
     */
    @Override
    protected Control createContents(Composite parent) {
        TabFolder tf = new TabFolder(parent, SWT.TOP);
        TabItem ti = new TabItem(tf, SWT.NULL);
        ti.setText("分类");
        Composite composite = new Composite(tf, SWT.NO_BACKGROUND
                | SWT.EMBEDDED);
        Frame frame = SWT_AWT.new_Frame(composite);
        frame.add(new ChartPanel(createBarChart()));
        ti.setControl(composite);
        TabItem ti1 = new TabItem(tf, SWT.NULL);
        ti1.setText("项目组");
        Composite composite1 = new Composite(tf, SWT.NO_BACKGROUND
                | SWT.EMBEDDED);
        Frame frame1 = SWT_AWT.new_Frame(composite1);
        frame1.add(new ChartPanel(createGanttChart()));
        ti1.setControl(composite1);
        tf.setSelection(0);
        return tf;
    }

/** *//**
     * 方法名称: 内容摘要:
     *
     * @return
     * @return JFreeChart
     * @throws
     */
    private JFreeChart createGanttChart() {
        String title = "Gantt测试";
        IntervalCategoryDataset dataset = createSampleDataset();

JFreeChart jfc = ChartFactory.createGanttChart(title, "项目各阶段详细实施计划",
                "项目周期", dataset, false, false, false);

return jfc;
    }

/** *//**
      * 方法名称:
      * 内容摘要:创建gantt内容
      *
      * @return
      * @return IntervalCategoryDataset
      * @throws
     */
    private IntervalCategoryDataset createSampleDataset() {
        TaskSeries s1 = new TaskSeries("日程表");

Task t1 = new Task("项目立项", date(1, Calendar.APRIL, 2001), date(5,
                Calendar.APRIL, 2001));
        t1.setPercentComplete(1.00);
       
        Task t2 = new Task("项目立项讨论", date(6, Calendar.APRIL, 2001), date(19,
                Calendar.APRIL, 2001));
       
        s1.add(t1);
        s1.add(t2);
       
       
        final Task t3 = new Task(
                "需求分析",
                date(10, Calendar.APRIL, 2001), date(5, Calendar.MAY, 2001)
            );
            final Task st31 = new Task(
                "需求1",
                date(10, Calendar.APRIL, 2001), date(25, Calendar.APRIL, 2001)
            );
            st31.setPercentComplete(1.0);
            final Task st32 = new Task(
                "需求2",
                date(1, Calendar.MAY, 2001), date(5, Calendar.MAY, 2001)
            );
            st32.setPercentComplete(1.0);
            t3.addSubtask(st31);
            t3.addSubtask(st32);
            s1.add(t3);
       
       
       
        final TaskSeriesCollection collection = new TaskSeriesCollection();
        collection.add(s1);

return collection;
    }

/** *//** */
    /** *//**
     * Utility method for creating <code>Date</code> objects.
     *
     * @param day
     *            日
     * @param month
     *            月
     * @param year
     *            年
     *
     * @return a date.
     */
    private static Date date(final int day, final int month, final int year) {

final Calendar calendar = Calendar.getInstance();
        calendar.set(year, month, day);

final Date result = calendar.getTime();
        return result;

}

/** *//**
     * 方法名称: 内容摘要:饼图测试
     *
     * @return
     * @return JFreeChart
     * @throws
     */
    private JFreeChart createBarChart() {
        String title = "空调2002年市场占有率";
        DefaultPieDataset piedata = new DefaultPieDataset();
        piedata.setValue("联想", 27.3);
        piedata.setValue("长城", 12.2);
        piedata.setValue("海尔", 5.5);
        piedata.setValue("美的", 17.1);
        piedata.setValue("松下", 9.0);
        piedata.setValue("科龙", 19.0);
        JFreeChart chart = ChartFactory.createPieChart(title, piedata, true,
                true, true);
        chart.setTitle(new TextTitle(title, new Font("隶书", Font.ITALIC, 15)));
        chart.addSubtitle(new TextTitle("2002财年分析", new Font("隶书", Font.ITALIC,
                12)));
        chart.setBackgroundPaint(Color.white);
        PiePlot pie = (PiePlot) chart.getPlot();
        pie.setBackgroundPaint(Color.white);
        pie.setBackgroundAlpha(0.6f);
        pie.setForegroundAlpha(0.90f);
        return chart;
    }

/** *//**
     * Launch the application
     *
     * @param args
     */
    public static void main(String args[]) {
        try {
            Test window = new Test();
            window.setBlockOnOpen(true);
            window.open();
            Display.getCurrent().dispose();
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

/** *//**
     * Configure the shell
     *
     * @param newShell
     */
    @Override
    protected void configureShell(Shell newShell) {
        super.configureShell(newShell);
        newShell.setText("New Application");
    }

/** *//**
     * Return the initial size of the window
     */
    @Override
    protected Point getInitialSize() {
        return new Point(500, 375);
    }

}

AWT之—画图的更多相关文章

  1. Java -- AWT 画图,图像处理

    1. AWT画图  Graphics类  提供绘制简单图形的方法 更新图片时用到 repaint , update , 程序不应该主动调用paint和update, 这两个方法都应该是由AWT系统负责 ...

  2. learning java AWT 画图

    import javax.swing.*; import java.awt.*; import java.util.Random; public class SimpleDraw { private ...

  3. java画图之曲线拖动

    目标:在窗体上按下鼠标按键.然后拖动鼠标,在按下和拖动之间绘制曲线 事件机制 事件源对象:窗体 事件监听方法:addMouseListener(MouseListener l);addMouseMot ...

  4. java画图之初体验

    1.实现画图程序所需的API类 JFrame JButton ActionListener              动作事件接口 ActionEvent                        ...

  5. Java画图程序设计

    本文讲述一个画图板应用程序的设计,屏幕抓图如下: 『IShape』 这是所有图形类(此后称作模型类)都应该实现接口,外部的控制类,比如画图板类就通过这个接口跟模型类“交流”.名字开头的I表示它是一个接 ...

  6. java画图程序_图片用字母画出来_源码发布_版本二

    在上一个版本:java画图程序_图片用字母画出来_源码发布 基础上,增加了图片同比例缩放,使得大像素图片可以很好地显示画在Notepad++中. 项目结构: 运行效果1: 原图:http://imag ...

  7. java画图程序_图片用字母画出来_源码发布

    在之前写了一篇blog:java画图程序_图片用字母画出来 主要是把一些调试的截图发布出来,现在程序调试我认为可以了(当然,你如果还想调试的话,也可以下载源码自己调试). 就把源码发布出来. 项目结构 ...

  8. Java中的AWT进阶

    围棋 package ch11; /** * Created by Jiqing on 2016/12/4. */ import java.awt.*; import javax.swing.*; i ...

  9. Java SE (2)之 Graphics 画图工具

    Graphics 绘图类: 提供两个方法.Paint (绘图,被系统自动调用)    repaint(重绘) Paint 调用原理(1.窗口最大化,再最小化 窗口的大小发生变化 Repaint函数被调 ...

随机推荐

  1. Mysql进阶-day1

     Mysql数据库启动-关闭-登录-查看帮助 #单实例启动 1./etc/init.d/mysqld start 2.service mysqld start/restart 3./usr/local ...

  2. 10、Node.js模块系统

    ##################################################################################介绍Node.js模块系统为了让No ...

  3. MD5随机盐值生成法

    public class Test3 { /** * 生成含有随机盐的密码 */ public static String generate(String password) { Random r = ...

  4. Debian 静态网络配置

    allow-hotplug enp6s0 iface enp6s0 inet static address gateway 192.168.2.1 # dns-* options are implem ...

  5. Inno Setup替代默认的背景图片

    一.这是默认的设置生成的安装程序界面. 不行,我要定制!我要换!那么,这两货是从哪里来的呢?既然是默认的就有,那我下意识的来到了inno setup的安装路径下,果然让我发现了. 好了,于是我用我准备 ...

  6. 对deferred(延迟对象)的理解

    deferred对象从jQuery 1.5.0开始引入 什么是defrred对象 开发网站过程中,我们经常遇到某些耗时长的JS操作,其中,既有异步操作(如Ajax读取服务器数据),也有同步的操作(如遍 ...

  7. [Python 多线程] Barrier (十一)

    Barrier 栅栏,也叫屏障.可以想象成路障.道闸. Python 3.2引入的新功能. 构造方法: threading.Barrier(parties, action=None, timeout= ...

  8. Python 基于request库的get,post,delete,封装

    # coding=utf-8 import json import requests class TestApi(object): """ /* @param: @ses ...

  9. 利用maven开发springMVC项目(三)——数据库配置

    前两节介绍了开发环境的搭建以及框架的配置 现在主要介绍在eclipse中如何将SpringMVC.hibernate.mysql数据库结合起来. 数据库配置 下面,就要通过一个简单的例子,来介绍Spr ...

  10. Datatable报错Uncaught TypeError: Cannot read property 'cell' of undefined

    使用Datatables时,报出错误 仔细想想,是因为我在columns里加入了id,并设置visible:false 但是却没在下面的HTML部分多加一个 th 虽然我觉得因为id是隐藏的,不用加上 ...