MNE-CPP  0.1.9
A Framework for Electrophysiology
compensatorview.h
Go to the documentation of this file.
1 //=============================================================================================================
35 #ifndef COMPENSATORVIEW_H
36 #define COMPENSATORVIEW_H
37 
38 //=============================================================================================================
39 // INCLUDES
40 //=============================================================================================================
41 
42 #include "../disp_global.h"
43 #include "abstractview.h"
44 
45 //=============================================================================================================
46 // QT INCLUDES
47 //=============================================================================================================
48 
49 #include <QMap>
50 
51 //=============================================================================================================
52 // EIGEN INCLUDES
53 //=============================================================================================================
54 
55 //=============================================================================================================
56 // FORWARD DECLARATIONS
57 //=============================================================================================================
58 
59 class QCheckBox;
60 
61 namespace FIFFLIB {
62  class FiffCtfComp;
63 }
64 
65 //=============================================================================================================
66 // DEFINE NAMESPACE DISPLIB
67 //=============================================================================================================
68 
69 namespace DISPLIB
70 {
71 
72 //=============================================================================================================
73 // DISPLIB FORWARD DECLARATIONS
74 //=============================================================================================================
75 
76 //=============================================================================================================
83 {
84  Q_OBJECT
85 
86 public:
87  typedef QSharedPointer<CompensatorView> SPtr;
88  typedef QSharedPointer<const CompensatorView> ConstSPtr;
90  //=========================================================================================================
96  CompensatorView(const QString& sSettingsPath = "",
97  QWidget *parent = 0,
98  Qt::WindowFlags f = Qt::Widget);
99 
100  //=========================================================================================================
104  ~CompensatorView();
105 
106  //=========================================================================================================
112  QList<FIFFLIB::FiffCtfComp> getCompensators() const;
113 
114  //=========================================================================================================
120  int getLastTo() const;
121 
122  //=========================================================================================================
128  void setCompensators(const QList<FIFFLIB::FiffCtfComp>& comps);
129 
130  //=========================================================================================================
134  void saveSettings();
135 
136  //=========================================================================================================
140  void loadSettings();
141 
142  //=========================================================================================================
148  void updateGuiMode(GuiMode mode);
149 
150  //=========================================================================================================
156  void updateProcessingMode(ProcessingMode mode);
157 
158  //=========================================================================================================
162  void clearView();
163 
164 protected:
165  //=========================================================================================================
169  void redrawGUI();
170 
171  //=========================================================================================================
175  void onCheckCompStatusChanged();
176 
177  QList<QCheckBox*> m_qListCompCheckBox;
179  QList<FIFFLIB::FiffCtfComp> m_pComps;
181  QString m_sSettingsPath;
183  int m_iLastTo;
184 
185  QMap<int,bool> m_mapCompActive;
186 
187 signals:
188  //=========================================================================================================
192  void compClicked(const QString& text);
193 
194  //=========================================================================================================
198  void compSelectionChanged(int to);
199 };
200 } // NAMESPACE
201 
202 #endif // COMPENSATORVIEW_H
DISPLIB::CompensatorView::m_sSettingsPath
QString m_sSettingsPath
Definition: compensatorview.h:181
DISPSHARED_EXPORT
#define DISPSHARED_EXPORT
Definition: disp_global.h:55
DISPLIB::AbstractView
The AbstractView class provides the base calss for all Disp viewers.
Definition: abstractview.h:75
DISPLIB::CompensatorView::SPtr
QSharedPointer< CompensatorView > SPtr
Definition: compensatorview.h:87
DISPLIB::CompensatorView::m_qListCompCheckBox
QList< QCheckBox * > m_qListCompCheckBox
Definition: compensatorview.h:177
DISPLIB::CompensatorView
The CompensatorView class provides a view to select the compensators.
Definition: compensatorview.h:82
abstractview.h
Declaration of the AbstractView Class.
DISPLIB::CompensatorView::ConstSPtr
QSharedPointer< const CompensatorView > ConstSPtr
Definition: compensatorview.h:88
DISPLIB::CompensatorView::m_pComps
QList< FIFFLIB::FiffCtfComp > m_pComps
Definition: compensatorview.h:179