09-23-2022, 10:09 PM
(09-23-2022, 06:28 PM)BDS107 Wrote: Somewhere on (I think) a forum I found the QB64 program TUI.
I really don't remember where I found it, but I still wanted to take a look at TUI.
Is there a "manual" for this Text User Interface somewhere?
Some lines of this code:
Code: (Select All)tui "set highintensity=true"
statusbar = tui("add type=label;name=statusbar;caption= Ready.;x=1;y=25;w=80;h=1;fg=0;bg=3")
tui "set defaults;fg=0;bg=7;fghover=7;bghover=0;fghotkey=15"
filemenu = tui("add type=menubar;parent=0;name=filemenu;caption=&File")
tui "set defaults;parent=filemenu"
filemenunew = tui("add type=menuitem;name=filemenunew;caption=&New Ctrl+N")
tui "add type=menuitem;caption=-"
filemenuexit = tui("add type=menuitem;name=filemenuexit;caption=E&xit")
you probably got it from Fellippes GitHub here https://github.com/FellippeHeitor/tui, I followed his development back the days and I'm pretty sure it's in an unfinished experimental state and probably will remain in this state as Fellippe dropped all development in the beginning of this year. The only documentation are the few comments inside the source file. However, also on Fellippes GitHub you'll find his InForm repository, a GUI designing tool with a comprehensive GitHub based Wiki, but that project is also abandoned. In alternative you can also try my GuiTools Framework (see my signature) or @bplus its VS (Very Simple GUI) here: https://staging.qb64phoenix.com/showthread.php?tid=689
GuiTools, Blankers & other Projects:
https://staging.qb64phoenix.com/forumdisplay.php?fid=32
Libraries & useful Functions:
https://staging.qb64phoenix.com/forumdisplay.php?fid=23
https://staging.qb64phoenix.com/forumdisplay.php?fid=32
Libraries & useful Functions:
https://staging.qb64phoenix.com/forumdisplay.php?fid=23