コード例 #1
0
ファイル: Runner.cpp プロジェクト: baharev/SG2PS_Qt_GUI
void Runner::showResultDir() const {

    if (opts().getShowResultDirectory()) {

        showInFileManager(finalProjectFolder);
    }
}
コード例 #2
0
ファイル: issueswidget.cpp プロジェクト: uniblockchain/client
void IssuesWidget::slotOpenFile(QTreeWidgetItem *item, int)
{
    QString fileName = item->text(1);
    if (Folder *folder = ProtocolItem::folder(item)) {
        // folder->path() always comes back with trailing path
        QString fullPath = folder->path() + fileName;
        if (QFile(fullPath).exists()) {
            showInFileManager(fullPath);
        }
    }
}
コード例 #3
0
ファイル: owncloudgui.cpp プロジェクト: techscientist/client
void ownCloudGui::slotOpenPath(const QString &path)
{
    showInFileManager(path);
}