ページ

2014年1月29日水曜日

ファイルに書き込む :Qt


QFile file("D:\\test.txt");
file.open(QIODevice::WriteOnly | QIODevice::Text);
QTextStream out(&file);
out << "abc" << endl;//abcと書込み
file.close();
view raw mainwindow.cpp hosted with ❤ by GitHub


mainwindow.cpp からプログラムの終了 :Qt

qApp->exec();//ウインドウは閉じるが動いている。


parent->close();//プログラムが突然終了しました。


exit(EXIT_FAILURE);
QApplication::quit();
QCoreApplication::quit();

正常終了しているようです。


xml ファイルの作成 :Qt


#include "mainwindow.h"
#include "ui_mainwindow.h"
#include <QDebug>
#include <QFile>
#include <QXmlStreamWriter>
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
QFile file("D:\\soft\\pleiades\\xampp\\htdocs\\www\\test.xml");
file.open(QIODevice::WriteOnly | QIODevice::Text);
QXmlStreamWriter stream(&file);
stream.setAutoFormatting(true);
stream.writeStartDocument();
stream.writeStartElement("root");
stream.writeStartElement("item");
stream.writeAttribute("name", "AAA");
stream.writeCharacters ("field1");
stream.writeEndElement();
stream.writeStartElement("item");
stream.writeAttribute("name", "BBB");
stream.writeCharacters ("field2");
stream.writeEndElement();
stream.writeEndDocument();//
file.close();
}
MainWindow::~MainWindow()
{
delete ui;
}
view raw mainwindow.cpp hosted with ❤ by GitHub
<?xml version="1.0" encoding="UTF-8"?>
<root>
<item name="AAA">field1</item>
<item name="BBB">field2</item>
</root>
view raw test.xml hosted with ❤ by GitHub



ファイルの読み込み:一行づつ :Qt

#include "mainwindow.h"
#include "ui_mainwindow.h"
#include <QDebug>
#include <QFile>
#include <QTextCodec>
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
QFile file("D:\\soft\\pleiades\\xampp\\htdocs\\www\\test.html");
QTextCodec* codec = QTextCodec::codecForName("UTF-8");
if (!file.open(QIODevice::ReadOnly))//読込のみでオープンできたかチェック
{
qDebug() << "データ読み込み失敗" ;
}else{
qDebug() << "データ読み込み成功" ;
}
QTextStream in(&file);
in.setCodec( codec );
while (!in.atEnd()) {
qDebug() << in.readLine();
}
}
MainWindow::~MainWindow()
{
delete ui;
}
view raw mainwindow.cpp hosted with ❤ by GitHub


2014年1月28日火曜日

QWebFrameの例 :Qt

.proファイルに追記
QT += webkitwidgets

divタグで挟まれたテキストを取得場合、
aタグのリンクアドレスとテキストを取得する場合

#include "mainwindow.h"
#include "ui_mainwindow.h"
#include <QDebug>
#include <QWebElement>
#include <QWebFrame>
#include <QWebView>
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
QWebPage page;
QWebFrame * frame = page.mainFrame();
frame->setHtml("<html><body><div>Hello World!</div><div>DIV2</div><a href=\"http://test.net/\">リンク</a></body></html>");
QWebElementCollection elements = frame->findAllElements("div");
foreach (QWebElement element, elements)
{
QString plainText = element.toPlainText();
qDebug() << plainText;
}
QWebElement document2 = frame->documentElement();
QWebElement firstTextInput = document2.findFirst("a");
QString addr = firstTextInput.attribute("href");
QString text = firstTextInput.toPlainText();
qDebug() << addr << "::" << text;
}
MainWindow::~MainWindow()
{
delete ui;
}
view raw mainwindow.cpp hosted with ❤ by GitHub


結果:
"Hello World!"
"DIV2"
"http://test.net/" :: "リンク"

2014年1月27日月曜日

QXmlQuery を使ってみる :Qt

.pro ファイルに追記
QT += xmlpatterns

aタグのname属性を取得する場合

