1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357
|
/* DemoEditor.cpp
*
* Copyright (C) 2009-2011 Paul Boersma
*
* This program 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 program 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 program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include "DemoEditor.h"
#include "machine.h"
#include "praatP.h"
#include "UnicodeData.h"
Thing_implement (DemoEditor, Editor, 0);
static DemoEditor theDemoEditor;
/***** DemoEditor methods *****/
void structDemoEditor :: v_destroy () {
Melder_free (praatPicture);
forget (graphics);
theDemoEditor = NULL;
DemoEditor_Parent :: v_destroy ();
}
void structDemoEditor :: v_info () {
DemoEditor_Parent :: v_info ();
MelderInfo_writeLine2 (L"Colour: ", Graphics_Colour_name (((PraatPicture) praatPicture) -> colour));
MelderInfo_writeLine2 (L"Font: ", kGraphics_font_getText (((PraatPicture) praatPicture) -> font));
MelderInfo_writeLine2 (L"Font size: ", Melder_integer (((PraatPicture) praatPicture) -> fontSize));
}
void structDemoEditor :: v_goAway () {
if (waitingForInput) {
userWantsToClose = true;
} else {
DemoEditor_Parent :: v_goAway ();
}
}
void structDemoEditor :: v_createMenus () {
DemoEditor_Parent :: v_createMenus ();
}
static void gui_drawingarea_cb_expose (I, GuiDrawingAreaExposeEvent event) {
iam (DemoEditor);
(void) event;
if (my graphics == NULL) return; // Could be the case in the very beginning.
/*
* Erase the background. Don't record this erasure!
*/
Graphics_stopRecording (my graphics); // the only place in Praat (the Picture window has a separate Graphics for erasing)?
Graphics_setColour (my graphics, Graphics_WHITE);
Graphics_setWindow (my graphics, 0, 1, 0, 1);
Graphics_fillRectangle (my graphics, 0, 1, 0, 1);
Graphics_setColour (my graphics, Graphics_BLACK);
Graphics_startRecording (my graphics);
Graphics_play (my graphics, my graphics);
}
static void gui_drawingarea_cb_click (I, GuiDrawingAreaClickEvent event) {
iam (DemoEditor);
if (my graphics == NULL) return; // Could be the case in the very beginning.
if (gtk && event -> type != BUTTON_PRESS) return;
my clicked = true;
my keyPressed = false;
my x = event -> x;
my y = event -> y;
my key = UNICODE_BULLET;
my shiftKeyPressed = event -> shiftKeyPressed;
my commandKeyPressed = event -> commandKeyPressed;
my optionKeyPressed = event -> optionKeyPressed;
my extraControlKeyPressed = event -> extraControlKeyPressed;
}
static void gui_drawingarea_cb_key (I, GuiDrawingAreaKeyEvent event) {
iam (DemoEditor);
if (my graphics == NULL) return; // Could be the case in the very beginning.
my clicked = false;
my keyPressed = true;
my x = 0;
my y = 0;
my key = event -> key;
my shiftKeyPressed = event -> shiftKeyPressed;
my commandKeyPressed = event -> commandKeyPressed;
my optionKeyPressed = event -> optionKeyPressed;
my extraControlKeyPressed = event -> extraControlKeyPressed;
}
static void gui_drawingarea_cb_resize (I, GuiDrawingAreaResizeEvent event) {
iam (DemoEditor);
if (my graphics == NULL) return; // Could be the case in the very beginning.
Dimension marginWidth = 0, marginHeight = 0;
Graphics_setWsViewport (my graphics, marginWidth, event -> width - marginWidth, marginHeight, event -> height - marginHeight);
Graphics_setWsWindow (my graphics, 0, 100, 0, 100);
Graphics_setViewport (my graphics, 0, 100, 0, 100);
Graphics_updateWs (my graphics);
}
void structDemoEditor :: v_createChildren () {
drawingArea = GuiDrawingArea_createShown (d_windowForm, 0, 0, 0, 0,
gui_drawingarea_cb_expose, gui_drawingarea_cb_click, gui_drawingarea_cb_key, gui_drawingarea_cb_resize, this, 0);
#if gtk
gtk_widget_set_double_buffered (GTK_WIDGET (drawingArea), FALSE);
#endif
}
void DemoEditor_init (DemoEditor me, GuiObject parent) {
Editor_init (me, parent, 0, 0, 1024, 768, L"", NULL);
my graphics = Graphics_create_xmdrawingarea (my drawingArea);
Graphics_setColour (my graphics, Graphics_WHITE);
Graphics_setWindow (my graphics, 0, 1, 0, 1);
Graphics_fillRectangle (my graphics, 0, 1, 0, 1);
Graphics_setColour (my graphics, Graphics_BLACK);
Graphics_startRecording (my graphics);
//Graphics_setViewport (my graphics, 0, 100, 0, 100);
//Graphics_setWindow (my graphics, 0, 100, 0, 100);
//Graphics_line (my graphics, 0, 100, 100, 0);
struct structGuiDrawingAreaResizeEvent event = { my drawingArea, 0 };
event. width = GuiObject_getWidth (my drawingArea);
event. height = GuiObject_getHeight (my drawingArea);
gui_drawingarea_cb_resize (me, & event);
}
DemoEditor DemoEditor_create (GuiObject parent) {
try {
autoDemoEditor me = Thing_new (DemoEditor);
DemoEditor_init (me.peek(), parent);
return me.transfer();
} catch (MelderError) {
Melder_throw ("Demo window not created.");
}
}
void Demo_open (void) {
#ifndef CONSOLE_APPLICATION
if (Melder_batch) {
/*
* Batch scripts have to be able to run demos.
*/
//Melder_batch = false;
}
if (theDemoEditor == NULL) {
theDemoEditor = DemoEditor_create ((GuiObject) Melder_topShell);
Melder_assert (theDemoEditor != NULL);
//GuiObject_show (theDemoEditor -> d_windowForm);
theDemoEditor -> praatPicture = Melder_calloc_f (structPraatPicture, 1);
theCurrentPraatPicture = (PraatPicture) theDemoEditor -> praatPicture;
theCurrentPraatPicture -> graphics = theDemoEditor -> graphics;
theCurrentPraatPicture -> font = kGraphics_font_HELVETICA;
theCurrentPraatPicture -> fontSize = 10;
theCurrentPraatPicture -> lineType = Graphics_DRAWN;
theCurrentPraatPicture -> colour = Graphics_BLACK;
theCurrentPraatPicture -> lineWidth = 1.0;
theCurrentPraatPicture -> arrowSize = 1.0;
theCurrentPraatPicture -> x1NDC = 0;
theCurrentPraatPicture -> x2NDC = 100;
theCurrentPraatPicture -> y1NDC = 0;
theCurrentPraatPicture -> y2NDC = 100;
}
if (theDemoEditor -> waitingForInput)
Melder_throw ("You cannot work with the Demo window while it is waiting for input. "
"Please click or type into the Demo window or close it.");
theCurrentPraatPicture = (PraatPicture) theDemoEditor -> praatPicture;
#endif
}
void Demo_close (void) {
theCurrentPraatPicture = & theForegroundPraatPicture;
}
int Demo_windowTitle (const wchar_t *title) {
autoDemoOpen demo;
Thing_setName (theDemoEditor, title);
return 1;
}
int Demo_show (void) {
if (theDemoEditor == NULL) return 0;
autoDemoOpen demo;
GuiObject_show (theDemoEditor -> d_windowForm);
GuiWindow_drain (theDemoEditor -> d_windowShell);
return 1;
}
void Demo_waitForInput (Interpreter interpreter) {
if (theDemoEditor == NULL) return;
if (theDemoEditor -> waitingForInput) {
Melder_throw ("You cannot work with the Demo window while it is waiting for input. "
"Please click or type into the Demo window or close it.");
}
//GuiObject_show (theDemoEditor -> d_windowForm);
theDemoEditor -> clicked = false;
theDemoEditor -> keyPressed = false;
theDemoEditor -> waitingForInput = true;
#if ! defined (CONSOLE_APPLICATION)
{ // scope
autoMelderSaveDefaultDir saveDir;
bool wasBackgrounding = Melder_backgrounding;
if (wasBackgrounding) praat_foreground ();
try {
#if gtk
do {
gtk_main_iteration ();
} while (! theDemoEditor -> clicked && ! theDemoEditor -> keyPressed && ! theDemoEditor -> userWantsToClose);
#elif defined (_WIN32)
do {
XEvent event;
GuiNextEvent (& event);
XtDispatchEvent (& event);
} while (! theDemoEditor -> clicked && ! theDemoEditor -> keyPressed && ! theDemoEditor -> userWantsToClose);
#elif defined (macintosh)
#if useCarbon
do {
XEvent event;
GuiNextEvent (& event);
XtDispatchEvent (& event);
} while (! theDemoEditor -> clicked && ! theDemoEditor -> keyPressed && ! theDemoEditor -> userWantsToClose);
#else
#endif
#endif
} catch (MelderError) {
Melder_flushError ("An error made it to the outer level in the Demo window; should not occur! Please write to paul.boersma@uva.nl");
}
if (wasBackgrounding) praat_background ();
}
#endif
theDemoEditor -> waitingForInput = false;
if (theDemoEditor -> userWantsToClose) {
Interpreter_stop (interpreter);
forget (theDemoEditor);
Melder_throw ("You interrupted the script.");
}
}
bool Demo_clicked (void) {
if (theDemoEditor == NULL) return false;
if (theDemoEditor -> waitingForInput) {
Melder_throw ("You cannot work with the Demo window while it is waiting for input. "
"Please click or type into the Demo window or close it.");
}
return theDemoEditor -> clicked;
}
double Demo_x (void) {
if (theDemoEditor == NULL) return NUMundefined;
if (theDemoEditor -> waitingForInput) {
Melder_throw ("You cannot work with the Demo window while it is waiting for input. "
"Please click or type into the Demo window or close it.");
}
Graphics_setInner (theDemoEditor -> graphics);
double xWC, yWC;
Graphics_DCtoWC (theDemoEditor -> graphics, theDemoEditor -> x, theDemoEditor -> y, & xWC, & yWC);
Graphics_unsetInner (theDemoEditor -> graphics);
return xWC;
}
double Demo_y (void) {
if (theDemoEditor == NULL) return NUMundefined;
if (theDemoEditor -> waitingForInput) {
Melder_throw ("You cannot work with the Demo window while it is waiting for input. "
"Please click or type into the Demo window or close it.");
}
Graphics_setInner (theDemoEditor -> graphics);
double xWC, yWC;
Graphics_DCtoWC (theDemoEditor -> graphics, theDemoEditor -> x, theDemoEditor -> y, & xWC, & yWC);
Graphics_unsetInner (theDemoEditor -> graphics);
return yWC;
}
bool Demo_keyPressed (void) {
if (theDemoEditor == NULL) return false;
if (theDemoEditor -> waitingForInput) {
Melder_throw ("You cannot work with the Demo window while it is waiting for input. "
"Please click or type into the Demo window or close it.");
}
return theDemoEditor -> keyPressed;
}
wchar Demo_key (void) {
if (theDemoEditor == NULL) return 0;
if (theDemoEditor -> waitingForInput) {
Melder_throw ("You cannot work with the Demo window while it is waiting for input. "
"Please click or type into the Demo window or close it.");
}
return theDemoEditor -> key;
}
bool Demo_shiftKeyPressed (void) {
if (theDemoEditor == NULL) return false;
if (theDemoEditor -> waitingForInput) {
Melder_throw ("You cannot work with the Demo window while it is waiting for input. "
"Please click or type into the Demo window or close it.");
}
return theDemoEditor -> shiftKeyPressed;
}
bool Demo_commandKeyPressed (void) {
if (theDemoEditor == NULL) return false;
if (theDemoEditor -> waitingForInput) {
Melder_throw ("You cannot work with the Demo window while it is waiting for input. "
"Please click or type into the Demo window or close it.");
}
return theDemoEditor -> commandKeyPressed;
}
bool Demo_optionKeyPressed (void) {
if (theDemoEditor == NULL) return false;
if (theDemoEditor -> waitingForInput) {
Melder_throw ("You cannot work with the Demo window while it is waiting for input. "
"Please click or type into the Demo window or close it.");
}
return theDemoEditor -> optionKeyPressed;
}
bool Demo_extraControlKeyPressed (void) {
if (theDemoEditor == NULL) return false;
if (theDemoEditor -> waitingForInput) {
Melder_throw ("You cannot work with the Demo window while it is waiting for input. "
"Please click or type into the Demo window or close it.");
}
return theDemoEditor -> extraControlKeyPressed;
}
bool Demo_input (const wchar_t *keys) {
if (theDemoEditor == NULL) return false;
if (theDemoEditor -> waitingForInput) {
Melder_throw ("You cannot work with the Demo window while it is waiting for input. "
"Please click or type into the Demo window or close it.");
}
return wcschr (keys, theDemoEditor -> key) != NULL;
}
bool Demo_clickedIn (double left, double right, double bottom, double top) {
if (theDemoEditor == NULL || ! theDemoEditor -> clicked) return false;
if (theDemoEditor -> waitingForInput) {
Melder_throw ("You cannot work with the Demo window while it is waiting for input. "
"Please click or type into the Demo window or close it.");
}
double xWC = Demo_x (), yWC = Demo_y ();
return xWC >= left && xWC < right && yWC >= bottom && yWC < top;
}
/* End of file DemoEditor.cpp */
|