GETN_NUM
#define GETN_NUM(_NODE_NAME, _NODE_LABEL, _DEFAULT_VAL) _tmpSubNode = _tmpNode.AddNumericNode(_DEFAULT_VAL, #_NODE_NAME, TRGP_DOUBLE);TREE_ADD_LABEL(_NODE_LABEL);
This macro creates a numeric edit box in the dialogbox.
EX1
#include <GetNBox.h> static int _event_func_ex(TreeNode& tr, int nRow, int nEvent, DWORD& dwEnables, LPCSTR lpcszNodeName, WndContainer& getNContainer, string& strAux, string& strErrMsg) { if(tr.Factor.dVal <= 0) { O_SET_BIT(dwEnables, GETNGEVT_OK_ENABLE, false); strErrMsg = "Factor must more than 0"; } return true; } void GETN_NUM_ex1() { GETN_BOX( treeTest ); double ff = 1.23; GETN_NUM(Factor, "Scale Factor", ff) if( GetNBox( treeTest, _event_func_ex )) out_tree( treeTest ); }
GETN_OPTION_NUM_FORMAT
GetNbox.h