<?xml version="1.0" encoding="ISO-8859-1" ?>
<a name="tagName"></a>
view raw data.xml hosted with ❤ by GitHub
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include <QFile>
#include <QXmlQuery>
#include <QXmlResultItems>
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
// Open a file
QString filename( "D:\\soft\\pleiades\\xampp\\htdocs\\www\\data.xml" );
QFile file(filename);
file.open(QIODevice::ReadOnly);
// Query
QXmlQuery query;
query.bindVariable("fileName", &file);
query.setQuery("declare variable $fileName external; doc($fileName)/a/@name");
// or
// query.setQuery("declare variable $fileName external; doc($fileName)/a/@name/data(.)");
// Result
QXmlResultItems xmlResultItems;
query.evaluateTo(&xmlResultItems);
// Try to get the first item
QXmlItem item(xmlResultItems.next());
while(!item.isNull())
{
if(item.isAtomicValue())
{
// Output for the query "/a/@name/data(.)"
qDebug() << "Atomic value : " << item.toAtomicValue().toString();
}
else if(item.isNode())
{
// Output for the query "/a/@name"
qDebug() << "Node : " << item.toNodeModelIndex().stringValue();
}
else
{
// Item must be null
}
// Next item
item = xmlResultItems.next();
}
// Close the file
file.close();
}
MainWindow::~MainWindow()
{
delete ui;
}
view raw mainwindow.cpp hosted with ❤ by GitHub
結果: Node : "tagName"

<?xml version="1.0" encoding="ISO-8859-1"?>
<bookstore>
<book category="COOKING">
<title lang="en">Everyday Italian</title>
<author>Giada De Laurentiis</author>
<year>2005</year>
<price>30.00</price>
</book>
<book category="CHILDREN">
<title lang="en">Harry Potter</title>
<author>J K. Rowling</author>
<year>2005</year>
<price>29.99</price>
</book>
<book category="WEB">
<title lang="en">XQuery Kick Start</title>
<author>James McGovern</author>
<author>Per Bothner</author>
<author>Kurt Cagle</author>
<author>James Linn</author>
<author>Vaidyanathan Nagarajan</author>
<year>2003</year>
<price>49.99</price>
</book>
<book category="WEB">
<title lang="en">Learning XML</title>
<author>Erik T. Ray</author>
<year>2003</year>
<price>39.95</price>
</book>
</bookstore>
view raw data2.xml hosted with ❤ by GitHub
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include <QFile>
#include <QXmlQuery>
#include <QXmlResultItems>
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
// Open a file
QString filename( "D:\\soft\\pleiades\\xampp\\htdocs\\www\\data.xml" );
QFile file(filename);
file.open(QIODevice::ReadOnly);
// Query
QXmlQuery query;
query.bindVariable("fileName", &file);
query.setQuery("doc($fileName)/bookstore/book[price>30]/title");
QString testOutput;
query.evaluateTo(&testOutput);
qDebug() << testOutput;
// Close the file
file.close();
}
MainWindow::~MainWindow()
{
delete ui;
}
view raw mainwindow2.cpp hosted with ❤ by GitHub

結果:
"<title lang="en">XQuery Kick Start</title>
<title lang="en">Learning XML</title>
"

2014年1月26日日曜日

QWebView で全てのリンクを取得 :Qt

.pro ファイルに追記
QT += webkitwidgets

#include "mainwindow.h"
#include "ui_mainwindow.h"
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
myWebView = new QWebView;
ui->verticalLayout->addWidget(myWebView);
connect(myWebView, SIGNAL(loadFinished(bool)),this, SLOT(loadPageFinished(bool)));
QUrl url("https://www.google.co.jp/");
myWebView->load(url);
myWebView->show();
}
MainWindow::~MainWindow()
{
delete ui;
}
/*ページの読み込み終了した時の処理*/
void MainWindow::loadPageFinished(bool)
{
qDebug() << "asd";
QWebElementCollection elements = myWebView->page()->mainFrame()->findAllElements("a");
foreach (QWebElement e, elements) {
// Process element e
QString hrefText = e.attribute("href");//リンクアドレス
QString plainText = e.toPlainText();
qDebug() << hrefText;
qDebug() << plainText;
}
}
view raw mainwindow.cpp hosted with ❤ by GitHub
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include <QDebug>
#include <QWebView>
#include <QWebElementCollection>
#include <QWebFrame>
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
private:
Ui::MainWindow *ui;
QWebView *myWebView;
public slots:
void loadPageFinished(bool);
};
#endif // MAINWINDOW_H
view raw mainwindow.h hosted with ❤ by GitHub

