QComboBox delegate implemented and quickly tested being functional! :)
[emufront] / src / emufront.pro
index 53879e5..fc11c07 100644 (file)
@@ -4,12 +4,28 @@
 TEMPLATE = app
 TARGET = 
 DEPENDPATH += . \
+    exceptions \
+    dataobjects \
     db \
-    dialogs
+    dialogs \
+    models \
+    utils \
+    widgets \
+    delegates \
+    views
 INCLUDEPATH += . \
     db \
-    dialogs
+    exceptions \
+    dataobjects \
+    dialogs \
+    models \
+    utils \
+    widgets \
+    delegates \
+    views
 QT += sql
+QT += xml
+
 
 # Input
 HEADERS += mainwindow.h \
@@ -37,8 +53,6 @@ HEADERS += mainwindow.h \
     utils/fileutil.h \
     dataobjects/setup.h \
     db/dbsetup.h \
-    db/dbtablemodelmanager.h \
-    db/dbquerymodelmanager.h \
     dialogs/setupmaindialog.h \
     dialogs/setupeditdialog.h \
     widgets/stringlistwidget.h \
@@ -63,7 +77,23 @@ HEADERS += mainwindow.h \
     utils/unziphelper.h \
     utils/emuhelper.h \
     dialogs/listdialog.h \
-    dialogs/emufrontinputdialog.h
+    dialogs/emufrontinputdialog.h \
+    dialogs/emufrontfileobjectdialog.h \
+    dialogs/browsefilepathdialog.h \
+    db/dbconfig.h \
+    utils/datfileutil.h \
+    widgets/fileextensionwidget.h \
+    models/setupmodel.h \
+    models/platformmodel.h \
+    models/mediatypemodel.h \
+    models/emufrontquerymodel.h \
+    models/emufrontfileobjectmodel.h \
+    views/setupeditview.h \
+    views/platformeditview.h \
+    views/mediatypeeditview.h \
+    views/emufrontfileobjecteditview.h \
+    views/emufronteditview.h \
+    delegates/comboboxdelegate.h
 SOURCES += main.cpp \
     mainwindow.cpp \
     db/databasemanager.cpp \
@@ -116,5 +146,36 @@ SOURCES += main.cpp \
     utils/unziphelper.cpp \
     utils/emuhelper.cpp \
     dialogs/listdialog.cpp \
-    dialogs/emufrontinputdialog.cpp
-OTHER_FILES += 
+    dialogs/emufrontinputdialog.cpp \
+    dialogs/emufrontfileobjectdialog.cpp \
+    dialogs/browsefilepathdialog.cpp \
+    db/dbconfig.cpp \
+    utils/datfileutil.cpp \
+    widgets/fileextensionwidget.cpp \
+    models/setupmodel.cpp \
+    models/platformmodel.cpp \
+    models/mediatypemodel.cpp \
+    models/emufrontquerymodel.cpp \
+    models/emufrontfileobjectmodel.cpp \
+    views/setupeditview.cpp \
+    views/platformeditview.cpp \
+    views/mediatypeeditview.cpp \
+    views/emufrontfileobjecteditview.cpp \
+    views/emufronteditview.cpp \
+    delegates/comboboxdelegate.cpp
+OTHER_FILES +=  
+
+CONFIG += mobility
+
+MOBILITY = 
+
+unix {
+   INSTALLS += target desktop icon48 icon64
+   target.path = /usr/bin
+   desktop.path = /usr/share/applications/hildon
+   desktop.files += maemofiles/emufront.desktop
+   icon48.path = /usr/share/icons/hicolor/48x48/apps
+   icon48.files += maemofiles/48x48/emufront.png
+   icon64.path = /usr/share/icons/hicolor/64x64/apps
+   icon64.files += maemofiles/64x64/emufront.png
+}