aboutsummaryrefslogtreecommitdiffstats
path: root/matchbox2/mb-wm-layout.h
blob: 7d824ee88406e6b7dbdfc1ccb2cc143c3c0e8580 (plain)
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
/*
 *  Matchbox Window Manager II - A lightweight window manager not for the
 *                               desktop.
 *
 *  Authored By Matthew Allum <mallum@o-hand.com>
 *
 *  Copyright (c) 2005 OpenedHand Ltd - http://o-hand.com
 *
 *  This program 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 2, or (at your option)
 *  any later version.
 *
 *  This program 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.
 *
 */

#ifndef _HAVE_MB_WM_LAYOUT_MANAGER_H
#define _HAVE_MB_WM_LAYOUT_MANAGER_H

#include <matchbox2/mb-wm.h>

#define MB_WM_LAYOUT(c) ((MBWMLayout*)(c))
#define MB_WM_LAYOUT_CLASS(c) ((MBWMLayoutClass*)(c))
#define MB_WM_TYPE_LAYOUT (mb_wm_layout_class_type ())

struct MBWMLayout
{
  MBWMObject    parent;

  MBWindowManager *wm;
};

struct MBWMLayoutClass
{
  MBWMObjectClass parent;

  void (*update) (MBWMLayout *layout);

  void (*layout_panels) (MBWMLayout *layout, MBGeometry *avail_geom);
  void (*layout_input) (MBWMLayout *layout, MBGeometry *avail_geom);
  void (*layout_free) (MBWMLayout *layout, MBGeometry *avail_geom);
  void (*layout_fullscreen) (MBWMLayout *layout, MBGeometry *avail_geom);
};

int
mb_wm_layout_class_type ();

MBWMLayout*
mb_wm_layout_new (MBWindowManager *wm);

void
mb_wm_layout_update (MBWMLayout *layout);

/* These are intended for use by subclasses of MBWMLayout */

#define SET_X      (1<<1)
#define SET_Y      (1<<2)
#define SET_WIDTH  (1<<3)
#define SET_HEIGHT (1<<4)
#define SET_ALL    (SET_X|SET_Y|SET_WIDTH|SET_HEIGHT)

Bool
mb_wm_layout_maximise_geometry (MBGeometry *geom,
				MBGeometry *max,
				int         flags);

Bool
mb_wm_layout_clip_geometry (MBGeometry *geom,
			    MBGeometry *min,
			    int         flags);

#endif