comparison libgui/src/octave-adapter/octave-event-observer.h @ 15196:017f0b2e6933

rename gui directory to libgu * libgui: Rename from gui. * .hgsub (libgui/qterminal): Rename from gui/qterminal. * Makefile.am (GUIDIR): Set to libgui instead of gui if AMCOND_BUILD_GUI is true. * configure.ac (AC_CONFIG_FILES): Update list for directory renaming. * Makefile.am (.NOTPARALLEL): Delete. List octave.html/index.html as the primary HTML target, not octave.html. (octave.html): New target for making the octave.html directory. (octave.pdf): Depend on octave.dvi. * images.awk: In generated rules for png files, depend on octave.html, not octave.html/index.html. * src/Makefile.am (OCTAVE_GUI_CPPFLAGS, OCTAVE_GUI_LIBS): Update for directory renaming. (CLEANFILES): Fix typo. * fntests.m (src_tree): Use libinterp, not src.
author John W. Eaton <jwe@octave.org>
date Sat, 18 Aug 2012 18:10:09 -0400
parents gui/src/octave-adapter/octave-event-observer.h@cecc7da96e2a
children 359098ad343e
comparison
equal deleted inserted replaced
15195:2fc554ffbc28 15196:017f0b2e6933
1 /* OctaveGUI - A graphical user interface for Octave
2 * Copyright (C) 2011 Jacob Dawid (jacob.dawid@googlemail.com)
3 *
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as
6 * published by the Free Software Foundation, either version 3 of the
7 * License, or (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
16 */
17
18 #ifndef OCTAVEEVENTOBSERVER_H
19 #define OCTAVEEVENTOBSERVER_H
20
21 class octave_event;
22
23 /**
24 * \class octave_event_observer
25 * \brief Implements the observer part for the observer pattern.
26 */
27 class octave_event_observer
28 {
29 public:
30 octave_event_observer () { }
31 virtual ~octave_event_observer () { }
32
33 /**
34 * This will be called when an event has been accepted. Operations
35 * in this routine will be processed in the octave thread.
36 */
37 virtual void event_accepted (octave_event *e) = 0;
38
39 /**
40 * This will be called when an event has been rejected. Operations
41 * in this routine will be processed in the octave thread.
42 */
43 virtual void event_reject (octave_event *e) = 0;
44 };
45
46 #include "octave-event.h"
47
48 #endif // OCTAVEEVENTOBSERVER_H