对QLabel进行子类化并在QWidget类中使用它

时间:2016-10-05 19:59:12

标签: c++ qt subclass qlabel

当我尝试将QLabel放入QWidget类时它无法正常工作(没有悬停事件或点击事件只显示标签pixmap)只有最后一个实例正常工作,当不使用set parent时,它会在新窗口中为每个创建标签,但其工作正常

这个gif显示了问题:

https://media.giphy.com/media/3o7TKKmZSISGXN4Opq/giphy.gif

这是QLabel子类标题:

#include <QObject>
#include <QLabel>
class myLabel : public QLabel
{
    Q_OBJECT
public:
    myLabel();

protected:
    void mousePressEvent(QMouseEvent *);
    void enterEvent(QEvent *);
    void leaveEvent(QEvent *);


signals :
    void labelClicked();
    void enterSignal();
    void leaveEventSignal();

private:

};

这个类来制作labelButton:

#include <QObject>
#include <QWidget> 
#include "mylabel.h"
class labelButton : public QWidget
{
    Q_OBJECT
public:
    labelButton();

    //some functions

private slots:
    //slots

private:
   //private member
};

这个我想在下面使用labelButtons的类:

#include <QWidget> 
#include "labelbutton.h"

namespace Ui {
class Widget;
}

class Widget : public QWidget
{
    Q_OBJECT

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

private:
    Ui::Widget *ui;

    labelButton *b_1, *b_2, *b_3;

};

这里是widget.cpp:

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

    b_1 = new labelButton;
    b_1->setParent(this);
    b_1->moveButton(70, 100);
    //some functions to initialize the labelButton
    b_1->show();

    //-----------------------

    b_2 = new labelButton;
    b_2->setParent(this);
    b_2->moveButton(70, 200);
    //some functions to initialize the labelButton
    b_2->show();

    //-----------------------

    b_3 = new labelButton;
    b_3->setParent(this);
    b_3->moveButton(70, 300);
    //some functions to initialize the labelButton
    b_3->show();
}

1 个答案:

答案 0 :(得分:0)

这是它的工作,问题在于传递父母 我做了一个函数,从函数值

中取出一个小部件并设置父按钮
b_1 = new labelButton;
//b_1->setParent(this); 
b_1->setParentFunc(this);
b_1->moveButton(70, 100);
//some functions to initialize the labelButton
// b_1->show();
labelButton中的

void labelButton::setParentFunc(QWidget *p)
{
    myParent = p;
}

mLabel_1->setParent(myParent); // myParent instead of this