- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章Qt实现简易时钟由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
本文实例为大家分享了Qt实现简易时钟展示的具体代码,供大家参考,具体内容如下 。
1、效果展示 。
简单实现时钟(圆盘+QLCDNumber),大小刻度,数字等.
2、实现 。
.pro 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
CONFIG += c++11
# The following define makes your compiler emit warnings if you use
# any Qt feature that has been marked deprecated (the exact warnings
# depend on your compiler). Please consult the documentation of the
# deprecated API in order to know how to port your code away from it.
DEFINES += QT_DEPRECATED_WARNINGS
# You can also make your code fail to compile if it uses deprecated APIs.
# In order to do so, uncomment the following line.
# You can also select to disable deprecated APIs only up to a certain version of Qt.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
SOURCES += \
main.cpp \
mainwindow.cpp
HEADERS += \
mainwindow.h
FORMS += \
mainwindow.ui
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else
: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target
RESOURCES += \
image.qrc
|
.h 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include <QDateTime>
QT_BEGIN_NAMESPACE
namespace
Ui {
class
MainWindow; }
QT_END_NAMESPACE
class
MainWindow :
public
QMainWindow
{
Q_OBJECT
public
:
MainWindow(QWidget *parent = nullptr);
~MainWindow();
void
paintEvent(QPaintEvent *event);
bool
showColon =
false
;
public
slots:
void
countTime();
private
:
Ui::MainWindow *ui;
};
#endif // MAINWINDOW_H
|
.cpp 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
|
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include<QPainter>
#include<QTimer>
#include<QTime>
#include<QString>
MainWindow::MainWindow(QWidget *parent)
: QMainWindow(parent)
, ui(
new
Ui::MainWindow)
{
ui->setupUi(
this
);
QTimer *timer =
new
QTimer(
this
);
connect(timer, SIGNAL(timeout()),
this
, SLOT(update()));
connect(timer, SIGNAL(timeout()),
this
, SLOT(countTime()));
timer->start(1000);
countTime();
setWindowTitle(tr(
"Clock_by_Xr"
));
setFixedSize(800, 400);
}
MainWindow::~MainWindow()
{
delete
ui;
}
void
MainWindow::paintEvent(QPaintEvent *event){
static
QPoint hourHand[3] = {
QPoint(5, 3),
QPoint(-5, 3),
QPoint(0, -30)
};
static
QPoint minuteHand[3] = {
QPoint(4, 6),
QPoint(-4, 6),
QPoint(0, -45)
};
static
QPoint secondHand[3] = {
QPoint(2, 10),
QPoint(-2, 10),
QPoint(0, -60)
};
//颜色
QColor hourColor(0, 185, 211, 238);
QColor minuteColor(0, 96, 123, 139);
QColor secondColor(0, 176, 226, 255);
int
side = qMin(width(), height());
QTime
time
= QTime::currentTime();
QPainter painter(
this
);
painter.setRenderHint(QPainter::Antialiasing);
//表盘
QBrush brush1(QColor(164,211,238));
QPen pen1(QColor(164,211,238));
painter.setBrush(brush1);
painter.setPen(pen1);
painter.drawEllipse(QPoint(200,200),200/3*2,200/3*2);
QBrush brush2(QColor(245,245,245));
QPen pen2(QColor(245,245,245));
painter.setBrush(brush2);
painter.setPen(pen2);
painter.drawEllipse(QPoint(200,200),194/3*2,194/3*2);
QBrush brush3(QColor(250,250,250));
QPen pen3(QColor(250,250,250));
painter.setBrush(brush3);
painter.setPen(pen3);
painter.drawEllipse(QPoint(200,200),183/3*2,183/3*2);
QBrush brush4(QColor(255,255,255));
QPen pen4(QColor(255,255,255));
painter.setBrush(brush4);
painter.setPen(pen4);
painter.drawEllipse(QPoint(200,200),175/3*2,175/3*2);
painter.setRenderHint(QPainter::Antialiasing);
painter.translate(width()/4, height()/2);
painter.scale(side/200.0, side/200.0);
painter.setPen(Qt::NoPen);
painter.setBrush(hourColor);
painter.save();
painter.rotate(30.0 * ((
time
.hour() +
time
.minute() / 60.0)));
painter.drawConvexPolygon(hourHand, 3);
painter.restore();
//刻度
painter.setPen(hourColor);
for
(
int
i = 0; i < 12; ++i) {
painter.rotate(30.0);
painter.drawLine(66,0,72,0);
painter.drawText(-15, -65, 30, 30,Qt::AlignHCenter,QString::number(i+1));
}
//分钟
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(68, 0, 72, 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();
painter.end();
}
void
MainWindow::countTime(){
QTime t = QTime::currentTime();
QString text=t.toString(
"hh:mm:ss"
);
if
(showColon){
text[2] =
':'
;
text[5] =
':'
;
showColon =
false
;
}
else
{
text[2] =
' '
;
text[5] =
' '
;
showColon =
true
;
}
ui->lcdNumber->display(text);
ui->lcdNumber_2->display(text);
}
|
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我.
原文链接:https://blog.csdn.net/PlanetRT/article/details/106741380 。
最后此篇关于Qt实现简易时钟的文章就讲到这里了,如果你想了解更多关于Qt实现简易时钟的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
我正在使用 Qt 语言学家翻译一个 ui 文件。我使用 lupdate 获取了它的 ts 文件,并翻译了这些单词和短语。现在我想将它添加到我的代码中,但我从它的教程中发现我似乎必须将 tr() 添加到
我想在 Qt Creator 中创建下面的简单控制台应用程序: #include int main(int argc, char* argv[]) { std::cout #include
我想将 libQtGui.so.4 libQtNetwork.so.4 和 libQtCore.so.4 包含在与我的应用程序所在的目录相同的目录中。我如何让 Qt 理解这一点? y 目的是拥有一个使
我有一个充满 QPushButtons 和 QLabels 以及各种其他有趣的 QWidget 的窗口,所有这些都使用各种 QLayout 对象动态布局...而我想做的是偶尔制作一些这些小部件变得不可
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 这个问题似乎与 help center 中定义的范围内的编程无关。 . 关闭 7 年前。 Improve
我想知道 Qt 是否将下面代码的“版本 1”之类的东西放在堆上?在版本 1 中,Qt 会将 dirStuff 放在堆栈上还是堆上?我问是因为我有一种感觉,Java 将所有数据结构放在堆上......不
这个问题是关于 Qt Installer Framework 2.0 版的。 在这一点上,使用 Qt 安装程序框架的人都知道,如果不进行自定义,您根本无法通过安装程序覆盖现有安装。这样做显然是为了解决
关闭。这个问题是off-topic .它目前不接受答案。 想改善这个问题吗? Update the question所以它是 on-topic对于堆栈溢出。 8年前关闭。 Improve this q
因为我在我的计算机上安装了 Qt 4.8.4 和 Qt 5.1,所以我遇到了问题。 当只有 Qt 4.8.4 存在时,一切都很好。 当我添加 Qt 5.1 时,这个工作正常,但 Qt 4.8.4 给了
我无法在我的 Ubuntu 12 中安装更多软件包。我尝试了 apt-get install -f ,以及许多其他类似的技巧,但在找到解决方案方面没有进展。 这是属于 Qt 的损坏包: 以下包具有未满
我正在尝试使用 Virtual Box 中的 Ubuntu 机器复制我们目前在物理 Ubuntu 服务器上运行的应用程序。它是一个 QT 应用程序,但在服务器上我们使用 NPM 的 pm2 运行它。安
问题: Qt Creator 是用 Qt Creator 构建的吗? 同样,Qt Designer 是用 Qt Designer 构建的吗? 顺便说一句,为什么有两个 Qt IDE?他们是竞争对手吗?
当我使用 QWidget设计用户界面时,我总是对它的大小属性有点困惑。有size policy , geometry和 hintSize . 我只知道size policy之间的关系和 hintSiz
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我想知道是否有一种很好的方法可以让用户像 LabView 一样创建节点图(有限制)。 像这样的东西: 我见过http://www.pyqtgraph.org/ ,这似乎有类似的东西,我确实打算使用 P
在 Qt 中是否有一种跨平台的方式来获得用户喜欢的固定宽度和比例字体? 例如,在 cocoa 中,有 NSFont *proportional = [NSFont userFontOfSize:12.
我想使用 Qt 和 C++ 制作这样的交互式图表:http://jsxgraph.uni-bayreuth.de/wiki/index.php/Cubic_spline_interpolation 关
我正在编写一个嵌入式设备屏幕的模拟(其中包含主 QWidget 顶部的自定义小部件),虽然屏幕的原始尺寸是 800x600,但我希望能够按比例放大和缩小它拖动窗口的角。如果不使用网格布局和担架(不会向
在下面的示例中,我是否必须从堆中删除对象?如果是的话,怎么办? #include #include #include #include #include int main(int argc,
来自 Web 开发背景,我现在进入 QT 应用程序开发。 使用 QFonts 我已经看到我显然只有两个选择,在 QT 中定义字体大小;按像素大小或点大小。 在制作网页布局时,我习惯于以相对方式定义所有
我是一名优秀的程序员,十分优秀!