#include..._qt情侣程序">
当前位置:   article > 正文

基于Qt的网红表白代码_qt情侣程序

qt情侣程序
  • 效果图
    在这里插入图片描述
  • 最近学了一些QT。发现网上这个程序员表白代码挺有意思的,就自己做了一个QT版的,也算是自己学习过程中的一种实践吧。
  • 源代码直接贴出
  • qwidgit.h
#pragma once

#include <QtWidgets/QWidget>
#include "ui_ConfessionCode.h"
#include <QMouseEvent>
#include <QMessageBox>
#include <QTextEncoder>
#include <QMovie>
#include <QIcon>

class ConfessionCode : public QWidget
{
	Q_OBJECT

public:
	ConfessionCode(QWidget *parent = Q_NULLPTR);

private:
	Ui::ConfessionCodeClass ui;
private slots:
	void OnButtonClickedOne();
	void OnButtonClickedTwo();
	void mouseMoveEvent(QMouseEvent *event);
};
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • qwidgit.cpp
#include "ConfessionCode.h"
#ifdef Q_OS_WIN
#pragma execution_character_set("utf-8")   //解决 VS编译器下中文乱码
#endif

ConfessionCode::ConfessionCode(QWidget *parent)
	: QWidget(parent)
{
	QTextCodec::setCodecForLocale(QTextCodec::codecForName("GB2312"));
	ui.setupUi(this);
	setWindowIcon(QIcon("Resources/Heart.jpg"));
	setWindowTitle("来自一位喜欢你的小哥哥");
	QMovie *Movie = new QMovie("Resources/Confession.gif");
	ui.label_2->setMovie(Movie);
	Movie->start();
	connect(ui.pushButton, SIGNAL(clicked(bool)), this,  SLOT(OnButtonClickedOne()));
	connect(ui.pushButton_2, SIGNAL(clicked(bool)), this, SLOT(OnButtonClickedTwo()));
}

void ConfessionCode::OnButtonClickedOne()
{
	QMessageBox::information(nullptr, "我喜欢你", "晚上一起看电影吧!!!!");
}

void ConfessionCode::OnButtonClickedTwo()
{
	//除非程序出Bug,不然不会有这句话
	QMessageBox::information(nullptr, "我真的喜欢你", "给个机会好不好!!!!!");
}

void ConfessionCode::mouseMoveEvent(QMouseEvent *event)
{	
	QPoint ButtonPoint = ui.pushButton_2->pos(); //得到控件位置										 
	QSize WindowSize = this->size(); //求得当前窗口大小
	QPoint MousePoint = event->pos();  //取得鼠标相对于窗口的位置
	if (MousePoint.ry() > WindowSize.height() / 2 && ButtonPoint.ry() > WindowSize.height() / 2) //鼠标在窗口部
	{
		ui.pushButton_2->move(ButtonPoint.rx(), ButtonPoint.ry() - WindowSize.height() / 2);//控件移动到窗口底部
	}
	else if (MousePoint.ry() < WindowSize.height() / 2 && ButtonPoint.ry() < WindowSize.height() / 2) //鼠标在窗口部//鼠标在窗口底部
	{
		ui.pushButton_2->move(ButtonPoint.rx(), ButtonPoint.ry() + WindowSize.height() / 2);//控件移动到窗口顶部
	}
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44

main.cpp
此处非常关键:qt的机制导致设置鼠标移动监视需要在widget初始化出来之后show之前,且Qmainwidow还要将你的中心面板 setMouseTracking(true)。

#include "ConfessionCode.h"
#include <QtWidgets/QApplication>

int main(int argc, char *argv[])
{
	QApplication a(argc, argv);
	ConfessionCode w;
	w.setMouseTracking(true); //开启widgets鼠标移动监视
	//注意qt的机制导致设置鼠标移动监视需要在widget初始化出来之后show出来之前,而qmainwindow则还需要将你的Widgets面板setMouseTracking(true); 
	w.show();
	return a.exec();
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13

最后贴出github源码地址,使用的是编译环境是vs2010+qt5.10.
https://github.com/DengLangCode/ConfessionCode

声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop】
推荐阅读
相关标签
  

闽ICP备14008679号