diff options
| author | Manjeet Dahiya <manjeetdahiya@gmail.com> | 2010-09-08 09:23:18 +0000 |
|---|---|---|
| committer | Manjeet Dahiya <manjeetdahiya@gmail.com> | 2010-09-08 09:23:18 +0000 |
| commit | da88f5f0bb5e73bc69bf7ed3962691622b1ae4f9 (patch) | |
| tree | c3686f7649785a2bfcc2c637a1588acdb8a721e8 /examples/GuiClient/GuiClient.pro | |
| parent | 3431f5a37174b7eb8490672686db68df2b48e35f (diff) | |
| download | qxmpp-da88f5f0bb5e73bc69bf7ed3962691622b1ae4f9.tar.gz | |
add Gui Client example
Diffstat (limited to 'examples/GuiClient/GuiClient.pro')
| -rw-r--r-- | examples/GuiClient/GuiClient.pro | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/examples/GuiClient/GuiClient.pro b/examples/GuiClient/GuiClient.pro new file mode 100644 index 00000000..ba06c3c7 --- /dev/null +++ b/examples/GuiClient/GuiClient.pro @@ -0,0 +1,51 @@ +include(../examples.pri)
+
+TARGET = GuiClient
+TEMPLATE = app
+
+SOURCES += main.cpp \
+ messageGraphicsItem.cpp \
+ chatGraphicsScene.cpp \
+ chatGraphicsView.cpp \
+ chatDialog.cpp \
+ mainDialog.cpp \
+ rosterItemModel.cpp \
+ rosterItem.cpp \
+ rosterItemSortFilterProxyModel.cpp \
+ utils.cpp \
+ customListView.cpp \
+ searchLineEdit.cpp \
+ statusWidget.cpp \
+ customPushButton.cpp \
+ customLabel.cpp \
+ avatarWidget.cpp \
+ statusTextWidget.cpp \
+ customToolButton.cpp \
+ vCardManager.cpp
+HEADERS += messageGraphicsItem.h \
+ chatGraphicsScene.h \
+ chatGraphicsView.h \
+ chatDialog.h \
+ mainDialog.h \
+ rosterItemModel.h \
+ rosterItem.h \
+ rosterItemSortFilterProxyModel.h \
+ utils.h \
+ customListView.h \
+ searchLineEdit.h \
+ statusWidget.h \
+ customPushButton.h \
+ customLabel.h \
+ avatarWidget.h \
+ statusTextWidget.h \
+ customToolButton.h \
+ vCardManager.h
+
+FORMS += mainDialog.ui \
+ chatDialog.ui \
+ statusWidget.ui
+
+QT += network \
+ xml
+
+RESOURCES += resources.qrc
|
