]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - ejemplos/ej_1.c
51d5d0b550fa1c3ec8cdb73d926f8781385c5d31
[z.facultad/75.06/emufs.git] / ejemplos / ej_1.c
1
2 #include <curses.h>
3 #include <signal.h>
4 #include <panel.h>
5
6 static void finish(int sig);
7
8 int main(int argc, char *argv[])
9 {
10         /* initialize your non-curses data structures here */
11         WINDOW *mainwin;
12
13         signal(SIGINT, finish);      /* arrange interrupts to terminate */
14         mainwin = initscr();      /* initialize the curses library */
15         keypad(stdscr, TRUE);  /* enable keyboard mapping */
16         nonl();         /* tell curses not to do NL->CR/NL on output */
17         cbreak();       /* take input chars one at a time, no wait for \n */
18         noecho();       /* don't echo input */
19
20         if (has_colors()) {
21                 start_color();
22                 /* Simple color assignment, often all we need. */
23                 init_pair(COLOR_BLACK, COLOR_BLACK, COLOR_BLACK);
24                 init_pair(COLOR_GREEN, COLOR_GREEN, COLOR_BLACK);
25                 init_pair(COLOR_RED, COLOR_RED, COLOR_BLACK);
26                 init_pair(COLOR_CYAN, COLOR_CYAN, COLOR_BLACK);
27                 init_pair(COLOR_WHITE, COLOR_WHITE, COLOR_BLACK);
28                 init_pair(COLOR_MAGENTA, COLOR_MAGENTA, COLOR_BLACK);
29                 init_pair(COLOR_BLUE, COLOR_BLUE, COLOR_BLACK);
30                 init_pair(COLOR_YELLOW, COLOR_YELLOW, COLOR_BLACK);
31         }
32
33         /* Ventana, caracter para linea vertical, caracter para linea horizontal*/
34         box(mainwin, ACS_VLINE, ACS_HLINE);
35         /* Ventana, Y, X, Texto */
36         mvwaddstr(mainwin, 10, 10, "Primer ejemplo!");  
37         mvwaddstr(mainwin, 11, 10, "Una sola ventana de toda la terminal");     
38                 
39         getch();
40
41         delwin(mainwin);
42         endwin();
43         return 0;
44 }
45
46 static void finish(int sig)
47 {
48         endwin();
49
50         /* do your non-curses wrapup here */
51
52         exit(0);
53 }
54