mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 13:11:20 +00:00
3a1e467ae8
Sadly, there are many bogus warnings and other errors. qfcc is still very sick :(.
23 lines
398 B
Objective-C
23 lines
398 B
Objective-C
#ifndef __CvarRangeView_h
|
|
#define __CvarRangeView_h
|
|
|
|
#include "gui/Group.h"
|
|
|
|
@class Text;
|
|
@class Slider;
|
|
@class CvarRange;
|
|
|
|
@interface CvarRangeView : Group
|
|
{
|
|
Text *title;
|
|
Text *value;
|
|
Slider *slider;
|
|
CvarRange *range;
|
|
}
|
|
-(void)update;
|
|
-(id)initWithBounds:(Rect)aRect title:(string)_title sliderWidth:(integer)width :(CvarRange *)_range;
|
|
-(void)inc;
|
|
-(void)dec;
|
|
@end
|
|
|
|
#endif//__CvarRangeView_h
|