X-Git-Url: https://fleuret.org/cgi-bin/gitweb/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=selector.cc;h=0f71d64a5e03cf7af6a9d331dade2c07e338d976;hb=7dc3c167aba9172a8c86b81908677417b6201e20;hp=93a4611c6b59a66929fb7c09920301e7d910c2d2;hpb=1777ff299211ccf4ff4c71113bb92bd65f0e997c;p=selector.git diff --git a/selector.cc b/selector.cc index 93a4611..0f71d64 100644 --- a/selector.cc +++ b/selector.cc @@ -53,6 +53,36 @@ int with_colors = 1; ////////////////////////////////////////////////////////////////////// +// This looks severely 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; @@ -304,7 +334,13 @@ int main(int argc, char **argv) { char buffer[buffer_size]; char *lines[nb_lines_max]; int no_blink = 0; - int 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, ""); char input_filename[buffer_size], output_filename[buffer_size]; strcpy(input_filename, ""); @@ -352,9 +388,12 @@ int main(int argc, char **argv) { } else if(strcmp(argv[i], "-t") == 0) { - check_opt(argc, argv, i, 1, ""); - theme = atoi(argv[i+1]); - i += 2; + check_opt(argc, argv, i, 4, " "); + 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 { @@ -367,7 +406,7 @@ int main(int argc, char **argv) { << " [-b]" << " [-v]" << " [-m]" - << " [-t ]" + << " [-t ]" << " [-o ]" << " [-s ]" << " [-l ]" @@ -411,17 +450,18 @@ int main(int argc, char **argv) { if(with_colors) { if(has_colors()) { start_color(); - switch(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_BLACK, COLOR_GREEN); - init_pair(2, COLOR_BLACK, COLOR_YELLOW); - 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; } @@ -489,29 +529,7 @@ int main(int argc, char **argv) { 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); - bzero(&newtio, 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()) {