var fDesc=new Array(); fDesc[0] = "AdaGIDE is the Ada GNAT Integrated Development Environment for Windows 95/NT/2000/ME/XP. It consists of an editor that interfaces to the GNAT Ada compilers. AdaGIDE was implemented entirely in Ada using the win32ada binding.

Main features:

- Standard Windows interface, including MDI (multiple documents)
- Spell checker
- Automatic code reformatting
- Colorized context-sensitive editing
- Comment/Uncomment buttons
- Ada 95 help, including LRM"; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }