/* ----------------------------------------------------------------------------- This source file is part of OpenSpace3D For the latest info, see http://www.openspace3d.com Copyright (c) 2012 I-maginer This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. 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 Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA, or go to http://www.gnu.org/copyleft/lesser.txt ----------------------------------------------------------------------------- */ fun cbCloseEdit(p)= let p -> [ctrlname ctrlvalue ctrltype] in let getEdCtrlTextLineValue ctrlname -> name in let getEdCtrlEditTextValue ctrlvalue -> value in let getSelectedEdCtrlSelect ctrltype -> type in ["name" name]:: ["value" value]:: ["type" type]:: nil;; fun dynamicedit(winstr, inst, viewstr, applybtn)= let [400 200] -> [iw ih] in ( setEdWindowSize winstr iw ih; let (getPluginInstanceParam inst "name") -> name in let if name == nil then "MyVar" else name -> name in let (getPluginInstanceParam inst "value") -> value in let if value == nil then "NIL" else value -> value in let (getPluginInstanceParam inst "type") -> type in let if type == nil then "String" else type -> type in let crEdCtrlLabel winstr 10 12 160 20 (loc "OS3DGLOBALVAR_0007") nil -> labelname in let crEdCtrlTextLine winstr 180 10 200 20 name nil EDWIN_RESIZE_MW -> ctrlname in let crEdCtrlLabel winstr 10 37 160 20 (loc "OS3DGLOBALVAR_0001") nil -> labeltype in let crEdCtrlSelect winstr 180 35 200 120 EDWIN_RESIZE_MW -> ctrltype in let crEdCtrlLabel winstr 10 62 160 20 (loc "OS3DGLOBALVAR_0006") nil -> labeltitle in let crEdCtrlEditText winstr 10 90 (iw - 20) 90 value nil EDWIN_RESIZE_MW -> ctrlvalue in ( fillEdCtrlSelect ctrltype "String"::"Hexa"::"Int"::"Float"::nil; selectEdCtrlSelect ctrltype type; [mkfun1 @cbCloseEdit [ctrlname ctrlvalue ctrltype] nil]; ); );;