Mercurial > hg > classical
annotate utilities/widgettest/widgettest.cpp @ 28:7d8a6167febb classical-rdf
* Begin new text entry / search widget & test utility for it
* Improve typing matching methods
* Update code to use ObjectLoader/Storer instead of old-style ObjectMapper
author | Chris Cannam |
---|---|
date | Mon, 01 Mar 2010 16:51:14 +0000 |
parents | |
children | 8bed05455706 |
rev | line source |
---|---|
Chris@28 | 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */ |
Chris@28 | 2 |
Chris@28 | 3 #include "TypingSelectWidget.h" |
Chris@28 | 4 |
Chris@28 | 5 #include <QApplication> |
Chris@28 | 6 |
Chris@28 | 7 using namespace ClassicalData; |
Chris@28 | 8 |
Chris@28 | 9 int |
Chris@28 | 10 main(int argc, char **argv) |
Chris@28 | 11 { |
Chris@28 | 12 QApplication app(argc, argv); |
Chris@28 | 13 |
Chris@28 | 14 TypingSelectWidget *w = new TypingSelectWidget(); |
Chris@28 | 15 |
Chris@28 | 16 w->show(); |
Chris@28 | 17 |
Chris@28 | 18 app.exec(); |
Chris@28 | 19 } |
Chris@28 | 20 |