TreeLine 1.2.2 (Stable branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News TreeLine 1.2.2 (Stable branch)
# 1  
Old 01-08-2009
TreeLine 1.2.2 (Stable branch)

Image TreeLine is used to organize and store text data in a tree structure. It is well suited to keeping track of many different types of information. Each node of the tree can contain several defined fields, forming a mini-database. The format of each node can be defined, and the output can be shown on the screen, printed, or exported to HTML. The tree structure is navigated and edited in the left pane of the window, while various views of the child data are shown and editable in the right pane. The data is stored in XML text files. TreeLine is based on the PyQt library. License: GNU General Public License (GPL) Changes:
A German translation was added. Support was added for Python 2.6. Tabbing issues were fixed, as well as problems with special fields in node titles. Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
Blt_TreeReleaseToken(3) 				      BLT Library Procedures					   Blt_TreeReleaseToken(3)

__________________________________________________________________________________________________________________________________________________

NAME
Blt_TreeReleaseToken - Releases token associated with tree object. SYNOPSIS
#include <bltTree.h> int Blt_TreeReleaseToken(token) ARGUMENTS
Blt_Tree *token (in) Token of tree to be released. _________________________________________________________________ DESCRIPTION
This procedure releases the token associated with a C-based tree data object. When all outstanding tokens for a tree data object have been released, then the data object itself will be freed. The arguments are as follows: token Token of the tree data object to be released. This token was initialized either by Tcl_TreeGetToken or Blt_TreeCreate earlier. RETURNS
Nothing. EXAMPLE
The following example creates and then releases a new token. Blt_Tree token; if (Blt_TreeCreate(interp, "myTree", &token) != TCL_OK) { return TCL_ERROR; } printf("tree is %s ", Blt_TreeName(token)); /* Tree will be destroyed when the token is released. */ Blt_TreeReleaseToken(token); KEYWORDS
tree, token BLT
2.4 Blt_TreeReleaseToken(3)