2014年1月11日土曜日

独自クラスの作成 :Qt

簡単な名前と年齢を処理するクラス

#include "mainwindow.h"
#include "ui_mainwindow.h"
#include <QDebug>
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
MyClass *mycladd = new MyClass();
mycladd->setName("yamada");
mycladd->setAge("20");
qDebug() << mycladd->name;
qDebug() << mycladd->age;
}
MainWindow::~MainWindow()
{
delete ui;
}
view raw mainwindow.cpp hosted with ❤ by GitHub
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include <QString>
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
private:
Ui::MainWindow *ui;
};
class MyClass
{
private:
public:
QString name;
QString age;
MyClass()
{
//デフォルトコンストラクタ
}
void setName(QString strName)
{
name = strName;
}
void setAge(QString strAge){
age = strAge;
}
};
#endif // MAINWINDOW_H
view raw mainwindow.h hosted with ❤ by GitHub


ウイザードを使って、自動でクラスフィルとヘッダーファイルを作成する。


C++ Class を選択する。

クラス名を入力する。

確認する。

プロジェクトに新しいクラスとヘッダーファイルが作成されている。







2014年1月10日金曜日

区切り文字で分解 :Qt

csvファイルを読み込んで、区切り文字で分解して表示。
/*
*ファイルを開開く
*区切り文字で分解
*表示
*/
#include "mainwindow.h"
#include <QApplication>
#include <QFile>
#include <QDebug>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
QFile file( "D:\\qt\\data.csv" );//フルパスでファイルを指定
//QFile file( "data.txt" );// ビルドディレクトリの中のdata.txt
if (!file.open(QIODevice::ReadOnly))//読込のみでオープンできたかチェック
{
qDebug() << "can not open file." ;
return 0;
}
QString str;
QTextStream in(&file);
str = in.readAll();//全文読込
//区切り文字で分解
QStringList list = str.split(',');
// QStringList の表示 Indexing:
for(int n = 0;n < list.size();++n){
qDebug() << list.at(n) ;
}
qDebug() << "---------------- QStringList の表示 Java-style iterator: の場合----------------" ;
QStringListIterator javaStyleIterator(list);
while (javaStyleIterator.hasNext())
qDebug() << javaStyleIterator.next() ;
qDebug() << "---------------- QStringList の表示STL-style iterator: の場合----------------" ;
QStringList::const_iterator constIterator;
for (constIterator = list.constBegin(); constIterator != list.constEnd();
++constIterator)
qDebug() << (*constIterator) ;
return a.exec();
}
view raw main.cpp hosted with ❤ by GitHub

ファイルの読み込み:全行 :Qt

ファイルを全行読み込む
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include <QFile>
#include <QTextStream>
#include <QDebug>
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
QFile file("D:\\qt\\FileTest\\data-mini.csv");
if (!file.open(QIODevice::ReadOnly))//読込のみでオープンできたかチェック
{
qDebug() << "データ読み込み失敗" ;
}else{
QString str;
QTextStream in(&file);
str = in.readAll();//全文読込
qDebug() << str ;
}
}
MainWindow::~MainWindow()
{
delete ui;
}
view raw mainwindow.cpp hosted with ❤ by GitHub


2014年1月9日木曜日

ウインドウサイズの変更 :Qt


#include "mainwindow.h"
#include "ui_mainwindow.h"
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
setFixedSize( QSize ( 600, 400 ) );
}
MainWindow::~MainWindow()
{
delete ui;
}
view raw mainwindow.cpp hosted with ❤ by GitHub


メインウインドウの中のQWidgetの大きさを変更する。


#include "mainwindow.h"
#include "ui_mainwindow.h"
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
setFixedSize( QSize ( 600, 400 ) );
}
MainWindow::~MainWindow()
{
delete ui;
}
view raw mainwindow.cpp hosted with ❤ by GitHub


ウインドウサイズより大きく設定した場合、ウインドウも QWidget に合わせて大きくなる。
ウインドウの中の QWidget は resize() では、変更できなかった。

