File: regions.h

package info (click to toggle)
vtwm 5.4.7-5
  • links: PTS
  • area: main
  • in suites: bullseye, buster, stretch
  • size: 2,596 kB
  • ctags: 1,969
  • sloc: ansic: 20,457; yacc: 992; sh: 212; lex: 111; makefile: 70
file content (76 lines) | stat: -rw-r--r-- 2,139 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/*
 * Copyright 1989 Massachusetts Institute of Technology
 *
 * Permission to use, copy, modify, and distribute this software and its
 * documentation for any purpose and without fee is hereby granted, provided
 * that the above copyright notice appear in all copies and that both that
 * copyright notice and this permission notice appear in supporting
 * documentation, and that the name of M.I.T. not be used in advertising
 * or publicity pertaining to distribution of the software without specific,
 * written prior permission.  M.I.T. makes no representations about the
 * suitability of this software for any purpose.  It is provided "as is"
 * without express or implied warranty.
 *
 * M.I.T. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL M.I.T.
 * BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN 
 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 */

/**********************************************************************
 *
 * regions.h (was icons.h)
 *
 * Region related definitions
 *
 * 4/26/99 D. J. Hawkey Jr.
 *
 **********************************************************************/

#ifndef REGIONS_H
#define REGIONS_H

#define USEDBY_TWIN 1
#define USEDBY_NAME 2

/* djhjr - 10/20/01 */
#ifndef NO_REGEX_SUPPORT
#include <sys/types.h>
#include <regex.h>
#endif

typedef struct RootRegion
{
    struct RootRegion	*next;
    int			x, y, w, h;
    int			grav1, grav2;
    int			stepx, stepy;
    struct RegionEntry	*entries;
} RootRegion;

typedef struct RegionEntry
{
    struct RegionEntry	*next;
    int			x, y, w, h;

    /* icons use twm_win, applets use both - djhjr - 4/26/99 */
    union
    {
        TwmWindow	*twm_win;
        char		*name;
    } u;

/* djhjr - 10/20/01 */
#ifndef NO_REGEX_SUPPORT
    regex_t		re;
#else
    char		re;
#endif
    short 		type;

    short 		usedby;
} RegionEntry;

#endif /* REGIONS_H */