Convert uses of XKeycodeToKeysym (deprecated) to XkbKeycodeToKeysym
[oweals/cde.git] / cde / programs / dtinfo / dtinfo / src / UAS / DtSR / DtSR_SearchZones.C
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: DtSR_SearchZones.C /main/6 1996/09/14 09:18:57 barstow $
24
25 #include <string.h>
26
27 #if defined(_AIX)
28 #include <strings.h>            // strcasecmp()
29 #endif
30
31 #include "DtSR_SearchZones.hh"
32
33 DtSR_SearchZones::uas_zones
34 DtSR_SearchZones::keytype2zone(const char key)
35 {
36     switch (key) {
37         case 'D' :
38             return uas_bodies;
39         case 'H' :
40             return uas_titles;
41         case 'G' :
42             return uas_graphics;
43         case 'E' :
44             return uas_examples;
45         case 'I' :
46             return uas_indexes;
47         case 'T' :
48             return uas_tables;
49         case 'A' :
50             return uas_all;
51         default  :
52             break;
53     }
54     return uas_inv;
55 }
56
57 DtSR_SearchZones::uas_zones
58 DtSR_SearchZones::zonename2zone(const char* name)
59 {
60     if (! strcasecmp(name, "TITLE"))
61         return UAS_SearchZones::uas_titles;
62     if (! strcasecmp(name, "EXAMPLE"))
63         return UAS_SearchZones::uas_examples;
64     if (! strcasecmp(name, "INDEX"))
65         return UAS_SearchZones::uas_indexes;
66     if (! strcasecmp(name, "TABLE"))
67         return UAS_SearchZones::uas_tables;
68     if (! strcasecmp(name, "GRAPHIC"))
69         return UAS_SearchZones::uas_graphics;
70
71     return UAS_SearchZones::uas_inv;
72 }