Post Reply 
Idea maker of dialog boxes (PC Prgm) for hp50 and HPprime
11-05-2016, 04:26 AM (This post was last modified: 02-15-2017 04:40 AM by compsystems.)
Post: #1
Idea maker of dialog boxes (PC Prgm) for hp50 and HPprime
Hello

HPuserEdit editor for (hp48/hp50) http://www.hpcalc.org/details/7587 and
DaisukeEdit (TI89) http://www.ticalc.org/archives/files/fil...39853.html are makers dialog boxes
some enthusiastic for to creating a PC program that generates dialog boxes for hp-prime? similar to hpuserEdit or daisuke edit.

Screenshots:
[Image: dialogBoxes_hp_prime_image01.png]

The idea is to automatically generate code for INPUT cmd and similar on hp-prime

Example extracted from graph3d app
PHP Code:
xmin3D,xmax3D;
ymin3D,ymax3D;
zmin3D,zmax3D;
grid3D,zoom3D;
rotx,roty,rotz,RotM;
xc,yc,zc,dx,dy;
recompute3D;
init3D=0;
minZ,maxZ,minD;
tmode,cmode,showbox=1;
boxpts,blines;
zclip;
xlines,ylines;
rowtrace,coltrace;
xtraceytrace;
showplanes;
winxwiny;
triparms;
funcs,oldfuncs;
tridefs,ldefs,ptdefs,zcols,zvals;
fsel,flist,tracefunc;
wiremode,transmode,contour,ptype;
clist,reclist;
mpan;



EXPORT inputbox()
BEGIN
  local xmin
=xmin3D,xmax=xmax3D;
  
local ymin=ymin3D,ymax=ymax3D;
  
local zmin=zmin3D,zmax=zmax3D;
  
local zoom=zoom3D,tm=transmode,wm=wiremode;
  
local sb=showbox,pt=ptype;
input(
    {
      {
xmin,[0],{15,30,0}},
      {
xmax,[0],{65,30,0}},
      {
ymin,[0],{15,30,1}},
      {
ymax,[0],{65,30,1}},
      {
zmin,[0],{15,30,2}},
      {
zmax,[0],{65,30,2}},
      {
zoom,[0],{15,30,4}},
      {
tm,0,{90,10,4}},
      {
wm,0,{90,10,5}},
      {
sb,0,{90,10,6}},
      {
pt,{"Surface","3D Contour""2D Contour"},{15,30,3}},
      {
mpan,0,{40,30,5}},
      {
showplanes,0,{40,30,6}}
    },
    
"Graph 3D Plot Setup",
    {
      
"Xmin=""Xmax=",
      
"Ymin=""Ymax=",
      
"Zmin=""Zmax=",
      
"Zoom=",
      
"Transparent?""Show grid?",
      
"Show box?""Type",
      
"Mouse Pan?",
      
"Show Planes?"
    
},
    {
      
"Enter the value of left side of the viewing box",
      
"Enter the value of right side of the viewing box",
      
"Enter the value of front side of the viewing box",
      
"Enter the value of back side of the viewing box",
      
"Enter the value of bottom side of the viewing box",
      
"Enter the value of top side of the viewing box",
      
"Enter the zoom factor (must be > 0)",
      
"Render surface with transparency?",
      
"Render surface with wireframe?",
      
"Show box frame?",
      
"Select plot type",
      
"Enable mouse panning?",
      
"Show cross-sectional planes in trace mode?"
     
})
END

[Image: dialogBoxes_hp_prime_image00.png]
Find all posts by this user
Quote this message in a reply
11-07-2016, 07:56 AM
Post: #2
RE: makers dialog boxes (PC Prgm)
Hello,

Impressive and beautiful!!!! Great work!

What did you use to develop this program?

Cyrille

Although I work for the HP calculator group, the views and opinions I post here are my own. I do not speak for HP.
Find all posts by this user
Quote this message in a reply
11-07-2016, 02:51 PM (This post was last modified: 02-15-2017 04:40 AM by compsystems.)
Post: #3
RE: makers dialog boxes (PC Prgm)
Hello I am not the author of PC applications, HP48/49 is Roger Broncano and for TI89 is David F Suescun Ramirez http://www.daisuke.tk/
my proposal is that someone to made something similar for the hp-prime or hp50
Find all posts by this user
Quote this message in a reply
Post Reply 




User(s) browsing this thread: 1 Guest(s)