~timo-jyrinki/ubuntu/trusty/maliit-framework/fix_qt52

« back to all changes in this revision

Viewing changes to connection-glib/meego-imcontext-dbus.h

  • Committer: Package Import Robot
  • Author(s): Ricardo Salveti de Araujo, Sergio Schvezov, Ricardo Salveti de Araujo
  • Date: 2013-07-23 19:47:04 UTC
  • mfrom: (1.1.2) (1.2.1 experimental)
  • Revision ID: package-import@ubuntu.com-20130723194704-1lsy1kmlda069cea
Tags: 0.99.0+git20130615+97e8335-0ubuntu1
[ Sergio Schvezov ]
* New build from HEAD 97e8335.
* Packaging import from lp:phablet-extras/maliit-framework.

[ Ricardo Salveti de Araujo ]
* debian/control: adding vcs and fixing dependencies
* General package cleanup

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Copyright (C) 2010 Intel Corporation
3
 
 *
4
 
 * Author:  Raymond Liu <raymond.liu@intel.com>
5
 
 *
6
 
 * This library is free software; you can redistribute it and/or
7
 
 * modify it under the terms of the GNU Lesser General Public License
8
 
 * version 2.1 as published by the Free Software Foundation.
9
 
 *
10
 
 * This library is distributed in the hope that it will be useful, but
11
 
 * WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13
 
 * Lesser General Public License for more details.
14
 
 *
15
 
 * You should have received a copy of the GNU Lesser General Public
16
 
 * License along with this library; if not, write to the Free Software
17
 
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
18
 
 * 02110-1301 USA
19
 
 *
20
 
 */
21
 
 
22
 
#ifndef _MEEGO_IMCONTEXT_DBUS_H
23
 
#define _MEEGO_IMCONTEXT_DBUS_H
24
 
 
25
 
#include <glib.h>
26
 
#include <glib-object.h>
27
 
 
28
 
typedef struct {
29
 
    GObject parent;
30
 
 
31
 
} MeegoIMContextDbusObj;
32
 
 
33
 
typedef struct {
34
 
    GObjectClass parent;
35
 
} MeegoIMContextDbusObjClass;
36
 
 
37
 
GType meego_imcontext_dbusobj_get_type(void);
38
 
 
39
 
#define MEEGO_IMCONTEXT_TYPE_DBUSOBJ (meego_imcontext_dbusobj_get_type())
40
 
#define MEEGO_IMCONTEXT_DBUSOBJ(obj) \
41
 
        (G_TYPE_CHECK_INSTANCE_CAST((obj), MEEGO_IMCONTEXT_TYPE_DBUSOBJ, MeegoIMContextDbusObj))
42
 
#define MEEGO_IMCONTEXT_DBUSOBJ_CLASS(klass) \
43
 
        (G_TYPE_CHECK_CLASS_CAST((klass), MEEGO_IMCONTEXT_TYPE_DBUSOBJ, MeegoIMContextDbusObjClass))
44
 
#define MEEGO_IMCONTEXT_IS_DBUSOBJ(obj) \
45
 
        (G_TYPE_CHECK_INSTANCE_TYPE((obj), MEEGO_IMCONTEXT_TYPE_DBUSOBJ))
46
 
#define MEEGO_IMCONTEXT_IS_DBUSOBJ_CLASS(klass) \
47
 
        (G_TYPE_CHECK_CLASS_TYPE((klass), MEEGO_IMCONTEXT_TYPE_DBUSOBJ))
48
 
#define MEEGO_IMCONTEXT_DBUSOBJ_GET_CLASS(obj) \
49
 
        (G_TYPE_INSTANCE_GET_CLASS((obj), MEEGO_IMCONTEXT_TYPE_DBUSOBJ, MeegoIMContextDbusObjClass))
50
 
 
51
 
 
52
 
MeegoIMContextDbusObj *meego_imcontext_dbusobj_new(void);
53
 
void meego_imcontext_dbusobj_connect(MeegoIMContextDbusObj *obj, gpointer connection);
54
 
 
55
 
#endif /* _MEEGO_IMCONTEXT_DBUS_H */