Q_OBJECT 重要性

编写一个电子时钟demo,发现槽函数不存在,原因是没有在类的开头添加Q_OBJECT宏

#ifndef DIGICLOCK_H
#define DIGICLOCK_H
#include <QLCDNumber>

class DigiClock : public QLCDNumber
{
    //Q_OBJECT
public:
    DigiClock();

    void mousePressEvent(QMouseEvent *);
    void mouseMoveEvent(QMouseEvent *);

public slots:
    void slotshowTime();

private:
    QPoint dragPosition; //保存鼠标点相对电子时钟窗体左上角的偏移值

    bool showColon;//用于显示时间时是否显示:
    QTimer *timer;
};

#endif // DIGICLOCK_H
#include "digiclock.h"
#include <QTime>
#include <QTimer>
#include <QMouseEvent>

DigiClock::DigiClock()
{
    QPalette p = palette();
    p.setColor(QPalette::Window, Qt::blue);
    setPalette(p);;
    setWindowFlags(Qt::FramelessWindowHint);
    setWindowOpacity(0.5);

    timer = new QTimer(this);
    connect(timer, SIGNAL(timeout()), this, SLOT(slotshowTime()));

    timer->start(1000);
    slotshowTime();

    resize(150,60);
    showColon = true;
}

void DigiClock::slotshowTime()
{
    QTime time = QTime::currentTime();
    QString text = time.toString("hh:mm");
    if(showColon)
    {
        text[2] = ':';
        showColon = false;
    }
    else
    {
        text[2] = ' ';
        showColon = true;
    }
    display(text);
}


void DigiClock::mousePressEvent(QMouseEvent * event)
{
    if(event->button()  == Qt::LeftButton)
    {
        dragPosition = event->globalPos()-frameGeometry().topLeft();
        event->accept();
    }
    if(event->button() == Qt::RightButton)
    {
        close();
    }
}

void DigiClock::mouseMoveEvent(QMouseEvent * event)
{
    if(event->buttons() & Qt::LeftButton)
    {
        move(event->globalPos()-dragPosition);
        event->accept();
    }
}

 解决 办法是添加Q_OBJECT宏

没有Q_OBJECT  ,类中的slots,   signal, emit 等都不会被解析;

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值