blob: d6eed8414c4766989ed1a8b19eeb8b1ef8ad40cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
#pragma once
#include "widget.h"
#include <the_Foundation/rect.h>
#include <SDL_events.h>
#include <SDL_render.h>
#include <SDL_video.h>
iDeclareType(Window)
iDeclareTypeConstructionArgs(Window, iRect rect)
struct Impl_Window {
SDL_Window * win;
iBool isDrawFrozen; /* avoids premature draws while restoring window state */
SDL_Renderer *render;
iWidget * root;
float pixelRatio;
float uiScale;
uint32_t frameTime;
double presentTime;
};
iBool processEvent_Window (iWindow *, const SDL_Event *);
void draw_Window (iWindow *);
void resize_Window (iWindow *, int w, int h);
void setTitle_Window (iWindow *, const iString *title);
void setUiScale_Window (iWindow *, float uiScale);
void setFreezeDraw_Window (iWindow *, iBool freezeDraw);
iInt2 rootSize_Window (const iWindow *);
float uiScale_Window (const iWindow *);
iInt2 coord_Window (const iWindow *, int x, int y);
iInt2 mouseCoord_Window (const iWindow *);
uint32_t frameTime_Window (const iWindow *);
SDL_Renderer *renderer_Window (const iWindow *);
iWindow * get_Window (void);
|