资源简介
qwt的源代码,包括在各平台如何安装,以及十多个例子。
代码片段和文件信息
/* -*- mode: C++ ; c-file-style: “stroustrup“ -*- *****************************
* Qwt Widget Library
* Copyright (C) 1997 Josef Wilgen
* Copyright (C) 2002 Uwe Rathmann
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the Qwt License Version 1.0
*****************************************************************************/
#include
#include
#include
#include
#include “qwt_designer_plotdialog.h“
using namespace QwtDesignerPlugin;
PlotDialog::PlotDialog( const QString &properties QWidget *parent ):
QDialog( parent )
{
setWindowtitle( “Plot Properties“ );
QLineEdit *lineEdit = new QLineEdit( properties );
connect( lineEdit SIGNAL( textChanged( const QString & ) )
SIGNAL( edited( const QString & ) ) );
QTabWidget *tabWidget = new QTabWidget( this );
tabWidget->addTab( lineEdit “General“ );
QPushButton *closeButton = new QPushButton( “Close“ );
connect( closeButton SIGNAL( clicked() ) this SLOT( accept() ) );
QHBoxLayout *buttonLayout = new QHBoxLayout;
buttonLayout->addStretch( 1 );
buttonLayout->addWidget( closeButton );
QVBoxLayout *mainLayout = new QVBoxLayout;
mainLayout->addWidget( tabWidget );
mainLayout->addLayout( buttonLayout );
setLayout( mainLayout );
}
相关资源
- Qwt6.1.3 mvcs2015 编译库文件包含qtcreat
- 基于qwtplot3d实现的三维曲线
- qt5.91-qwt-6.1.3
- QWT-6.1.3移植源码以及编译好的MSVC和
- qwt-6.1.3pdf+qch+src
- QT用QWT绘制心电图、脉氧饱和度波形图
- qwt编译好的24个和qwt.dll
- qwt-6.1.0最新官方.rar
- qwt(已编译)
- Qt5.6.1安装qwt-6.1.2
- QT通过qwt实现曲线动态显示
- Qt 开源动态坐标带时间标非qwt实时曲
- Qt中用qwt实现动态绘制二维曲线
- qwt已编译,亲测,包括和库文件
- QWT-6.1.4 编译好的 Qt5.12.3 MSVC2015_64 版本
- Qt使用Qwt库绘制柱状图的经典.zip
- 树莓派qwt绘制实时动态曲线demo
评论
共有 条评论