Expando Node for an Expando. More...
Go to the source code of this file.
Data Structures | |
struct | NodeExpandoPrivate |
Private data for an Expando -. More... | |
Functions | |
struct ExpandoNode * | node_expando_new (struct ExpandoFormat *fmt, int did, int uid) |
Create a new Expando ExpandoNode. | |
void | node_expando_set_color (const struct ExpandoNode *node, int cid) |
Set the colour for an Expando. | |
void | node_expando_set_has_tree (const struct ExpandoNode *node, bool has_tree) |
Set the has_tree flag for an Expando. | |
struct ExpandoFormat * | parse_format (const char *str, const char **parsed_until, struct ExpandoParseError *err) |
Parse a format string. | |
struct ExpandoNode * | parse_short_name (const char *str, const struct ExpandoDefinition *defs, ExpandoParserFlags flags, struct ExpandoFormat *fmt, const char **parsed_until, struct ExpandoParseError *err) |
Create an expando by its short name. | |
struct ExpandoNode * | node_expando_parse (const char *str, const struct ExpandoDefinition *defs, ExpandoParserFlags flags, const char **parsed_until, struct ExpandoParseError *err) |
Parse an Expando format string. | |
int | node_expando_render (const struct ExpandoNode *node, const struct ExpandoRenderData *rdata, struct Buffer *buf, int max_cols, void *data, MuttFormatFlags flags) |
Render an Expando Node - Implements ExpandoNode::render() -. | |
struct ExpandoNode * | node_expando_parse_enclosure (const char *str, int did, int uid, char terminator, struct ExpandoFormat *fmt, const char **parsed_until, struct ExpandoParseError *err) |
Parse an enclosed Expando. | |
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.
Definition in file node_expando.h.
struct ExpandoNode * node_expando_new | ( | struct ExpandoFormat * | fmt, |
int | did, | ||
int | uid | ||
) |
Create a new Expando ExpandoNode.
fmt | Formatting data |
did | Domain ID |
uid | Unique ID |
ptr | New Expando ExpandoNode |
Definition at line 78 of file node_expando.c.
void node_expando_set_color | ( | const struct ExpandoNode * | node, |
int | cid | ||
) |
Set the colour for an Expando.
node | Node to alter |
cid | Colour |
Definition at line 100 of file node_expando.c.
void node_expando_set_has_tree | ( | const struct ExpandoNode * | node, |
bool | has_tree | ||
) |
Set the has_tree flag for an Expando.
node | Node to alter |
has_tree | Flag to set |
Definition at line 115 of file node_expando.c.
struct ExpandoFormat * parse_format | ( | const char * | str, |
const char ** | parsed_until, | ||
struct ExpandoParseError * | err | ||
) |
Parse a format string.
[in] | str | String to parse |
[out] | parsed_until | First character after the parsed string |
[out] | err | Buffer for errors |
ptr | New ExpandoFormat object |
Parse a printf()-style format, e.g. '-15.20x'
_
(underscore) means lowercase the string Definition at line 136 of file node_expando.c.
struct ExpandoNode * parse_short_name | ( | const char * | str, |
const struct ExpandoDefinition * | defs, | ||
ExpandoParserFlags | flags, | ||
struct ExpandoFormat * | fmt, | ||
const char ** | parsed_until, | ||
struct ExpandoParseError * | err | ||
) |
Create an expando by its short name.
[in] | str | String to parse |
[in] | defs | Expando definitions |
[in] | flags | Flag for conditional expandos |
[in] | fmt | Formatting info |
[out] | parsed_until | First character after parsed string |
[out] | err | Buffer for errors |
ptr | New ExpandoNode |
Definition at line 245 of file node_expando.c.
struct ExpandoNode * node_expando_parse | ( | const char * | str, |
const struct ExpandoDefinition * | defs, | ||
ExpandoParserFlags | flags, | ||
const char ** | parsed_until, | ||
struct ExpandoParseError * | err | ||
) |
Parse an Expando format string.
[in] | str | String to parse |
[in] | defs | Expando definitions |
[in] | flags | Flag for conditional expandos |
[out] | parsed_until | First character after parsed string |
[out] | err | Buffer for errors |
ptr | New ExpandoNode |
Definition at line 284 of file node_expando.c.
struct ExpandoNode * node_expando_parse_enclosure | ( | const char * | str, |
int | did, | ||
int | uid, | ||
char | terminator, | ||
struct ExpandoFormat * | fmt, | ||
const char ** | parsed_until, | ||
struct ExpandoParseError * | err | ||
) |
Parse an enclosed Expando.
[in] | str | String to parse |
[in] | did | Domain ID |
[in] | uid | Unique ID |
[in] | terminator | Terminating character |
[in] | fmt | Formatting info |
[out] | parsed_until | First character after the parsed string |
[out] | err | Buffer for errors |
ptr | New ExpandoNode |
Definition at line 349 of file node_expando.c.