MSVC2017-64编译的QCefView库文件,可下载直接使用; 包含Release和Debug版本,示例程序。
2023-04-15 05:07:35 304.05MB Qt cef QCefView 库文件
1
概述 QtMathJax是一个.pri文件,使您可以轻松地将精美的数学排版添加到任何应用程序中。 是使用基于JavaScript的排版引擎在网络上进行数学排版的事实上的标准。 QtMathJax只是将该项目的必要部分导入到您的Qt项目中,在隐藏的QWebView运行它们,并为您提供了一个单功能API,用于将一串TeX代码转换为一串SVG代码,可用于在任何地方渲染它。 ,或外部。 取得 只需克隆此git repo,或将其用作项目中的。 实际上,它本身将用作。 用法 要使用QtMathJax ,请按照下列步骤操作。 在您的.pro文件中,通过添加以下行来导入QtMathJax 。 include(/path/to/qtmathjax.pri) 在你需要使用它的源文件,包括一个类你需要, TeXEngine ,通过#include "texengine.h" 。 创建该类的实例,然后在其中
2023-04-14 17:51:53 340KB C++
1
jetson nano上使用西门子的snap7通讯c++库与西门子PLC进行通信的程序,Qt做界面
2023-04-14 13:16:47 19KB jetsonnano
1
QTableWidget先去读全部的,再进行分页显示,表格固定的是一百行,每次操作对这一百行数据进行刷新,虚拟出完整表格的效果。 测试:QTableWidge分页显示1千万行数据,此种方法优化了文件的读取,可以快速的读取全部的文件内容,表格也只100行,占用内存较小。但是读取了全部大文件,文件占用的较大部分的内存。
2023-04-14 10:30:25 14.95MB qt
1
Qt5类继承关系图,彩色的,并且带有目录,方便分类查找
2023-04-13 20:48:24 1.02MB Qt
1
相信使用PHP开发的人员一定不会对SQLite感到陌生了,PHP5已经集成了这个轻量型的数据库。并且很多虚拟主机无论是win还是*nux都支持它。
2023-04-12 20:46:00 46KB SQLite 数据库安全
1
基于QT 的UDP通信例子,里面包括两个例子程序,可以实现简单的UDP通信,便于初学者快速学习,里面一个是server,一个client,其实UDP不分服务器和客户端,只是名字叫这个便于理解调用。
2023-04-12 17:09:53 17KB QT UDP C++
1
Create visually appealing and feature-rich applications by using Qt 5 and the C++ language Qt 5, the latest version of Qt, enables you to develop applications with complex user interfaces for multiple targets. It provides you with faster and smarter ways to create modern UIs and applications for multiple platforms. This book will teach you to design and build graphical user interfaces that are functional, appealing, and user-friendly. In the initial part of the book, you will learn what Qt 5 is and what you can do with it. You will explore the Qt Designer, discover the different types of widgets generally used in Qt 5, and then connect your application to the database to perform dynamic operations. Next, you will be introduced to Qt 5 chart which allows you to easily render different types of graphs and charts and incorporate List View Widgets in your application. You will also work with various Qt modules, like QtLocation, QtWebEngine, and the networking module through the course of the book. Finally, we will focus on cross-platform development with QT 5 that enables you to code once and run it everywhere, including mobile platforms. By the end of this book, you will have successfully learned about high-end GUI applications and will be capable of building many more powerful, cross-platform applications. What You Will Learn Implement tools provided by Qt 5 to design a beautiful GUI Understand different types of graphs and charts supported by Qt 5 Create a web browser using the Qt 5 WebEngine module and web view widget Connect to the MySQL database and display data obtained from it onto the Qt 5 GUI Incorporate the Qt 5 multimedia and networking module in your application Develop Google Map-like applications using Qt 5’s location module Discover cross-platform development by exporting the Qt 5 application to different platforms Uncover the secrets behind debugging Qt 5 and C++ applications
2023-04-12 15:06:35 12.64MB QT C++ GUI QT5
1
QWT全称是Qt Widgets for Technical Applications,是一个基于LGPL版权协议的开源项目, 可生成各种统计图。它为具有技术专业背景的程序提供GUI组件和一组实用类,其目标是以基于2D方式的窗体部件来显示数据, 数据源以数值,数组或一组浮点数等方式提供, 输出方式可以是Curves(曲线),Slider(滚动条),Dials(圆盘),Compasses(仪表盘)等等。该工具库基于Qt开发,所以也继承了Qt的跨平台特性。 【QWT基类】[2]QwtAbstractScale: 包含刻度尺的所有类的抽象基类; QwtAbstractScaleDraw:绘制刻度尺的抽象基类; QwtAbstractSlider:滑块部件的抽象基类; QwtAlphaColorMap:可以改变颜色的alpha值; QwtAnalogClock:时钟的模拟类; QwtArrayData:包含2个QwtArray<double>实例的数据类; QwtArrowButton:箭头按钮; QwtClipper:剪贴板类; QwtColorMap:提供数值到颜色的映射功能; QwtCompass:指南针部件; QwtCompassMagnetNeedle:指南针部件的磁针; QwtCompassRose:罗盘部件的抽象基类; QwtCompassWindArrow:风向标的指示器;
基于Qt做的一个虚拟仪表盘的实例,可以作为参考