aboutsummaryrefslogtreecommitdiffstats
path: root/matchbox/core/mb-wm-layout.h
blob: 51aaea5962c8d798650639e00f5002b2526612f8 (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
/*
 *  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
 *
 *  SPDX-License-Identifier: GPL-2.0-or-later
 *
 */

#ifndef _HAVE_MB_WM_LAYOUT_MANAGER_H
#define _HAVE_MB_WM_LAYOUT_MANAGER_H

#include <matchbox/core/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