gpt4 book ai didi

c++ - 如何从 QListView 的 SIGNAL/SLOT 传递/检索参数?

转载 作者:行者123 更新时间:2023-11-28 02:32:57 24 4
gpt4 key购买 nike

我制作了一个名为 on_listView_currentChanged 的自定义 SLOT 并将其连接到 currentChanged SIGNAL QListView。但是 SIGNAL/SLOT 不工作。

我如何从/向 QListView 的 SIGNAL/SLOT 传递/检索参数?

以下是我最基本的代码:

主窗口.h

#ifndef MAINWINDOW_H
#define MAINWINDOW_H

#include <QMainWindow>
#include <QStringListModel>
#include <QStringList>
#include <QFile>
#include <QString>
#include <QTextStream>
#include <QTimeEdit>
#include <QElapsedTimer>
#include <QItemSelection>

namespace Ui {
class MainWindow;
}

class MainWindow : public QMainWindow
{
Q_OBJECT

public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();

private slots:
void on_listView_currentChanged(const QModelIndex & current, const QModelIndex & previous);

private:
Ui::MainWindow *ui;

void populateListView();

QStringListModel *stringListModel;
QStringList stringList;
};

#endif // MAINWINDOW_H

主窗口.cpp

#include "mainwindow.h"
#include "ui_mainwindow.h"

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

populateListView();

connect(ui->listView->selectionModel(), SIGNAL(currentChanged(const QModelIndex & current, const QModelIndex & previous)), this, SLOT(on_listView_currentChanged(const QModelIndex & current, const QModelIndex & previous)));
}
MainWindow::~MainWindow()
{
delete ui;
}
void MainWindow::on_listView_currentChanged(const QModelIndex & current, const QModelIndex & previous)
{
ui->textBrowser->setHtml(current.data().toString());
}
void MainWindow::populateListView()
{
//My lengthy codes to populate the lsitView with items
}

最佳答案

从连接调用中删除参数名称,它对它们不起作用。

即使用

connect(ui->listView->selectionModel(), SIGNAL(currentChanged(const QModelIndex &, const QModelIndex & )), this, SLOT(on_listView_currentChanged(const QModelIndex & , const QModelIndex & )));

connect(ui->listView->selectionModel(), SIGNAL(currentChanged(const QModelIndex & current, const QModelIndex & previous)), this, SLOT(on_listView_currentChanged(const QModelIndex & current, const QModelIndex & previous)));

顺便说一句,它会向标准输出打印一条警告消息

关于c++ - 如何从 QListView 的 SIGNAL/SLOT 传递/检索参数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28475148/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com