summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'UI/Qt/ApplicationTest')
-rw-r--r--UI/Qt/ApplicationTest/ApplicationTest.pro14
-rw-r--r--UI/Qt/ApplicationTest/main.cpp39
2 files changed, 0 insertions, 53 deletions
diff --git a/UI/Qt/ApplicationTest/ApplicationTest.pro b/UI/Qt/ApplicationTest/ApplicationTest.pro
deleted file mode 100644
index 9222aec..0000000
--- a/UI/Qt/ApplicationTest/ApplicationTest.pro
+++ /dev/null
@@ -1,14 +0,0 @@
-TEMPLATE = app
-TARGET =
-DEPENDPATH += .
-INCLUDEPATH += . ../../.. ../../../Swiften/3rdParty/Boost
-mac {
- ICON = ../../../../resources/MacOSX/Swift.icns
-}
-
-HEADERS += \
- ../QtSwiftUtil.h
-SOURCES += \
- main.cpp
-LIBS += \
- ../../../Swiften/Swift.a
diff --git a/UI/Qt/ApplicationTest/main.cpp b/UI/Qt/ApplicationTest/main.cpp
deleted file mode 100644
index 7ddb76d..0000000
--- a/UI/Qt/ApplicationTest/main.cpp
+++ /dev/null
@@ -1,39 +0,0 @@
-#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"