1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- #ifndef _EEGWindow_h_
- #define _EEGWindow_h_
- /* EEGWindow.h
- *
- * Copyright (C) 2011-2018 Paul Boersma
- *
- * This code is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or (at
- * your option) any later version.
- *
- * This code is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- * See the GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this work. If not, see <http://www.gnu.org/licenses/>.
- */
- #include "TextGridEditor.h"
- #include "EEG.h"
- Thing_define (EEGWindow, TextGridEditor) {
- EEG eeg;
- GuiMenuItem extractSelectedEEGPreserveTimesButton, extractSelectedEEGTimeFromZeroButton;
- bool v_hasPitch ()
- override { return false; }
- bool v_hasIntensity ()
- override { return false; }
- bool v_hasFormants ()
- override { return false; }
- bool v_hasPulses ()
- override { return false; }
- void v_createMenus ()
- override;
- void v_createHelpMenuItems (EditorMenu menu)
- override;
- conststring32 v_getChannelName (integer channelNumber)
- override;
- void v_createMenuItems_file_extract (EditorMenu menu)
- override;
- void v_updateMenuItems_file ()
- override;
- #include "EEGWindow_prefs.h"
- };
- void EEGWindow_init (EEGWindow me, conststring32 title, EEG eeg);
- autoEEGWindow EEGWindow_create (conststring32 title, EEG eeg);
- /* End of file EEGWindow.h */
- #endif
|