Qt 常用类 —— QPoint

Posted 生活会辜负努力的人,但不会辜负一直努力的人

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Qt 常用类 —— QPoint相关的知识,希望对你有一定的参考价值。

转载:落叶知秋时

QPoint 类代表一个坐标点,实现在 QtCore 共享库中。它可以认为是一个整型的横坐标和一个整型的纵坐标的组合。

构造

QPoint 类支持以下两种构造方式:

QPoint();     // 构造横纵坐标均为 0 的 QPoint 对象  
QPoint(int x, int y);    // 构造横纵坐标分别为 x 和 y 的 QPont 对象  

属性

通过以下成员函数可得到 QPoint 对象中的横纵坐标的引用

int &rx();    // 得到横坐标的引用  
int &ry();    // 到到纵坐标的引用  

注意这些引用都不是只读的,也就是说可以通过它们直接修改 QPoint。

 

通过以下的成员函数可以设置 QPoint 对象中的横纵坐标:

void setX(int x);    // 设置横坐标为 x  
void setY(int y);    // 设置纵坐标为 y  

 

下面两个成员函数则是只读的,可以获得 QPoint 对象中的横纵坐标:

int x() const;    // 获得横坐标  
int y() const;    // 获得纵坐标 

 

操作符

QPoint 类支持加法和减法的复合赋值操作:

QPoint &operator+=(const QPoint &point);    // 加赋值  
QPoint &operator-=(const QPoint &point);    // 减赋值 

这两个操作符是它的成员。而以下的操作符则不是它的成员:

const QPoint operator+(const QPoint &p1, const QPoint &p2);    // 加法  
const QPoint operator-(const QPoint &p1, const QPoint &p2);     // 减法  
const QPoint operator-(const QPoint &point);                    // 取负数  
bool operator==(const QPoint &p1, const QPoint &p2);            // 判断是否相等  
bool operator!=(const QPoint &p1, const QPoint);                // 判断是否不等  

 

以上是关于Qt 常用类 —— QPoint的主要内容,如果未能解决你的问题,请参考以下文章

Qt 窗口移动实现

Qt5::控件类1

QT中的相对位置,绝对位置之间的转换(maptoglobal,mapfromglobal)

关于QPoint类

Qt WebEngine 模拟鼠标事件

QT 实用代码片段