QtHashSum:用C ++ Qt编写的文件校验和完整性验证程序和重复文件查找器
2023-01-01 20:08:56 56KB hashing c-plus-plus qt checksum
1
自5.15.2之后,Qt只对商业用户开放安装,非商业用户只能自己编译。 今天想编译好的版本给大家下载。 qt 5.15.7 开源编译版本 vs 2019 编译,X86的版本 编译环境:windows10 wdk:10.0.19041.0
2023-01-01 09:19:54 105.1MB Qt5.15.7
1
在网上找了一个别人的旧版本的播放器~自己更改了一天,终于可运行了,希望分享下同共学习; 不过出了少少问题:希望有经验的一起指导下: 运行环境:qt creator +windows 1、原计划是可支持视频播放的,现在只能加载间频(mp3),一加载视频就卡死 2.、自定义的进度条不起作用,不知为什么百分比槽连接不成功 connect(wmp, SIGNAL(PositionChange(double, double)),this, SLOT(Slot_onPositionChange(double, double))); 3、我用的是QAxWidget控件,这个是不是只支持windows的呢?或者还有没其实更好的? /******************************************************************************************* 项目名:QT播放器 Qt Mediaplayer 工程师:枫儿 完成时间:2009年12月28日 技术支持:嵌入式家园 www.studyarm.cn www.mcupark.com *******************************************************************************************/ #include "playerwindow.h" #include #include #include #include #include #include #include #include PlayerWindow::PlayerWindow() { //setCaption(tr("Media Player")); fileFilters = tr("Video files (*.mpg *.mpeg *.avi *.wmv)\n" //原来字符串换行也可这样用 "Audio files (*.mp3 *.wav)"); updateTimer = 0; setMouseTracking(true); this->wmp = new QAxWidget(this); wmp->setControl("{22D6F312-B0F6-11D0-94AB-0080C74C7E95}"); // wmp->setProperty("ShowControls", QVariant(false, 0)); wmp->setSizePolicy(QSizePolicy::Expanding,QSizePolicy::Expanding); connect(wmp, SIGNAL(PlayStateChange(int, int)),this, SLOT(Slot_onPlayStateChange(int, int))); connect(wmp, SIGNAL(ReadyStateChange(ReadyStateConstants)),this, SLOT(Slot_onReadyStateChange(ReadyStateConstants))); connect(wmp, SIGNAL(PositionChange(double, double)),this, SLOT(Slot_onPositionChange(double, double))); this->openButton = new QPushButton(tr("&Open")); connect(openButton, SIGNAL(clicked()), this, SLOT(Slot_openFile())); this->playPauseButton = new QPushButton(tr("&Play")); connect(playPauseButton, SIGNAL(clicked()), wmp, SLOT(Play())); this->stopButton = new QPushButton(tr("&Stop")); connect(stopButton, SIGNAL(clicked()), wmp, SLOT(Stop())); this->seekSlider = new QSlider(Qt::Horizontal, this); seekSlider->setEnabled(false); connect(seekSlider, SIGNAL(valueChanged(int)),this, SLOT(Slot_sliderValueChanged(int))); connect(seekSlider, SIGNAL(sliderPressed()),wmp, SLOT(Pause())); QHBoxLayout *buttonLayout = new QHBoxLayout; buttonLayout->addWidget(openButton); buttonLayout->addWidget(playPauseButton); buttonLayout->addWidget(stopButton); QVBoxLayout *mainLayout = new QVBoxLayout(this); mainLayout->addWidget(wmp); mainLayout->addLayout(buttonLayout); mainLayout->addWidget(seekSlider); this->setLayout(mainLayout); }
2022-12-31 23:28:39 1.5MB qt 播放器
1
qt音乐播放器
2022-12-31 22:52:36 21KB qt
1
QT 样式表模板,可根据实际情况修改参数
2022-12-31 14:21:21 24KB qt
1
QT语言开发的windows投屏手机画面工具
2022-12-31 14:21:20 28.9MB 手机投屏
1
c++ 课设 学生桌面日历 qt c++ 课设 学生桌面日历 qt c++ 课设 学生桌面日历 qt c++ 课设 学生桌面日历 qt c++ 课设 学生桌面日历 qt 打开.pro文件即可 qt5.9.0
2022-12-30 11:40:22 57KB c++
1
PyQt5离线包 for python-3.9.10 64位,win10下亲测可用,内有安装顺序脚本。
2022-12-29 21:07:33 113.44MB python qt 开发语言 后端
1
qt 将数据存入优盘的两种方法 方式1: 检测Windows的事件–WM_DEVICECHANGE 缺点:想要检测时,必须发生过一次U盘插拔动作,需要手动“触发”才能成功扫描到U盘。并且每次只能检测变动(插拔)的U盘,无法检测插了多个U盘的情况。 方式2: 通过调用Windows库函数,对磁盘的类型进行判断,即可知道磁盘是否为U盘。 使用:需要检测时,执行此函数即可,无方式1缺陷。推荐使用。
2022-12-29 17:34:08 17KB qt优盘
1
qt 5.15.2 2019 x64 支持视频播放 qtwebengine release版本
2022-12-29 17:26:49 48.31MB qt
1