~midori/midori/cmake-make-dist

« back to all changes in this revision

Viewing changes to src/midori-app.h

  • Committer: Christian Dywan
  • Date: 2008-06-01 21:47:27 UTC
  • Revision ID: git-v1:b511f12b9b4b063610161f2229b94a24a86be0fc
Rename folder 'src' to 'midori'

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_APP_H__
13
 
#define __MIDORI_APP_H__
14
 
 
15
 
#include <katze/katze.h>
16
 
 
17
 
#include "midori-browser.h"
18
 
#include "midori-websettings.h"
19
 
#include "midori-trash.h"
20
 
 
21
 
G_BEGIN_DECLS
22
 
 
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))
35
 
 
36
 
typedef struct _MidoriApp                MidoriApp;
37
 
typedef struct _MidoriAppPrivate         MidoriAppPrivate;
38
 
typedef struct _MidoriAppClass           MidoriAppClass;
39
 
 
40
 
struct _MidoriApp
41
 
{
42
 
    GObject parent_instance;
43
 
 
44
 
    MidoriAppPrivate* priv;
45
 
};
46
 
 
47
 
struct _MidoriAppClass
48
 
{
49
 
    GObjectClass parent_class;
50
 
 
51
 
    /* Signals */
52
 
    void
53
 
    (*add_browser)            (MidoriApp*     app,
54
 
                               MidoriBrowser* browser);
55
 
    void
56
 
    (*quit)                   (MidoriApp* app);
57
 
};
58
 
 
59
 
GType
60
 
midori_app_get_type               (void);
61
 
 
62
 
MidoriApp*
63
 
midori_app_new                    (void);
64
 
 
65
 
MidoriWebSettings*
66
 
midori_app_get_web_settings       (MidoriApp* app);
67
 
 
68
 
MidoriTrash*
69
 
midori_app_get_trash              (MidoriApp* app);
70
 
 
71
 
G_END_DECLS
72
 
 
73
 
#endif /* __MIDORI_APP_H__ */