This file is indexed.

/usr/include/libAfterBase/layout.h is in libafterimage-dev 2.2.12-11.1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
#ifndef AS_LAYOUT_H_HEADER_FILE
#define AS_LAYOUT_H_HEADER_FILE

#ifdef __cplusplus
extern "C" {
#endif

/****h* afterstep/libAfterBase/layout.h
 * SYNOPSIS
 * Defines main structures and function for handling of complex layout
 * of diverse elements.
 * DESCRIPTION
 * The need for this interface comes from the fact that there is a need
 * to place multiple elements within the window, with different
 * characteristics, like fixed width/height, overlapping elements, etc.
 *
 * We define layout (MyLayout) as a two-dimensional grid of rows and
 * columns, on the crossing points of which layout elements (MyLayoutElem)
 * are located. Some of the crossings may be empty, some elements may
 * span several rows and/or columns. Some elements may have fixed size,
 * like icons for example, or height of the text label. In that case
 * depending on spanning situation entire column/row may be declared as
 * having fixed width/height.
 *
 * Entire layout maybe resized and/or its individual elements may be
 * resized, in which case we have dynamically adjust position and sizes
 * of adjusent elements.
 *
 * SEE ALSO
 * Structures :
 *          MyLayoutElem
 *          MyLayout
 *
 * Functions :
 *
 *
 * Other libAfterBase modules :
 *          safemalloc.h
 * AUTHOR
 * Sasha Vasko <sasha at aftercode.net>
 ******
 */

#define LF_FixedWidth           (0x01<<0)
#define LF_FixedHeight          (0x01<<1)
#define LF_FixedSize            (LF_FixedWidth|LF_FixedHeight)


typedef struct ASLayoutElem
{
    unsigned char flags ;
    unsigned char bw ;
    unsigned char h_span, v_span ;/* number of grid elements we occupy
                                   * we need that to facilitate overlapping
                                   */
    short x, y ;
    unsigned short width, height ;/* current width and height */
    unsigned short fixed_width, fixed_height ;

	unsigned char row, column ;
	unsigned char padding[2] ;
    int context;
    struct ASLayoutElem *right, *below ;
}ASLayoutElem;

typedef struct ASLayout
{/* we allocate entire memory at once, and then distribute it among other members */
 /* relative to the parent window */
    int offset_east, offset_north, offset_west, offset_south ;
    int x, y ;
    unsigned int width, height ;
    unsigned short h_border, v_border, h_spacing, v_spacing ;

#define ASLAYOUT_MAX_SIZE       64       /* 64x64 seems like a huge grid, */
                                         /* should be ample for anything  */
    unsigned short dim_x, dim_y, count ;

    ASLayoutElem **rows, **cols;         /* 2 dimensional array of pointers */
	ASLayoutElem *disabled ;             /* elements that has been
										  * temporarily taken out of
										  * the circulation */
}ASLayout;

/****h* afterstep/libAfterBase/ASGrid
 * SYNOPSIS
 * Suplimental data structure to facilitate things like AvoidCover, etc.
 * SOURCE
 */
typedef struct ASGridLine
{
	struct ASGridLine *next ;
#define ASGL_Vertical  (0x01<<0)	
#define ASGL_Absolute  (0x01<<1)	
	unsigned long flags;
	
	short band ;                               /* second coordinate ( same on both ends ) */
	short start, end ;                         /* inclusive ends of the line */

	/* If gravity is positive - then it signifies distance from which we
	 * can attract window if its speed is below threshold:
	 *
	 *  Distance = ( speed > 0 )? (gravity / speed) : 0 ;
	 *
	 * If gravity is negative - then it signifies minimum distance onto
	 * which we can approach this line. For instance if line is bottom
	 * of the AvoidCover window then above_gravity should be the (-height)
	 * of the window.
	 */
	short gravity_above ;
	short gravity_below ;
	short reserved;
}ASGridLine;

typedef struct ASGrid
{
	/* lists ordered by end !!! : */
	ASGridLine *h_lines ;
	ASGridLine *v_lines ;

	/* hard boundary that we cannot cross !!! */
	short min_x, max_x ;
	short min_y, max_y ;
	/* virtual coordinates : if gridLine has no Absolute flag set - 
	   it's coordinates are virtual and will be adjusted by these: */
	short curr_vx, curr_vy;
}ASGrid;
/*
 ******
 */



ASLayout *create_aslayout( unsigned int dim_x, unsigned int dim_y );
void destroy_aslayout( ASLayout **playout );


void insert_layout_elem( ASLayout *layout, ASLayoutElem *elem,
		    		     unsigned int h_slot, unsigned int v_slot,
                 	     unsigned int h_span, unsigned int v_span );
ASLayoutElem *gather_layout_elems( ASLayout *layout );
ASLayoutElem *extract_layout_context( ASLayout *layout, int context );
ASLayoutElem *find_layout_context( ASLayout *layout, int context );

void flush_layout_elems( ASLayout *layout );

void disable_layout_elem( ASLayout *layout, ASLayoutElem **pelem );
void enable_layout_elem( ASLayout *layout, ASLayoutElem **pelem );
int  disable_layout_context( ASLayout *layout, int context, Bool batch );
int  enable_layout_context( ASLayout *layout, int context, Bool batch );


Bool set_layout_spacing( ASLayout *layout,
	                     unsigned int h_border, unsigned int v_border,
						 unsigned int h_spacing, unsigned int v_spacing );
Bool set_layout_offsets( ASLayout *layout,
	                     int east, int north, int west, int south );

/* fixed size handling : */
void get_layout_fixed_size( ASLayout *layout,
	                        CARD32 *fixed_width,
	                        CARD32 *fixed_height );
Bool get_layout_context_fixed_frame( ASLayout *layout,
									 int context,
									 int *north, int *east,
									 int *south, int *west );
Bool get_layout_context_size( ASLayout *layout, int context,
	                          int *x, int *y,
							  unsigned int *width, unsigned int *height );
ASLayoutElem *find_layout_point( ASLayout *layout, int x, int y, ASLayoutElem *start );


ASFlagType set_layout_context_fixed_size( ASLayout *layout, int context,
			                              unsigned int width,
										  unsigned int height,
										  unsigned short flags );

Bool moveresize_layout( ASLayout *layout,
	                    unsigned int width, unsigned int height,
						Bool force );

void grid_coords2real (ASGrid *g, ASGridLine *l, int *band,  int *start, int *end);

ASGridLine *add_gridline( ASGrid *grid,
	                      short band, short start, short end,
             			  short gravity_above, short gravity_below, unsigned long flags);

void make_layout_grid( ASLayout *layout, ASGrid *grid,
					   int origin_x, int origin_y,
	                   short gravity );
void print_asgrid( ASGrid *grid );
void destroy_asgrid( ASGrid *grid, Bool reusable );

#ifdef __cplusplus
}
#endif

#endif  /* AS_LAYOUT_H_HEADER_FILE */