quakeforge/ruamoko/qwaq/device/axisdata.h
Bill Currie 4057500acc [qwaq] Implement device management for input-app
Currently shows only the axes (along with dev "path" and name), but it
has done a good job of pushing dev of other bits of code :)
2021-09-25 14:22:19 +09:00

19 lines
403 B
Objective-C

#ifndef __qwaq_device_axisdata_h
#define __qwaq_device_axisdata_h
#include "ruamoko/qwaq/qwaq-input.h"
#include "ruamoko/qwaq/ui/tableview.h"
@class AxisView;
@interface AxisData : Object <TableViewDataSource>
{
int numaxes;
in_axisinfo_t *axes;
AxisView **axis_views;
}
+withDevice:(qwaq_devinfo_t *)device;
-updateAxis:(int)axis value:(int)value;
@end
#endif//__qwaq_device_axisdata_h