1 #include <glib/gi18n.h>
3 #include <glade/glade.h>
4 #include <glib/gstdio.h>
5 #include <pango/pango-utils.h>
11 /* Paths to files and directories */
12 #define DISTPATH "distfiles" /* This is the output direcory for new distfiles */
13 #define LOCALEDIR "locale" /* This is the directory for localizations */
14 #define PINYINPATH "pinyin" /* Here we store the common audioexamples */
15 #define PITCHPATH "PitchTiers" /* This is the temporary output for praatscripts */
16 #define RECORDPATH "records" /* Here we store the voice recordings */
17 #define GLADESOURCE "sgc.glade" /* Filename that stores the Glade GUI */
18 #define CONFIGFILE "sgc.ini" /* Filename that stores the configuration file */
19 #define SCRIPTPATH "SGC_ToneProt" /* This is the recognizer path for SGC */
20 #define WORDLISTS "wordlists" /* This is the directory with wordlists */
21 #define TESTFILE "tests.txt" /* If everything fails use this filename */
24 /* Hardcodec configs */
25 #define MAXTESTS 0 /* Maximum amount of word splits from a file */
27 #define RECORDTIME 3.5 /* Amount of time to record */
28 // #define LASTEXAMPLE 1 /* Play last example, instead of last recording */
30 /* Use our own PitchTier Parser, or use the one that was copied from praat.
31 * On windows we use this one because of compatibility issues
35 #define PRAATEXTERNAL 1
37 /* Which binary do we need to invoke in order to start a script */
39 #define PRAATBIN "praatcon.exe"
41 #define PRAATBIN "./praat.ppc"
43 #define PRAATBIN "./praat"
47 extern gdouble upperRegister
;
49 gpointer
sound_init(void *args
);
50 gpointer
play(void *args
);
51 gpointer
example(void *args
);
52 gpointer
record(void *args
);
54 void drawPitchTier(cairo_t
*cr
, gchar
*filename
, gint width
, gint height
, gdouble top
);
56 void on_buttonNext_clicked(GtkWidget
*widget
, gpointer user_data
);
57 void on_treeview_edited (GtkCellRendererText
*celltext
, const gchar
*string_path
, const gchar
*new_text
, gpointer data
);
58 void on_windowMain_realize(GtkWidget
*widget
, gpointer user_data
);
61 void create_list_view();
63 void add_entry(gchar
*txt
);
65 void fileOpen(gchar
*filename
);
66 void fileSave(gchar
*filename
);
77 GtkListStore
*liststore
;
84 gboolean
next(GtkWidget
*next
);
85 gboolean
prev(GtkWidget
*prev
);
86 void removeRecordings();
87 void setBase(gchar
*newbase
);
88 void setFile(gchar
*newfile
);
93 gboolean
openSGC(gchar
*oldfilename
);
94 void saveSGC(gchar
*dir
, gchar
*path
);