*** empty log message ***
[selector.git] / selector.cc
1
2 ///////////////////////////////////////////////////////////////////////////
3 // START_IP_HEADER                                                       //
4 //                                                                       //
5 // This program is free software: you can redistribute it and/or modify  //
6 // it under the terms of the version 3 of the GNU General Public License //
7 // as published by the Free Software Foundation.                         //
8 //                                                                       //
9 // This program is distributed in the hope that it will be useful, but   //
10 // WITHOUT ANY WARRANTY; without even the implied warranty of            //
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      //
12 // General Public License for more details.                              //
13 //                                                                       //
14 // You should have received a copy of the GNU General Public License     //
15 // along with this program. If not, see <http://www.gnu.org/licenses/>.  //
16 //                                                                       //
17 // Written by and Copyright (C) Francois Fleuret                         //
18 // Contact <francois.fleuret@idiap.ch> for comments & bug reports        //
19 //                                                                       //
20 // END_IP_HEADER                                                         //
21 ///////////////////////////////////////////////////////////////////////////
22
23 #include <stdio.h>
24 #include <ncurses.h>
25 #include <iostream>
26 #include <fstream>
27 #include <string.h>
28
29 using namespace std;
30
31 const int buffer_size = 1024;
32 const int nb_lines_max = 1000;
33
34 void build_display(int nb_lines, char **lines, char *regexp) {
35   char buffer[buffer_size];
36   clear();         // Cleaning the window
37   refresh();       // After doing something on the display, we refresh it
38   int maxx = getmaxx(stdscr);
39   int maxy = getmaxy(stdscr);
40   printw("maxx %d maxy %d\n", maxx, maxy);
41   printw("nb_lines %d\n", nb_lines);
42   int nb_printed_lines = 2;
43   for(int y = 0; nb_printed_lines < maxy && y < nb_lines; y++) {
44     int k = 0;
45     while(lines[y][k] && k < buffer_size - 2 && k < maxx) {
46       buffer[k] = lines[y][k];
47       k++;
48     }
49     buffer[k++] = '\n';
50     buffer[k++] = '\0';
51     printw(buffer);
52     nb_printed_lines++;
53   }
54 }
55
56 int main(int argc, char **argv) {
57   int dummy, xpos, ypos;
58
59   char buffer[buffer_size];
60   char *lines[nb_lines_max];
61
62   ifstream file(argv[1]);
63
64   if(argc != 2) {
65     cerr << argv[0] << " <file>" << endl;
66     return 1;
67   }
68
69   if(file.fail()) {
70     cerr << "Can not open \""
71          << argv[1]
72          << "\""
73          << endl;
74     return 1;
75   }
76
77   int nb_lines = 0;
78   while(nb_lines < nb_lines_max && !file.eof()) {
79     file.getline(buffer, buffer_size);
80     lines[nb_lines] = new char[strlen(buffer) + 1];
81     strcpy(lines[nb_lines], buffer);
82     nb_lines++;
83   }
84
85   char regexp[buffer_size]="";
86   int regexp_point;
87   regexp_point = 0;
88
89   initscr();        // Necessary to start a curses session
90
91   if (has_colors()) {
92     cout << "You can use color on this terminal" << endl;
93   } else {
94     cout << "No colors." << endl;
95     return 1;
96   }
97
98   noecho();        // I don't want echo when I press a key
99   curs_set(0);     // I don't want to see the cursor
100
101   start_color();   // We will use colors
102   init_pair(1, COLOR_RED, COLOR_BLACK); // red on black for error messages
103
104   // attron(COLOR_PAIR(1));        // Let's print something in red on black
105   // printw("Hello world\n");      // That's how we print something!
106   // attroff(COLOR_PAIR(1));       // Let's get back to default colors!
107
108   printw("Press a key to contine\n");
109   int key;
110
111   do {
112     build_display(nb_lines, lines, regexp);
113     key = getch();
114     if(key >= 'a' && key <= 'z') {
115       regexp[regexp_point++] = key;
116       regexp[regexp_point] = '\0';
117     }
118   } while(key != 'q');
119
120   echo();         // We want to have echo
121   curs_set(1);    // We want to see the cursor again
122   endwin();       // Back to normal
123
124   for(int l = 0; l < nb_lines; l++) {
125     delete[] lines[l];
126   }
127
128   return 0;
129 }