source: gaycko/trunk/src/render/renderer.h @ 4752

Revision 4752, 908 bytes checked in by jylam, 2 years ago (diff)
  • Simple table/tr/td/br/text rendering
Line 
1/*
2 *  Gaycko        Text mode web browser
3 *  Copyright (c) 2011 Jean-Yves Lamoureux <jylam@lnxscene.org>
4 *                All Rights Reserved
5 *
6 *  This library is free software. It comes without any warranty, to
7 *  the extent permitted by applicable law. You can redistribute it
8 *  and/or modify it under the terms of the Do What The Fuck You Want
9 *  To Public License, Version 2, as published by Sam Hocevar. See
10 *  http://sam.zoy.org/wtfpl/COPYING for more details.
11 */
12#ifndef RENDERER_H
13#define RENDERER_H
14#include <stdio.h>
15#include <stdlib.h>
16#include <string.h>
17
18#include <caca.h>
19
20#include "gaycko.h"
21#include "dom/dom.h"
22#include "window/window.h"
23
24
25void gaycko_render(gDOM *dom, gWindow *window);
26void gaycko_get_position      (gNode *node, gNode *parent);
27
28void gaycko_print_dom(gDOM *dom, gWindow *window);
29void gaycko_print_node(gNode *node,gWindow *window);
30
31#endif /* RENDERER_H */
32
33
Note: See TracBrowser for help on using the repository browser.