123456789101112131415161718192021222324252627282930313233343536373839404142 |
- /* TextGridEditor_prefs.h
- *
- * Copyright (C) 2013,2015 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/>.
- */
- prefs_begin (TextGridEditor)
- prefs_override_int (TextGridEditor, shellWidth, 1, U"800")
- prefs_override_int (TextGridEditor, shellHeight, 1, U"600")
- prefs_override_bool (TextGridEditor, picture_garnish, 1, true)
- prefs_add_bool_with_data (TextGridEditor, useTextStyles, 1, false)
- prefs_add_int_with_data (TextGridEditor, fontSize, 1, U"18")
- prefs_add_enum_with_data (TextGridEditor, alignment, 1, kGraphics_horizontalAlignment, DEFAULT)
- prefs_add_bool_with_data (TextGridEditor, shiftDragMultiple, 1, true)
- prefs_add_enum_with_data (TextGridEditor, showNumberOf, 1, kTextGridEditor_showNumberOf, DEFAULT)
- prefs_add_enum_with_data (TextGridEditor, greenMethod, 1, kMelder_string, DEFAULT)
- prefs_add_string_with_data (TextGridEditor, greenString, 1, U"some text here for green paint")
- prefs_add_bool (TextGridEditor, picture_showBoundaries, 1, true)
- prefs_add_bool (TextGridEditor, picture_pitch_speckle, 1, false)
- prefs_add_string_with_data (TextGridEditor, align_language, 1, U"English")
- prefs_add_bool_with_data (TextGridEditor, align_includeWords, 1, true)
- prefs_add_bool_with_data (TextGridEditor, align_includePhonemes, 1, false)
- prefs_add_bool_with_data (TextGridEditor, align_allowSilences, 1, false)
- prefs_end (TextGridEditor)
- /* End of file TextGridEditor_prefs.h */
|