1
/*
2
 * This file is a part of hildon
3
 *
4
 * Copyright (C) 2008 Nokia Corporation, all rights reserved.
5
 *
6
 * This program is free software; you can redistribute it and/or modify
7
 * it under the terms of the GNU Lesser Public License as published by
8
 * the Free Software Foundation; version 2 of the license.
9
 *
10
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 * GNU Lesser Public License for more details.
14
 *
15
 */
16
17
#ifndef                                         __HILDON_TEXT_VIEW_H__
18
#define                                         __HILDON_TEXT_VIEW_H__
19
20
#include                                        <gtk/gtk.h>
21
22
G_BEGIN_DECLS
23
24
#define                                         HILDON_TYPE_TEXT_VIEW \
25
                                                (hildon_text_view_get_type())
26
27
#define                                         HILDON_TEXT_VIEW(obj) \
28
                                                (G_TYPE_CHECK_INSTANCE_CAST ((obj), \
29
                                                HILDON_TYPE_TEXT_VIEW, HildonTextView))
30
31
#define                                         HILDON_TEXT_VIEW_CLASS(klass) \
32
                                                (G_TYPE_CHECK_CLASS_CAST ((klass), \
33
                                                HILDON_TYPE_TEXT_VIEW, HildonTextViewClass))
34
35
#define                                         HILDON_IS_TEXT_VIEW(obj) \
36
                                                (G_TYPE_CHECK_INSTANCE_TYPE ((obj), HILDON_TYPE_TEXT_VIEW))
37
38
#define                                         HILDON_IS_TEXT_VIEW_CLASS(klass) \
39
                                                (G_TYPE_CHECK_CLASS_TYPE ((klass), HILDON_TYPE_TEXT_VIEW))
40
41
#define                                         HILDON_TEXT_VIEW_GET_CLASS(obj) \
42
                                                (G_TYPE_INSTANCE_GET_CLASS ((obj), \
43
                                                HILDON_TYPE_TEXT_VIEW, HildonTextViewClass))
44
45
typedef struct                                  _HildonTextView HildonTextView;
46
47
typedef struct                                  _HildonTextViewClass HildonTextViewClass;
48
49
struct                                          _HildonTextViewClass
50
{
51
    GtkTextViewClass parent_class;
52
};
53
54
struct                                          _HildonTextView
55
{
56
    GtkTextView parent;
57
};
58
59
60
GType
61
hildon_text_view_get_type                       (void) G_GNUC_CONST;
62
63
GtkWidget *
64
hildon_text_view_new                            (void);
65
66
#ifndef HILDON_DISABLE_DEPRECATED
67
void
68
hildon_text_view_set_buffer                     (HildonTextView *text_view,
69
                                                 GtkTextBuffer  *buffer);
70
71
GtkTextBuffer *
72
hildon_text_view_get_buffer                     (HildonTextView *text_view);
73
74
void
75
hildon_text_view_set_placeholder                (HildonTextView *text_view,
76
                                                 const gchar    *text);
77
#endif
78
79
G_END_DECLS
80
81
#endif /* __HILDON_TEXT_VIEW_H__ */