diff options
author | Remko Tronçon <git@el-tramo.be> | 2009-06-01 08:48:42 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2009-06-01 09:24:28 (GMT) |
commit | 2812bddd81f8a1b804c7460f4e14cd0aa393d129 (patch) | |
tree | d46294f35150c4f0f43deaf2d31fceaf945ae715 /UI/Qt/ApplicationTest/main.cpp | |
download | swift-contrib-2812bddd81f8a1b804c7460f4e14cd0aa393d129.zip swift-contrib-2812bddd81f8a1b804c7460f4e14cd0aa393d129.tar.bz2 |
Import.
Diffstat (limited to 'UI/Qt/ApplicationTest/main.cpp')
-rw-r--r-- | UI/Qt/ApplicationTest/main.cpp | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/UI/Qt/ApplicationTest/main.cpp b/UI/Qt/ApplicationTest/main.cpp new file mode 100644 index 0000000..7ddb76d --- /dev/null +++ b/UI/Qt/ApplicationTest/main.cpp @@ -0,0 +1,39 @@ +#include <QApplication> +#include <QWidget> +#include <QVBoxLayout> +#include <QLineEdit> +#include "../QtSwiftUtil.h" +#include "Swiften/Base/String.h" +#include "Swiften/Application/Platform/PlatformApplication.h" + +using namespace Swift; + +class MyWidget : public QWidget { + Q_OBJECT + + public: + MyWidget() : application_("MyApplication") { + QVBoxLayout *layout = new QVBoxLayout(this); + input_ = new QLineEdit(this); + layout->addWidget(input_); + connect(input_, SIGNAL(returnPressed()), SLOT(handleReturnPressed())); + } + + private slots: + void handleReturnPressed() { + application_.getApplicationMessageDisplay()->setMessage(Q2PSTRING(input_->text())); + } + + private: + PlatformApplication application_; + QLineEdit* input_; +}; + +int main(int argc, char* argv[]) { + QApplication app(argc, argv); + MyWidget widget; + widget.show(); + return app.exec(); +} + +#include "main.moc" |