diff widgets/TransformFinder.h @ 417:fbf9f53cf979

* Annoyingly not-really-working twist on things
author Chris Cannam
date Tue, 23 Sep 2008 16:42:43 +0000
parents f4487328320d
children b0c8e0def62e
line wrap: on
line diff
--- a/widgets/TransformFinder.h	Tue Sep 23 13:39:25 2008 +0000
+++ b/widgets/TransformFinder.h	Tue Sep 23 16:42:43 2008 +0000
@@ -18,10 +18,14 @@
 
 #include <QDialog>
 
+#include <vector>
+
 #include "transform/Transform.h"
 
 class QVBoxLayout;
 class QScrollArea;
+class QLabel;
+class QWidget;
 
 class TransformFinder : public QDialog
 {
@@ -38,7 +42,9 @@
     
 protected:
     QScrollArea *m_resultsScroll;
+    QWidget *m_resultsFrame;
     QVBoxLayout *m_resultsLayout;
+    std::vector<QLabel *> m_labels;
 };
 
 #endif