| Revision 4759,
957 bytes
checked in by jylam, 2 years ago
(diff) |
- Added fix_table and fix_tr
|
| 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 | |
|---|
| 25 | void gaycko_render(gWindow *window); |
|---|
| 26 | void gaycko_get_position (gNode *node, gNode *parent); |
|---|
| 27 | |
|---|
| 28 | void gaycko_fix_table(gNode *table); |
|---|
| 29 | void gaycko_fix_tr(gNode *tr); |
|---|
| 30 | |
|---|
| 31 | void gaycko_print_dom(gWindow *window); |
|---|
| 32 | void gaycko_print_node(gNode *node,gWindow *window); |
|---|
| 33 | |
|---|
| 34 | |
|---|
| 35 | |
|---|
| 36 | #endif /* RENDERER_H */ |
|---|
| 37 | |
|---|
| 38 | |
|---|
Note: See
TracBrowser
for help on using the repository browser.