var fDesc=new Array();
fDesc[0] = "Nokia offers a seamless integration of Qt development tools for the Eclipse platform. The integration allows developers to use this standard development environment without needing to take care of any Qt-related build steps or tools.
The main features of the integration are:
- Fully integrated form editor (Qt Designer)
- Wizards for creating new Qt projects and classes
- Integrated .pro file editor
- Automated build setup for moc, uic, and rcc
- Integrated Qt documentation";
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 = '';
}
}