19, 20, 20, 21, 27, 32,
33, 38, 39, 44, 45, 45,
81, 81, 51, 51, 123, 123};
- short white_ramp[] = {232, 233, 234, 235, 236, 237,
- 238, 239, 240, 241, 242, 243,
- 244, 245, 246, 247, 248, 249,
- 250, 251, 252, 253, 254, 255};
short red_ramp[] = { 16, 52, 52, 53, 53, 89,
89, 90, 90, 126, 127, 127,
163, 163, 164, 164, 200, 200,
int trans = -1; // enable transparency if term supports it
int max_lines = 0; // max lines per slide
int max_cols = 0; // max columns per line
+ int offset; // text offset
// header line 1 is displayed at the top
int bar_top = (deck->headers > 0) ? 1 : 0;
// setup header
if(bar_top) {
- //TODO move cursor to calculated indentation
- wmove(stdscr, 0, 1);
- //TODO add text to header
- wprintw(stdscr, "header");
+ line = deck->header;
+ offset = next_blank(line->text, 0) + 1;
+ // add text to header
+ mvwprintw(stdscr,
+ 0, (COLS - line->length + offset) / 2,
+ "%s", &line->text->text[offset]);
}
// setup footer
if(bar_bottom) {
- //TODO move cursor to calculated indentation
- wmove(stdscr, LINES - 1, 1);
- //TODO add text to footer
- wprintw(stdscr, "footer");
+ line = deck->header->next;
+ offset = next_blank(line->text, 0) + 1;
+ // add text to left footer
+ mvwprintw(stdscr,
+ LINES - 1, 0,
+ "%s", &line->text->text[offset]);
+
+ if(deck->headers > 2) {
+ line = deck->header->next->next;
+ offset = next_blank(line->text, 0) + 1;
+ // add text to right footer
+ mvwprintw(stdscr,
+ LINES - 1, COLS - line->length + offset,
+ "%s", &line->text->text[offset]);
+ }
}
// make header + fooder visible
werase(content);
//TODO print lines
- wprintw(content, "content");
+ wprintw(content, "%s", "content");
// make content visible
wrefresh(content);