The Qwt library contains GUI Components and utility classes which are primarily useful for programs with a technical background. Beside a framework for 2D plots it provides scales, sliders, dials, compasses, thermometers, wheels and knobs to control or display values, arrays, or ranges of type double.
稳定版下载
svn checkout svn://svn.code.sf.net/p/qwt/code/branches/qwt-6.1
开发版下载
svn checkout svn://svn.code.sf.net/p/qwt/code/trunk/qwt
编译Qwt
- 在Qt Creator打开qwt.pro,点击构建项目,默认Debug和Release库都会编译。可在qwtbuild.pri中修改设置。
- 将
qwt-6.0.2/lib/*.dll
拷贝到Qt/4.8.4/bin/
下,将qwt-6.0.2/lib/*.a
拷贝到Qt/4.8.4/lib/
下,将构建目录下的designer/plugins/designer/*.*
拷贝到Qt/4.8.4/plugins/designer
下。 - 在Qt/4.8.4/include/下创建Qwt目录,将
qwt-6.0.2/src/*.h
拷贝到此目录。
由于官方Qt Creator是用MSVC编译的,所以只能识别由MSVC编译的Qwt。如果要使用MinGW编译的Qwt,需要用MinGW重新编译Qt Creator。
编译Qt Creator
- 到官方网站下载Qt Creator源码,解压;
- 用当前Qt Creator打开源码目录下的qtcreator.pro,构建套件选MinGw;
- 设置为构建方式为Release,点击构建;
- 结束后,构建路径下的bin、lib、share即GCC的Qt Creator目录结构。
- 使用bin下的Qt Creator创建新项目,
使用Qwt
- 在pro文件中添加头文件路径
INCLUDEPATH += C:/Qt/4.8.4/include/Qwt
,库路径LIBS += C:/Qt/4.8.4/bin/qwtd.dll
。 - 在Qt Creator的UI编辑器中拖入控件,构建。
- 如果提示
QWidget: Must construct a QApplication before a QPaintDevice
,检查当前构建方式与库相对应,Debug模式使用qwtd.dll,Release模式使用qwt.dll。
网友评论