mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-05 12:40:35 +00:00
0e5cd14829
Add return-type information to all methods, split up lines properly where I could find them, and ran the whole thing through uncrustify. Looks purty now. :)
82 lines
1.4 KiB
Objective-C
82 lines
1.4 KiB
Objective-C
#ifndef XYView_h
|
|
#define XYView_h
|
|
|
|
#include <AppKit/AppKit.h>
|
|
|
|
#include "QF/mathlib.h"
|
|
|
|
#include "SetBrush.h"
|
|
|
|
#include "render.h"
|
|
|
|
extern id xyview_i;
|
|
|
|
#define MINSCALE 0.125
|
|
#define MAXSCALE 2.0
|
|
|
|
extern vec3_t xy_viewnormal; // v_forward for xy view
|
|
extern float xy_viewdist; // clip behind this plane
|
|
|
|
extern NSRect xy_draw_rect;
|
|
|
|
void linestart (float r, float g, float b);
|
|
void lineflush (void);
|
|
void linecolor (float r, float g, float b);
|
|
|
|
void XYmoveto (vec3_t pt);
|
|
void XYlineto (vec3_t pt);
|
|
|
|
@interface XYView: NSView
|
|
{
|
|
NSRect realbounds, newrect, combinedrect;
|
|
NSPoint midpoint;
|
|
int gridsize;
|
|
float scale;
|
|
|
|
//
|
|
// for textured view
|
|
//
|
|
int xywidth, xyheight;
|
|
float *xyzbuffer;
|
|
unsigned *xypicbuffer;
|
|
|
|
drawmode_t drawmode;
|
|
|
|
//
|
|
// UI links
|
|
//
|
|
id mode_radio_i;
|
|
}
|
|
|
|
- (float) currentScale;
|
|
|
|
- (id) setModeRadio: m;
|
|
|
|
- (id) drawMode: sender;
|
|
- (id) setDrawMode: (drawmode_t)mode;
|
|
|
|
- (id) newSuperBounds;
|
|
- (id) newRealBounds: (NSRect)nb;
|
|
|
|
- (id) addToScrollRange: (float)x
|
|
: (float)y;
|
|
|
|
- (id) setOrigin: (NSPoint)pt scale: (float)sc;
|
|
|
|
- (id) centerOn: (vec3_t)org;
|
|
|
|
- (id) drawMode: sender;
|
|
|
|
- (id) superviewChanged;
|
|
|
|
- (int) gridsize;
|
|
- (float) snapToGrid: (float)f;
|
|
|
|
@end
|
|
|
|
@interface NSView (XYView)
|
|
- (void) setFrame: (NSRect)frame
|
|
bounds: (NSRect)bounds
|
|
scale: (NSSize)scale;
|
|
@end
|
|
#endif // XYView_h
|