libDtSearch: Remove optional code for NO_DBN which is not used on CDE
[oweals/cde.git] / cde / programs / nsgmls / EventQueue.h
1 /*
2  * CDE - Common Desktop Environment
3  *
4  * Copyright (c) 1993-2012, The Open Group. All rights reserved.
5  *
6  * These libraries and programs are free software; you can
7  * redistribute them and/or modify them under the terms of the GNU
8  * Lesser General Public License as published by the Free Software
9  * Foundation; either version 2 of the License, or (at your option)
10  * any later version.
11  *
12  * These libraries and programs are distributed in the hope that
13  * they will be useful, but WITHOUT ANY WARRANTY; without even the
14  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15  * PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with these libraries and programs; if not, write
20  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
21  * Floor, Boston, MA 02110-1301 USA
22  */
23 /* $XConsortium: EventQueue.h /main/1 1996/07/29 16:51:33 cde-hp $ */
24 // Copyright (c) 1994 James Clark
25 // See the file COPYING for copying permission.
26
27 #ifndef EventQueue_INCLUDED
28 #define EventQueue_INCLUDED 1
29
30 #include "IQueue.h"
31 #include "Event.h"
32
33 #ifdef SP_NAMESPACE
34 namespace SP_NAMESPACE {
35 #endif
36
37 class EventQueue : public EventHandler, public IQueue<Event> {
38 public:
39   EventQueue();
40 private:
41 #define EVENT(c, f) void f(c *);
42 #include "events.h"
43 #undef EVENT
44   void append(Event *);
45 };
46
47 class Pass1EventHandler : public EventQueue {
48 public:
49   Pass1EventHandler();
50   void init(EventHandler *origHandler);
51   void message(MessageEvent *);
52   Boolean hadError() const;
53   EventHandler *origHandler() const;
54 private:
55   Boolean hadError_;
56   EventHandler *origHandler_;
57 };
58
59 inline
60 void EventQueue::append(Event *event)
61 {
62   IQueue<Event>::append(event);
63 }
64
65 inline
66 Boolean Pass1EventHandler::hadError() const
67 {
68   return hadError_;
69 }
70
71 inline
72 EventHandler *Pass1EventHandler::origHandler() const
73 {
74   return origHandler_;
75 }
76
77 #ifdef SP_NAMESPACE
78 }
79 #endif
80
81 #endif /* not EventQueue_INCLUDED */