1
/*
2
 * Copyright (C) 2011-2012 Jiri Techet <techet@gmail.com>
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
 * This library is distributed in the hope that it will be useful,
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12
 * Lesser General Public License for more details.
13
 *
14
 * You should have received a copy of the GNU Lesser General Public
15
 * License along with this library; if not, write to the Free Software
16
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17
 */
18
19
#if !defined (__CHAMPLAIN_CHAMPLAIN_H_INSIDE__) && !defined (CHAMPLAIN_COMPILATION)
20
#error "Only <champlain/champlain.h> can be included directly."
21
#endif
22
23
#ifndef CHAMPLAIN_LICENSE_H
24
#define CHAMPLAIN_LICENSE_H
25
26
#include <champlain/champlain-defines.h>
27
28
#include <glib-object.h>
29
#include <clutter/clutter.h>
30
31
G_BEGIN_DECLS
32
33
#define CHAMPLAIN_TYPE_LICENSE champlain_license_get_type ()
34
35
#define CHAMPLAIN_LICENSE(obj) \
36
  (G_TYPE_CHECK_INSTANCE_CAST ((obj), CHAMPLAIN_TYPE_LICENSE, ChamplainLicense))
37
38
#define CHAMPLAIN_LICENSE_CLASS(klass) \
39
  (G_TYPE_CHECK_CLASS_CAST ((klass), CHAMPLAIN_TYPE_LICENSE, ChamplainLicenseClass))
40
41
#define CHAMPLAIN_IS_LICENSE(obj) \
42
  (G_TYPE_CHECK_INSTANCE_TYPE ((obj), CHAMPLAIN_TYPE_LICENSE))
43
44
#define CHAMPLAIN_IS_LICENSE_CLASS(klass) \
45
  (G_TYPE_CHECK_CLASS_TYPE ((klass), CHAMPLAIN_TYPE_LICENSE))
46
47
#define CHAMPLAIN_LICENSE_GET_CLASS(obj) \
48
  (G_TYPE_INSTANCE_GET_CLASS ((obj), CHAMPLAIN_TYPE_LICENSE, ChamplainLicenseClass))
49
50
typedef struct _ChamplainLicensePrivate ChamplainLicensePrivate;
51
52
typedef struct _ChamplainLicense ChamplainLicense;
53
typedef struct _ChamplainLicenseClass ChamplainLicenseClass;
54
55
56
/**
57
 * ChamplainLicense:
58
 *
59
 * The #ChamplainLicense structure contains only private data
60
 * and should be accessed using the provided API
61
 *
62
 * Since: 0.10
63
 */
64
struct _ChamplainLicense
65
{
66
  ClutterActor parent;
67
68
  ChamplainLicensePrivate *priv;
69
};
70
71
struct _ChamplainLicenseClass
72
{
73
  ClutterActorClass parent_class;
74
};
75
76
GType champlain_license_get_type (void);
77
78
ClutterActor *champlain_license_new (void);
79
80
void champlain_license_set_extra_text (ChamplainLicense *license,
81
    const gchar *text);
82
const gchar *champlain_license_get_extra_text (ChamplainLicense *license);
83
84
void champlain_license_set_alignment (ChamplainLicense *license,
85
    PangoAlignment alignment);
86
PangoAlignment champlain_license_get_alignment (ChamplainLicense *license);
87
88
void champlain_license_connect_view (ChamplainLicense *license,
89
    ChamplainView *view);
90
void champlain_license_disconnect_view (ChamplainLicense *license);
91
92
G_END_DECLS
93
94
#endif