X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fgui%2Ffilepicker.h;h=f0b5143babc52667575149808d9a2c5756fc8555;hb=25cc16d819c81e08d2e21b57720dd4ea08ae9e25;hp=a476a50c8817a619064ec9dedc43da5e4b370a61;hpb=8549cdb01f45764f69a6483285dc0771ea66c007;p=virtualjaguar diff --git a/src/gui/filepicker.h b/src/gui/filepicker.h index a476a50..f0b5143 100644 --- a/src/gui/filepicker.h +++ b/src/gui/filepicker.h @@ -3,20 +3,32 @@ // #include +#include "types.h" // Forward declarations class QListWidget; class FileThread; +class FileListModel; +class QListView; class FilePickerWindow: public QWidget { + // Once we have signals/slots, we need this... + Q_OBJECT + public: FilePickerWindow(QWidget * parent = 0); + public slots: + void AddFileToList(unsigned long index); + protected: // void PopulateList(void); private: - QListWidget * fileList; + QListWidget * fileList2; FileThread * fileThread; +// QAbstractItemModel * model; + FileListModel * model; + QListView * fileList; };