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

« back to all changes in this revision

Viewing changes to lib/bluetooth-chooser-combo.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:
28
28
#define BLUETOOTH_TYPE_CHOOSER_COMBO     (bluetooth_chooser_combo_get_type ())
29
29
#define BLUETOOTH_CHOOSER_COMBO(obj)     (G_TYPE_CHECK_INSTANCE_CAST ((obj), BLUETOOTH_TYPE_CHOOSER_COMBO, BluetoothChooserCombo))
30
30
#define BLUETOOTH_IS_CHOOSER_COMBO(obj)  (G_TYPE_CHECK_INSTANCE_TYPE ((obj), BLUETOOTH_TYPE_CHOOSER_COMBO))
 
31
#define BLUETOOTH_IS_CHOOSER_COMBO_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), \
 
32
                                                                         BLUETOOTH_TYPE_CHOOSER_COMBO))
 
33
#define BLUETOOTH_GET_CHOOSER_COMBO_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), \
 
34
                                BLUETOOTH_TYPE_CHOOSER_COMBO, BluetoothChooserComboClass))
31
35
 
32
36
#define BLUETOOTH_CHOOSER_COMBO_FIRST_DEVICE "00:00:00:00:00:00"
33
37
 
34
 
typedef struct _BluetoothChooserCombo BluetoothChooserCombo;
35
 
 
36
 
typedef struct _BluetoothChooserComboClass {
 
38
typedef struct _BluetoothChooserComboPrivate BluetoothChooserComboPrivate;
 
39
typedef struct _BluetoothChooserComboClass BluetoothChooserComboClass;
 
40
 
 
41
typedef struct _BluetoothChooserCombo {
 
42
        GtkVBox            parent;
 
43
 
 
44
        BluetoothChooserComboPrivate *priv;
 
45
} BluetoothChooserCombo;
 
46
 
 
47
struct _BluetoothChooserComboClass {
37
48
  GtkVBoxClass parent_class;
38
49
 
39
50
  void (*chooser_created) (BluetoothChooserCombo *self, GtkWidget *chooser);
40
 
} BluetoothChooserComboClass;
 
51
};
41
52
 
42
53
GType           bluetooth_chooser_combo_get_type        (void);
43
54