~midori/midori/trunk

« back to all changes in this revision

Viewing changes to panels/midori-extensions.h

  • Committer: Christian Dywan
  • Date: 2008-12-04 00:44:33 UTC
  • Revision ID: git-v1:e4f401c7e73a4844d5bc12177f3321bff3b38378
Implement new Extensions panel, in the new folder extensions

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 Copyright (C) 2008 Christian Dywan <christian@twotoasts.de>
 
3
 
 
4
 This library is free software; you can redistribute it and/or
 
5
 modify it under the terms of the GNU Lesser General Public
 
6
 License as published by the Free Software Foundation; either
 
7
 version 2.1 of the License, or (at your option) any later version.
 
8
 
 
9
 See the file COPYING for the full license text.
 
10
*/
 
11
 
 
12
#ifndef __MIDORI_EXTENSIONS_H__
 
13
#define __MIDORI_EXTENSIONS_H__
 
14
 
 
15
#include <gtk/gtk.h>
 
16
 
 
17
#include <katze/katze.h>
 
18
 
 
19
G_BEGIN_DECLS
 
20
 
 
21
#define MIDORI_TYPE_EXTENSIONS \
 
22
    (midori_extensions_get_type ())
 
23
#define MIDORI_EXTENSIONS(obj) \
 
24
    (G_TYPE_CHECK_INSTANCE_CAST ((obj), MIDORI_TYPE_EXTENSIONS, MidoriExtensions))
 
25
#define MIDORI_EXTENSIONS_CLASS(klass) \
 
26
    (G_TYPE_CHECK_CLASS_CAST ((klass), MIDORI_TYPE_EXTENSIONS, MidoriExtensionsClass))
 
27
#define MIDORI_IS_EXTENSIONS(obj) \
 
28
    (G_TYPE_CHECK_INSTANCE_TYPE ((obj), MIDORI_TYPE_EXTENSIONS))
 
29
#define MIDORI_IS_EXTENSIONS_CLASS(klass) \
 
30
    (G_TYPE_CHECK_CLASS_TYPE ((klass), MIDORI_TYPE_EXTENSIONS))
 
31
#define MIDORI_EXTENSIONS_GET_CLASS(obj) \
 
32
    (G_TYPE_INSTANCE_GET_CLASS ((obj), MIDORI_TYPE_EXTENSIONS, MidoriExtensionsClass))
 
33
 
 
34
typedef struct _MidoriExtensions                MidoriExtensions;
 
35
typedef struct _MidoriExtensionsClass           MidoriExtensionsClass;
 
36
 
 
37
GType
 
38
midori_extensions_get_type               (void);
 
39
 
 
40
GtkWidget*
 
41
midori_extensions_new                    (void);
 
42
 
 
43
G_END_DECLS
 
44
 
 
45
#endif /* __MIDORI_EXTENSIONS_H__ */