更新代码
parent
ed05fe3770
commit
714282238a
|
@ -26,7 +26,7 @@
|
||||||
| tool | 工具类别 | comtool | **串口调试助手** |
|
| tool | 工具类别 | comtool | **串口调试助手** |
|
||||||
| tool | 工具类别 | nettool | **网络调试助手** |
|
| tool | 工具类别 | nettool | **网络调试助手** |
|
||||||
| tool | 工具类别 | netserver | **网络中转服务器** |
|
| tool | 工具类别 | netserver | **网络中转服务器** |
|
||||||
| tool | 工具类别 | base64helper | 图片文字转base |
|
| tool | 工具类别 | base64helper | **图片文字转base** |
|
||||||
| tool | 工具类别 | countcode | **代码行数统计工具** |
|
| tool | 工具类别 | countcode | **代码行数统计工具** |
|
||||||
| tool | 工具类别 | emailtool | 邮件发送工具 |
|
| tool | 工具类别 | emailtool | 邮件发送工具 |
|
||||||
| tool | 工具类别 | moneytool | 存款利息计算器 |
|
| tool | 工具类别 | moneytool | 存款利息计算器 |
|
||||||
|
|
|
@ -133,7 +133,9 @@ void VideoBox::initMenu(QMenu *menu, const QList<bool> &enable)
|
||||||
void VideoBox::show_video(int type, int index)
|
void VideoBox::show_video(int type, int index)
|
||||||
{
|
{
|
||||||
//根据不同的父菜单类型执行对应的函数
|
//根据不同的父菜单类型执行对应的函数
|
||||||
if (type == 4) {
|
if (type == 1) {
|
||||||
|
change_video_1(index);
|
||||||
|
} else if (type == 4) {
|
||||||
change_video_4(index);
|
change_video_4(index);
|
||||||
} else if (type == 6) {
|
} else if (type == 6) {
|
||||||
change_video_6(index);
|
change_video_6(index);
|
||||||
|
|
|
@ -133,7 +133,9 @@ void VideoBox::initMenu(QMenu *menu, const QList<bool> &enable)
|
||||||
void VideoBox::show_video(int type, int index)
|
void VideoBox::show_video(int type, int index)
|
||||||
{
|
{
|
||||||
//根据不同的父菜单类型执行对应的函数
|
//根据不同的父菜单类型执行对应的函数
|
||||||
if (type == 4) {
|
if (type == 1) {
|
||||||
|
change_video_1(index);
|
||||||
|
} else if (type == 4) {
|
||||||
change_video_4(index);
|
change_video_4(index);
|
||||||
} else if (type == 6) {
|
} else if (type == 6) {
|
||||||
change_video_6(index);
|
change_video_6(index);
|
||||||
|
|
|
@ -10,6 +10,7 @@ frmScreenWidget::frmScreenWidget(QWidget *parent) : QWidget(parent), ui(new Ui::
|
||||||
frmScreenWidget::~frmScreenWidget()
|
frmScreenWidget::~frmScreenWidget()
|
||||||
{
|
{
|
||||||
delete ui;
|
delete ui;
|
||||||
|
exit(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
void frmScreenWidget::on_pushButton_clicked()
|
void frmScreenWidget::on_pushButton_clicked()
|
||||||
|
|
|
@ -6,6 +6,10 @@
|
||||||
|
|
||||||
int main(int argc, char *argv[])
|
int main(int argc, char *argv[])
|
||||||
{
|
{
|
||||||
|
#if (QT_VERSION >= QT_VERSION_CHECK(5,14,0))
|
||||||
|
//设置高分屏缩放舍入策略
|
||||||
|
QApplication::setHighDpiScaleFactorRoundingPolicy(Qt::HighDpiScaleFactorRoundingPolicy::Floor);
|
||||||
|
#endif
|
||||||
QApplication a(argc, argv);
|
QApplication a(argc, argv);
|
||||||
a.setFont(QFont("Microsoft Yahei", 9));
|
a.setFont(QFont("Microsoft Yahei", 9));
|
||||||
|
|
||||||
|
|
|
@ -8,6 +8,7 @@
|
||||||
#include "qevent.h"
|
#include "qevent.h"
|
||||||
#include "qdatetime.h"
|
#include "qdatetime.h"
|
||||||
#include "qstringlist.h"
|
#include "qstringlist.h"
|
||||||
|
#include "qdebug.h"
|
||||||
|
|
||||||
#if (QT_VERSION >= QT_VERSION_CHECK(5,0,0))
|
#if (QT_VERSION >= QT_VERSION_CHECK(5,0,0))
|
||||||
#include "qscreen.h"
|
#include "qscreen.h"
|
||||||
|
@ -135,7 +136,6 @@ void Screen::cmpPoint(QPoint &leftTop, QPoint &rightDown)
|
||||||
|
|
||||||
if (l.x() <= r.x()) {
|
if (l.x() <= r.x()) {
|
||||||
if (l.y() <= r.y()) {
|
if (l.y() <= r.y()) {
|
||||||
;
|
|
||||||
} else {
|
} else {
|
||||||
leftTop.setY(r.y());
|
leftTop.setY(r.y());
|
||||||
rightDown.setY(l.y());
|
rightDown.setY(l.y());
|
||||||
|
|
Loading…
Reference in New Issue