~ubuntu-branches/ubuntu/trusty/unity-control-center/trusty

« back to all changes in this revision

Viewing changes to panels/bluetooth/cc-bluetooth-panel.h

  • Committer: Package Import Robot
  • Author(s): Robert Ancell
  • Date: 2014-01-08 16:29:18 UTC
  • Revision ID: package-import@ubuntu.com-20140108162918-g29dd08tr913y2qh
Tags: upstream-14.04.0
ImportĀ upstreamĀ versionĀ 14.04.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *
 
3
 *  BlueZ - Bluetooth protocol stack for Linux
 
4
 *
 
5
 *  Copyright (C) 2005-2008  Marcel Holtmann <marcel@holtmann.org>
 
6
 *  Copyright (C) 2006-2010  Bastien Nocera <hadess@hadess.net>
 
7
 *
 
8
 *
 
9
 *  This program is free software; you can redistribute it and/or modify
 
10
 *  it under the terms of the GNU General Public License as published by
 
11
 *  the Free Software Foundation; either version 2 of the License, or
 
12
 *  (at your option) any later version.
 
13
 *
 
14
 *  This program is distributed in the hope that it will be useful,
 
15
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
16
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
17
 *  GNU General Public License for more details.
 
18
 *
 
19
 *  You should have received a copy of the GNU General Public License
 
20
 *  along with this program; if not, write to the Free Software
 
21
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
22
 *
 
23
 */
 
24
 
 
25
#ifndef _CC_BLUETOOTH_PANEL_H
 
26
#define _CC_BLUETOOTH_PANEL_H
 
27
 
 
28
#include <shell/cc-shell.h>
 
29
 
 
30
G_BEGIN_DECLS
 
31
 
 
32
#define CC_TYPE_BLUETOOTH_PANEL cc_bluetooth_panel_get_type()
 
33
#define CC_BLUETOOTH_PANEL(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), CC_TYPE_BLUETOOTH_PANEL, CcBluetoothPanel))
 
34
#define CC_BLUETOOTH_PANEL_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), CC_TYPE_BLUETOOTH_PANEL, CcBluetoothPanelClass))
 
35
#define CC_IS_BLUETOOTH_PANEL(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), CC_TYPE_BLUETOOTH_PANEL))
 
36
#define CC_IS_BLUETOOTH_PANEL_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), CC_TYPE_BLUETOOTH_PANEL))
 
37
#define CC_BLUETOOTH_PANEL_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), CC_TYPE_BLUETOOTH_PANEL, CcBluetoothPanelClass))
 
38
 
 
39
typedef struct CcBluetoothPanel CcBluetoothPanel;
 
40
typedef struct CcBluetoothPanelClass CcBluetoothPanelClass;
 
41
typedef struct CcBluetoothPanelPrivate CcBluetoothPanelPrivate;
 
42
 
 
43
struct CcBluetoothPanel {
 
44
        CcPanel parent;
 
45
        CcBluetoothPanelPrivate *priv;
 
46
};
 
47
 
 
48
struct CcBluetoothPanelClass {
 
49
        CcPanelClass parent_class;
 
50
};
 
51
 
 
52
GType cc_bluetooth_panel_get_type (void) G_GNUC_CONST;
 
53
 
 
54
void  cc_bluetooth_panel_register (GIOModule *module);
 
55
 
 
56
G_END_DECLS
 
57
 
 
58
#endif /* _CC_BLUETOOTH_PANEL_H */
 
59