QT开发中文网

qlistview的setIndexWidget设定删除靠右

要在 QListView 中将删除按钮设置为靠右对齐,可以使用 QHBoxLayout 或者直接通过设置一个合适的固定宽度来实现。下面是一个示例代码,展示如何将删除按钮放置在列表项的右侧:

#include <QApplication>
#include <QListView>
#include <QStandardItemModel>
#include <QPushButton>
#include <QVBoxLayout>
#include <QWidget>
#include <QHBoxLayout>

class MainWindow : public QWidget {
    Q_OBJECT

public:
    MainWindow(QWidget *parent = nullptr);

private slots:
    void onDeleteButtonClicked(int index);

private:
    QListView *listView;
    QStandardItemModel *model;
};

MainWindow::MainWindow(QWidget *parent)
    : QWidget(parent), listView(new QListView(this)), model(new QStandardItemModel(this)) {

    // 设置布局
    QVBoxLayout *layout = new QVBoxLayout(this);
    
    // 添加一些示例项目
    for (int i = 0; i < 5; ++i) {
        QString itemText = QString("Item %1").arg(i);
        model->appendRow(new QStandardItem(itemText));

        // 创建一个水平布局,将文本和删除按钮放入其中
        QWidget *widget = new QWidget();
        QHBoxLayout *hLayout = new QHBoxLayout(widget);
        
        QLabel *label = new QLabel(itemText, widget);  // 创建标签以显示项目文本
        QPushButton *deleteButton = new QPushButton("Delete", widget);

        connect(deleteButton, &QPushButton::clicked, this, [this, i]() { onDeleteButtonClicked(i); });

        hLayout->addWidget(label);
        hLayout->addWidget(deleteButton);
        
        // 设置水平布局的伸缩属性,使删除按钮靠右
        hLayout->addStretch();  // 在标签和按钮之间添加伸缩空间

        listView->setIndexWidget(model->index(i), widget);
    }

    listView->setModel(model);
    
    layout->addWidget(listView);
    setLayout(layout);
}

void MainWindow::onDeleteButtonClicked(int index) {
   if (index >= 0 && index < model->rowCount()) {
       // 删除当前索引的项
       QModelIndex currentIndex = model->index(index);
       QString itemText = model->itemFromIndex(currentIndex)->text();  // 获取当前项文本

       // 从模型中移除该项
       model->removeRow(index);

       // 将被删除的文本添加到末尾
       model->appendRow(new QStandardItem(itemText));

       // 更新每个索引的小部件
       for (int i = 0; i < model->rowCount(); ++i) {
           QWidget *widget = new QWidget();
           QHBoxLayout *hLayout = new QHBoxLayout(widget);

           QLabel *label = new QLabel(model->item(i)->text(), widget);  // 创建标签以显示项目文本
           QPushButton *deleteButton = new QPushButton("Delete", widget);

           connect(deleteButton, &QPushButton::clicked, this, [this, i]() { onDeleteButtonClicked(i); });

           hLayout->addWidget(label);
           hLayout->addWidget(deleteButton);
           hLayout->addStretch();  // 在标签和按钮之间添加伸缩空间

           listView->setIndexWidget(model->index(i), widget);
       }
   }
}

int main(int argc, char *argv[]) {
   QApplication app(argc, argv);

   MainWindow window;
   window.resize(300, 200);
   window.show();

   return app.exec();
}

#include "main.moc"

代码说明:

  1. 创建水平布局: 使用 QHBoxLayout 来排列每个列表项的内容。我们将 QLabel 用于显示项目文本,并将其与 QPushButton(用于删除操作)一起放入该布局中。

  2. 添加伸缩空间: 使用 hLayout->addStretch() 方法在标签和按钮之间插入可扩展空间,这样可以确保按钮自动靠右。

  3. 更新小部件: 当点击“删除”按钮时,在相应槽函数中,我们同样需要重新创建并更新列表中的小部件,以确保每一行都保持正确格式。

这样,每当你运行这个程序,所有的删除按钮都会在对应条目的右侧对齐。如果有其他问题或需要进一步帮助,请随时告诉我!


内容由零声教学AI助手提供,问题来源于学员提问

本站部分文章来源于网络,版权归原作者所有,如有侵权请联系站长删除。
转载请注明出处:https://qt.0voice.com/?id=13179

分享:
扫描分享到社交APP
上一篇
下一篇
发表列表
游客 游客
此处应有掌声~
评论列表

还没有评论,快来说点什么吧~

联系我们

在线咨询: 点击这里给我发消息

微信号:3007537140

上班时间: 10:30-22:30

关注我们
x

注册

已经有帐号?