quakeforge/ruamoko/qwaq/device/axisview.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

18 lines
366 B
Objective-C

#ifndef __qwaq_device_axisview_h
#define __qwaq_device_axisview_h
#include "ruamoko/qwaq/qwaq-input.h"
#include "ruamoko/qwaq/ui/view.h"
@class TableViewColumn;
@interface AxisView : View
{
in_axisinfo_t *axis;
}
+withAxis:(in_axisinfo_t *)axis;
-(int)rows;
-(View *)viewAtRow:(int)row forColumn:(TableViewColumn *)column;
@end
#endif//__qwaq_device_axisview_h