亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? qrect.h

?? QT 開發環境里面一個很重要的文件
?? H
?? 第 1 頁 / 共 2 頁
字號:
/******************************************************************************** Copyright (C) 1992-2006 Trolltech ASA. All rights reserved.**** This file is part of the QtCore module of the Qt Toolkit.**** This file may be used under the terms of the GNU General Public** License version 2.0 as published by the Free Software Foundation** and appearing in the file LICENSE.GPL included in the packaging of** this file.  Please review the following information to ensure GNU** General Public Licensing requirements will be met:** http://www.trolltech.com/products/qt/opensource.html**** If you are unsure which license is appropriate for your use, please** review the following information:** http://www.trolltech.com/products/qt/licensing.html or contact the** sales department at sales@trolltech.com.**** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.******************************************************************************/#ifndef QRECT_H#define QRECT_H#include <QtCore/qsize.h>#include <QtCore/qpoint.h>#ifdef topLeft#error qrect.h must be included before any header file that defines topLeft#endifQT_BEGIN_HEADERQT_MODULE(Core)class Q_CORE_EXPORT QRect{public:    QRect() { x1 = y1 = 0; x2 = y2 = -1; }    QRect(const QPoint &topleft, const QPoint &bottomright);    QRect(const QPoint &topleft, const QSize &size);    QRect(int left, int top, int width, int height);    bool isNull() const;    bool isEmpty() const;    bool isValid() const;    int left() const;    int top() const;    int right() const;    int bottom() const;    QRect normalized() const;#ifdef QT3_SUPPORT    QT3_SUPPORT int &rLeft() { return x1; }    QT3_SUPPORT int &rTop() { return y1; }    QT3_SUPPORT int &rRight() { return x2; }    QT3_SUPPORT int &rBottom() { return y2; }    QT3_SUPPORT QRect normalize() const { return normalized(); }#endif    int x() const;    int y() const;    void setLeft(int pos);    void setTop(int pos);    void setRight(int pos);    void setBottom(int pos);    void setX(int x);    void setY(int y);    void setTopLeft(const QPoint &p);    void setBottomRight(const QPoint &p);    void setTopRight(const QPoint &p);    void setBottomLeft(const QPoint &p);    QPoint topLeft() const;    QPoint bottomRight() const;    QPoint topRight() const;    QPoint bottomLeft() const;    QPoint center() const;    void moveLeft(int pos);    void moveTop(int pos);    void moveRight(int pos);    void moveBottom(int pos);    void moveTopLeft(const QPoint &p);    void moveBottomRight(const QPoint &p);    void moveTopRight(const QPoint &p);    void moveBottomLeft(const QPoint &p);    void moveCenter(const QPoint &p);    inline void translate(int dx, int dy);    inline void translate(const QPoint &p);    inline QRect translated(int dx, int dy) const;    inline QRect translated(const QPoint &p) const;    void moveTo(int x, int t);    void moveTo(const QPoint &p);#ifdef QT3_SUPPORT    QT3_SUPPORT void moveBy(int dx, int dy) { translate(dx, dy); }    QT3_SUPPORT void moveBy(const QPoint &p) { translate(p); }#endif    void setRect(int x, int y, int w, int h);    inline void getRect(int *x, int *y, int *w, int *h) const;    void setCoords(int x1, int y1, int x2, int y2);#ifdef QT3_SUPPORT    QT3_SUPPORT void addCoords(int x1, int y1, int x2, int y2);#endif    inline void getCoords(int *x1, int *y1, int *x2, int *y2) const;    inline void adjust(int x1, int y1, int x2, int y2);    inline QRect adjusted(int x1, int y1, int x2, int y2) const;    QSize size() const;    int width() const;    int height() const;    void setWidth(int w);    void setHeight(int h);    void setSize(const QSize &s);    QRect operator|(const QRect &r) const;    QRect operator&(const QRect &r) const;    QRect& operator|=(const QRect &r);    QRect& operator&=(const QRect &r);    bool contains(const QPoint &p, bool proper=false) const;    bool contains(int x, int y) const; // inline methods, _don't_ merge these    bool contains(int x, int y, bool proper) const;    bool contains(const QRect &r, bool proper = false) const;    QRect unite(const QRect &r) const;  // ### Qt 5: make QT4_SUPPORT    QRect united(const QRect &other) const;    QRect intersect(const QRect &r) const;  // ### Qt 5: make QT4_SUPPORT    QRect intersected(const QRect &other) const;    bool intersects(const QRect &r) const;    friend Q_CORE_EXPORT_INLINE bool operator==(const QRect &, const QRect &);    friend Q_CORE_EXPORT_INLINE bool operator!=(const QRect &, const QRect &);#ifdef QT3_SUPPORT    inline QT3_SUPPORT void rect(int *x, int *y, int *w, int *h) const { getRect(x, y, w, h); }    inline QT3_SUPPORT void coords(int *ax1, int *ay1, int *ax2, int *ay2) const    { getCoords(ax1, ay1, ax2, ay2); }#endifprivate:#if defined(Q_WS_X11) || defined(Q_OS_TEMP)    friend void qt_setCoords(QRect *r, int xp1, int yp1, int xp2, int yp2);#endif#if defined(Q_OS_MAC)    int y1;    int x1;    int y2;    int x2;#else    int x1;    int y1;    int x2;    int y2;#endif};Q_DECLARE_TYPEINFO(QRect, Q_MOVABLE_TYPE);Q_CORE_EXPORT_INLINE bool operator==(const QRect &, const QRect &);Q_CORE_EXPORT_INLINE bool operator!=(const QRect &, const QRect &);/*****************************************************************************  QRect stream functions *****************************************************************************/#ifndef QT_NO_DATASTREAMQ_CORE_EXPORT QDataStream &operator<<(QDataStream &, const QRect &);Q_CORE_EXPORT QDataStream &operator>>(QDataStream &, QRect &);#endif/*****************************************************************************  QRect inline member functions *****************************************************************************/inline QRect::QRect(int aleft, int atop, int awidth, int aheight){    x1 = aleft;    y1 = atop;    x2 = (aleft + awidth - 1);    y2 = (atop + aheight - 1);}inline QRect::QRect(const QPoint &atopLeft, const QPoint &abottomRight){    x1 = atopLeft.x();    y1 = atopLeft.y();    x2 = abottomRight.x();    y2 = abottomRight.y();}inline QRect::QRect(const QPoint &atopLeft, const QSize &asize){    x1 = atopLeft.x();    y1 = atopLeft.y();    x2 = (x1+asize.width() - 1);    y2 = (y1+asize.height() - 1);}inline bool QRect::isNull() const{ return x2 == x1 - 1 && y2 == y1 - 1; }inline bool QRect::isEmpty() const{ return x1 > x2 || y1 > y2; }inline bool QRect::isValid() const{ return x1 <= x2 && y1 <= y2; }inline int QRect::left() const{ return x1; }inline int QRect::top() const{ return y1; }inline int QRect::right() const{ return x2; }inline int QRect::bottom() const{ return y2; }inline int QRect::x() const{ return x1; }inline int QRect::y() const{ return y1; }inline void QRect::setLeft(int pos){ x1 = pos; }inline void QRect::setTop(int pos){ y1 = pos; }inline void QRect::setRight(int pos){ x2 = pos; }inline void QRect::setBottom(int pos){ y2 = pos; }inline void QRect::setTopLeft(const QPoint &p){ x1 = p.x(); y1 = p.y(); }inline void QRect::setBottomRight(const QPoint &p){ x2 = p.x(); y2 = p.y(); }inline void QRect::setTopRight(const QPoint &p){ x2 = p.x(); y1 = p.y(); }inline void QRect::setBottomLeft(const QPoint &p){ x1 = p.x(); y2 = p.y(); }inline void QRect::setX(int ax){ x1 = ax; }inline void QRect::setY(int ay){ y1 = ay; }inline QPoint QRect::topLeft() const{ return QPoint(x1, y1); }inline QPoint QRect::bottomRight() const{ return QPoint(x2, y2); }inline QPoint QRect::topRight() const{ return QPoint(x2, y1); }inline QPoint QRect::bottomLeft() const{ return QPoint(x1, y2); }inline QPoint QRect::center() const{ return QPoint((x1+x2)/2, (y1+y2)/2); }inline int QRect::width() const{ return  x2 - x1 + 1; }inline int QRect::height() const{ return  y2 - y1 + 1; }inline QSize QRect::size() const{ return QSize(width(), height()); }inline void QRect::translate(int dx, int dy){    x1 += dx;    y1 += dy;    x2 += dx;    y2 += dy;}inline void QRect::translate(const QPoint &p){    x1 += p.x();    y1 += p.y();    x2 += p.x();    y2 += p.y();}inline QRect QRect::translated(int dx, int dy) const{ return QRect(QPoint(x1 + dx, y1 + dy), QPoint(x2 + dx, y2 + dy)); }inline QRect QRect::translated(const QPoint &p) const{ return QRect(QPoint(x1 + p.x(), y1 + p.y()), QPoint(x2 + p.x(), y2 + p.y())); }inline void QRect::moveTo(int ax, int ay){    x2 += ax - x1;    y2 += ay - y1;    x1 = ax;    y1 = ay;}inline void QRect::moveTo(const QPoint &p){    x2 += p.x() - x1;    y2 += p.y() - y1;    x1 = p.x();    y1 = p.y();}inline void QRect::moveLeft(int pos){ x2 += (pos - x1); x1 = pos; }inline void QRect::moveTop(int pos){ y2 += (pos - y1); y1 = pos; }inline void QRect::moveRight(int pos){    x1 += (pos - x2);    x2 = pos;}inline void QRect::moveBottom(int pos){    y1 += (pos - y2);    y2 = pos;}inline void QRect::moveTopLeft(const QPoint &p){    moveLeft(p.x());    moveTop(p.y());}inline void QRect::moveBottomRight(const QPoint &p){    moveRight(p.x());    moveBottom(p.y());}inline void QRect::moveTopRight(const QPoint &p){    moveRight(p.x());    moveTop(p.y());}inline void QRect::moveBottomLeft(const QPoint &p){    moveLeft(p.x());    moveBottom(p.y());}inline void QRect::getRect(int *ax, int *ay, int *aw, int *ah) const{    *ax = x1;    *ay = y1;    *aw = x2 - x1 + 1;    *ah = y2 - y1 + 1;}inline void QRect::setRect(int ax, int ay, int aw, int ah){    x1 = ax;    y1 = ay;    x2 = (ax + aw - 1);    y2 = (ay + ah - 1);}inline void QRect::getCoords(int *xp1, int *yp1, int *xp2, int *yp2) const{    *xp1 = x1;    *yp1 = y1;    *xp2 = x2;    *yp2 = y2;}inline void QRect::setCoords(int xp1, int yp1, int xp2, int yp2){    x1 = xp1;    y1 = yp1;    x2 = xp2;    y2 = yp2;}#ifdef QT3_SUPPORTinline void QRect::addCoords(int dx1, int dy1, int dx2, int dy2){    adjust(dx1, dy1, dx2, dy2);}#endifinline QRect QRect::adjusted(int xp1, int yp1, int xp2, int yp2) const{ return QRect(QPoint(x1 + xp1, y1 + yp1), QPoint(x2 + xp2, y2 + yp2)); }inline void QRect::adjust(int dx1, int dy1, int dx2, int dy2)

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
91在线精品一区二区| 五月激情丁香一区二区三区| 国产精品综合久久| 国产亚洲欧洲一区高清在线观看| 国产综合久久久久影院| 国产精品污污网站在线观看| 成人免费视频免费观看| 综合色天天鬼久久鬼色| 日本韩国视频一区二区| 首页国产欧美久久| 久久无码av三级| 色先锋久久av资源部| 亚洲综合成人在线视频| 91精品国产综合久久久久久漫画| 理论片日本一区| 欧美高清在线一区二区| 91在线看国产| 蜜臀久久久99精品久久久久久| 久久亚洲综合色| 精品国产凹凸成av人导航| 国产精品18久久久久久久久久久久 | 国产精品不卡在线| 欧美视频在线一区二区三区| 裸体在线国模精品偷拍| 中文字幕中文字幕在线一区| 欧美日韩国产中文| 丁香婷婷深情五月亚洲| 亚洲一区二区三区精品在线| 欧美一区二区三区免费观看视频| 国产精品1024| 香蕉成人啪国产精品视频综合网| 日韩一区二区精品葵司在线| 99久久精品国产观看| 欧美bbbbb| 色婷婷av一区| 狠狠狠色丁香婷婷综合激情| 中文欧美字幕免费| 欧美日韩一区二区欧美激情| 国产一区二区三区精品欧美日韩一区二区三区| 亚洲国产成人一区二区三区| 欧美一区二区在线看| 成人国产亚洲欧美成人综合网 | 琪琪久久久久日韩精品| 国产精品福利一区二区三区| 91.com在线观看| 99re这里只有精品首页| 久草精品在线观看| 亚洲国产wwwccc36天堂| 中文字幕av一区二区三区| 精品少妇一区二区| 欧美日韩精品电影| 日本道色综合久久| 成人av第一页| 国产电影一区在线| 激情成人综合网| 青青草精品视频| 亚洲成人av免费| 亚洲永久免费av| 亚洲日本va午夜在线电影| 精品福利视频一区二区三区| 在线播放91灌醉迷j高跟美女 | 91精品国产色综合久久不卡蜜臀 | 97久久人人超碰| 丁香婷婷深情五月亚洲| 国内国产精品久久| 青青国产91久久久久久| 亚洲成av人片一区二区三区| 一区二区三区四区五区视频在线观看| 亚洲国产激情av| 国产日韩高清在线| 国产亚洲成aⅴ人片在线观看| 精品精品欲导航| 日韩欧美一区中文| 日韩午夜激情av| 日韩视频免费观看高清在线视频| 欧美福利电影网| 欧美一区二区三区在线观看| 制服丝袜av成人在线看| 欧美高清性hdvideosex| 日韩欧美自拍偷拍| 精品久久久久香蕉网| 精品入口麻豆88视频| 精品粉嫩aⅴ一区二区三区四区| 亚洲精品一区二区三区蜜桃下载| 欧美精品一区二区久久婷婷 | 91精品国产91久久久久久一区二区 | 激情文学综合丁香| 国产精品影视网| 成人黄页毛片网站| av电影在线观看不卡| 一本色道久久综合精品竹菊| 欧美视频日韩视频在线观看| 69堂精品视频| 精品国产伦理网| 精品欧美一区二区在线观看| 国产亚洲污的网站| 亚洲欧美日韩在线| 日日摸夜夜添夜夜添国产精品 | 99久久99久久免费精品蜜臀| 日本韩国欧美三级| 欧美一区国产二区| 中文幕一区二区三区久久蜜桃| 亚洲免费av高清| 日韩精品每日更新| 国产传媒欧美日韩成人| 在线观看www91| 精品免费视频一区二区| 国产精品私人自拍| 午夜精品久久久久久久99樱桃| 久久国内精品自在自线400部| 波多野结衣中文字幕一区 | 色综合婷婷久久| 欧美日韩一级二级三级| 欧美精品一区二区三| 亚洲激情在线激情| 激情五月播播久久久精品| 97国产一区二区| 日韩午夜中文字幕| 亚洲精品国产无套在线观 | 成人app网站| 欧美久久久久久久久中文字幕| 久久久久久亚洲综合| 成人免费在线观看入口| 美女脱光内衣内裤视频久久网站| 不卡的av在线播放| 欧美一区二区三区色| 日韩理论电影院| 经典三级视频一区| 欧美性受极品xxxx喷水| 欧美激情在线观看视频免费| 美女视频黄免费的久久 | 欧美久久一二区| 国产精品久久久久三级| 欧美大度的电影原声| 中文字幕中文字幕中文字幕亚洲无线| 日韩成人一级片| 色爱区综合激月婷婷| 国产精品丝袜一区| 激情久久久久久久久久久久久久久久| 欧美性猛片xxxx免费看久爱| 国产精品伦一区| 国产在线播放一区三区四| 欧美日韩国产综合久久| 亚洲欧美另类久久久精品| 国产福利精品一区二区| 日韩三级免费观看| 香港成人在线视频| 在线观看精品一区| 亚洲欧美日韩人成在线播放| 国产一区视频在线看| 日韩一级精品视频在线观看| 亚洲成人精品一区二区| 欧美亚洲一区二区在线| 亚洲欧美欧美一区二区三区| 成人动漫视频在线| 国产亚洲精品超碰| 国产成人av一区二区三区在线| 欧美大度的电影原声| 蜜臀久久久99精品久久久久久| 欧美日本在线看| 日本亚洲三级在线| 欧美一区2区视频在线观看| 天堂在线一区二区| 欧美a级一区二区| 欧美一区二区在线播放| 日韩电影免费在线| 日韩一二三区不卡| 精品一二三四区| 精品处破学生在线二十三| 激情文学综合插| 久久久久久日产精品| 国产成人午夜精品5599| 国产蜜臀av在线一区二区三区| 夫妻av一区二区| 亚洲欧美在线视频| 91久久线看在观草草青青| 一区二区三区加勒比av| 欧美美女黄视频| 蜜臀av性久久久久av蜜臀妖精| 欧美一区二区三区爱爱| 黄色日韩网站视频| 国产精品美女视频| 欧美日韩一级二级三级| 日av在线不卡| 国产欧美一区二区在线| 岛国精品在线观看| 伊人性伊人情综合网| 91精品国产一区二区三区蜜臀| 韩国女主播一区| 国产精品久久久久天堂| 欧美日韩国产另类不卡| 国产综合一区二区| 亚洲人成人一区二区在线观看| 欧美日韩情趣电影| 国产一区二区不卡在线| 亚洲男同1069视频| 日韩美女主播在线视频一区二区三区| 国产亚洲午夜高清国产拍精品| 欧美一区二区三区四区高清| 极品少妇xxxx精品少妇|