ページ

2014年4月8日火曜日

レイアウトの中で表示 :Qwt

ヴァーティカル レイアウトの中にグラフを表示する。


#include "mainwindow.h"
#include "ui_mainwindow.h"
#include <qwt_plot.h>

MainWindow::MainWindow(QWidget *parent) :
    QMainWindow(parent),
    ui(new Ui::MainWindow)
{
    ui->setupUi(this);

   QwtPlot* qwtPlot = new QwtPlot();
   ui->verticalLayout->addWidget(qwtPlot);
}

MainWindow::~MainWindow()
{
    delete ui;
}


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>
"