blob: d9b3ff065445b17508b29f98f2955740ba5a57f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#pragma once
#include <stddef.h>
#include "redr.h"
#include "editor.h"
struct view;
void view_init_root(struct view **root, struct redr_ctx *window);
size_t view_child_num(struct view *vw);
void view_free_under(struct view *root);
void view_draw_under(struct view *root);
struct view_eb *view_eb_create_under(struct view *upper,
struct ed_buf *eb,
float posx,
float posy,
float w,
float h,
float font_size,
float font_spacing,
float scroll);
|