//////////////////////////////////////////////////////////////////////
+// This looks severly Linux-only ...
+
+void inject_into_tty_buffer(char *line) {
+ char *tty = ttyname(STDIN_FILENO);
+ int fd = open(tty, O_WRONLY);
+
+ struct termios oldtio, newtio;
+
+ if (fd >= 0) {
+ // Save current port settings
+ tcgetattr(fd,&oldtio);
+ memset(&newtio, 0, sizeof(newtio));
+ // Set input mode (non-canonical, *no echo*,...)
+ tcflush(fd, TCIFLUSH);
+ tcsetattr(fd,TCSANOW, &newtio);
+ // Put the selected line in the tty input buffer
+ for(char *k = line; *k; k++) {
+ ioctl(fd, TIOCSTI, k);
+ }
+ // Restore the old settings
+ tcsetattr(fd,TCSANOW, &oldtio);
+ close(fd);
+ } else {
+ cerr << "Can not open " << tty << "." << endl;
+ exit(1);
+ }
+}
+
+//////////////////////////////////////////////////////////////////////
+
int match(char *string, int nb_patterns, char **patterns) {
for(int n = 0; n < nb_patterns; n++) {
if(strstr(string, patterns[n]) == 0) return 0;
char buffer[buffer_size];
char *lines[nb_lines_max];
int no_blink = 0;
- int color_theme = 0;
+
+ int color_fg_modeline = COLOR_WHITE;
+ int color_bg_modeline = COLOR_BLACK;
+ int color_fg_highlight = COLOR_BLACK;
+ int color_bg_highlight = COLOR_YELLOW;
setlocale(LC_ALL, "");
}
else if(strcmp(argv[i], "-t") == 0) {
- check_opt(argc, argv, i, 1, "<color theme number>");
- color_theme = atoi(argv[i+1]);
- i += 2;
+ check_opt(argc, argv, i, 4, "<color fg modeline> <color bg modeline> <color fg highlight> <color bg highlight>");
+ color_fg_modeline = atoi(argv[i+1]);
+ color_bg_modeline = atoi(argv[i+2]);
+ color_fg_highlight = atoi(argv[i+3]);
+ color_bg_highlight = atoi(argv[i+4]);
+ i += 5;
}
else {
<< " [-b]"
<< " [-v]"
<< " [-m]"
- << " [-t <color theme number>]"
+ << " [-t <color fg modeline> <color bg modeline> <color fg highlight> <color bg highlight>]"
<< " [-o <output filename>]"
<< " [-s <pattern separator>]"
<< " [-l <max number of lines>]"
if(with_colors) {
if(has_colors()) {
start_color();
- switch(color_theme) {
- default:
- case 0:
- init_pair(1, COLOR_WHITE, COLOR_GREEN);
- init_pair(2, COLOR_BLACK, COLOR_YELLOW);
- break;
- case 1:
- init_pair(1, COLOR_WHITE, COLOR_BLACK);
- init_pair(2, COLOR_BLACK, COLOR_YELLOW);
- break;
- case 2:
- init_pair(1, COLOR_BLACK, COLOR_GREEN);
- init_pair(2, COLOR_BLACK, COLOR_YELLOW);
- break;
- case 3:
- init_pair(1, COLOR_BLACK, COLOR_RED);
- init_pair(2, COLOR_BLACK, COLOR_YELLOW);
- break;
- case 4:
- init_pair(1, COLOR_WHITE, COLOR_BLACK);
- init_pair(2, COLOR_BLACK, COLOR_BLUE);
- break;
- case 5:
- init_pair(1, COLOR_BLACK, COLOR_MAGENTA);
- init_pair(2, COLOR_BLACK, COLOR_CYAN);
- break;
+ if(color_fg_modeline < 0 || color_fg_modeline >= COLORS ||
+ color_bg_modeline < 0 || color_bg_modeline >= COLORS ||
+ color_fg_highlight < 0 || color_bg_highlight >= COLORS ||
+ color_bg_highlight < 0 || color_bg_highlight >= COLORS) {
+ echo();
+ curs_set(1);
+ endwin();
+ cerr << "Color numbers have to be between 0 and " << COLORS - 1 << "." << endl;
+ exit(1);
}
+ init_pair(1, color_fg_modeline, color_bg_modeline);
+ init_pair(2, color_fg_highlight, color_bg_highlight);
} else {
with_colors = 0;
}
if((key == KEY_ENTER || key == '\n') && temporary_line >= 0 && temporary_line < nb_lines) {
if(output_to_vt_buffer) {
- char *tty = ttyname(STDIN_FILENO);
- int fd = open(tty, O_WRONLY);
-
- struct termios oldtio, newtio;
-
- if (fd >= 0) {
- // Save current port settings
- tcgetattr(fd,&oldtio);
- memset(&newtio, 0, sizeof(newtio));
- // Set input mode (non-canonical, *no echo*,...)
- tcflush(fd, TCIFLUSH);
- tcsetattr(fd,TCSANOW, &newtio);
- // Put the selected line in the tty input buffer
- for(char *k = lines[temporary_line]; *k; k++) {
- ioctl(fd, TIOCSTI, k);
- }
- // Restore the old settings
- tcsetattr(fd,TCSANOW, &oldtio);
- close(fd);
- } else {
- cerr << "Can not open " << tty << "." << endl;
- exit(1);
- }
+ inject_into_tty_buffer(lines[temporary_line]);
} else {
ofstream out(output_filename);
if(out.fail()) {