Brings Qt Assistant to the foreground showing the given page. The page parameter is a path to an HTML file (e.g., QLatin1String("/home/pasquale/superproduct/docs/html/intro.html")). If Qt Assistant hasn't been opened yet, this function will call the openAssistant() slot with the specified page as the start page.
Definition at line 368 of file qassistantclient.cpp. References openAssistant(). { if (opened) { QTextStream os( socket ); os << page << QLatin1String("\n"); } else { pageBuffer = page; if (proc->state() == QProcess::NotRunning) { openAssistant(); pageBuffer.clear(); return; } } }
|