QTday2信号和槽

这篇具有很好参考价值的文章主要介绍了QTday2信号和槽。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

QTday2信号和槽,c++,qt

点击登录按钮,关闭Widget登录窗口,打开QQList窗口

widget.cpp

#include "widget.h"

void my_setupUI(Widget *w);

Widget::Widget(QWidget *parent)
    : QWidget(parent)
{
    my_setupUI(this);
}

Widget::~Widget()
{
}

void Widget::login_slots()
{
    //fix
    emit jump_signal();
    //close();
    return;
    if(this->userlineEdit->text() == "admin" && this->passwordlineEdit->text() == "123456"){
        qDebug()<<"登录成功";
        emit jump_signal();
        close();
    }else {
        qDebug()<<"登录失败";
        this->passwordlineEdit->clear();
    }
}

void my_setupUI(Widget *w){
    int margin = 20;
    w->setWindowIcon(QIcon("C:\\Embedded\\CPP\\QTProject\\day8\\04QQLogin\\picture\\qq_user.png"));
    w->setWindowTitle("QQ");
    w->setStyleSheet("background-color:white;");
    w->setFixedSize(800,800);

    QLabel *logoLabel = new QLabel(w);
    logoLabel->setPixmap(QPixmap("C:\\Embedded\\CPP\\QTProject\\day8\\04QQLogin\\picture\\qq_logo.gif"));
    logoLabel->setFixedSize(w->width(),w->width()*0.4);
    logoLabel->setScaledContents(true);

    QLabel *userLable = new QLabel(w);
    userLable->setPixmap(QPixmap(":/picture/qq_user.png"));
    userLable->setFixedSize(80,40);
    userLable->setScaledContents(true);
    userLable->move(w->width()*0.25,(logoLabel->height()+margin));

    w->userlineEdit = new QLineEdit(w);
    w->userlineEdit->setPlaceholderText("QQ号码/手机/邮箱");
    w->userlineEdit->resize(260,40);
    w->userlineEdit->move(userLable->x()+userLable->width()+margin,userLable->y());

    QLabel *passwordLable = new QLabel(w);
    passwordLable->setPixmap(QPixmap(":/picture/password.png"));
    passwordLable->setFixedSize(80,40);
    passwordLable->setScaledContents(true);
    passwordLable->move(userLable->x(),userLable->y()+userLable->height()+margin);

    w->passwordlineEdit = new QLineEdit(w);
    w->passwordlineEdit->setPlaceholderText("密码");
    w->passwordlineEdit->resize(260,40);
    w->passwordlineEdit->move(w->userlineEdit->x(),passwordLable->y());
    w->passwordlineEdit->setEchoMode(QLineEdit::Password);

    w->loginButton = new QPushButton("登录",w);
    w->loginButton->resize(120,40);
    w->loginButton->move(w->width()*0.5-160,passwordLable->y()+passwordLable->height()+margin);
    w->loginButton->setIcon(QIcon("C:\\Embedded\\CPP\\QTProject\\day8\\04QQLogin\\picture\\qq_login.png"));

    w->cancleButton = new QPushButton("取消",w);
    w->cancleButton->resize(120,40);
    w->cancleButton->move(w->width()*0.5+40,passwordLable->y()+passwordLable->height()+margin);
    w->cancleButton->setIcon(QIcon("C:\\Embedded\\CPP\\QTProject\\day8\\04QQLogin\\picture\\cancle.png"));

    //使用qt4版本的连接,将取消按钮连接到自定义的槽函数中处理相关逻辑
    w->connect(w->cancleButton,SIGNAL(clicked()),w,SLOT(close()));

    //使用qt5版本的连接,将登录按钮连接到自定义的槽函数中处理相关逻辑
    w->connect(w->loginButton,&QPushButton::clicked,w,&Widget::login_slots);

}

qqlist.cpp

#include "qqlist.h"
#include "ui_qqlist.h"

QQList::QQList(QWidget *parent) :
    QWidget(parent),
    ui(new Ui::QQList)
{
    ui->setupUi(this);
    this->setWindowIcon(QIcon(":/picture/qq_user.png"));
    this->setWindowTitle("QQ好友列表");
    this->resize(800,1100);
}

QQList::~QQList()
{
    delete ui;
}

void QQList::jump_slot()
{
    show();
}

main.cpp

#include "widget.h"
#include "qqlist.h"

