在Qt中使用Qwt

QWT官方说明

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

  1. 在Qt Creator打开qwt.pro,点击构建项目,默认Debug和Release库都会编译。可在qwtbuild.pri中修改设置。
  2. 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下。
  3. 在Qt/4.8.4/include/下创建Qwt目录,将qwt-6.0.2/src/*.h拷贝到此目录。

由于官方Qt Creator是用MSVC编译的,所以只能识别由MSVC编译的Qwt。如果要使用MinGW编译的Qwt,需要用MinGW重新编译Qt Creator。

编译Qt Creator

  1. 到官方网站下载Qt Creator源码,解压;
  2. 用当前Qt Creator打开源码目录下的qtcreator.pro,构建套件选MinGw;
  3. 设置为构建方式为Release,点击构建;
  4. 结束后,构建路径下的bin、lib、share即GCC的Qt Creator目录结构。
  5. 使用bin下的Qt Creator创建新项目,

使用Qwt

  1. 在pro文件中添加头文件路径INCLUDEPATH += C:/Qt/4.8.4/include/Qwt,库路径LIBS += C:/Qt/4.8.4/bin/qwtd.dll
  2. 在Qt Creator的UI编辑器中拖入控件,构建。
  3. 如果提示QWidget: Must construct a QApplication before a QPaintDevice,检查当前构建方式与库相对应,Debug模式使用qwtd.dll,Release模式使用qwt.dll。

你可能感兴趣的:(在Qt中使用Qwt)