/* * Copyright 2019, Haiku, Inc. * Distributed under the terms of the MIT License. * * Author: * Preetpal Kaur */ #ifndef _INPUT_DEVICE_VIEW_H #define _INPUT_DEVICE_VIEW_H #include #include #include #include #include #include #include #include #include "InputTouchpadPref.h" #include "MouseSettings.h" #define ITEM_SELECTED 'I1s' class TouchpadPref; class MouseSettings; class DeviceListView: public BView { public: DeviceListView(const char *name); virtual ~DeviceListView(); virtual void AttachedToWindow(); BListView* fDeviceList; private: BScrollView* fScrollView; }; #endif // _INPUT_DEVICE_VIEW_H */