#include <QApplication>

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    Widget w;
    w.show();

    QQList list;
    QObject::connect(&w,&Widget::jump_signal,&list,&QQList::jump_slot);

    return a.exec();
}

qqlist.h

#ifndef QQLIST_H
#define QQLIST_H

#include <QWidget>
#include <QDebug>
#include <QIcon>
#include <QPushButton>
#include <QLineEdit>
#include <QLabel>

namespace Ui {
class QQList;
}

class QQList : public QWidget
{
    Q_OBJECT

public:
    explicit QQList(QWidget *parent = nullptr);
    ~QQList();

private:
    Ui::QQList *ui;

public slots:
    void jump_slot();
};

#endif // QQLIST_H

widget.h

#ifndef WIDGET_H
#define WIDGET_H

#include <QWidget>
#include <QDebug>
#include <QIcon>
#include <QPushButton>
#include <QLineEdit>
#include <QLabel>

class Widget : public QWidget
{
    Q_OBJECT
public:
    QLineEdit *userlineEdit;
    QLineEdit *passwordlineEdit;
    QPushButton *loginButton;
    QPushButton *cancleButton;

public:
    Widget(QWidget *parent = nullptr);
    ~Widget();

signals:
    void jump_signal();
public slots:
    void login_slots();//右键转到槽后系统自己提供的槽函数
};
#endif // WIDGET_H

思维导图

QTday2信号和槽,c++,qt

项目的默认文件介绍说明文章来源地址https://www.toymoban.com/news/detail-612972.html

QT       += core gui
#表示加入qt所需的类库,如核心库\图像化界面库

greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
#如果超过4.0版本,系统会自动加上widget库

CONFIG += c++11
#该版本的qt支持c++11后的语法

# The following define makes your compiler emit warnings if you use
# any Qt feature that has been marked deprecated (the exact warnings
# depend on your compiler). Please consult the documentation of the
# deprecated API in order to know how to port your code away from it.
DEFINES += QT_DEPRECATED_WARNINGS

# You can also make your code fail to compile if it uses deprecated APIs.
# In order to do so, uncomment the following line.
# You can also select to disable deprecated APIs only up to a certain version of Qt.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000    # disables all the APIs deprecated before Qt 6.0.0

#管理源文件
SOURCES += \
    main.cpp \
    widget.cpp
#管理头文件
HEADERS += \
    widget.h
#管理ui文件
FORMS += \
    widget.ui

# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target
#ifndef WIDGET_H
#define WIDGET_H//防止文件重复包含

#include <QWidget>//所需头问文件
#include <QCheckBox>//自己引入的需要用到的库文件

QT_BEGIN_NAMESPACE
namespace Ui { class Widget; } //将ui界面对于的头文件中的命名空间进行申明
QT_END_NAMESPACE

class Widget : public QWidget //自定义的类 继承自QWidget
{
    Q_OBJECT    //信号与槽的元对象

public:
    Widget(QWidget *parent = nullptr);  //构造函数的申明
    ~Widget();//析构函数

private:
    Ui::Widget *ui;//使用ui界面对于头文件的命名空间中的类定义的指针
    QCheckBox *checkBox;//自己类定义的组件,找到该组件需要使用this指针找到
    
};
#endif // WIDGET_H
#include "widget.h"//将自定义的头文件导入

#include <QApplication>//引入应用程序的头文件

int main(int argc, char *argv[])//主函数
{
    QApplication a(argc, argv);//使用应用程序类,实例化一个类对象,调用有参构造
    //使用自定义类的实例化对象 栈区
    Widget w;//调用无参构造函数,实例化一个界面,该界面没有父组件,独立存在,别的组件依附于该界面村子啊
    w.show();//将图像化界面展示出来
    return a.exec();//阻塞等待界面的相关对应工作:用户在界面上的操作\信号与槽,事件处理,
}
#include "widget.h" //引入自定义的头问文件
#include "ui_widget.h"//引入ui界面的头文件

//构造函数的定义
Widget::Widget(QWidget *parent)
    : QWidget(parent)//调用父类的有参构造
    , ui(new Ui::Widget)//构造出ui界面拖拽的成员,并且将地址赋值给ui指针
{
    ui->setupUi(this);//调用ui界面函数,给ui界面上的组件申请空间
}

//析构函数的定义
Widget::~Widget()
{
    delete ui;//释放ui界面上的组件空间
}

