MNE-CPP  beta 1.0
tmsimanualannotationwidget.h
Go to the documentation of this file.
1 //=============================================================================================================
36 #ifndef TMSIMANUALANNOTATIONWIDGET_H
37 #define TMSIMANUALANNOTATIONWIDGET_H
38 
39 
40 //*************************************************************************************************************
41 //=============================================================================================================
42 // INCLUDES
43 //=============================================================================================================
44 
45 
46 //*************************************************************************************************************
47 //=============================================================================================================
48 // QT INCLUDES
49 //=============================================================================================================
50 
51 #include <QWidget>
52 #include "../ui_tmsimanualannotation.h"
53 
54 
55 //*************************************************************************************************************
56 //=============================================================================================================
57 // DEFINE NAMESPACE TMSIPlugin
58 //=============================================================================================================
59 
60 namespace TMSIPlugin
61 {
62 
63 
64 //*************************************************************************************************************
65 //=============================================================================================================
66 // FORWARD DECLARATIONS
67 //=============================================================================================================
68 
69 class TMSI;
70 
71 
72 //=============================================================================================================
78 class TMSIManualAnnotationWidget : public QWidget
79 {
80  Q_OBJECT
81 public:
82  //=========================================================================================================
89  TMSIManualAnnotationWidget(TMSI* pTMSI, QWidget *parent = 0);
90 
91  //=========================================================================================================
97 
98  //=========================================================================================================
103  void initGui();
104 
105 private:
106  TMSI* m_pTMSI;
108  Ui::TMSIManualAnnotationWidget ui;
110  virtual void keyPressEvent(QKeyEvent *event);
111 };
112 
113 } // NAMESPACE
114 
115 #endif // TMSIMANUALANNOTATIONWIDGET_H
The TMSIManualAnnotationWidget class provides a widget/window for manually annotating the trigger...
The TMSI class provides a EEG connector. In order for this plugin to work properly the driver dll "RT...
Definition: tmsi.h:122
TMSIManualAnnotationWidget(TMSI *pTMSI, QWidget *parent=0)