2014年1月8日水曜日

目盛の調整 :Qwt

標準の場合

#include "mainwindow.h"
#include "ui_mainwindow.h"
#include <qwt_plot_curve.h>
#include <qwt_plot_grid.h>
#include <qwt_legend.h>
MainWindow::MainWindow(QWidget *parent) :
QwtPlot(parent)
{
setTitle( "Sin Curve" );//グラフのタイトル
//グラフの線
QwtPlotCurve *curve = new QwtPlotCurve();
curve->attach(this);
//setAxisScale( QwtPlot::xBottom, 0, 360 );//X軸 目盛
// グリッドの設定
QwtPlotGrid *grid = new QwtPlotGrid();
//grid->enableXMin(true);//中間縦線の表示
grid->attach( this );
setAxisScale(2,0,360,20);//X軸,始点,終点,ステップ
const int kArraySize = 37;
double plotX[kArraySize] = {}; // x
double plotY[kArraySize] = {}; // y
int i= 0;
for(int k = 0; k <= 360; k+=10 ){
double x = k;
double y = sin(k*M_PI/180);
qDebug() << i << "::" << k << "::" << x <<"::"<<y;
plotX[i] = x;
plotY[i] = y;
++i;
}
curve->setSamples(plotX, plotY, kArraySize);
resize( 600, 400 );
}
MainWindow::~MainWindow()
{
delete ui;
}
view raw mainwindow.cpp hosted with ❤ by GitHub


QwtScaleDiv を使って目盛を調整
majorTicks,mediumTicks,minorTicks の設定

#include "mainwindow.h"
#include "ui_mainwindow.h"
#include <qwt_plot_curve.h>
#include <qwt_plot_grid.h>
MainWindow::MainWindow(QWidget *parent) :
QwtPlot(parent)
{
setTitle( "Sin Curve" );//グラフのタイトル
//グラフの線
QwtPlotCurve *curve = new QwtPlotCurve();
curve->attach(this);
// グリッドの設定
QwtPlotGrid *grid = new QwtPlotGrid();
//grid->enableXMin(true);//中間縦線の表示
grid->attach( this );
QList<double> majorTicks;
majorTicks << 0 << 90 << 180 << 270 << 360;
QList<double> mediumTicks;
mediumTicks << 30 << 60 << 120 << 150 << 210 << 240 << 300 << 330;
QList<double> minorTicks;
minorTicks << 10 << 20 << 40 << 50 << 70 << 80
<< 100 << 110 << 130 << 140 << 160 << 170 << 190
<< 200 << 220 << 230 << 250 << 260 << 280 << 290
<< 310 << 320 << 340 << 350;
QwtScaleDiv div( 0, 360 );
div.setTicks(QwtScaleDiv::MajorTick, majorTicks);
div.setTicks(QwtScaleDiv::MediumTick, mediumTicks);
div.setTicks(QwtScaleDiv::MinorTick, minorTicks);
setAxisScaleDiv(QwtPlot::xBottom, div);
const int kArraySize = 37;
double plotX[kArraySize] = {}; // x
double plotY[kArraySize] = {}; // y
int i= 0;
for(int k = 0; k <= 360; k+=10 ){
double x = k;
double y = sin(k*M_PI/180);
qDebug() << i << "::" << k << "::" << x <<"::"<<y;
plotX[i] = x;
plotY[i] = y;
++i;
}
curve->setSamples(plotX, plotY, kArraySize);
resize( 600, 400 );
}
MainWindow::~MainWindow()
{
delete ui;
}
view raw mainwindow2.cpp hosted with ❤ by GitHub


QwtScaleDraw を使って目盛を調整
目盛の文字の色を変更

#ifndef MYQWTSCALEDRAW_H
#define MYQWTSCALEDRAW_H
#include <qwt_scale_draw.h>
#include <QColor>
class MyQwtScaleDraw : public QwtScaleDraw
{
public:
MyQwtScaleDraw();
virtual QwtText label( double value ) const
{
qDebug() << value ;
QwtText scaleLabel = QwtText (QString::number (value));
scaleLabel.setColor(QColor( "blue" ));
return scaleLabel;
}
private:
};
#endif // MYQWTSCALEDRAW_H
QwtScaleDraw を継承したクラスを作成して呼び出す。
setAxisScaleDraw( QwtPlot::xBottom, new MyQwtScaleDraw() );

