mangling the simple attr example (8.)

cat-town
Dan Buch 15 years ago
parent 579ad3c15e
commit e8f71e4fd8

@ -1,54 +1,47 @@
/* pager functionality by Joseph Spainhour" <spainhou@bellsouth.net> */
#include <ncurses.h> #include <ncurses.h>
#include <stdlib.h> #include <stdlib.h>
int main(int argc, char *argv[]) int main(int argc, char *argv[])
{ {
int ch, prev, row, col; int ch, prev, row, col;
prev = EOF; prev = EOF;
FILE *fp; FILE *fp;
int y, x; int y, x;
if(argc != 2) if (argc != 2) {
{ printf("Usage: %s <a c file name>\n", argv[0]);
printf("Usage: %s <a c file name>\n", argv[0]); exit(1);
exit(1);
}
fp = fopen(argv[1], "r");
if(fp == NULL)
{
perror("Cannot open input file");
exit(1);
}
initscr(); /* Start curses mode */
getmaxyx(stdscr, row, col); /* find the boundaries of the screeen */
while((ch = fgetc(fp)) != EOF) /* read the file till we reach the end */
{
getyx(stdscr, y, x); /* get the current curser position */
if(y == (row - 1)) /* are we are at the end of the screen */
{
printw("<-Press Any Key->"); /* tell the user to press a key */
getch();
clear(); /* clear the screen */
move(0, 0); /* start at the beginning of the screen */
} }
if(prev == '/' && ch == '*') /* If it is / and * then only fp = fopen(argv[1], "r");
* switch bold on */ if (fp == NULL) {
{ perror("Cannot open input file");
attron(A_BOLD); /* cut bold on */ exit(1);
getyx(stdscr, y, x); /* get the current curser position */
move(y, x - 1); /* back up one space */
printw("%c%c", '/', ch); /* The actual printing is done here */
} }
else initscr();
printw("%c", ch); getmaxyx(stdscr, row, col);
refresh(); while ((ch = fgetc(fp)) != EOF) {
if(prev == '*' && ch == '/') getyx(stdscr, y, x);
attroff(A_BOLD); /* Switch it off once we got * if (y == (row - 1)) {
* and then / */ printw("<-Press Any Key->");
prev = ch; getch();
} clear();
endwin(); /* End curses mode */ move(0, 0);
fclose(fp); }
return 0; if (prev == '/' && ch == '*') {
attron(A_BOLD | COLOR_GREEN);
getyx(stdscr, y, x);
move(y, x - 1);
printw("%c%c", '/', ch);
} else {
printw("%c", ch);
refresh();
if (prev == '*' && ch == '/') {
attroff(A_BOLD | COLOR_GREEN);
prev = ch;
}
}
}
endwin();
fclose(fp);
return 0;
} }

Loading…
Cancel
Save