123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208 |
- import {
- SColor,
- SLineCapStyle,
- SPainter,
- SRect,
- SSize
- } from "@saga-web/draw/lib";
- import { SGraphItem } from "../SGraphItem";
- /**
- * 线Item类
- *
- * @author 庞利祥(sybotan@126.com)
- */
- export class SGraphClockItem extends SGraphItem {
- /** 大小 */
- size: SSize;
- /** 宽度 */
- get width() {
- return this.size.width;
- } // Get width
- set width(v: number) {
- this.size.width = v;
- } // Set width
- /** 高度 */
- get height() {
- return this.size.height;
- } // Get width
- set height(v: number) {
- this.size.height = v;
- } // Set width
- /** 半径 */
- get radius() {
- return Math.min(this.width, this.height) / 2.0;
- } // Get radius
- /**
- * 构造函数
- *
- * @param parent 指向父Item
- * @param size 大小
- */
- constructor(parent: SGraphItem | null, size: SSize);
- /**
- * 构造函数
- *
- * @param parent 指向父Item
- * @param width 宽度
- * @param height 高度
- */
- constructor(parent: SGraphItem | null, width: number, height: number);
- /**
- * 构造函数
- *
- * @param parent 指向父Item
- * @param width 宽度
- * @param height 高度
- */
- constructor(
- parent: SGraphItem | null,
- width: number | SSize,
- height?: number
- ) {
- super(parent);
- if (width instanceof SSize) {
- this.size = new SSize(width.width, width.height);
- } else {
- this.size = new SSize(width as number, height as number);
- }
- } // Constructor()
- /**
- * 对象边界区域
- *
- * @return 边界区域
- */
- boundingRect(): SRect {
- return new SRect(0, 0, this.width, this.height);
- } // Function SRect()
- /**
- * Item绘制操作
- *
- * @param painter painter对象
- */
- onDraw(painter: SPainter): void {
- painter.translate(this.width / 2, this.height / 2);
- let t = new Date();
- this.drawScale(painter);
- this.drawHour(painter, t.getHours(), t.getMinutes(), t.getSeconds());
- this.drawMinute(painter, t.getMinutes(), t.getSeconds());
- this.drawSecond(painter, t.getSeconds() + t.getMilliseconds() / 1000.0);
- } // Function onDraw()
- /**
- * 绘制表刻度
- *
- * @param painter painter对象
- */
- private drawScale(painter: SPainter): void {
- let scaleLength = Math.max(this.radius / 10.0, 2.0);
- let scaleLength1 = scaleLength * 1.2;
- let strokeWidth = Math.max(this.radius / 100.0, 2.0);
- let strokeWidth1 = strokeWidth * 2.0;
- painter.save();
- painter.pen.color = SColor.Blue;
- for (let i = 1; i <= 12; i++) {
- // 12小时刻度
- painter.pen.lineWidth = strokeWidth1;
- painter.drawLine(0, -this.radius, 0, -this.radius + scaleLength1);
- if (this.radius >= 40) {
- // 如果半度大于40显示分钟刻度
- painter.rotate((6 * Math.PI) / 180);
- for (let j = 1; j <= 4; j++) {
- // 分钟刻度
- painter.pen.lineWidth = strokeWidth;
- painter.drawLine(
- 0,
- -this.radius,
- 0,
- -this.radius + scaleLength
- );
- painter.rotate((6 * Math.PI) / 180);
- }
- } else {
- painter.rotate((30 * Math.PI) / 180);
- }
- }
- painter.restore();
- } // Function drawScale()
- /**
- * 绘制时针
- *
- * @param painter painter对象
- * @param hour 时
- * @param minute 分
- * @param second 秒
- */
- private drawHour(
- painter: SPainter,
- hour: number,
- minute: number,
- second: number
- ): void {
- painter.save();
- painter.pen.lineCapStyle = SLineCapStyle.Round;
- painter.pen.lineWidth = Math.max(this.radius / 30.0, 4.0);
- painter.rotate(
- ((hour * 30.0 + (minute * 30.0) / 60 + (second * 30.0) / 3600) *
- Math.PI) /
- 180
- );
- painter.drawLine(0, this.radius / 10.0, 0, -this.radius / 2.0);
- painter.restore();
- } // Function drawHour()
- /**
- * 绘制秒针
- *
- * @param painter painter对象
- * @param minute 分
- * @param second 秒
- */
- private drawMinute(
- painter: SPainter,
- minute: number,
- second: number
- ): void {
- painter.save();
- painter.pen.lineCapStyle = SLineCapStyle.Round;
- painter.pen.lineWidth = Math.max(this.radius / 40.0, 4.0);
- painter.rotate(((minute * 6 + (second * 6) / 60.0) * Math.PI) / 180);
- painter.drawLine(0, this.radius / 10.0, 0, (-this.radius * 2.0) / 3.0);
- painter.restore();
- } // Function drawMinute()
- /**
- * 绘制秒针
- *
- * @param painter painter对象
- * @param second 秒
- */
- private drawSecond(painter: SPainter, second: number): void {
- painter.save();
- painter.pen.lineCapStyle = SLineCapStyle.Round;
- painter.pen.lineWidth = Math.max(this.radius / 100.0, 3.0);
- painter.pen.color = SColor.Red;
- painter.rotate((second * 6 * Math.PI) / 180);
- painter.drawLine(
- 0,
- this.radius / 5.0,
- 0,
- -this.radius + this.radius / 10.0
- );
- painter.restore();
- } // Function drawSecond()
- } // Class SGraphClockItem
|