基于QT5实现一个时钟桌面
程序员文章站
2022-03-03 09:12:29
目录介绍实现代码clock.proanalogclock.hanalogclock.cppmain.cpp编译打包编译打包介绍这是一个简单的时钟运行界面,项目的结构如图所示,主要包含一个头文件:**...
介绍
这是一个简单的时钟运行界面,项目的结构如图所示,主要包含一个头文件:** analogclock.h **,两个源文件: ** analogclock.cpp main.cpp **.
看完本教程,你就可以知悉在windows系统上如何实现一个界面程序并部署在windows系统上。
实现代码
clock.pro
qt += core gui greaterthan(qt_major_version, 4): qt += widgets config += c++11 # you can make your code fail to compile if it uses deprecated apis. # in order to do so, uncomment the following line. #defines += qt_disable_deprecated_before=0x060000 # disables all the apis deprecated before qt 6.0.0 sources += \ main.cpp \ analogclock.cpp headers += \ analogclock.h # default rules for deployment. qnx: target.path = /tmp/$${target}/bin else: unix:!android: target.path = /opt/$${target}/bin !isempty(target.path): installs += target
analogclock.h
#ifndef analogclock_h #define analogclock_h #include <qwidget> class analogclock : public qwidget { q_object public: analogclock(qwidget *parent=0); protected: void paintevent(qpaintevent *event) override; }; #endif // widget_h
analogclock.cpp
#include <qtwidgets> #include "analogclock.h" analogclock::analogclock(qwidget *parent) : qwidget(parent) { qtimer *timer = new qtimer(this); //实例一个qtimer的类 connect(timer, signal(timeout()), this, slot(update())); //监控timeout()信号是否发出 //timeout()表示:this signal is emitted when the timer times out. //指计时器发出信号,即下面的延时器发出信号 timer->start(1000);//设置1s的延时 /* *for a function * void qtimer::start(int msec) * starts or restarts the timer with a timeout interval of msec milliseconds. * if the timer is already running, it will be stopped and restarted. * if singleshot is true, the timer will be activated only once. * 单位是毫秒,表示每一秒设置一个信号发出 */ setwindowtitle(tr("analog clock")); //void setwindowtitle(const qstring &) resize(200, 200); //初始值大小 } void analogclock::paintevent(qpaintevent *) { /* * * repaint() or update() was invoked, * the widget was obscured and has now been uncovered, or * many other reasons. * * */ 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, -60) };//用于绘制分针的三角形 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::qcolor(int r, int g, int b, int a = 255)a表示透明度 qcolor secondcolor(220,20,60,100); //为每一个图形绘制颜色及透明度 int side = qmin(width(), height()); //我认为这一句的作用在于找到最小标出,用于坐标系的绘制 qtime time = qtime::currenttime(); qdebug()<<time<<'\n';//用于检验现在的时间 qpainter painter(this);//qt强大的画图工具 painter.setrenderhint(qpainter::antialiasing);// 用于反锯齿 //针对所有的组件,都反锯齿//表示设置渲染提示 painter.translate(width() / 2, height() / 2);//将原点放在中心 painter.scale(side / 200.0, side / 200.0);//scales the coordinate system by (sx, sy).标尺坐标系 //qt画板的x和y表示什么,x表示横线吗,y表示纵线吗?对的 //说明横坐标的范围是-100到100 // 纵坐标的范围是-100到100 //时针: painter.setpen(qt::nopen);//一般用于描边,qt::nopen表示画笔没有边界 painter.setbrush(hourcolor);//一般用于填充 //先将原先的painter存储起来,对目前的painter操作,目前的操作不对原本的产生影响,即原本不旋转 painter.save();//首先将原先画笔类似于入栈,对另一个画笔操作 painter.rotate(30.0 * ((time.hour() + time.minute() / 60.0)));//表示旋转,若缺少painter.save(),会对整个painter类旋转 painter.drawconvexpolygon(hourhand, 3);//绘制多边形 painter.restore();//与painter.save()配套使用 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*time.second()); painter.drawconvexpolygon(secondhand,3); painter.restore(); }
main.cpp
#include "analogclock.h" #include <qapplication> int main(int argc, char *argv[]) { qapplication a(argc, argv); analogclock w; w.show(); return a.exec(); }
编译打包
编译
一般编译过程采用的是debug版本,但是给其他用户使用最好是release版本,因此打包前需要切换到release版本重新编译一遍。
这样在项目文件夹中会有两种版本的exe执行程序。
打包
生成release版本的exe后,进入文件夹中,将release文件夹中的clock.exe复制到单独的文件夹中 ,我复制到myclock文件夹中。
在开始菜单中,选择下图红色的cmd。
进入到myclock文件夹中,输入 windeployqt clock.exe
打包完成后,在myclock文件夹中就可以看到各种.dll链接库文件,这是exe文件依赖的库文件,此时双击clock.exe就可以动态显示时钟了。
将该文件夹打包,就可以部署到其他的windows系统上。
到此这篇关于基于qt5实现一个时钟桌面的文章就介绍到这了,更多相关qt5时钟桌面内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
上一篇: C语言用一级指针处理字符串的反思
下一篇: C++ OpenCV实现像素画的示例代码