2
Copyright (C) 2008 Christian Dywan <christian@twotoasts.de>
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.
9
See the file COPYING for the full license text.
12
#ifndef __MIDORI_APP_H__
13
#define __MIDORI_APP_H__
15
#include <katze/katze.h>
17
#include "midori-browser.h"
18
#include "midori-websettings.h"
19
#include "midori-trash.h"
23
#define MIDORI_TYPE_APP \
24
(midori_app_get_type ())
25
#define MIDORI_APP(obj) \
26
(G_TYPE_CHECK_INSTANCE_CAST ((obj), MIDORI_TYPE_APP, MidoriApp))
27
#define MIDORI_APP_CLASS(klass) \
28
(G_TYPE_CHECK_CLASS_CAST ((klass), MIDORI_TYPE_APP, MidoriAppClass))
29
#define MIDORI_IS_APP(obj) \
30
(G_TYPE_CHECK_INSTANCE_TYPE ((obj), MIDORI_TYPE_APP))
31
#define MIDORI_IS_APP_CLASS(klass) \
32
(G_TYPE_CHECK_CLASS_TYPE ((klass), MIDORI_TYPE_APP))
33
#define MIDORI_APP_GET_CLASS(obj) \
34
(G_TYPE_INSTANCE_GET_CLASS ((obj), MIDORI_TYPE_APP, MidoriAppClass))
36
typedef struct _MidoriApp MidoriApp;
37
typedef struct _MidoriAppPrivate MidoriAppPrivate;
38
typedef struct _MidoriAppClass MidoriAppClass;
42
GObject parent_instance;
44
MidoriAppPrivate* priv;
47
struct _MidoriAppClass
49
GObjectClass parent_class;
53
(*add_browser) (MidoriApp* app,
54
MidoriBrowser* browser);
56
(*quit) (MidoriApp* app);
60
midori_app_get_type (void);
63
midori_app_new (void);
66
midori_app_get_web_settings (MidoriApp* app);
69
midori_app_get_trash (MidoriApp* app);
73
#endif /* __MIDORI_APP_H__ */