| OLD | NEW | 
|   1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |   1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 
|   2 // Use of this source code is governed by a BSD-style license that can be |   2 // Use of this source code is governed by a BSD-style license that can be | 
|   3 // found in the LICENSE file. |   3 // found in the LICENSE file. | 
|   4  |   4  | 
|   5 #ifndef UI_EVENTS_DEVICES_X11_DEVICE_LIST_CACHE_X11_H_ |   5 #ifndef UI_EVENTS_DEVICES_X11_DEVICE_LIST_CACHE_X11_H_ | 
|   6 #define UI_EVENTS_DEVICES_X11_DEVICE_LIST_CACHE_X11_H_ |   6 #define UI_EVENTS_DEVICES_X11_DEVICE_LIST_CACHE_X11_H_ | 
|   7  |   7  | 
|   8 #include <X11/extensions/XInput.h> |   8 #include <X11/extensions/XInput.h> | 
|   9 #include <X11/extensions/XInput2.h> |   9 #include <X11/extensions/XInput2.h> | 
|  10  |  10  | 
|  11 #include <map> |  11 #include <map> | 
|  12  |  12  | 
|  13 #include "base/basictypes.h" |  13 #include "base/basictypes.h" | 
 |  14 #include "base/memory/scoped_ptr.h" | 
|  14 #include "ui/events/devices/events_devices_export.h" |  15 #include "ui/events/devices/events_devices_export.h" | 
 |  16 #include "ui/gfx/x/x11_types.h" | 
|  15  |  17  | 
|  16 template <typename T> struct DefaultSingletonTraits; |  18 template <typename T> struct DefaultSingletonTraits; | 
|  17  |  19  | 
|  18 typedef struct _XDisplay Display; |  20 typedef struct _XDisplay Display; | 
|  19  |  21  | 
|  20 template <typename T> |  22 template <typename T, void (*D)(T*)> | 
|  21 struct DeviceList { |  23 struct DeviceList { | 
|  22   DeviceList() : devices(NULL), count(0) { |  24   DeviceList() : count(0) {} | 
|  23   } |  25   T& operator[](int x) { return devices[x]; } | 
|  24   T& operator[] (int x) { |  | 
|  25     return devices[x]; |  | 
|  26   } |  | 
|  27   const T& operator[](int x) const { return devices[x]; } |  26   const T& operator[](int x) const { return devices[x]; } | 
|  28   T* devices; |  27   scoped_ptr<T[], gfx::XObjectDeleter<T, void, D>> devices; | 
|  29   int count; |  28   int count; | 
|  30 }; |  29 }; | 
|  31  |  30  | 
|  32 typedef struct DeviceList<XDeviceInfo> XDeviceList; |  31 typedef struct DeviceList<XDeviceInfo, XFreeDeviceList> XDeviceList; | 
|  33 typedef struct DeviceList<XIDeviceInfo> XIDeviceList; |  32 typedef struct DeviceList<XIDeviceInfo, XIFreeDeviceInfo> XIDeviceList; | 
|  34  |  33  | 
|  35 namespace ui { |  34 namespace ui { | 
|  36  |  35  | 
|  37 // A class to cache the current XInput device list. This minimized the |  36 // A class to cache the current XInput device list. This minimized the | 
|  38 // round-trip time to the X server whenever such a device list is needed. The |  37 // round-trip time to the X server whenever such a device list is needed. The | 
|  39 // update function will be called on each incoming XI_HierarchyChanged event. |  38 // update function will be called on each incoming XI_HierarchyChanged event. | 
|  40 class EVENTS_DEVICES_EXPORT DeviceListCacheX11 { |  39 class EVENTS_DEVICES_EXPORT DeviceListCacheX11 { | 
|  41  public: |  40  public: | 
|  42   static DeviceListCacheX11* GetInstance(); |  41   static DeviceListCacheX11* GetInstance(); | 
|  43  |  42  | 
|  44   void UpdateDeviceList(Display* display); |  43   void UpdateDeviceList(Display* display); | 
|  45  |  44  | 
|  46   // Returns the list of devices associated with |display|. Uses the old X11 |  45   // Returns the list of devices associated with |display|. Uses the old X11 | 
|  47   // protocol to get the list of the devices. |  46   // protocol to get the list of the devices. | 
|  48   const XDeviceList& GetXDeviceList(Display* display); |  47   const XDeviceList& GetXDeviceList(Display* display); | 
|  49  |  48  | 
|  50   // Returns the list of devices associated with |display|. Uses the newer |  49   // Returns the list of devices associated with |display|. Uses the newer | 
|  51   // XINPUT2 protocol to get the list of devices. Before making this call, make |  50   // XINPUT2 protocol to get the list of devices. Before making this call, make | 
|  52   // sure that XInput2 support is available (e.g. by calling |  51   // sure that XInput2 support is available (e.g. by calling | 
|  53   // IsXInput2Available()). |  52   // IsXInput2Available()). | 
|  54   const XIDeviceList& GetXI2DeviceList(Display* display); |  53   const XIDeviceList& GetXI2DeviceList(Display* display); | 
|  55  |  54  | 
|  56  private: |  55  private: | 
|  57   friend struct DefaultSingletonTraits<DeviceListCacheX11>; |  56   friend struct DefaultSingletonTraits<DeviceListCacheX11>; | 
|  58  |  57  | 
|  59   DeviceListCacheX11(); |  58   DeviceListCacheX11(); | 
|  60   ~DeviceListCacheX11(); |  59   ~DeviceListCacheX11(); | 
|  61  |  60  | 
|  62   std::map<Display*, XDeviceList> x_dev_list_map_; |  61   XDeviceList x_dev_list_; | 
|  63   std::map<Display*, XIDeviceList> xi_dev_list_map_; |  62   XIDeviceList xi_dev_list_; | 
|  64  |  63  | 
|  65   DISALLOW_COPY_AND_ASSIGN(DeviceListCacheX11); |  64   DISALLOW_COPY_AND_ASSIGN(DeviceListCacheX11); | 
|  66 }; |  65 }; | 
|  67  |  66  | 
|  68 }  // namespace ui |  67 }  // namespace ui | 
|  69  |  68  | 
|  70 #endif  // UI_EVENTS_DEVICES_X11_DEVICE_LIST_CACHE_X11_H_ |  69 #endif  // UI_EVENTS_DEVICES_X11_DEVICE_LIST_CACHE_X11_H_ | 
|  71  |  70  | 
| OLD | NEW |