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
|
#ifndef _DemoEditor_h_
#define _DemoEditor_h_
/* DemoEditor.h
*
* 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 "Editor.h"
Thing_define (DemoEditor, Editor) {
// new data:
public:
GuiObject drawingArea;
Graphics graphics;
void *praatPicture;
bool clicked, keyPressed, shiftKeyPressed, commandKeyPressed, optionKeyPressed, extraControlKeyPressed;
long x, y;
wchar key;
bool waitingForInput, userWantsToClose, fullScreen;
// overridden methods:
virtual void v_destroy ();
virtual void v_info ();
virtual void v_goAway ();
virtual bool v_hasMenuBar () { return false; }
virtual bool v_canFullScreen () { return true; }
virtual bool v_scriptable () { return false; }
virtual void v_createChildren ();
virtual void v_createMenus ();
};
void DemoEditor_init (DemoEditor me, GuiObject parent);
DemoEditor DemoEditor_create (GuiObject parent);
void Demo_open (void);
void Demo_close (void);
struct autoDemoOpen {
autoDemoOpen () { Demo_open (); }
~autoDemoOpen () { Demo_close (); }
};
int Demo_windowTitle (const wchar_t *title);
int Demo_show (void);
void Demo_waitForInput (Interpreter interpreter);
bool Demo_clicked (void);
double Demo_x (void);
double Demo_y (void);
bool Demo_keyPressed (void);
wchar_t Demo_key (void);
bool Demo_shiftKeyPressed (void);
bool Demo_commandKeyPressed (void);
bool Demo_optionKeyPressed (void);
bool Demo_extraControlKeyPressed (void);
/* Shortcuts: */
bool Demo_input (const wchar_t *keys);
bool Demo_clickedIn (double left, double right, double bottom, double top);
/* End of file DemoEditor.h */
#endif
|