找不到'QAbstractItemView Private'值的虚拟表的链接器符号

问题描述 投票:0回答:1

我在为用户界面开发代码时遇到了一个问题。我在使用Yocto部署的Linux发行版上使用Qt 4.8。这是我的代码的一个非常简单的片段:

//  MyWidget.h
class MyWidget : public QWidget
{
    Q_OBJECT

public:
    MyWidget( QWidget* parent );
    ~MyWidget();

signals:
    void request_GoToNext( QString );           //!< Go to next panel

private slots:
    void onNext( QModelIndex index );

private:
    QTableView          *tableView;          
    QStandardItemModel  *dataModel;              
}


//  MyWidget.cpp
MyWidget::MyWidget( QWidget *parent ) : QWidget(parent)
{
    this->tableView = new QTableView(this);
    this->dataModel = new QStandardItemModel();

    // "Fill-in" data model with the list of files in a specific directory
    ...

    connect( this->tableView, SIGNAL(clicked(QModelIndex)), this, SLOT(onNext(QModelIndex)), Qt::UniqueConnection );
}

MyWidget::~MyWidget()
{
    disconnect( this->tableView, SIGNAL(clicked(QModelIndex)), this, SLOT(onNext(QModelIndex)) );

    this->dataModel->clear();

    delete this->tableView;
    delete this->dataModel;
}

void MyWidget::onNext( QModelIndex index )
{
    emit this->request_GoToNext( this->dataModel->item(index.row(), index.column())->text() );
}

问题起源于发出信号'request_GoToNext',这会导致应用程序崩溃或由于分段错误导致调试停止。我可以看到,在QtCreator中,应用程序似乎失败的位置在qabstractitemview.cpp文件中,在此函数中更具体:

QStyleOptionViewItemV4 QAbstractItemViewPrivate::viewOptionsV4() const
{
    Q_Q(const QAbstractItemView);
    QStyleOptionViewItemV4 option = q->viewOptions();
    if (wrapItemText)
        option.features = QStyleOptionViewItemV2::WrapText;
    option.locale = q->locale();
    option.locale.setNumberOptions(QLocale::OmitGroupSeparator);
    option.widget = q;
    return option;
}

对我来说这听起来很奇怪。发出信号后,应用程序应该删除当前面板并构建另一个:设置一些“qDebug”调用,这似乎发生了,删除当前面板(及其子节点)并创建一个新面板,但应用程序在显示新面板之前失败。删除与MyWidget相关的所有内容后,似乎程序“退出”了插槽“onNext”。

此外,在Qt Creator的应用程序输出中,我可以阅读此消息

找不到'QAbstractItemView Private'值的虚拟表的链接器符号

注意 - 观察如果我以这种方式重写插槽内的代码

 void MyWidget::onNext( QModelIndex index )
 {
     QObject::startTimer(1);
     emit this->request_GoToNext( this->dataModel->item(index.row(), index.column())->text() );
 }

 void MyWidget::timerEvent( QTimerEvent *event )
 {
     QObject::killeTimer( event->timerId() );

     emit this->request_GoToNext( this->dataModel->item(index.row(), index.column())->text() );
 }

一切正常!这就是为什么它似乎与“退出”槽呼叫有关。

非常感谢您的帮助

c++ qt4 signals-slots
1个回答
0
投票

经过其他一些测试后,我想我发现了哪个问题以及如何解决。

这里是我的代码的简化片段,其中有类Parent使用的类Button。单击按钮时,可能会导致面板更改,或者发出消息,或执行其他操作(不详细因为与问题无关)。

我找到的是插槽类onClicked类Button:输入第一个if,程序发出信号request_GoToPrev,这导致类Panel删除当前面板(及其子节点,甚至编译Button!)并引发一个新面板。但是在发出信号并执行所需的所有操作之后,程序“返回”到它发出信号并继续执行指令的时刻:当它到达第二个时,如果它因为不再一致而闪烁。

这是我测试后的样子。在第一个if问题的信号发射之后立即回电。

// HEADER: Button.h
class Button : public QPushButton
{
    Q_OBJECT

public:

    Button( QWidget *parent = 0 );
    ~Button();

signals:
    void request_GoToPrev();                    //!< Go to previous panel
    void request_GoToNext( QString );           //!< Go to next panel
    void signal_Error( int );                   //!< Error code

private slots:
    void onClicked();

private:
    typ_Button_tags *widgetTags;                //!< Pointer to the tags structure that defines the \ref Button widget
    typ_Shared      *privateCtx;                //!< Reference to runtime application structure
};

// C: Button.cpp
Button::Button( QWidget *parent )
    :
      QPushButton(parent)
{
    //  Do some settings, like: font, stylesheet, focus, size..
}

Button::~Button()
{
}

void Button::onClicked()
{
    //  Callback to be called when button clicked
    if( !this->widgetTags->callbackClick.isEmpty() )
    {
            emit this->request_GoToPrev();

            /*  !!! ATTENTION   !!!
             *
             *  Here the instruction return HAS to be written, otherwise the application crashes.
             *  In fact, when running, the signal 'request_GoToPrev' is sent, but the flow of the
             *  process should exit the call of this slot.
             *  Doing that, 'this' is no more consistent after having emitted the signal, so the
             *  application face a segmentation fault.
             */
            return;
    }


    //  Message box
    if( !this->widgetTags->msgText.isEmpty() )
    {
        //  Do some other actions on 'this'...
    }
}

// HEADER: Panel.h
class Panel : public QMainWindow
{
    Q_OBJECT

public:

    Panel( QWidget *parent = 0 );

private slots:
    void on_GoToNext(int index);
    void on_GoToPrevious();
    void on_Error(int errId);

private:
    Button *Btn;
};

// C: Panel.h
Panel::Panel( QWidget *parent )
    :
      QMainWindow(parent)
{
    //  Do some settings: font, stylesheet, focus, size...

    this->Btn = new Button( this );

        connect( this->Btn, SIGNAL(request_GoToPrev()), this, SLOT(on_GoToPrevious()), Qt::UniqueConnection );
    //  Do some actions to layout the button inside the panel
}

void Panel::on_GoToPrevious()
{  
    //  Do some check...

    delete this->Btn;

    //  Do some actions...
}
© www.soinside.com 2019 - 2024. All rights reserved.