MediumTick の表示

#ifndef MYQWTSCALEDRAW_H
#define MYQWTSCALEDRAW_H
#include <qwt_scale_draw.h>
class MyQwtScaleDraw : public QwtScaleDraw
{
public:
MyQwtScaleDraw();
void draw(QPainter *painter, const QPalette& palette) const
{
QwtScaleDraw::draw(painter, palette);
if ( hasComponent(QwtAbstractScaleDraw::Labels) )
{
//MediumTick の表示
const QList<double> &mediumTicks = scaleDiv().ticks(QwtScaleDiv::MediumTick);
for (int i = 0; i < (int)mediumTicks.count(); i++)
{
const double v = mediumTicks[i];
//qDebug() << v;
if ( scaleDiv().contains(v) )
drawLabel(painter, mediumTicks[i]);
}
}
}
};
#endif // MYQWTSCALEDRAW_H


目盛りの非表示
plot->enableAxis(QwtPlot::xBottom, false);

目盛りの最大値の取得
plot->setAutoReplot(true);
plot->axisScaleDiv(QwtPlot::xBottom).upperBound();
plot->axisScaleDiv(QwtPlot::xBottom).interval().maxValue();


簡単なサインカーブ[0-360] :Qwt



#include "mainwindow.h"
#include "ui_mainwindow.h"
#include <qwt_plot_curve.h>
MainWindow::MainWindow(QWidget *parent) :
QwtPlot(parent)
{
setTitle( "Sin Curve" );//グラフのタイトル
QwtPlotCurve *curve = new QwtPlotCurve();
curve->attach(this);
const int kArraySize = 37;
double plotX[kArraySize] = {}; // x
double plotY[kArraySize] = {}; // y
int i= 0;
for(int k = 0; k <= 360; k+=10 ){
double x = k;
double y = sin(k*M_PI/180);
qDebug() << i << "::" << k << "::" << x <<"::"<<y;
plotX[i] = x;
plotY[i] = y;
++i;
}
curve->setSamples(plotX, plotY, kArraySize);
resize( 600, 400 );
}
MainWindow::~MainWindow()
{
delete ui;
}
view raw mainwindow.cpp hosted with ❤ by GitHub

2014年1月4日土曜日

凡例とQCPLayoutGrid :QCustomPlot:Qt



#include "mainwindow.h"
#include "ui_mainwindow.h"
#include <QDebug>
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
customPlot = ui->widget;
ui->horizontalScrollBar->setRange(10, 100);//スクロールバーの範囲
//グラフのデータを作成
QVector<double> sinX,sinY;//空のベクタ宣言
QVector<double> cosX,cosY;//空のベクタ宣言
for( double d = 0.0 ; d < 10.01 ; d += 0.01 ){
sinX.append( d );
sinY.append( sin(2.0*M_PI*d) );
cosX.append( d );
cosY.append( cos(2.0*M_PI*d) );
}
// グラフのデータを挿入
customPlot->addGraph();
customPlot->graph(0)->setData(sinX, sinY);
customPlot->graph(0)->setName("sin");//凡例の名前
customPlot->addGraph();
customPlot->graph(1)->setData(cosX, cosY);
customPlot->graph(1)->setName("cos");
customPlot->graph(1)->setPen(QPen(Qt::red));//線の色
customPlot->xAxis->setLabel("x");//X軸の目盛のタイトル
customPlot->yAxis->setLabel("y");
//目盛関係
customPlot->xAxis->setRange(0, 1.0);//目盛の始点終点
customPlot->yAxis->setRange(-1.0, 1.0);
customPlot->xAxis->setAutoTickStep(false);
customPlot->yAxis->setAutoTickStep(false);
customPlot->xAxis->setTickStep(0.2);//
customPlot->yAxis->setTickStep(0.2);
// 凡例の表示
customPlot->legend->setVisible(true);
// 凡例の表示位置:右下
//customPlot->axisRect()->insetLayout()->setInsetAlignment(0, Qt::AlignBottom|Qt::AlignRight);
// 凡例のレイアウト
QCPLayoutGrid *myCPLayoutGrid = new QCPLayoutGrid; // グリッドエレメントの作成
//既存のレイアウトの中にmyCPLayoutGridを追加Row(行), Column(列)
customPlot->plotLayout()->addElement(0, 1, myCPLayoutGrid);
myCPLayoutGrid->addElement(0, 0, customPlot->legend); //作成したグリッドエレメントの行1列1に凡例を追加
myCPLayoutGrid->addElement(1,0,new QCPLayoutElement);//凡例の下に空のエレメントを追加
myCPLayoutGrid->setMargins(QMargins(0,10,10,0));//マージンの設定
myCPLayoutGrid->setRowStretchFactor(0, 0.1);//凡例がはいる行を小さくする
customPlot->plotLayout()->setColumnStretchFactor(1, 0.1); //列1の横幅を小さくする
customPlot->replot();
}
MainWindow::~MainWindow()
{
delete ui;
}
void MainWindow::on_horizontalScrollBar_valueChanged(int value)
{
double xValue = (double)value/10;
//qDebug() << xValue;
customPlot->xAxis->setRange(xValue-1.0, xValue);
customPlot->replot();
}
view raw mainwindow.cpp hosted with ❤ by GitHub


