Qt QTreeView - 不满足条件时恢复到先前的选择

发布于 2024-12-01 15:45:38 字数 489 浏览 1 评论 0原文

在 QTreeView 选择更改时,如果某个特定情况我想恢复到之前的选择 不满足条件。

例如:

    void Editor::treeFolderSelected(QModelIndex const& index)
    {
        if(widget) {
            if(!widget->trySaveChanges()) {
                //revert to previous, validation failed
                return;
            }
        }

        //do normal behaviour

}

目前,我没有看到直接的方法来执行此操作,因为 QModelIndex 不提供有关之前选择的内容的任何信息。

有人对实现这一点的最佳方法有什么建议吗?

On QTreeView selection change, I would like to revert to the previous selection if a certain
condition is not met.

For example:

    void Editor::treeFolderSelected(QModelIndex const& index)
    {
        if(widget) {
            if(!widget->trySaveChanges()) {
                //revert to previous, validation failed
                return;
            }
        }

        //do normal behaviour

}

Currently I am not seeing a straight forward way to do this, as the QModelIndex does not provide any information regarding what was selected previously.

Does anyone have any suggestions on the best way to implement this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

颜漓半夏 2024-12-08 15:45:38
int lastSelection = -1;
bool abortEvent = false;
void Editor::treeFolderSelected(QModelIndex const& index)
{
   if (abortEvent) {
       abortEvent = false;
       return;   
   }
   if(widget) {
     if(!widget->trySaveChanges()) {
        if (lastSelection != -1) {
          abortEvent = true;
          select(lastSelection);
        }  
        return;
      }
      lastSelection = index;
   }
}
int lastSelection = -1;
bool abortEvent = false;
void Editor::treeFolderSelected(QModelIndex const& index)
{
   if (abortEvent) {
       abortEvent = false;
       return;   
   }
   if(widget) {
     if(!widget->trySaveChanges()) {
        if (lastSelection != -1) {
          abortEvent = true;
          select(lastSelection);
        }  
        return;
      }
      lastSelection = index;
   }
}
沉鱼一梦 2024-12-08 15:45:38

视图选择有自己的模型,QItemSelectionModel,带有信号为您提供新的和以前的选择。

The view selection has its own model, QItemSelectionModel, with signals that give you the new and previous selection.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文