]> Shamusworld >> Repos - virtualjaguar/blobdiff - src/gui/filethread.h
Preliminary support for alternate file types.
[virtualjaguar] / src / gui / filethread.h
index 14c1ea748d53832654b38f3b5e0d203598324e45..92b773d23b8d6d1a4bb0d5c2997c7924a79e9ef4 100644 (file)
@@ -15,11 +15,12 @@ class FileThread: public QThread
        public:
                FileThread(QObject * parent = 0);
                ~FileThread();
-               void Go(void);
+               void Go(bool allowUnknown = false);
 
        signals:
                void FoundAFile(unsigned long index);
                void FoundAFile2(unsigned long index, QString filename, QImage * label, unsigned long);
+               void FoundAFile3(unsigned long index, QString filename, QImage * label, unsigned long, bool, unsigned long, unsigned long);
 
        protected:
                void run(void);
@@ -30,6 +31,7 @@ class FileThread: public QThread
                QMutex mutex;
                QWaitCondition condition;
                bool abort;
+               bool allowUnknownSoftware;
 };
 
 #endif // __FILETHREAD_H__