QT自定义控件消息实现
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了QT自定义控件消息实现相关的知识,希望对你有一定的参考价值。
通过对一个已经存在的Qt窗口部件进行子类化或者直接对QWidget进行子类化,就可以创建自定义窗口部件。以下直接对已有的Qt窗口部件进行子类化:
如下通过对QLineEdit进行子类化来实现自已需要的窗口部件,参考代码如下:
/**********************子类化的头文件*****************************/
#ifndefLINEEDIT_H
#defineLINEEDIT_H
#include<QLineEdit>
#include<QMouseEvent>
classLineEdit:publicQLineEdit
{
Q_OBJECT
public:
explicitLineEdit(QObject*parent=0);
protected:
voidmouseDoubleClickEvent(QMouseEvent*);
};
#endif//LINEEDIT_H
/**********************子类化的源文件*****************************/
#include"lineedit.h"
#include<QMessageBox>
LineEdit::LineEdit(QObject*parent)
{
}
//重新实现QLineEdit类的mouseDoubleClickEvent(QMouseEvent*event)
//事件处理函数,从而达到双击LineEdit的时候会有一个消息框弹出
voidLineEdit::mouseDoubleClickEvent(QMouseEvent*event)
{
QMessageBox::information(this,tr("提示"),tr("你是对的!"));
event->ignore();
}
以上是我自己实现的自己的一个LineEdit类,我双击这个LineEdit控件,就会弹出个消息框出来。
首先建一个工程,把上面的两个文件放到工程目录下面,然后来实现自己的代码:
/**********************主窗口的头文件*****************************/
#ifndefMYWIDGET_H
#defineMYWIDGET_H
#include<QWidget>
#include"lineedit.h"
classMyWidget:publicQWidget
{
Q_OBJECT
public:
explicitMyWidget(QWidget*parent=0);
private:
LineEdit*lineedit;
};
#endif//MYWIDGET_H
/**********************主窗口的源文件*****************************/
#include"mywidget.h"
#include<QHBoxLayout>
MyWidget::MyWidget(QWidget*parent):
QWidget(parent)
{
lineedit=newLineEdit;
QHBoxLayout*hlayout=newQHBoxLayout;
hlayout->addWidget(lineedit);
setLayout(hlayout);
}
/**********************显示主窗口的源文件*****************************/
#include<QApplication>
#include<QTextCodec>
#include"mywidget.h"
intmain(intargc,char*argv[])
{
QApplicationapp(argc,argv);
QTextCodec::setCodecForTr(QTextCodec::codecForName("GBK"));
MyWidget*mywidget=newMyWidget;
mywidget->show();
returnapp.exec();
}
|
|
|
以上是关于QT自定义控件消息实现的主要内容,如果未能解决你的问题,请参考以下文章
Qt自定义控件之仪表盘的完整实现
如何打造Android自定义的下拉列表框控件
QT +自定义控件-spin+slider
MFC如何添加自定义控件
组织孩子的 Qt Quick2 自定义控件
Qt编写自定义控件55-手机通讯录