File: metacity-window-manager.h

package info (click to toggle)
control-center 1%3A2.8.2-3
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 19,208 kB
  • ctags: 3,408
  • sloc: ansic: 37,294; sh: 10,539; makefile: 844; xml: 18
file content (29 lines) | stat: -rw-r--r-- 980 bytes parent folder | download | duplicates (4)
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
#ifndef METACITY_WINDOW_MANAGER_H
#define METACITY_WINDOW_MANAGER_H

#include <glib-object.h>
#include "gnome-window-manager.h"

#define METACITY_WINDOW_MANAGER(obj)          G_TYPE_CHECK_INSTANCE_CAST (obj, metacity_window_manager_get_type (), MetacityWindowManager)
#define METACITY_WINDOW_MANAGER_CLASS(klass)  G_TYPE_CHECK_CLASS_CAST (klass, metacity_window_manager_get_type (), MetacityWindowManagerClass)
#define IS_METACITY_WINDOW_MANAGER(obj)       G_TYPE_CHECK_INSTANCE_TYPE (obj, metacity_window_manager_get_type ())

typedef struct _MetacityWindowManager MetacityWindowManager;
typedef struct _MetacityWindowManagerClass MetacityWindowManagerClass;

typedef struct _MetacityWindowManagerPrivate MetacityWindowManagerPrivate;

struct _MetacityWindowManager
{
	GnomeWindowManager parent;
	MetacityWindowManagerPrivate *p;
};

struct _MetacityWindowManagerClass
{
	GnomeWindowManagerClass klass;
};

GType      metacity_window_manager_get_type             (void);

#endif