本文整理汇总了C++中QTreeView::currentIndex方法的典型用法代码示例。如果您正苦于以下问题:C++ QTreeView::currentIndex方法的具体用法?C++ QTreeView::currentIndex怎么用?C++ QTreeView::currentIndex使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类QTreeView
的用法示例。
在下文中一共展示了QTreeView::currentIndex方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: handleExpand
void TreeCtrl::handleExpand(Root::Action & t)
{
QTreeView* tv = wnd();
QModelIndex i = tv->currentIndex();
ENABLED_IF( t, i.isValid() && ! tv->isExpanded( i ) );
tv->setExpanded( i, true );
}
示例2: handleExpandSubs
void TreeCtrl::handleExpandSubs(Root::Action & t)
{
QTreeView* tv = wnd();
QModelIndex i = tv->currentIndex();
ENABLED_IF( t, i.isValid() );
QApplication::setOverrideCursor( Qt::WaitCursor );
expand( tv, i, true );
QApplication::restoreOverrideCursor();
}
示例3: copyFullPathToClipboard
/*
* Copies the full path of the selected item in pkgFileListTreeView to clipboard
*/
void MainWindow::copyFullPathToClipboard()
{
QTreeView *tb = ui->twProperties->currentWidget()->findChild<QTreeView*>("tvPkgFileList");
if (tb && tb->hasFocus())
{
QString path = utils::showFullPathOfItem(tb->currentIndex());
QClipboard *clip = qApp->clipboard();
clip->setText(path);
}
}
示例4: handleCopy
void TreeCtrl::handleCopy(Root::Action & t)
{
QTreeView* tv = wnd();
QModelIndex i = tv->currentIndex();
ENABLED_IF( t, i.isValid() );
QVariant v = i.data();
QMimeData *md = new QMimeData();
md->setText( v.toString() );
QApplication::clipboard()->setMimeData( md );
}