File: ww-layouts.h

package info (click to toggle)
winwrangler 0.2.4-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, jessie, jessie-kfreebsd, stretch
  • size: 1,612 kB
  • ctags: 169
  • sloc: sh: 10,265; ansic: 935; makefile: 96
file content (39 lines) | stat: -rw-r--r-- 1,420 bytes parent folder | download | duplicates (2)
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
/*
 * This file is part of WinWrangler.
 * Copyright (C) Mikkel Kamstrup Erlandsen 2008 <mikkel.kamstrup@gmail.com>
 *
 *  WinWrangler is free software: you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation, either version 3 of the License, or
 *  (at your option) any later version.
 *  
 *  WinWrangler is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with WinWranger.  If not, see <http://www.gnu.org/licenses/>.
 */

 
#ifndef _WW_LAYOUTS_H_
#define _WW_LAYOUTS_H_

G_BEGIN_DECLS

/* Macro to define a layout handler. Layout handlers should also be added 
 * to ww-layouts.c in the "layouts" array */
#define WW_LAYOUT_IMPL(layout) void layout (WnckScreen *screen, GList *windows, GList *struts, WnckWindow *active, GError **error);

WW_LAYOUT_IMPL(ww_layout_expand)
WW_LAYOUT_IMPL(ww_layout_tile)
WW_LAYOUT_IMPL(ww_layout_twothirds)
WW_LAYOUT_IMPL(ww_layout_switch_spatial_left)
WW_LAYOUT_IMPL(ww_layout_switch_spatial_right)
WW_LAYOUT_IMPL(ww_layout_switch_spatial_up)
WW_LAYOUT_IMPL(ww_layout_switch_spatial_down)

G_END_DECLS

#endif /* _WW_LAYOUTS_H_ */