#include "widget.h"
#include "ui_widget.h"
#include "Windows.h"
#include <QDebug>
#include <QThread>
#include <QTimer>
Widget::Widget(QWidget *parent) :
QWidget(parent),
ui(new Ui::Widget)
{
ui->setupUi(this);
myTimer = new QTimer(this);
//刷新按钮 信号槽
connect(ui->beginButton,&QPushButton::clicked,this,&Widget::beginRefresh);
//停止按钮 信号槽
connect(ui->stopButton,&QPushButton::clicked,this,&Widget::stopRefresh);
}
void Widget::beginRefresh(){
QString winTitle = ui->htmlWinTitle->text();
qDebug() << winTitle;
char* ch = winTitle.toUtf8().data();
//刷新网页窗口的标题:【无欲则刚】30岁回农村 - CSDN博客 - 2345加速浏览器 9.5
qDebug() << ch;
//这里必须转换!不转换会报错: cannot convert 'char*' to 'LPCWSTR {aka const wchar_t*}' for argument '2' to 'HWND__* FindWindowW(LPCWSTR, LPCWSTR)'
LPCWSTR str = (LPCWSTR)ch;
//需要Windows.h头文件
HWND win = ::FindWindow(NULL, str);
if(win != NULL){
qDebug() << "找到窗口:"+winTitle;
}else{
qDebug() << "没有找到窗口!!!";
return;
}
if(myTimer->timerId()!=-1){
//定时器在运行,先关掉
myTimer->stop();
}
refresh(win);
//设置定时器
connect(myTimer,&QTimer::timeout,[=](){
refresh(win);
});
//每3秒刷新一次网页
myTimer->start(3000);
}
void Widget::stopRefresh(){
myTimer->stop();
}
void Widget::refresh(HWND win){
//将指定的窗口设置到最前面并处于激活状态,不然当没有在最前面是不会刷新的。
SetForegroundWindow(win);
PostMessage(win, WM_KEYDOWN, VK_F5,1);
Sleep(50);
PostMessage(win, WM_KEYUP, VK_F5,1);
}
Widget::~Widget()
{
delete ui;
}
重庆李四
- 粉丝: 1w+
- 资源: 32
最新资源
- LCD1602电子时钟程序
- 西北太平洋热带气旋【灾害风险统计】及【登陆我国次数评估】数据集-1980-2023
- 全球干旱数据集【自校准帕尔默干旱程度指数scPDSI】-190101-202312-0.5x0.5
- 基于Python实现的VAE(变分自编码器)训练算法源代码+使用说明
- 全球干旱数据集【标准化降水蒸发指数SPEI-12】-190101-202312-0.5x0.5
- C语言小游戏-五子棋-详细代码可运行
- 全球干旱数据集【标准化降水蒸发指数SPEI-03】-190101-202312-0.5x0.5
- spring boot aop记录修改前后的值demo
- 全球干旱数据集【标准化降水蒸发指数SPEI-01】-190101-202312-0.5x0.5
- ActiveReports
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