スクロールバーでX軸の移動 :QCustomPlot


#include "mainwindow.h"
#include "ui_mainwindow.h"
#include <QDebug>
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
customPlot = ui->widget;
ui->horizontalScrollBar->setRange(10, 100);//スクロールバーの範囲
//グラフのタイトル
customPlot->plotLayout()->insertRow(0);
customPlot->plotLayout()->addElement(0, 0, new QCPPlotTitle(customPlot, "グラフのタイトル"));
//グラフのデータを作成
QVector<double> sinX,sinY;//空のベクタ宣言
QVector<double> cosX,cosY;//空のベクタ宣言
for( double d = 0.0 ; d < 10.01 ; d += 0.01 ){
sinX.append( d );
sinY.append( sin(2.0*M_PI*d) );
cosX.append( d );
cosY.append( cos(2.0*M_PI*d) );
}
// グラフのデータを挿入
customPlot->addGraph();
customPlot->graph(0)->setData(sinX, sinY);
customPlot->graph(0)->setName("sin");//凡例の名前
customPlot->addGraph();
customPlot->graph(1)->setData(cosX, cosY);
customPlot->graph(1)->setName("cos");
customPlot->graph(1)->setPen(QPen(Qt::red));//線の色
customPlot->xAxis->setLabel("x");//X軸の目盛のタイトル
customPlot->yAxis->setLabel("y");
//目盛関係
customPlot->xAxis->setRange(0, 1.0);//目盛の始点終点
customPlot->yAxis->setRange(-1.0, 1.0);
customPlot->xAxis->setAutoTickStep(false);
customPlot->yAxis->setAutoTickStep(false);
customPlot->xAxis->setTickStep(0.2);//
customPlot->yAxis->setTickStep(0.2);
// 凡例の表示
customPlot->legend->setVisible(true);
// 凡例の表示位置:右下
customPlot->axisRect()->insetLayout()->setInsetAlignment(0, Qt::AlignBottom|Qt::AlignRight);
customPlot->replot();
}
MainWindow::~MainWindow()
{
delete ui;
}
void MainWindow::on_horizontalScrollBar_valueChanged(int value)
{
double xValue = (double)value/10;
//qDebug() << xValue;
customPlot->xAxis->setRange(xValue-1.0, xValue);
customPlot->replot();
}
view raw mainwindow.cpp hosted with ❤ by GitHub
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include "qcustomplot.h"
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
private slots:
void on_horizontalScrollBar_valueChanged(int value);
private:
Ui::MainWindow *ui;
QCustomPlot *customPlot;
};
#endif // MAINWINDOW_H
view raw mainwindow.h hosted with ❤ by GitHub

グラフのタイトル・凡例・目盛の表示 :QCustomPlot:Qt


