本文整理汇总了C++中Transfer::absolute_files_path方法的典型用法代码示例。如果您正苦于以下问题:C++ Transfer::absolute_files_path方法的具体用法?C++ Transfer::absolute_files_path怎么用?C++ Transfer::absolute_files_path使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Transfer
的用法示例。
在下文中一共展示了Transfer::absolute_files_path方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: torrentDoubleClicked
void TransferListWidget::torrentDoubleClicked(const QModelIndex& index) {
const QString hash = index.model()->data(index.model()->index(index.row(), TorrentModelItem::TR_HASH)).toString();//mapToSource(index).row();
Transfer h = BTSession->getTransfer(hash);
if (!h.is_valid()) return;
int action;
if (h.is_seed()) {
action = Preferences().getActionOnDblClOnTorrentFn();
} else {
action = Preferences().getActionOnDblClOnTorrentDl();
}
switch(action) {
case TOGGLE_PAUSE:
if (h.is_paused()) {
h.resume();
} else {
h.pause();
}
break;
case OPEN_DEST:
QString link = h.num_files() == 1 ? h.absolute_files_path().at(0) : h.save_path();
QDesktopServices::openUrl(QUrl::fromLocalFile(link));
break;
}
}
示例2: playMedia
bool Session::playMedia(Transfer t, int fileIndex)
{
if (t.is_valid() && t.has_metadata() &&
misc::isPreviewable(misc::file_extension(t.filename_at(fileIndex))))
{
TransferBitfield pieces = t.pieces();
const std::vector<int> extremity_pieces = t.file_extremity_pieces_at(fileIndex);
// check we have all boundary pieces for the file
foreach (int p, extremity_pieces) if (!pieces[p]) return false;
t.set_sequential_download(true);
return QDesktopServices::openUrl(QUrl::fromLocalFile(t.absolute_files_path().at(fileIndex)));
}