~midori/midori/cmake-make-dist

« back to all changes in this revision

Viewing changes to midori/midori-console.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_CONSOLE_H__
 
13
#define __MIDORI_CONSOLE_H__
 
14
 
 
15
#include <gtk/gtk.h>
 
16
 
 
17
#include <katze/katze.h>
 
18
 
 
19
G_BEGIN_DECLS
 
20
 
 
21
#define MIDORI_TYPE_CONSOLE \
 
22
    (midori_console_get_type ())
 
23
#define MIDORI_CONSOLE(obj) \
 
24
    (G_TYPE_CHECK_INSTANCE_CAST ((obj), MIDORI_TYPE_CONSOLE, MidoriConsole))
 
25
#define MIDORI_CONSOLE_CLASS(klass) \
 
26
    (G_TYPE_CHECK_CLASS_CAST ((klass), MIDORI_TYPE_CONSOLE, MidoriConsoleClass))
 
27
#define MIDORI_IS_CONSOLE(obj) \
 
28
    (G_TYPE_CHECK_INSTANCE_TYPE ((obj), MIDORI_TYPE_CONSOLE))
 
29
#define MIDORI_IS_CONSOLE_CLASS(klass) \
 
30
    (G_TYPE_CHECK_CLASS_TYPE ((klass), MIDORI_TYPE_CONSOLE))
 
31
#define MIDORI_CONSOLE_GET_CLASS(obj) \
 
32
    (G_TYPE_INSTANCE_GET_CLASS ((obj), MIDORI_TYPE_CONSOLE, MidoriConsoleClass))
 
33
 
 
34
typedef struct _MidoriConsole                MidoriConsole;
 
35
typedef struct _MidoriConsolePrivate         MidoriConsolePrivate;
 
36
typedef struct _MidoriConsoleClass           MidoriConsoleClass;
 
37
 
 
38
struct _MidoriConsole
 
39
{
 
40
    GtkVBox parent_instance;
 
41
 
 
42
    MidoriConsolePrivate* priv;
 
43
};
 
44
 
 
45
struct _MidoriConsoleClass
 
46
{
 
47
    GtkVBoxClass parent_class;
 
48
};
 
49
 
 
50
GType
 
51
midori_console_get_type               (void);
 
52
 
 
53
GtkWidget*
 
54
midori_console_new                    (void);
 
55
 
 
56
GtkWidget*
 
57
midori_console_get_toolbar            (MidoriConsole*       console);
 
58
 
 
59
void
 
60
midori_console_add                    (MidoriConsole*       console,
 
61
                                       const gchar*         message,
 
62
                                       gint                 line,
 
63
                                       const gchar*         source_id);
 
64
 
 
65
G_END_DECLS
 
66
 
 
67
#endif /* __MIDORI_CONSOLE_H__ */