~elementary-os/elementaryos/os-patch-gnome-settings-daemon-xenial

« back to all changes in this revision

Viewing changes to plugins/xsettings/gsd-xsettings-gtk.h

  • Committer: RabbitBot
  • Date: 2016-05-13 19:33:51 UTC
  • Revision ID: rabbitbot@elementary.io-20160513193351-owr76om3z9f4mvv3
Initial import, version 3.18.2-0ubuntu3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*-
 
2
 *
 
3
 * Copyright (C) 2010 Bastien Nocera <hadess@hadess.net>
 
4
 *
 
5
 * This program is free software; you can redistribute it and/or modify
 
6
 * it under the terms of the GNU General Public License as published by
 
7
 * the Free Software Foundation; either version 2, or (at your option)
 
8
 * any later version.
 
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 General Public License for more details.
 
14
 *
 
15
 * You should have received a copy of the GNU General Public License
 
16
 * along with this program; if not, see <http://www.gnu.org/licenses/>.
 
17
 *
 
18
 */
 
19
 
 
20
#ifndef __GSD_XSETTINGS_GTK_H__
 
21
#define __GSD_XSETTINGS_GTK_H__
 
22
 
 
23
#include <glib.h>
 
24
#include <glib-object.h>
 
25
#include <gmodule.h>
 
26
 
 
27
G_BEGIN_DECLS
 
28
 
 
29
#define GSD_TYPE_XSETTINGS_GTK                (gsd_xsettings_gtk_get_type ())
 
30
#define GSD_XSETTINGS_GTK(o)                  (G_TYPE_CHECK_INSTANCE_CAST ((o), GSD_TYPE_XSETTINGS_GTK, GsdXSettingsGtk))
 
31
#define GSD_XSETTINGS_GTK_CLASS(k)            (G_TYPE_CHECK_CLASS_CAST((k), GSD_TYPE_XSETTINGS_GTK, GsdXSettingsGtkClass))
 
32
#define GSD_IS_XSETTINGS_GTK(o)               (G_TYPE_CHECK_INSTANCE_TYPE ((o), GSD_TYPE_XSETTINGS_GTK))
 
33
#define GSD_IS_XSETTINGS_GTK_CLASS(k)         (G_TYPE_CHECK_CLASS_TYPE ((k), GSD_TYPE_XSETTINGS_GTK))
 
34
#define GSD_XSETTINGS_GTK_GET_CLASS(o)        (G_TYPE_INSTANCE_GET_CLASS ((o), GSD_TYPE_XSETTINGS_GTK, GsdXSettingsGtkClass))
 
35
 
 
36
typedef struct GsdXSettingsGtkPrivate GsdXSettingsGtkPrivate;
 
37
 
 
38
typedef struct
 
39
{
 
40
        GObject                   parent;
 
41
        GsdXSettingsGtkPrivate *priv;
 
42
} GsdXSettingsGtk;
 
43
 
 
44
typedef struct
 
45
{
 
46
        GObjectClass parent_class;
 
47
} GsdXSettingsGtkClass;
 
48
 
 
49
GType   gsd_xsettings_gtk_get_type            (void) G_GNUC_CONST;
 
50
 
 
51
GsdXSettingsGtk *gsd_xsettings_gtk_new        (void);
 
52
 
 
53
const char * gsd_xsettings_gtk_get_modules (GsdXSettingsGtk *gtk);
 
54
 
 
55
G_END_DECLS
 
56
 
 
57
#endif /* __GSD_XSETTINGS_GTK_H__ */