0

我以前问过这个问题,一个很棒的人引导我为这个问题找到了一个体面的解决方法。但是,我希望看看是否有更好的解决方案。一个实际上完全防止我的 QListWidget 发生任何变化的方法。

工作演示示例

ListDemo 压缩文件 http://nexrem.com/test/ListDemo.zip

ListDemo cpp 代码

MainWindow::MainWindow(QWidget *parent) :
    QMainWindow(parent),
    ui(new Ui::MainWindow)
{
    ui->setupUi(this);

    myListWidget = new QListWidget();

    /*
     * The signal-slot below is a temporary workaround for the shifting issue.
     * This will ensure that the item selected remains in view,
     * This is achieved by forcing the item to be in the center of the window;
     * however, this has an undesired side-effect of visible 'jumping' as the list
     * scrolls to center the item.
     */
    //connect (myListWidget, SIGNAL(itemClicked(QListWidgetItem*)), this,
    //         SLOT(scrollToItem(QListWidgetItem*)));

    for (int i = 0; i <= 1000; ++i)
    {
        QListWidgetItem * myItem = new QListWidgetItem(myListWidget);
        QString text("");
        for (int i = 0; i <= 40; ++i)
        {
            text.append("W");
        }
        myItem->setText(text + QString::number(i));
    }

    for (int i = 0; i <= 1000; ++i)
    {
        if (i%2)
            myListWidget->item(i)->setHidden(true);
    }
    auto selected = myListWidget->selectedItems();
    if (selected.size() == 1)
    {
        myListWidget->scrollToItem(selected.front());
    }
    setCentralWidget(myListWidget);
}


void MainWindow::scrollToItem(QListWidgetItem * item)
{
    std::cout << "Scrolling to the item." << std::endl;
    myListWidget->scrollToItem(item, QAbstractItemView::PositionAtCenter);
}

问题: 每当我有一个带有水平滚动条和隐藏行的 QListWidget 时,我都会得到一个不受欢迎的行为,即每当用户单击一个项目时,它就会从视图中消失,并且整个列表会向下移动。在上面的示例中,我隐藏了每隔一行,以演示这种行为。

解决方法: 解决方法是有一个信号槽连接,强制将所选项目滚动回视图并定位在中心。请注意,我必须使用PositionAtCenterasEnsureVisible不起作用。它认为该项目在视线之外时是可见的。这种解决方法是可以接受的;但是,当您的选择被强制定位在中心时,会出现明显的“跳跃”。这是不希望的副作用。

在这一点上,我不确定这是否是一个 QT 错误(我不认为有水平滚动条会迫使您的选择不可见)或者我的代码缺少一些重要的东西。

修复: 根据@GM 的评论,缺少的​​只是myListWidget->setAutoScroll(false);

4

1 回答 1

1

正如评论中提到的......

为防止选择时自动滚动,请禁用该autoScroll属性。因此,在提供的示例代码中...

myListWidget->setAutoScroll(false);

请注意,当项目被拖动到列表视图上时,此属性也会产生影响,因此如果您希望列表视图充当放置站点,那么您可能希望在获得QDragEnterEvent.

于 2017-06-19T14:58:42.200 回答