#include "mainwindow.h"
#include "ui_mainwindow.h"
#include <QDebug>
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
customPlot = ui->widget;
//グラフのタイトル
customPlot->plotLayout()->insertRow(0);
customPlot->plotLayout()->addElement(0, 0, new QCPPlotTitle(customPlot, "グラフのタイトル"));
//グラフのデータを作成
QVector<double> sinX,sinY;//空のベクタ宣言
QVector<double> cosX,cosY;//空のベクタ宣言
for( double d = 0.0 ; d < 1.01 ; d += 0.01 ){
sinX.append( d );
sinY.append( sin(2.0*M_PI*d) );
cosX.append( d );
cosY.append( cos(2.0*M_PI*d) );
}
// グラフのデータを挿入
customPlot->addGraph();
customPlot->graph(0)->setData(sinX, sinY);
customPlot->graph(0)->setName("sin");//凡例の名前
customPlot->addGraph();
customPlot->graph(1)->setData(cosX, cosY);
customPlot->graph(1)->setName("cos");
customPlot->graph(1)->setPen(QPen(Qt::red));//線の色
customPlot->xAxis->setLabel("x");//X軸の目盛のタイトル
customPlot->yAxis->setLabel("y");
//目盛関係
customPlot->xAxis->setRange(0, 1.0);//目盛の始点終点
customPlot->yAxis->setRange(-1.0, 1.0);
customPlot->xAxis->setAutoTickStep(false);
customPlot->yAxis->setAutoTickStep(false);
customPlot->xAxis->setTickStep(0.2);//
customPlot->yAxis->setTickStep(0.2);
// 凡例の表示
customPlot->legend->setVisible(true);
// 凡例の表示位置:右下
customPlot->axisRect()->insetLayout()->setInsetAlignment(0, Qt::AlignBottom|Qt::AlignRight);
customPlot->replot();
}
MainWindow::~MainWindow()
{
delete ui;
}
view raw mainwindow.cpp hosted with ❤ by GitHub


2014年1月3日金曜日

導入編 :QCustomPlot:Qt

Qt:5.1.1

QCustomPlot.tar.gz をダウンロードして解凍する。
ダウンロードパージ:http://www.qcustomplot.com/index.php/download


Qt GUI アプリケーションでプロジェクトを作成する。
プロジェクトを選択して、右クリックから、既存ファイルの追加を選択して、
qcustomplot.h
qcustomplot.cpp

の2つのファイルをプロジェクトに追加する。


.pro ファイルに追記する。
QT += printsupport


デザインから Windowに Widgets を追加する。


追加した Widget を選択して、右クリックから、格上げ先を指定を選択する。
新しい格上げされたクラス名にQCustomPlot と入力して、追加ボタンをクリックする。
格上げされたクラスから、追加されたヘッダファイルを選択して、
格上げボタンを押す。

Widget のクラス名がQCustomPlot に変わる。

ウィンドウの大きさに Widget の大きさを合わせるためにレイアウトを指定する。

ソースコードを記入する。
QCustomPlot のサイトのTutorials の Basics Plotting のソースコード
#include "mainwindow.h"
#include "ui_mainwindow.h"
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
QCustomPlot *customPlot = ui->widget;
// generate some data:
QVector<double> x(101), y(101); // initialize with entries 0..100
for (int i=0; i<101; ++i)
{
x[i] = i/50.0 - 1; // x goes from -1 to 1
y[i] = x[i]*x[i]; // let's plot a quadratic function
}
// create graph and assign data to it:
customPlot->addGraph();
customPlot->graph(0)->setData(x, y);
// give the axes some labels:
customPlot->xAxis->setLabel("x");
customPlot->yAxis->setLabel("y");
// set axes ranges, so we see all data:
customPlot->xAxis->setRange(-1, 1);
customPlot->yAxis->setRange(0, 1);
customPlot->replot();
}
MainWindow::~MainWindow()
{
delete ui;
}
view raw mainwindow.cpp hosted with ❤ by GitHub



2014年1月2日木曜日

Qwtのウィジェット一覧 :Qwt