到了这里,关于QTday2信号和槽的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • 【QT】信号和槽(15)

    前面的内容说了很多不同的控件如何使用,今天来看下QT的核心, 信号与槽(Signals and slots) ! 简单理解一下,就是我们的信号与槽连接上了之后,发射一个信号给到槽,槽函数接收到了这个信号之后,槽函数会被调用。 1.python 3.7.8   可直接进入官网下载安装:Download Pyt

    2024年02月10日
    浏览(52)
  • 七、Qt 信号和槽

    在QT4以上的版本,在窗体上用可以通过选中控件,然后点击鼠标右键单击按钮,选择“转到槽”。可以自动创建信号和槽。 选择clicked(),并点击 ok Qt Creator会给头文件和代码文件自动添加 这个按钮的单击事件(信号和槽)。 不同的控件,信号不全是一样的,根据控件的使用场

    2024年01月19日
    浏览(38)
  • 07.QT信号和槽-2

            在Qt中,允许⾃定义信号的发送⽅以及接收⽅,即可以⾃定义信号函数和槽函数。但是对于⾃定义的信号函数和槽函数有⼀定的书写规范。 1.1 自定义信号 (1)⾃定义信号函数必须写到\\\"signals\\\"下; (2)返回值为void,只需要声明,不需要实现; (3)可以有参数,

    2024年04月14日
    浏览(38)
  • Qt 信号和槽机制

    一. 简介         在Qt中使用信号和槽机制来完成对象之间的协同操作。简单来说,信号和槽都是函数,比如按下窗口上的一个按钮后想要弹出一个对话框,那么就可以将这个按钮的单击信号和我们定义的槽关联起来,在这个槽中可以创建一个对话框,并且显示它。这样,

    2024年01月18日
    浏览(41)
  • 【Qt】信号和槽机制

    目录 一、认识信号和槽 二、connect函数 三、自定义槽函数 四、自定义信号 五、带参数的信号和槽 六、信号和槽断开连接 七、信号和槽存在的意义 八、Lambda表达式定义槽函数 概述 在Qt中,用户和控件的每次交互过程称为一个事件。如\\\"用户点击按钮\\\"是一个事件,\\\"用户关闭窗

    2024年02月22日
    浏览(50)
  • [Qt的学习日常]--信号和槽

    前言 作者 :小蜗牛向前冲 名言 :我可以接受失败,但我不能接受放弃   如果觉的博主的文章还不错的话,还请 点赞,收藏,关注👀支持博主。如果发现有问题的地方欢迎❀大家在评论区指正 本期学习:什么是信号和槽,自定义槽函数和信号函数,信号和槽的传参,断开,

    2024年04月28日
    浏览(32)
  • Qt6.2教程——3.Qt信号和槽

    信号和槽是Qt中一个强大的特性,用于处理对象之间的通信。它们是一种事件处理机制,允许一个对象在某个事件发生时通知另一个对象。 定义 : 信号是一个QObject的成员函数,当某个特定事件发生时,它被自动调用。它可以与一个或多个槽关联。 声明 : 在Qt类的声明中,信号

    2024年02月10日
    浏览(52)
  • qt信号和槽避免多次连接

    qt同一个信号和槽多次连接,则槽函数 会触发多次 (默认),可能不是我们想要的结果。 有3种方法可以解决这个问题: 因为初始化函数在在整个程序中只运行一次,所以这里面连接信号和槽,就能避免重复连接问题了。 Qt::UniqueConnection 的作用是:如果该信号以前没连接过

    2024年02月10日
    浏览(43)
  • 20221210 QT----信号和槽的使用

    什么是信号(signal) 以QPushButton为例: (1)按下按钮时,会触发一个mousePressEvent事件,此时会发出一个pressed信号; (2)松开按钮时,会触发一个mouseReleaseEvent事件,此时会发出released和clicked信号。 事件的种类有很多,不同的事件都对应着不同的信号,当事件发生时,对应

    2024年02月15日
    浏览(49)
  • 02 qt基本控件及信号和槽

    功能:显示一个字符串内容 主要接口函数 构造函数: 赋值运算符重载: 功能函数: 1)基本数据类型(int,float,double,char*)转换成字符串 number(long , int ) : QString number(int , int ) : QString number(uint , int ) : QString number(ulong , int ) : QString number(qlonglong , int ) : QString number(qulonglong , int

    2024年02月12日
    浏览(42)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包