]> Shamusworld >> Repos - virtualjaguar/blobdiff - src/gui/filepicker.h
Changed executable from vj to virtualjaguar to avoid possible future naming
[virtualjaguar] / src / gui / filepicker.h
index 543de0ebeba39c3a39039fd8c798275b3f4fd341..a8c588847614cd9896000747618f5a09f2b06b4b 100644 (file)
@@ -8,7 +8,7 @@
 // Forward declarations
 class QListWidget;
 class FileThread;
-//class FileListModel;
+class FileListModel;
 class QListView;
 
 class FilePickerWindow: public QWidget
@@ -21,6 +21,8 @@ class FilePickerWindow: public QWidget
 
        public slots:
                void AddFileToList(unsigned long index);
+               void AddFileToList2(unsigned long index, QString, QImage *);
+               void UpdateSelection(const QModelIndex &, const QModelIndex &);
 
        protected:
 //             void PopulateList(void);
@@ -28,6 +30,9 @@ class FilePickerWindow: public QWidget
        private:
                QListWidget * fileList2;
                FileThread * fileThread;
-               QAbstractItemModel * model;
+               FileListModel * model;
                QListView * fileList;
+               QLabel * cartImage;
+               QLabel * title;
+               QLabel * data;
 };