1 | /* |
---|
2 | * neercs console-based window manager |
---|
3 | * Copyright (c) 2006 Sam Hocevar <sam@zoy.org> |
---|
4 | * 2008 Jean-Yves Lamoureux <jylam@lnxscene.org> |
---|
5 | * All Rights Reserved |
---|
6 | * |
---|
7 | * $Id: neercs.h 2382 2008-06-13 21:40:40Z pterjan $ |
---|
8 | * |
---|
9 | * This program is free software. It comes without any warranty, to |
---|
10 | * the extent permitted by applicable law. You can redistribute it |
---|
11 | * and/or modify it under the terms of the Do What The Fuck You Want |
---|
12 | * To Public License, Version 2, as published by Sam Hocevar. See |
---|
13 | * http://sam.zoy.org/wtfpl/COPYING for more details. |
---|
14 | */ |
---|
15 | |
---|
16 | #include <stdint.h> |
---|
17 | #include <cucul.h> |
---|
18 | |
---|
19 | enum wm_types |
---|
20 | { |
---|
21 | WM_FULL, |
---|
22 | WM_CARD, |
---|
23 | WM_HSPLIT, |
---|
24 | WM_VSPLIT, |
---|
25 | |
---|
26 | WM_MAX, |
---|
27 | }; |
---|
28 | |
---|
29 | struct screen |
---|
30 | { |
---|
31 | /* Graphics stuff */ |
---|
32 | int init; |
---|
33 | cucul_canvas_t *cv; |
---|
34 | uint32_t clearattr; |
---|
35 | uint8_t fg, bg; /* ANSI-context fg/bg */ |
---|
36 | uint8_t dfg, dbg; /* Default fg/bg */ |
---|
37 | uint8_t bold, blink, italics, negative, concealed, underline; |
---|
38 | uint8_t faint, strike, proportional; /* unsupported */ |
---|
39 | |
---|
40 | /* Other stuff */ |
---|
41 | int fd; |
---|
42 | unsigned char *buf; |
---|
43 | char *title; |
---|
44 | long int total; |
---|
45 | int bell; |
---|
46 | int pid; |
---|
47 | |
---|
48 | int x, y; |
---|
49 | int w, h; |
---|
50 | }; |
---|
51 | |
---|
52 | struct screen_list |
---|
53 | { |
---|
54 | int wm_type; |
---|
55 | int in_bell; |
---|
56 | int count; |
---|
57 | int width, height; |
---|
58 | struct screen **screen; |
---|
59 | }; |
---|
60 | |
---|
61 | |
---|
62 | |
---|
63 | long int import_term(struct screen_list *screen_list, struct screen *sc, void const *data, unsigned int size); |
---|
64 | int set_tty_size(int fd, unsigned int w, unsigned int h); |
---|
65 | |
---|
66 | |
---|
67 | /* Screens management */ |
---|
68 | struct screen* create_screen(int w, int h, char *command); |
---|
69 | int destroy_screen(struct screen *s); |
---|
70 | int add_screen(struct screen_list *list, struct screen *s); |
---|
71 | int remove_screen(struct screen_list *list, int n, int please_kill); |
---|
72 | void resize_screen(struct screen *s, int z, int h); |
---|
73 | |
---|
74 | /* Window managers */ |
---|
75 | void update_windows_props(cucul_canvas_t *cv, struct screen_list *screen_list, int pty); |
---|
76 | void update_windows_props_cards(cucul_canvas_t *cv, struct screen_list *screen_list, int pty); |
---|
77 | void update_windows_props_hsplit(cucul_canvas_t *cv, struct screen_list *screen_list, int pty); |
---|
78 | void update_windows_props_full(cucul_canvas_t *cv, struct screen_list *screen_list, int pty); |
---|
79 | void update_windows_props_vsplit(cucul_canvas_t *cv, struct screen_list *screen_list, int pty); |
---|
80 | |
---|
81 | /* Effects and addons */ |
---|
82 | void draw_thumbnails(cucul_canvas_t *cv, struct screen_list *screen_list, int pty); |
---|
83 | void draw_status(cucul_canvas_t *cv, struct screen_list *screen_list, int pty); |
---|
84 | void draw_help(cucul_canvas_t *cv, struct screen_list *screen_list, int pty); |
---|
85 | |
---|
86 | |
---|
87 | |
---|
88 | |
---|
89 | #if 0 |
---|
90 | # define debug(f, z...) fprintf(stderr, f "\n", z) |
---|
91 | #else |
---|
92 | # define debug(f, z...) do {} while(0) |
---|
93 | #endif |
---|
94 | |
---|