使用 QCustomPlot 绘图库辅助开发时整理的学习笔记。同系列文章目录可见 《绘图库 QCustomPlot 学习笔记》目录。本篇介绍 QCustomPlot 的下载。
官网为每个版本都提供了三种压缩包下载:
下载指南:
官网下载地址:QCustomPlot - Download。
网络资源:百度网盘 - QCustomPlot。
以 Version 2.1.1
为例,这个压缩包的目录概览如下:
QCustomPlot.tar.gz │ changelog.txt │ GPL.txt │ qcustomplot.cpp │ qcustomplot.h │ ├─documentation │ │ qcustomplot.qch │ │ │ └─html │ adaptive-sampling-line.png │ ... │ classes.html │ ... │ └─examples ├─axis-tags │ axis-tags-example.pro │ ... │ ├─interactions │ interaction-example.pro │ ... │ ├─plots │ plot-examples.pro │ ... │ ├─scrollbar-axis-range-control │ scrollbar-axis-range-control.pro │ ... │ └─text-document-integration text-document-integration.pro ...
changelog.txt
、GPL.txt
、qcustomplot.cpp
、qcustomplot.h
这四个文件与 QCustomPlot-source.tar.gz 压缩包中的文件一样,分别为更新日志、开源许可、源码。documentation
文件夹下存有 qch
版的帮助文档(用于集成进 QT 环境)以及 html
版的帮助文档(与 在线帮助文档 排版一样)。examples
文件夹下是一些示例工程,可用 QtCreator 打开后再编译运行,这些示例工程被用来示范怎么使用 QCustomPlot。以 Version 2.1.1
为例,这个压缩包的目录结构如下:
QCustomPlot-sharedlib.tar.gz │ readme.txt │ ├─sharedlib-compilation │ sharedlib-compilation.pro │ └─sharedlib-usage main.cpp sharedlib-usage.pro
readme.txt
是一份使用说明,里面写了如何根据压缩包中的 pro 文件编译出 QCustomPlot 动态库,以及如何使用编译出的动态库。sharedlib-compilation
文件夹下只有一个 sharedlib-compilation.pro
工程文件,将它与 qcustomplot.h/.cpp
相结合可以编译出动态库。sharedlib-usage
文件夹下只有 main.cpp
与 sharedlib-usage.pro
两个文件,用来演示如何使用上述编译出的动态库。以 Version 2.1.1
为例,这个压缩包的目录结构如下:
QCustomPlot-source.tar.gz changelog.txt GPL.txt qcustomplot.cpp qcustomplot.h
有 4
个文件,changelog.txt
为更新日志,GPL.txt
为开源许可,qcustomplot.cpp
与 qcustomplot.h
为正常使用时需包含的源码文件。