~compiz-team/compiz/build-fixes-part-4-gconf

« back to all changes in this revision

Viewing changes to gtk/compiz-window-manager.h

  • Committer: David Reveman
  • Date: 2006-09-22 18:53:43 UTC
  • Revision ID: git-v1:e2e0e1da337ff426afa5192434b4465608ec728e
Move gnome specific files into gtk/gnome directory.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifndef COMPIZ_WINDOW_MANAGER_H
2
 
#define COMPIZ_WINDOW_MANAGER_H
3
 
 
4
 
#include <glib-object.h>
5
 
 
6
 
#include "gnome-window-manager.h"
7
 
 
8
 
#define COMPIZ_WINDOW_MANAGER(obj)                                      \
9
 
    G_TYPE_CHECK_INSTANCE_CAST (obj, compiz_window_manager_get_type (), \
10
 
                                CompizWindowManager)
11
 
 
12
 
#define COMPIZ_WINDOW_MANAGER_CLASS(klass)                             \
13
 
    G_TYPE_CHECK_CLASS_CAST (klass, compiz_window_manager_get_type (), \
14
 
                             MetacityWindowManagerClass)
15
 
 
16
 
#define IS_COMPIZ_WINDOW_MANAGER(obj)                                   \
17
 
    G_TYPE_CHECK_INSTANCE_TYPE (obj, compiz_window_manager_get_type ())
18
 
 
19
 
 
20
 
typedef struct _CompizWindowManager        CompizWindowManager;
21
 
typedef struct _CompizWindowManagerClass   CompizWindowManagerClass;
22
 
typedef struct _CompizWindowManagerPrivate CompizWindowManagerPrivate;
23
 
 
24
 
struct _CompizWindowManager {
25
 
    GnomeWindowManager         parent;
26
 
    CompizWindowManagerPrivate *p;
27
 
};
28
 
 
29
 
struct _CompizWindowManagerClass {
30
 
    GnomeWindowManagerClass klass;
31
 
};
32
 
 
33
 
GType
34
 
compiz_window_manager_get_type (void);
35
 
 
36
 
GObject *
37
 
window_manager_new (int expected_interface_version);
38
 
 
39
 
#endif