~timchen119/ubuntu/trusty/gnome-bluetooth/lp1035431

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Emilio Pozuelo Monfort
  • Date: 2011-02-27 15:45:22 UTC
  • mfrom: (1.3.2 upstream)
  • mto: (2.2.3 experimental) (1.5.1)
  • mto: This revision was merged to the branch mainline in revision 53.
  • Revision ID: james.westby@ubuntu.com-20110227154522-dnnoqasv5v3mv42a
Tags: upstream-2.91.5
ImportĀ upstreamĀ versionĀ 2.91.5

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 <libgnome-control-center/cc-panel.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
};
 
46
 
 
47
struct _CcBluetoothPanelClass {
 
48
        CcPanelClass parent_class;
 
49
};
 
50
 
 
51
GType cc_bluetooth_panel_get_type (void) G_GNUC_CONST;
 
52
 
 
53
void  cc_bluetooth_panel_register (GIOModule *module);
 
54
 
 
55
G_END_DECLS
 
56
 
 
57
#endif /* _CC_BLUETOOTH_PANEL_H */
 
58