var fDesc=new Array();
fDesc[0] = "Qt Development Frameworks offers a seamless integration of Qt development tools for Microsoft Visual Studio 2005 and 2008. The Qt Visual Studio Add-in allows developers to use this standard development environment without having to worry about any Qt-related build steps or tools.
Main features:
- Wizards for creating new Qt projects and classes.
- Automated build setup for the Meta-Object Compiler(moc), the User Interface Compiler (uic), and the Resource Compiler (rcc).
- Import and export of Qt Project {.pro} and Project Include {.pri} files.
- Integrated Qt resource management.
- Integrated Qt documentation.
- Debugging extensions for Qt data types.";
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 = '';
}
}