~canonical-dx-team/ubuntu/maverick/gtk+2.0/menuproxy

« back to all changes in this revision

Viewing changes to gdk/gdkinput.h

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2010-06-02 15:59:27 UTC
  • mfrom: (72.1.15 experimental)
  • Revision ID: james.westby@ubuntu.com-20100602155927-uwh99v2582rw3r8z
Tags: 2.21.1-1ubuntu1
* debian/patches/070_mandatory-relibtoolize.patch:
  - refreshed
* debian/patches/072_indicator_menu_update.patch:
  - change by Cody Russell to send an update event on menu changes,
    should make the bluetooth indicator refresh correctly (lp: #558841)
* debian/patches/091_bugzilla_tooltip_refresh.patch:
  - refreshed

Show diffs side-by-side

added added

removed removed

Lines of Context:
100
100
  GObject parent_instance;
101
101
  /* All fields are read-only */
102
102
          
103
 
  gchar *name;
104
 
  GdkInputSource source;
105
 
  GdkInputMode mode;
106
 
  gboolean has_cursor;       /* TRUE if the X pointer follows device motion */
107
 
          
108
 
  gint num_axes;
109
 
  GdkDeviceAxis *axes;
110
 
          
111
 
  gint num_keys;
112
 
  GdkDeviceKey *keys;
 
103
  gchar *GSEAL (name);
 
104
  GdkInputSource GSEAL (source);
 
105
  GdkInputMode GSEAL (mode);
 
106
  gboolean GSEAL (has_cursor);   /* TRUE if the X pointer follows device motion */
 
107
          
 
108
  gint GSEAL (num_axes);
 
109
  GdkDeviceAxis *GSEAL (axes);
 
110
          
 
111
  gint GSEAL (num_keys);
 
112
  GdkDeviceKey *GSEAL (keys);
113
113
};
114
114
 
115
115
/* We don't allocate each coordinate this big, but we use it to
130
130
GList *        gdk_devices_list              (void);
131
131
#endif /* GDK_MULTIHEAD_SAFE */
132
132
 
 
133
G_CONST_RETURN gchar *gdk_device_get_name       (GdkDevice *device);
 
134
GdkInputSource        gdk_device_get_source     (GdkDevice *device);
 
135
GdkInputMode          gdk_device_get_mode       (GdkDevice *device);
 
136
gboolean              gdk_device_get_has_cursor (GdkDevice *device);
 
137
 
 
138
void                  gdk_device_get_key        (GdkDevice       *device,
 
139
                                                 guint            index,
 
140
                                                 guint           *keyval,
 
141
                                                 GdkModifierType *modifiers);
 
142
GdkAxisUse            gdk_device_get_axis_use   (GdkDevice       *device,
 
143
                                                 guint            index);
 
144
 
133
145
/* Functions to configure a device */
134
146
void           gdk_device_set_source    (GdkDevice      *device,
135
147
                                         GdkInputSource  source);