加载中…
个人资料
  • 博客等级:
  • 博客积分:
  • 博客访问:
  • 关注人气:
  • 获赠金笔:0支
  • 赠出金笔:0支
  • 荣誉徽章:
正文 字体大小:

Qt 常用类(三)QPoint

(2014-03-14 19:06:53)
标签:

qt

qpoint

分类: Qt

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


    构造

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


    属性

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

[plain] view plaincopy
  1. int &rx();    // 得到横坐标的引用  
  2. int &ry();    // 到到纵坐标的引用  

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

 

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

[plain] view plaincopy
  1. void setX(int x);    // 设置横坐标为  
  2. void setY(int y);    // 设置纵坐标为  

     下面两个成员函数则是只读的,可以获得 QPoint 对象中的横纵坐标:
[plain] view plaincopy
  1. int x() const;    // 获得横坐标  
  2. int y() const;    // 获得纵坐标  


     操作符

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

[plain] view plaincopy
  1. QPoint &operator+=(const QPoint &point);    // 加赋值  
  2. QPoint &operator-=(const QPoint &point);    // 减赋值  

    这两个操作符是它的成员。而以下的操作符则不是它的成员:
[plain] view plaincopy
  1. cosnt QPoint operator+(const QPoint &p1, const QPoint &p2);    // 加法  
  2. const QPoint operator-(const QPoint &p1, const QPoint &p2);     // 减法  
  3. const QPoint operator-(const QPoint &point);                          // 取负数  
  4. bool operator==(const QPoint &p1, const QPoint &p2);            // 判断是否相等  
  5. bool operator!=(const QPoint &p1, const QPoint);                   // 判断是否不等  

转自:http://blog.csdn.net/hmsiwtv/article/details/7559949

0

阅读 收藏 喜欢 打印举报/Report
  

新浪BLOG意见反馈留言板 欢迎批评指正

新浪简介 | About Sina | 广告服务 | 联系我们 | 招聘信息 | 网站律师 | SINA English | 产品答疑

新浪公司 版权所有