123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- /* main_Praat.cpp
- *
- * Copyright (C) 1992-2008,2010-2017 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 "../sys/praat.h"
- #include "../sys/praat_version.h"
- static void logo (Graphics graphics) {
- Graphics_setWindow (graphics, 0.0, 1.0, 0.0, 0.8);
- Graphics_setTextAlignment (graphics, Graphics_CENTRE, Graphics_HALF);
- Graphics_setFont (graphics, kGraphics_font::TIMES);
- Graphics_setFontSize (graphics, 45);
- Graphics_setColour (graphics, Graphics_MAROON);
- Graphics_text (graphics, 0.385, 0.66, U"P");
- Graphics_text (graphics, 0.448, 0.66, U"\\s{R}");
- Graphics_text (graphics, 0.510, 0.66, U"\\s{A}");
- Graphics_text (graphics, 0.575, 0.66, U"\\s{A}");
- Graphics_text (graphics, 0.628, 0.66, U"\\s{T}");
- Graphics_setFontSize (graphics, 15);
- Graphics_text (graphics, 0.5, 0.55, U"%%doing phonetics by computer");
- #define xstr(s) str(s)
- #define str(s) #s
- Graphics_text (graphics, 0.5, 0.45, U"version " xstr(PRAAT_VERSION_STR));
- Graphics_setColour (graphics, Graphics_BLACK);
- Graphics_setFontSize (graphics, 14);
- Graphics_text (graphics, 0.5, 0.33, U"www.praat.org");
- Graphics_setFont (graphics, kGraphics_font::HELVETICA);
- Graphics_setFontSize (graphics, 10);
- Graphics_text (graphics, 0.5, 0.16, U"Copyright © 1992–" xstr(PRAAT_YEAR) " by Paul Boersma and David Weenink");
- }
- int main (int argc, char *argv []) {
- try {
- praat_setLogo (130.0, 80.0, logo);
- praat_init (U"Praat", argc, argv);
- INCLUDE_LIBRARY (praat_uvafon_init)
- INCLUDE_LIBRARY (praat_contrib_Ola_KNN_init)
- praat_run ();
- } catch (MelderError) {
- Melder_flushError (U"This error message percolated all the way to the top."); // an attempt to catch Apache errors
- }
- return 0;
- }
- /* End of file main_Praat.cpp */
|