GETN_END_BRANCH
#define GETN_END_BRANCH(_NODE_NAME) _tmpNode = _tmSave_##_NODE_NAME;
GETN_BEGIN_BRANCH creates a tree subbranch in the dialogbox.
All GETN control with GETN prefix can be added into the subbranch between GETN_BEGIN_BRANCH and GETN_END_BRANCH.
EX1
#include <GetNbox.h> void GETN_END_BRANCH_ex1() { GETN_TREE(testTree) GETN_CHECK(FitAllCurves, "Fit All Curves", 0) GETN_BEGIN_BRANCH(Fit, "Fitting Options")//Match GETN_END_BRANCH GETN_CHECK(FixIntercept, "Fix Intercept", 0) GETN_CHECK(FixSlope, "Fix Slope", 0) GETN_END_BRANCH(Fit) //Match GETN_BEGIN_BRANCH GETN_NUM(Points, "Points", 20) if(GetNBox(testTree, NULL, NULL, NULL, NULL)) out_tree(testTree); }
GETN_BEGIN_BRANCH
GetNbox.h