簡體   English   中英

使用自定義小部件的Qt Designer 4.6中的分段錯誤

[英]Segmentation fault in Qt Designer 4.6 with custom widget

將新的Qt小部件與Qt Designer 4.6一起使用時,出現了段錯誤。 嘗試預覽新窗口小部件時出現問題。

使用gdb時,我發現問題出在qdesigner_internal :: WidgetFactory :: applyStyleToTopLevel:

Program received signal SIGSEGV, Segmentation fault.
qdesigner_internal::WidgetFactory::applyStyleToTopLevel (style=0x0, widget=0x1829df0) at /var/tmp/qt-x11-src-4.6.0/tools/designer/src/lib/shared/widgetfactory.cpp:777
777 /var/tmp/qt-x11-src-4.6.0/tools/designer/src/lib/shared/widgetfactory.cpp: No such file or directory.
 in /var/tmp/qt-x11-src-4.6.0/tools/designer/src/lib/shared/widgetfactory.cpp
(gdb) bt
#0  qdesigner_internal::WidgetFactory::applyStyleToTopLevel (style=0x0, widget=0x1829df0) at /var/tmp/qt-x11-src-4.6.0/tools/designer/src/lib/shared/widgetfactory.cpp:777
#1  0x00007ffff7475bed in qdesigner_internal::QDesignerFormBuilder::createPreview (fw=, styleName=..., appStyleSheet=..., deviceProfile=, scriptErrors=
    0x7fffffffbee0, errorMessage=0x7fffffffc3f0) at /var/tmp/qt-x11-src-4.6.0/tools/designer/src/lib/shared/qdesigner_formbuilder.cpp:404
#2  0x00007ffff7476773 in qdesigner_internal::QDesignerFormBuilder::createPreview (fw=0x0, styleName=..., appStyleSheet=..., deviceProfile=..., errorMessage=0x0)
    at /var/tmp/qt-x11-src-4.6.0/tools/designer/src/lib/shared/qdesigner_formbuilder.cpp:439
#3  0x00007ffff7532b27 in qdesigner_internal::PreviewManager::createPreview (this=0x837f20, fw=0x1879200, pc=..., deviceProfileIndex=-1, errorMessage=0x7fffffffc3f0, initialZoom=-1)
    at /var/tmp/qt-x11-src-4.6.0/tools/designer/src/lib/shared/previewmanager.cpp:686
#4  0x00007ffff75343cf in qdesigner_internal::PreviewManager::showPreview (this=0x837f20, fw=0x1879200, pc=..., deviceProfileIndex=-1, errorMessage=0x7fffffffc3f0)
    at /var/tmp/qt-x11-src-4.6.0/tools/designer/src/lib/shared/previewmanager.cpp:760
#5  0x00007ffff753472f in qdesigner_internal::PreviewManager::showPreview (this=0x837f20, fw=0x1879200, style=..., deviceProfileIndex=-1, errorMessage=0x7fffffffc3f0)
    at /var/tmp/qt-x11-src-4.6.0/tools/designer/src/lib/shared/previewmanager.cpp:659

因為在那里傳遞了空指針:


void WidgetFactory::applyStyleToTopLevel(QStyle *style, QWidget *widget)
{
    const QPalette standardPalette = style->standardPalette();
    if (widget->style() == style && widget->palette() == standardPalette)
        return;
//....
}

我是Qt的新手,這是我的第一個自定義小部件。 是否有人有解決此問題的線索。

這是我的小部件代碼


MBICInput::MBICInput(QWidget *parent) : QStackedWidget(parent){
  displayPage = new QWidget();
  displayPage->setObjectName(QString::fromUtf8("displayPage"));

  inputLB = new QLabel(displayPage);
  inputLB->setObjectName(QString::fromUtf8("inputLabel"));
  inputLB->setCursor(QCursor(Qt::PointingHandCursor));

  addWidget(displayPage);

  EditPage = new QWidget();
  EditPage->setProperty("EditInputLine", QVariant(true));
  EditPage->setObjectName(QString::fromUtf8("EditPage"));

  inputInput = new QLineEdit(EditPage);
  inputInput->setGeometry(QRect(5, 10, 231, 25));
  inputInput->setObjectName(QString::fromUtf8("input"));

  addWidget(EditPage);

  _animation = new QString("");
  _message   = new QString("Message");
  _validator = new QRegExpValidator(QRegExp("[a-zA-Z]+"), this);

}

MBICInput::~MBICInput() {
}

QValidator::State MBICInput::validate(QString &text, int &pos) const{
    return _validator->validate(text, pos);
}

void MBICInput::paintEvent(QPaintEvent *) {
  QPainter painter(this);
  painter.setRenderHint(QPainter::Antialiasing);
}


QSize MBICInput::minimumSizeHint() const{
   return QSize(200, 40);
}

QSize MBICInput::sizeHint() const{
   return QSize(200, 40);
}

void MBICInput::setAnimation(const QString &animation){
  *_animation = animation;
  update();
}

QString MBICInput::animation() const{
   return *_animation;
}

void MBICInput::setMessage(const QString &message){
  *_message = message;
  update();
}

QString MBICInput::message() const{
   return *_message;
}

void MBICInput::mousePressEvent(QMouseEvent *event){
  if(currentIndex()==0){
    setCurrentIndex(1);
  }else{
    setCurrentIndex(0);
  }
   update();
}

applyStyleToTopLevel函數中,您使用的是窗口小部件指針,而沒有驗證它是否為有效指針。 因此,當使用NULL控件指針進行widget->style時,它將崩潰。

僅供參考,我只是在Qt版本4.5.3-9下編譯了相同的代碼,並且在4.5設計器中工作正常。 可能是Qt 4.6錯誤...

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM