//! [0]
assistant -collectionFile file
//! [0]
//! [1]
    
        My Application Help
        qthelp://com.mycompany.1_0_0/doc/index.html
        myfilter
        application.png
        false
        false
        true
        mycompany/myapplication
        
            About My Application
            Über meine Applikation...
        
        
            about.txt
            ueber.txt
            about.png
        
    
    
        
            
                myapplication-manual.qhp
                
            
        
        
            myapplication-manual.qch
        
    
//! [1]
//! [2]
QProcess *process = new QProcess;
QStringList args;
args << QLatin1String("-collectionFile")
    << QLatin1String("mycollection.qhc")
    << QLatin1String("-enableRemoteControl");
process->start(QLatin1String("assistant"), args);
if (!process->waitForStarted())
    return;
//! [2]
//! [3]
QByteArray ba;
ba.append("setSource qthelp://com.mycompany.1_0_0/doc/index.html");
ba.append('\0');
process->write(ba);
//! [3]
//! [4]
QByteArray ba;
ba.append("hide bookmarks;");
ba.append("hide index;");
ba.append("setSource qthelp://com.mycompany.1_0_0/doc/index.html");
ba.append('\0');
process->write(ba);
//! [4]
//! [5]
    ...
    
        
            myapplication-manual.qch
            another-manual.qch
        
    
//! [5]
//! [6]
assistant -collectionFile mycollection.qhc -register myapplication-manual.qch
//! [6]
//! [7]
    
        My Application Help
        mycompany/myapplication
        ...
    
//! [7]
//! [8]
assistant -collectionFile mycollection.qhc
//! [8]
//! [9]
%QDesktopServices::DataLocation%/mycompany/myapplication/mycollection.qhc
//! [9]
//! [10]
qcollectiongenerator mycollection.qhcp -o mycollection.qhc
//! [10]