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 :)
18 lines
366 B
Objective-C
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
|