From eca81ba339c6e34fc678f5f138bea08a3561f37a Mon Sep 17 00:00:00 2001 From: midipix Date: Sun, 1 May 2016 09:36:19 -0400 Subject: argv.h: usage screen generator: add colors. --- src/internal/argv/argv.h | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'src') diff --git a/src/internal/argv/argv.h b/src/internal/argv/argv.h index 4015527..9bbb07f 100644 --- a/src/internal/argv/argv.h +++ b/src/internal/argv/argv.h @@ -15,6 +15,7 @@ #include #include #include +#include #define ARGV_VERBOSITY_NONE 0x00 #define ARGV_VERBOSITY_ERRORS 0x01 @@ -748,10 +749,21 @@ static void argv_usage( const size_t optcap = 64; const size_t width = 80; const char indent[] = " "; + const char creset[] = "\x1b[0m"; + const char cbold [] = "\x1b[1m"; + const char cgreen[] = "\x1b[32m"; + const char cblue [] = "\x1b[34m"; + const char ccyan [] = "\x1b[36m"; + const char * color = ccyan; + bool fcolor; fshort = mode ? !strcmp(mode,"short") : 0; flong = fshort ? 0 : mode && !strcmp(mode,"long"); fboth = !fshort && !flong; + fcolor = isatty(STDOUT_FILENO); + + if (fcolor) + fprintf(stdout,"%s%s",cbold,cgreen); if (header) fprintf(stdout,"%s",header); @@ -791,6 +803,12 @@ static void argv_usage( desclen = (optlen < width / 2) ? width - optlen : optlen; for (option=options; option->short_name || option->long_name; option++) { + /* color */ + if (fcolor) { + color = (color == ccyan) ? cblue : ccyan; + fputs(color,stdout); + } + /* description, using either paradigm or argname if applicable */ snprintf(description,sizeof(description),option->description, option->paradigm @@ -870,6 +888,9 @@ static void argv_usage( } } } + + if (fcolor) + fputs(creset,stdout); } #endif -- cgit v1.2.3