mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-10 00:28:20 +00:00
[common] option: add preset-only options that don't show up in help
This commit is contained in:
parent
8a2ae6860e
commit
44850f1699
@ -50,6 +50,7 @@ struct Option
|
||||
char * name;
|
||||
char * description;
|
||||
const char shortopt;
|
||||
bool preset;
|
||||
|
||||
enum OptionType type;
|
||||
union
|
||||
|
@ -663,6 +663,8 @@ void option_print(void)
|
||||
for(int i = 0; i < state.groups[g].count; ++i)
|
||||
{
|
||||
struct Option * o = state.groups[g].options[i];
|
||||
if (o->preset)
|
||||
continue;
|
||||
char * value = o->toString(o);
|
||||
if (!value)
|
||||
{
|
||||
@ -695,8 +697,10 @@ void option_print(void)
|
||||
for(int i = 0; i < state.groups[g].count; ++i)
|
||||
{
|
||||
struct Option * o = state.groups[g].options[i];
|
||||
char * value = stringlist_at(values, i);
|
||||
if (o->preset)
|
||||
continue;
|
||||
|
||||
char * value = stringlist_at(values, i);
|
||||
len = alloc_sprintf(
|
||||
&line,
|
||||
"%s:%-*s | %c%c | %-*s | %s",
|
||||
@ -718,6 +722,12 @@ void option_print(void)
|
||||
|
||||
stringlist_free(&values);
|
||||
|
||||
if (stringlist_count(lines) <= 1)
|
||||
{
|
||||
stringlist_free(&lines);
|
||||
continue;
|
||||
}
|
||||
|
||||
// print out the lines
|
||||
for(int i = 0; i < stringlist_count(lines); ++i)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user