您的位置:首页 > 娱乐 > 八卦 > qt 一个可以拖拽的矩形

qt 一个可以拖拽的矩形

2024/12/23 13:17:50 来源:https://blog.csdn.net/xie__jin__cheng/article/details/139866221  浏览:    关键词:qt 一个可以拖拽的矩形

1.概要

2.代码

2.1 mycotrl.h

#ifndef MYCOTRL_H
#define MYCOTRL_H#include <QWidget>
#include <QMouseEvent>class MyCotrl: public QWidget
{Q_OBJECT
public://MyCotrl();MyCotrl(QWidget *parent = nullptr);
protected:void paintEvent(QPaintEvent *event);void mousePressEvent(QMouseEvent *event);void mouseMoveEvent(QMouseEvent *event);void mouseReleaseEvent(QMouseEvent *event);
private:bool dragging;QPoint oldPos;
};

2.2 widget.h 

 

#ifndef WIDGET_H
#define WIDGET_H#include <QWidget>QT_BEGIN_NAMESPACE
namespace Ui {
class Widget;
}
QT_END_NAMESPACEclass Widget : public QWidget
{Q_OBJECTpublic:Widget(QWidget *parent = nullptr);~Widget();private:Ui::Widget *ui;
};
#endif // WIDGET_H

2.3 mycotrl.cpp 

 

#include "mycotrl.h"
#include <QPainter>//MyCotrl::MyCotrl() {}MyCotrl::MyCotrl(QWidget *parent) : QWidget(parent), dragging(false)
{}void MyCotrl::paintEvent(QPaintEvent *event)  {QPainter painter(this);painter.setRenderHint(QPainter::Antialiasing);painter.setBrush(Qt::blue);painter.drawRect(rect()); // 绘制一个矩形,其大小由QWidget的size决定
}void MyCotrl::mousePressEvent(QMouseEvent *event){if (event->button() == Qt::LeftButton) {dragging = true;oldPos = event->pos();}
}void MyCotrl::mouseMoveEvent(QMouseEvent *event){if (dragging) {move(mapToParent(event->pos()) - oldPos);oldPos = event->pos();}
}void MyCotrl::mouseReleaseEvent(QMouseEvent *event) {Q_UNUSED(event)dragging = false;
}

 

2.4 widget.cpp 

 

#include "widget.h"
#include "ui_widget.h"
#include <QPushButton>
#include "mycotrl.h"Widget::Widget(QWidget *parent): QWidget(parent), ui(new Ui::Widget)
{ui->setupUi(this);QPushButton *button = new QPushButton("My Button", this);// 设置按钮的位置和大小(可选)// 注意:在 QMainWindow 中,你可能需要先设置一个 central widget 或其他容器button->setGeometry(QRect(10, 10, 100, 30));MyCotrl* my = new MyCotrl(this);button->setGeometry(QRect(100, 100, 100, 30));
}Widget::~Widget()
{delete ui;
}

2.5 main.cpp 

 

#include "widget.h"#include <QApplication>int main(int argc, char *argv[])
{QApplication a(argc, argv);Widget w;w.show();return a.exec();
}

3.运行结果

 

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com