1234567891011121314151617181920212223 |
- #ifndef zori_longtext_H_INCLUDED
- #define zori_longtext_H_INCLUDED
- #include "zori.h"
- struct zori_longtext {
- struct zori_widget widget;
- int align;
- zori_string * caption;
- zori_string * text;
-
- int line_start, line_stop, line_pos; /* Current text "window". */
- int line_max, line_height; /* text constants. */
- int page_lines;
- /* Text "window" size for one "page" of text in amount of lines. */
- int paused;
- double delay_total;
- };
-
- #endif
|