QT GUI 简易时钟

//analogclock.h

 #include <QtGui>

 #include "analogclock.h"

 AnalogClock::AnalogClock(QWidget *parent)
     : QWidget(parent)
 {
     QTimer *timer = new QTimer(this);
     connect(timer, SIGNAL(timeout()), this, SLOT(update()));
  //时钟信号和更新绑定
     timer->start(1000);
  //设定时钟信号的发送时间间隔

     setWindowTitle(tr("Analog Clock"));
     resize(200, 200);
  //开始出现时大小
 }

 void AnalogClock::paintEvent(QPaintEvent *)
 {
     static const QPoint hourHand[3] = {
         QPoint(7, 8),
         QPoint(-7, 8),
         QPoint(0, -40)
     };
     static const QPoint minuteHand[3] = {
         QPoint(7, 8),
         QPoint(-7, 8),
         QPoint(0, -70)
     };
  static const QPoint secondHand[3] = {
         QPoint(7, 8),
   QPoint(-7, 8),
   QPoint(0, -90)
     };

     QColor hourColor(127, 0, 127);
     QColor minuteColor(0, 127, 127, 191);
  QColor secondColor(255, 0, 0, 100);

     int side = qMin(width(), height());
     QTime time = QTime::currentTime();

     QPainter painter(this);
     painter.setRenderHint(QPainter::Antialiasing);
  //反走样
     painter.translate(width() / 2, height() / 2);
  //转换坐标,坐标原点在width() / 2, height() / 2
     painter.scale(side / 200.0, side / 200.0);
  //放大倍数

     painter.setPen(Qt::NoPen);
     painter.setBrush(hourColor);

     painter.save();
  //Saves the current painter state (pushes the state onto a stack).
  //A save() must be followed by a corresponding restore(); the end() function unwinds the stack
     painter.rotate(30.0 * ((time.hour() + time.minute() / 60.0)));
  //Rotates the coordinate system the given angle clockwise
     painter.drawConvexPolygon(hourHand, 3);
  //画图形Draws the convex polygon defined by
  //the first pointCount points in the array points using the current pen.
     painter.restore();
  //Restores the current painter state (pops a saved state off the stack).

     painter.setPen(hourColor);

     for (int i = 0; i < 12; ++i) {
         painter.drawLine(88, 0, 96, 0);
         painter.rotate(30.0);
     }

     painter.setPen(Qt::NoPen);
     painter.setBrush(minuteColor);

     painter.save();
     painter.rotate(6.0 * (time.minute() + time.second() / 60.0));
     painter.drawConvexPolygon(minuteHand, 3);
     painter.restore();

     painter.setPen(minuteColor);

     for (int j = 0; j < 60; ++j) {
         if ((j % 5) != 0)
             painter.drawLine(92, 0, 96, 0);
         painter.rotate(6.0);
     }

  painter.setPen(Qt::NoPen);
  painter.setBrush(secondColor);
  painter.save();
  painter.rotate(6.0*time.second());
  painter.drawConvexPolygon(secondHand,3);
  painter.restore();

 }

//main.cpp

#include <QApplication>

 #include "analogclock.h"

 int main(int argc, char *argv[])
 {
     QApplication app(argc, argv);
     AnalogClock clock;
     clock.show();
     return app.exec();
 }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值