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 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, 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 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 229 of file node_expando.c.
struct ExpandoNode * node_expando_parse_enclosure | ( | const char * | str, |
int | did, | ||
int | uid, | ||
char | terminator, | ||
const char ** | parsed_until, | ||
struct ExpandoParseError * | err | ||
) |
Parse an enclosed Expando.
str | String to parse |
did | Domain ID |
uid | Unique ID |
terminator | Terminating character |
parsed_until | First character after the parsed string |
err | Buffer for errors |
ptr | New ExpandoNode |
Definition at line 285 of file node_expando.c.