65 #include <QStringList>
74 #define MAINWINDOW_WINDOW_SIZE_W 1200 //width of MainWindow
75 #define MAINWINDOW_WINDOW_SIZE_H 800 //width of MainWindow
76 #define MAINWINDOW_WINDOW_POSITION_X 50 //initial window position x
77 #define MAINWINDOW_WINDOW_POSITION_Y 50 //initial window position y
80 #define MODEL_WINDOW_SIZE 4016 //this value+MODEL_NUM_FILTER_TAPS must be a multiple integer of 2^x (e.g. 4016 or 8112 for 80 filter taps), length of data window to preload [in samples]
81 #define MODEL_RELOAD_POS 2000 //Distance that the current window needs to be off the ends of m_data[i] [in samples]
82 #define MODEL_MAX_WINDOWS 3 //number of windows that are at maximum remained in m_data
83 #define MODEL_NUM_FILTER_TAPS 80 //number of filter taps, required to take into account because of FFT convolution (zero padding)
84 #define MODEL_MAX_NUM_FILTER_TAPS 0 //number of maximal filter taps
88 #define DELEGATE_PLOT_HEIGHT 40 //height of a single plot (row)
89 #define DELEGATE_DX 1 //each DX pixel a sample is plot -> plot resolution
90 #define DELEGATE_NHLINES 6 //number of horizontal lines within a single plot (row)
93 #define DELEGATE_MAX_MEG_GRAD 1e-10 // kind=FIFFV_MEG_CH && unit=FIFF_UNIT_T_M
94 #define DELEGATE_MAX_MEG_MAG 1e-11 // kind=FIFFV_MEG_CH && unit=FIFF_UNIT_T
95 #define DELEGATE_MAX_EEG 1e-4 // kind=FIFFV_EEG_CH
96 #define DELEGATE_MAX_EOG 1e-3 // kind=FIFFV_EOG_CH
97 #define DELEGATE_MAX_STIM 5 // kind=FIFFV_STIM_CH
101 #define EVENT_MARKER_WIDTH 3 // in pixels
104 #define EVENT_MARKER_OPACITY 110 // opacity of the markers and backgorunds in the table columns. Range: 0...255
107 #define DATA_MARKER_WIDTH 3 // in pixels
108 #define DATA_MARKER_OPACITY 200 // opacity of the data marker and backgorunds in the table columns. Range: 0...255
131 QColor m_event_color_default, m_event_color_1, m_event_color_2, m_event_color_3, m_event_color_4, m_event_color_5,
132 m_event_color_32, m_event_color_998, m_event_color_999, m_data_marker_color;
134 int m_mainwindow_size_w, m_mainwindow_size_h, m_mainwindow_position_x, m_mainwindow_position_y;
143 QSettings m_qSettings;
154 #endif // RAWSETTINGS_H
Contains general application specific types.