mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-14 08:50:58 +00:00
19 lines
366 B
C
19 lines
366 B
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
|