mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-13 08:27:39 +00:00
4057500acc
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 :)
19 lines
403 B
Objective-C
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
|