comparison anagram/vaclgui/actionwin.hpp @ 0:13d2b8934445

Import AnaGram (near-)release tree into Mercurial.
author David A. Holland
date Sat, 22 Dec 2007 17:52:45 -0500
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:13d2b8934445
1 /*
2 * AnaGram, A System for Syntax Directed Programming
3 * Copyright 1997-2002 Parsifal Software. All Rights Reserved.
4 * See the file COPYING for license and usage terms.
5 *
6 * actionwin.hpp
7 */
8
9 #ifndef ACTIONWIN_HPP
10 #define ACTIONWIN_HPP
11
12 #include <ihandler.hpp>
13 #include <iobjwin.hpp>
14
15 #include "action.h"
16
17
18 class ActionWindow
19 : public IObjectWindow
20 , public IHandler
21 {
22 public:
23 ActionWindow () { handleEventsFor(this); }
24 ~ActionWindow() { stopHandlingEventsFor(this); }
25 Boolean dispatchHandlerEvent(IEvent &event);
26 };
27
28 //IObjectWindow *openObjectWindow();
29 //void closeObjectWindow();
30
31
32 #endif /* ACTIONWIN_HPP */
33