Update TCL libraries link and restrict tcl8.6 only to SuSE.
[oweals/cde.git] / cde / programs / nsgmls / ArcEngine.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: ArcEngine.h /main/1 1996/07/29 16:46:15 cde-hp $ */
24 // Copyright (c) 1996 James Clark
25 // See the file COPYING for copying permission.
26
27 #ifndef ArcEngine_INCLUDED
28 #define ArcEngine_INCLUDED 1
29
30 #ifdef __GNUG__
31 #pragma interface
32 #endif
33
34 #include "Event.h"
35 #include "Vector.h"
36 #include "SgmlParser.h"
37 #include <stddef.h>
38
39 #ifdef SP_NAMESPACE
40 namespace SP_NAMESPACE {
41 #endif
42
43 class SP_API ArcDirector {
44 public:
45   virtual EventHandler *arcEventHandler(const Notation *,
46                                         const Vector<StringC> &,
47                                         const SubstTable<Char> *) = 0;
48 };
49
50 class SP_API SelectOneArcDirector : public ArcDirector, public Messenger {
51 public:
52   SelectOneArcDirector(const Vector<StringC> &select, EventHandler &eh)
53     : select_(select), eh_(&eh) { }
54   EventHandler *arcEventHandler(const Notation *,
55                                 const Vector<StringC> &,
56                                 const SubstTable<Char> *);
57   void dispatchMessage(const Message &);
58   void dispatchMessage(Message &);
59 private:
60   Vector<StringC> select_;
61   EventHandler *eh_;
62 };
63
64 class SP_API ArcEngine {
65 public:
66   static void parseAll(SgmlParser &,
67                        Messenger &,
68                        ArcDirector &,
69                        SP_CONST SP_VOLATILE sig_atomic_t *cancelPtr = 0);
70 private:
71   ArcEngine();
72 };
73
74 #ifdef SP_NAMESPACE
75 }
76 #endif
77
78 #endif /* not ArcEngine_INCLUDED */