Xonotic
screenshotimage.qh
Go to the documentation of this file.
1 #pragma once
2 
3 #include "image.qh"
5  METHOD(XonoticScreenshotImage, configureXonoticScreenshotImage, void(entity));
6  METHOD(XonoticScreenshotImage, load, void(entity, string));
8  ATTRIB(XonoticScreenshotImage, focusable, float, 1); // mousePress and mouseDrag work only if focusable is set
9  METHOD(XonoticScreenshotImage, mousePress, bool(XonoticScreenshotImage this, vector pos));
10  METHOD(XonoticScreenshotImage, mouseDrag, float(entity, vector));
11  METHOD(XonoticScreenshotImage, mouseMove, float(entity, vector));
12  METHOD(XonoticScreenshotImage, resizeNotify, void(entity, vector, vector, vector, vector));
13  ATTRIB(XonoticScreenshotImage, realFontSize, vector, '0 0 0');
14  ATTRIB(XonoticScreenshotImage, fontSize, float, SKINFONTSIZE_NORMAL);
15  ATTRIB(XonoticScreenshotImage, showTitle, float, 1);
16  ATTRIB(XonoticScreenshotImage, screenshotTime, float, 0);
17  ATTRIB(XonoticScreenshotImage, screenshotTitle, string);
CLASS(Object) Object
Definition: oo.qh:318
entity() spawn
#define METHOD(cname, name, prototype)
Definition: oo.qh:257
#define ATTRIB(...)
Definition: oo.qh:136
vector(float skel, float bonenum) _skel_get_boneabs_hidden
#define ENDCLASS(cname)
Definition: oo.qh:269
entity makeXonoticScreenshotImage()