File: metacity.override

package info (click to toggle)
gnome-python-desktop 2.32.0%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 4,528 kB
  • ctags: 983
  • sloc: sh: 10,214; xml: 8,851; ansic: 3,428; python: 1,457; makefile: 664
file content (37 lines) | stat: -rw-r--r-- 735 bytes parent folder | download | duplicates (3)
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
/* -*- Mode: C; c-basic-offset: 4 -*- */
%%
headers
#include <Python.h>

#define NO_IMPORT_PYGOBJECT
#include <pygobject.h>

#include <metacity-private/preview-widget.h>
/* #include <metacity-private/enum-types.h> */
#include <metacity-private/theme-parser.h>

#include "config.h"

GType
meta_theme_get_type(void)
{
    static GType type = 0;

    if (!type)
	type = g_pointer_type_register_static("MetaTheme");
    return type;
}

#define META_TYPE_THEME (meta_theme_get_type())
%%
modulename metacity
%%
import gobject.GObject as PyGObject_Type
import gtk.gdk.Pixbuf as PyGdkPixbuf_Type
import gtk.Widget as PyGtkWidget_Type
import gtk.Bin as PyGtkBin_Type
import pango.Context as PyPangoContext_Type
%%
ignore-glob
 _*u
 *_get_type