#include "mainwindow.h"
#include "ui_mainwindow.h"
#include <qwt_plot_curve.h>
#include <qwt_legend.h>
#include <QVBoxLayout>
#include <qwt_slider.h>
#include <qwt_text_label.h>
#include <qwt_thermo.h>
#include <qwt_wheel.h>
#include <qwt_dial.h>
#include <qwt_compass.h>
#include <qwt_counter.h>
#include <qwt_dial.h>
#include <qwt_knob.h>
#include <qwt_picker.h>
#include <qwt_plot_layout.h>
#include <qwt_analog_clock.h>
#include <qwt_scale_widget.h>
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
QWidget * q = new QWidget();
setCentralWidget(q);
QVBoxLayout * vLayout = new QVBoxLayout();
q->setLayout(vLayout);
QwtPlot *plot = new QwtPlot();
//vLayout->addWidget(plot);
//QwtScaleWidget
QwtScaleWidget *qwtScaleWidget = new QwtScaleWidget (QwtScaleDraw::BottomScale, this);
//qwtScaleWidget->setScaleDraw(QwtScaleDraw::BottomScale);
vLayout->addWidget(qwtScaleWidget);
//QwtAnalogClock
QwtAnalogClock *qwtAnalogClock = new QwtAnalogClock();
vLayout->addWidget(qwtAnalogClock);
//QwtCompass
QwtCompass *qwtCompass = new QwtCompass();
vLayout->addWidget(qwtCompass);
//QwtCounter
QwtCounter *qwtCounter = new QwtCounter();
vLayout->addWidget(qwtCounter);
//QwtDial
QwtDial *qwtDial = new QwtDial();
vLayout->addWidget(qwtDial);
//QwtKnob
QwtKnob *qwtKnob = new QwtKnob();
vLayout->addWidget(qwtKnob);
//QwtSlider
QwtSlider* qwtSlider = new QwtSlider();
qwtSlider->setOrientation(Qt::Horizontal);//横位置のスライダー
vLayout->addWidget(qwtSlider);
//QwtThermo
QwtThermo *qwtThermo = new QwtThermo();
qwtThermo->setOrientation(Qt::Horizontal);
qwtThermo->setValue(50.0);
vLayout->addWidget(qwtThermo);
//QwtWheel
QwtWheel *qwtWheel = new QwtWheel();
qwtWheel->setSizePolicy( QSizePolicy::Fixed, QSizePolicy::Expanding );
vLayout->addWidget(qwtWheel);
// QwtTextLabel
QwtTextLabel *qwtTextLabel = new QwtTextLabel();
qwtTextLabel->setText("QwtTextLabel");
vLayout->addWidget(qwtTextLabel);
}
MainWindow::~MainWindow()
{
delete ui;
}
view raw main.cpp hosted with ❤ by GitHub


レイアウトを使って凡例をキャンバスの中に表示する。 :Qwt



よく分からないけど、とりあえずやってみた。
#include "mainwindow.h"
#include <QApplication>
#include <QDebug>
#include <qwt_plot.h>
#include <qwt_plot_curve.h>
#include <qwt_legend.h>
#include <qwt_plot_layout.h>
#include <QVBoxLayout>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
QwtPlot *plot = new QwtPlot;
// サインカーブ
QwtPlotCurve *sinCurve = new QwtPlotCurve();
sinCurve->setTitle( "sin curve" );
sinCurve->setPen( Qt::blue, 2 ),sinCurve->setRenderHint( QwtPlotItem::RenderAntialiased, true );
QVector<double> sinX;//空のベクタ宣言
QVector<double> sinY;//空のベクタ宣言
for( double d = 0.0 ; d <= 2.0 ; d += 0.01 ){
sinX.append( d );
sinY.append( sin(2.0*M_PI*d) );
sinCurve->setSamples(sinX.data(), sinY.data(), sinX.count());
}
sinCurve->attach( plot );
// 凡例をキャンバスに表示
QwtLegend *legend = new QwtLegend(plot);//widget
plot->insertLegend( legend );//NULL
QVBoxLayout *layout = new QVBoxLayout;//レイアウトを設定
layout->addWidget(legend);
QWidget *myCanbas = plot->canvas();//グラフのキャンバス
myCanbas->setLayout(layout);
plot->insertLegend( NULL );//NULL
plot->resize( 600, 400 );
plot->show();
return a.exec();
}
view raw main.cpp hosted with ❤ by GitHub