NetworkManager/src/libnm-glib-aux/nm-enum-utils.h
Íñigo Huguet 925d4df801 man nm-settings-nmcli: add "Valid values" field
Show a new field called "Valid values" in those properties that only
accept a limited set of values, like enums, ints with a valid range of
values, etc.

As there is some complex logic behind getting this information, this
logic has been put in nm-meta-setting-desc and nm-enum-utils so they can
be re-used, avoiding duplicity and errors. Some refactor has been done
in nm-meta-setting-desc in this direction, too.
2023-09-21 15:57:35 +02:00

44 lines
1.7 KiB
C

/* SPDX-License-Identifier: LGPL-2.1-or-later */
/*
* Copyright (C) 2017 Red Hat, Inc.
*/
#ifndef __NM_ENUM_UTILS_H__
#define __NM_ENUM_UTILS_H__
/*****************************************************************************/
typedef struct _NMUtilsEnumValueInfo {
/* currently, this is only used for _nm_utils_enum_from_str_full() to
* declare additional aliases for values. */
const char *nick;
int value;
} NMUtilsEnumValueInfo;
typedef struct _NMUtilsEnumValueInfoFull {
const char *nick;
const char **aliases;
const char *value_str;
int value;
} NMUtilsEnumValueInfoFull;
char *_nm_utils_enum_to_str_full(GType type,
int value,
const char *sep,
const NMUtilsEnumValueInfo *value_infos);
gboolean _nm_utils_enum_from_str_full(GType type,
const char *str,
int *out_value,
char **err_token,
const NMUtilsEnumValueInfo *value_infos);
const char **_nm_utils_enum_get_values(GType type, int from, int to);
GArray *_nm_utils_enum_get_values_full(GType type,
int from,
int to,
const NMUtilsEnumValueInfo *value_infos);
/*****************************************************************************/
#endif /* __NM_ENUM_UTILS_H__ */