📄 qrgb.h
字号:
/******************************************************************************** Copyright (C) 1992-2006 Trolltech ASA. All rights reserved.**** This file is part of the QtGui 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 QRGB_H#define QRGB_H#include <QtCore/qglobal.h>QT_BEGIN_HEADERQT_MODULE(Gui)typedef unsigned int QRgb; // RGB tripletconst QRgb RGB_MASK = 0x00ffffff; // masks RGB valuesQ_GUI_EXPORT inline int qRed(QRgb rgb) // get red part of RGB{ return ((rgb >> 16) & 0xff); }Q_GUI_EXPORT inline int qGreen(QRgb rgb) // get green part of RGB{ return ((rgb >> 8) & 0xff); }Q_GUI_EXPORT inline int qBlue(QRgb rgb) // get blue part of RGB{ return (rgb & 0xff); }Q_GUI_EXPORT inline int qAlpha(QRgb rgb) // get alpha part of RGBA{ return ((rgb >> 24) & 0xff); }Q_GUI_EXPORT inline QRgb qRgb(int r, int g, int b)// set RGB value{ return (0xff << 24) | ((r & 0xff) << 16) | ((g & 0xff) << 8) | (b & 0xff); }Q_GUI_EXPORT inline QRgb qRgba(int r, int g, int b, int a)// set RGBA value{ return ((a & 0xff) << 24) | ((r & 0xff) << 16) | ((g & 0xff) << 8) | (b & 0xff); }Q_GUI_EXPORT inline int qGray(int r, int g, int b)// convert R,G,B to gray 0..255{ return (r*11+g*16+b*5)/32; }Q_GUI_EXPORT inline int qGray(QRgb rgb) // convert RGB to gray 0..255{ return qGray(qRed(rgb), qGreen(rgb), qBlue(rgb)); }Q_GUI_EXPORT inline bool qIsGray(QRgb rgb){ return qRed(rgb) == qGreen(rgb) && qRed(rgb) == qBlue(rgb); }QT_END_HEADER#endif // QRGB_H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -