SpikeStream Application Library  0.2
AnalysesTableView.h
Go to the documentation of this file.
00001 #ifndef ANALYSESTABLEVIEW_H
00002 #define ANALYSESTABLEVIEW_H
00003 
00004 //Qt includes
00005 #include <QTableView>
00006 #include <QAbstractTableModel>
00007 
00008 namespace spikestream {
00009 
00011     class AnalysesTableView : public QTableView {
00012                 Q_OBJECT
00013 
00014         public:
00015                 AnalysesTableView(QWidget* parent, QAbstractTableModel* model);
00016             ~AnalysesTableView();
00017             void resizeHeaders();
00018 
00019         private slots:
00020             void tableClicked(QModelIndex index);
00021 
00022     };
00023 
00024 }
00025 
00026 #endif//ANALYSESTABLEVIEW_H
 All Classes Files Functions Variables Typedefs Friends Defines