File: operations.h

package info (click to toggle)
afterstep 2.2.12-18.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 33,184 kB
  • sloc: ansic: 201,695; sh: 5,894; xml: 3,721; makefile: 2,094; perl: 1,558; cpp: 811
file content (56 lines) | stat: -rw-r--r-- 1,194 bytes parent folder | download | duplicates (7)
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
#ifndef AS_COMMAND_OPS_HEADER_INCLUDED
#define AS_COMMAND_OPS_HEADER_INCLUDED

#include "../configure.h"
#include "asapp.h"

#include "../libAfterImage/afterimage.h"

#include "afterstep.h"
#include "screen.h"
#include "module.h"
#include "mystyle.h"
#include "mystyle_property.h"
#include "parser.h"
#include "clientprops.h"
#include "wmprops.h"
#include "decor.h"
#include "aswindata.h"
#include "balloon.h"
#include "event.h"
#include "shape.h"

#include "../libAfterBase/aslist.h"
#include "../libAfterBase/ashash.h"


void move_handler(ASWindowData *wd, void *data);
void resize_handler(ASWindowData *wd, void *data);
void kill_handler(ASWindowData *wd, void *data);
void jump_handler(ASWindowData *wd, void *data);
void ls_handler(ASWindowData *wd, void *data);
void iconify_handler(ASWindowData *wd, void *data);
void deiconify_handler(ASWindowData *wd, void *data);
void send_to_desk_handler(ASWindowData *wd, void *data);
void center_handler(ASWindowData *wd, void *data);
void raise_handler(ASWindowData *wd, void *data);


typedef struct
{
	int x, y;

} move_params;

typedef struct
{
	int width, height;

} resize_params;

typedef struct
{
	int desk;
} send_to_desk_params;

#endif