QTday2信号和槽

news2024/11/18 1:49:49

点击登录按钮,关闭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

思维导图

项目的默认文件介绍说明

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界面上的组件空间
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/800089.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

Springboot+MyBatis使用

目录 依赖 配置信息 xml文件 mapper接口 打印日志 分页查询 依赖 <dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-web</artifactId> </dependency><dependency><groupId>my…

SpringBoot集成 Swagger

Spring Boot 集成 Swagger 在线接口文档 1、Swagger 简介 1.1 解决的问题 随着互联网技术的发展&#xff0c;现在的网站架构基本都由原来的后端渲染&#xff0c;变成了前后端分离的形态&#xff0c;而且前端技术和后端技术在各自的道路上越走越远。前端和后端的唯一联系变成…

LeetCode647.Palindromic-Substrings<回文子串>

题目&#xff1a; 思路&#xff1a; 错误代码&#xff1a;&#xff08;缺少部分判断&#xff09; 使用的是寻找回文子串的方法。以一个点为中心向两边扫描。但是有一点小问题。 因为回文子串是分奇偶的&#xff0c;所以需要两种判断方式。 看了下答案后发现我的代码距离答案一…

创建一个简单的 Servlet 项目

目录 1.首先创建一个 Maven 项目 2.配置 maven 仓库地址 3.添加引用 4.配置路由文件 web.xml 5.编写简单的代码 6.配置 Tomcat 7.写入名称,点击确定即可 8.访问 1.首先创建一个 Maven 项目 2.配置 maven 仓库地址 3.添加引用 https://mvnrepository.com/ 中央仓库地址…

入门篇——了解数据库

一、数据库是什么&#xff1f; 数据库是存放数据的仓库。它的存储空间很大&#xff0c;可以存放百万条、千万条、上亿条数据。但是数据库并不是随意地将数据进行存放&#xff0c;是有一定的规则的&#xff0c;否则查询的效率会很低。当今世界是一个充满着数据的互联网世界&…

给jupter设置新环境

文章目录 给jupternotebook设置新环境遇到的报错添加路径的方法 给jupternotebook设置新环境 # 先在anaconda界面新建环境 conda env list # 查看conda prompt下的有的环境变量 带星号的是当前活跃的 activate XXXX pip install ipykernel ipython ipython kernel install --u…

AI编程常用工具 Jupyter Notebook

点击上方蓝色字体&#xff0c;选择“设为星标” 回复”云原生“获取基础架构实践 深度学习编程常用工具 我们先来看 4 个常用的编程工具&#xff1a;Sublime Text、Vim、Jupyter。虽然我介绍的是 Jupyter&#xff0c;但并不是要求你必须使用它&#xff0c;你也可以根据自己的喜…

C++中deque的底层讲解

1.前言 1.了解过queue和stack底层的或许了解过&#xff0c;库里面的底层实现&#xff0c;选择的默认容器就是deque&#xff0c;那他有什么好处呢&#xff1f; 2.先前了解过deque的接口会发现&#xff0c;他感觉像是vector和list的合体&#xff0c;什么接口都有&#xff1a; 很…

14.Netty源码之模拟简单的HTTP服务器

highlight: arduino-light 简单的 HTTP 服务器 HTTP 服务器是我们平时最常用的工具之一。同传统 Web 容器 Tomcat、Jetty 一样&#xff0c;Netty 也可以方便地开发一个 HTTP 服务器。我从一个简单的 HTTP 服务器开始&#xff0c;通过程序示例为你展现 Netty 程序如何配置启动&a…

CMU 15-445 -- Logging Schemes - 17

CMU 15-445 -- Logging Schemes - 17 引言IndexFailure ClassificationTransaction FailuresSystem FailuresStorage Media Failures Buffer Pool PoliciesShadow Paging: No-Steal ForceWrite-Ahead Log (WAL): Steal No-ForceLogging SchemesCheckpoints小结 引言 本系列为…

CoTracker跟踪器 - CoTracker: It is Better to Track Together

论文地址&#xff1a;https://arxiv.org/pdf/2307.07635v1.pdf 官方地址&#xff1a;https://co-tracker.github.io/ github地址&#xff1a;https://github.com/facebookresearch/co-tracker/tree/main 引言 在计算机视觉领域&#xff0c;光流估计是历史最久远的问题之一&a…

TCP如何保证服务的可靠性

TCP如何保证服务的可靠性 确认应答超时重传流量控制滑动窗口机制概述发送窗口和接收窗口的工作原理几种滑动窗口协议1比特滑动窗口协议&#xff08;停等协议&#xff09;后退n协议选择重传协议 采用滑动窗口的问题&#xff08;死锁可能&#xff0c;糊涂窗口综合征&#xff09;死…

大数据Flink(五十一):Flink的引入和Flink的简介

文章目录 Flink的引入和Flink的简介 一、Flink的引入 1、第1代——Hadoop MapReduce

60 # http 的基本概念

什么是 HTTP&#xff1f; 通常的网络是在 TCP/IP 协议族的基础上来运作的&#xff0c;HTTP 是一个子集。http 基于 tcp 的协议&#xff0c;在 tcp 的基础上增加了一些规范&#xff0c;就是 header&#xff0c;学习 http 就是学习每个 header 它有什么作用。 TCP/IP 协议族 协…

RN 设置背景图片(使用ImageBackground组件)

在RN版本0.46版本的时候添加了ImageBackground控件。ImageBackground可以设置背景图片&#xff0c;使用方法和image一样&#xff0c;里面嵌套了其他的组件 import React from "react"; import { ImageBackground, StyleSheet, Text, View } from "react-native…

【项目6 UI Demo】前端代码记录

前端代码记录 1.GridListItem中的布局 在这个Item中的布局采用的是VBox和HBox相结合的方式。相关的代码如下&#xff1a; <VBox class"sapUiTinyMargin"><HBox justifyContent"SpaceBetween"><Titletext"{ToolNumber}"wrapping…

C++之lambda表达式/function/using/typedef用法总结(一百六十六)

简介&#xff1a; CSDN博客专家&#xff0c;专注Android/Linux系统&#xff0c;分享多mic语音方案、音视频、编解码等技术&#xff0c;与大家一起成长&#xff01; 优质专栏&#xff1a;Audio工程师进阶系列【原创干货持续更新中……】&#x1f680; 人生格言&#xff1a; 人生…

Linux基础以及常用命令

目录 1 Linux简介1.1 不同应用领域的主流操作系统1.2 Linux系统版本1.3 Linux安装1.3.1 安装VMWare1.3.2 安装CentOS镜像1.3.3 网卡设置1.3.4 安装SSH连接工具1.3.5 Linux和Windows目录结构对比 2 Linux常用命令2.0 常用命令&#xff08;ls&#xff0c;pwd&#xff0c;cd&#…

LinuxC语言-网络通信tcp/ip errno获取错误描述字符串

目录 服务端代码&#xff1a; 获取errno错误码&#xff1a; 客户端代码&#xff1a; 运行结果: 服务端代码&#xff1a; #include <stdio.h> #include<sys/types.h> #include<sys/socket.h> #include<string.h> #include<netinet/in.h> #in…

在Mac上搭建Gradle环境

在Mac上搭建Gradle环境&#xff1a; 步骤1&#xff1a;下载并安装Java开发工具包&#xff08;JDK&#xff09; Gradle运行需要Java开发工具包&#xff08;JDK&#xff09;。您可以从Oracle官网下载适合您的操作系统版本的JDK。请按照以下步骤进行操作&#xff1a; 打开浏览器…