QGradient Class

QGradient 类与QBrush 结合使用,用于指定渐变填充。更多

页首 #include <QGradient>
CMake: find_package(Qt6 REQUIRED COMPONENTS Gui)
target_link_libraries(mytarget PRIVATE Qt6::Gui)
qmake: QT += gui
继承者

QConicalGradient,QLinearGradient, 以及QRadialGradient

公共类型

enum CoordinateMode { LogicalMode, ObjectMode, StretchToDeviceMode, ObjectBoundingMode }
enum Preset { WarmFlame, NightFade, SpringWarmth, JuicyPeach, YoungPassion, …, PerfectBlue }
enum Spread { PadSpread, RepeatSpread, ReflectSpread }
enum Type { LinearGradient, RadialGradient, ConicalGradient, NoGradient }

公共函数

QGradient(QGradient::Preset preset)
QGradient::CoordinateMode coordinateMode() const
void setColorAt(qreal position, const QColor &color)
void setCoordinateMode(QGradient::CoordinateMode mode)
void setSpread(QGradient::Spread method)
void setStops(const QGradientStops &stopPoints)
QGradient::Spread spread() const
QGradientStops stops() const
QGradient::Type type() const
bool operator!=(const QGradient &gradient) const
bool operator==(const QGradient &gradient) const

详细说明

Qt 目前支持三种类型的渐变填充:

  • 线性渐变在起点和终点之间插入颜色。
  • 简单径向渐变在焦点和其周围圆上的端点之间插值。
  • 扩展径向渐变在中心点和焦点圆之间填充颜色。
  • 锥形渐变在中心点周围插值。

梯度的类型可以通过type() 函数获取。每种类型都由 QGradient 的子类表示:

梯度中的颜色是使用QGradientStop 类型的停止点定义的,即一个位置和一种颜色。使用setColorAt() 函数定义单个停止点。或者,使用setStops() 函数一次性定义多个停止点。请注意,后一个函数会替换当前的停止点。

梯度的整套停止点(可通过stops() 函数访问)描述了梯度区域的填充方式。如果没有指定停止点,则会使用从黑色 0 到白色 1 的梯度。

从(100,100)处的黑色到(200,200)处的白色的对角线线性渐变可以这样指定:

QLinearGradient linearGrad(QPointF(100, 100), QPointF(200, 200));
linearGrad.setColorAt(0, Qt::black);
linearGrad.setColorAt(1, Qt::white);

梯度可以有任意数量的停止点。下面将创建一个径向渐变,从中间的红色开始,到边缘的蓝色和绿色:

QRadialGradient radialGrad(QPointF(100, 100), 100);
radialGrad.setColorAt(0, Qt::red);
radialGrad.setColorAt(0.5, Qt::blue);
radialGrad.setColorAt(1, Qt::green);

通过使用setSpread() 函数指定spread method ,可以在梯度区域外重复或反映梯度。默认情况下,外部区域会填充最接近停止点的颜色。当前设置的spread method 可以通过spread() 函数获取。QGradient::Spread 枚举定义了三种不同的方法:

请注意,setSpread() 函数只对线性梯度和径向梯度有效。原因是锥形梯度的定义是封闭的,即锥形梯度充满 0 - 360 度的整个圆,而径向梯度或线性梯度的边界可分别通过其半径或最终停止点来指定。

梯度坐标可以用逻辑坐标、相对于设备坐标或相对于对象边界框坐标来指定。可以使用setCoordinateMode() 函数设置coordinate mode 。默认设置为LogicalMode ,梯度坐标的指定方式与对象坐标相同。要获取当前设置的coordinate mode ,请使用coordinateMode() 函数。

另请参阅 梯度示例QBrush

成员类型文档

enum QGradient::CoordinateMode

该枚举用于指定渐变坐标如何映射到使用渐变的喷涂设备上。

常数说明
QGradient::LogicalMode0这是默认模式。与对象坐标一样,渐变坐标也是在逻辑空间中指定的。
QGradient::ObjectMode3在此模式下,渐变坐标相对于绘制对象的边界矩形,(0,0) 位于对象边界矩形的左上角,(1,1) 位于对象边界矩形的右下角。该值在 Qt 5.12 中添加。
QGradient::StretchToDeviceMode1在此模式下,渐变坐标相对于绘画设备的边界矩形,(0,0) 位于绘画设备的左上角,(1,1) 位于右下角。
QGradient::ObjectBoundingMode2该模式与 ObjectMode(对象模式)相同,但{QBrush::transform()} {画笔变换}(如果有的话)是相对于逻辑空间而非对象空间应用的。此枚举值已被弃用,不应在新代码中使用。

enum QGradient::Preset

此枚举基于https://webgradients.com/ 中的渐变效果,为QGradient 指定了一组预定义预设。

常数
QGradient::WarmFlame1
QGradient::NightFade2
QGradient::SpringWarmth3
QGradient::JuicyPeach4
QGradient::YoungPassion5
QGradient::LadyLips6
QGradient::SunnyMorning7
QGradient::RainyAshville8
QGradient::FrozenDreams9
QGradient::WinterNeva10
QGradient::DustyGrass11
QGradient::TemptingAzure12
QGradient::HeavyRain13
QGradient::AmyCrisp14
QGradient::MeanFruit15
QGradient::DeepBlue16
QGradient::RipeMalinka17
QGradient::CloudyKnoxville18
QGradient::MalibuBeach19
QGradient::NewLife20
QGradient::TrueSunset21
QGradient::MorpheusDen22
QGradient::RareWind23
QGradient::NearMoon24
QGradient::WildApple25
QGradient::SaintPetersburg26
QGradient::PlumPlate28
QGradient::EverlastingSky29
QGradient::HappyFisher30
QGradient::Blessing31
QGradient::SharpeyeEagle32
QGradient::LadogaBottom33
QGradient::LemonGate34
QGradient::ItmeoBranding35
QGradient::ZeusMiracle36
QGradient::OldHat37
QGradient::StarWine38
QGradient::HappyAcid41
QGradient::AwesomePine42
QGradient::NewYork43
QGradient::ShyRainbow44
QGradient::MixedHopes46
QGradient::FlyHigh47
QGradient::StrongBliss48
QGradient::FreshMilk49
QGradient::SnowAgain50
QGradient::FebruaryInk51
QGradient::KindSteel52
QGradient::SoftGrass53
QGradient::GrownEarly54
QGradient::SharpBlues55
QGradient::ShadyWater56
QGradient::DirtyBeauty57
QGradient::GreatWhale58
QGradient::TeenNotebook59
QGradient::PoliteRumors60
QGradient::SweetPeriod61
QGradient::WideMatrix62
QGradient::SoftCherish63
QGradient::RedSalvation64
QGradient::BurningSpring65
QGradient::NightParty66
QGradient::SkyGlider67
QGradient::HeavenPeach68
QGradient::PurpleDivision69
QGradient::AquaSplash70
QGradient::SpikyNaga72
QGradient::LoveKiss73
QGradient::CleanMirror75
QGradient::PremiumDark76
QGradient::ColdEvening77
QGradient::CochitiLake78
QGradient::SummerGames79
QGradient::PassionateBed80
QGradient::MountainRock81
QGradient::DesertHump82
QGradient::JungleDay83
QGradient::PhoenixStart84
QGradient::OctoberSilence85
QGradient::FarawayRiver86
QGradient::AlchemistLab87
QGradient::OverSun88
QGradient::PremiumWhite89
QGradient::MarsParty90
QGradient::EternalConstance91
QGradient::JapanBlush92
QGradient::SmilingRain93
QGradient::CloudyApple94
QGradient::BigMango95
QGradient::HealthyWater96
QGradient::AmourAmour97
QGradient::RiskyConcrete98
QGradient::StrongStick99
QGradient::ViciousStance100
QGradient::PaloAlto101
QGradient::HappyMemories102
QGradient::MidnightBloom103
QGradient::Crystalline104
QGradient::PartyBliss106
QGradient::ConfidentCloud107
QGradient::LeCocktail108
QGradient::RiverCity109
QGradient::FrozenBerry110
QGradient::ChildCare112
QGradient::FlyingLemon113
QGradient::NewRetrowave114
QGradient::HiddenJaguar115
QGradient::AboveTheSky116
QGradient::Nega117
QGradient::DenseWater118
QGradient::Seashore120
QGradient::MarbleWall121
QGradient::CheerfulCaramel122
QGradient::NightSky123
QGradient::MagicLake124
QGradient::YoungGrass125
QGradient::ColorfulPeach126
QGradient::GentleCare127
QGradient::PlumBath128
QGradient::HappyUnicorn129
QGradient::AfricanField131
QGradient::SolidStone132
QGradient::OrangeJuice133
QGradient::GlassWater134
QGradient::NorthMiracle136
QGradient::FruitBlend137
QGradient::MillenniumPine138
QGradient::HighFlight139
QGradient::MoleHall140
QGradient::SpaceShift142
QGradient::ForestInei143
QGradient::RoyalGarden144
QGradient::RichMetal145
QGradient::JuicyCake146
QGradient::SmartIndigo147
QGradient::SandStrike148
QGradient::NorseBeauty149
QGradient::AquaGuidance150
QGradient::SunVeggie151
QGradient::SeaLord152
QGradient::BlackSea153
QGradient::GrassShampoo154
QGradient::LandingAircraft155
QGradient::WitchDance156
QGradient::SleeplessNight157
QGradient::AngelCare158
QGradient::CrystalRiver159
QGradient::SoftLipstick160
QGradient::SaltMountain161
QGradient::PerfectWhite162
QGradient::FreshOasis163
QGradient::StrictNovember164
QGradient::MorningSalad165
QGradient::DeepRelief166
QGradient::SeaStrike167
QGradient::NightCall168
QGradient::SupremeSky169
QGradient::LightBlue170
QGradient::MindCrawl171
QGradient::LilyMeadow172
QGradient::SugarLollipop173
QGradient::SweetDessert174
QGradient::MagicRay175
QGradient::TeenParty176
QGradient::FrozenHeat177
QGradient::GagarinView178
QGradient::FabledSunset179
QGradient::PerfectBlue180

enum QGradient::Spread

指定如何填充渐变区域外的区域。

常数说明
QGradient::PadSpread0用最接近的停止色填充该区域。这是默认值。
QGradient::RepeatSpread2在渐变区域外重复渐变。
QGradient::ReflectSpread1在渐变区域外反射渐变。

另请参阅 spread() 和setSpread()。

enum QGradient::Type

指定梯度类型。

常数说明
QGradient::LinearGradient0在起点和终点之间插值 (QLinearGradient).
QGradient::RadialGradient1在焦点和其周围圆的端点之间插值 (QRadialGradient)。
QGradient::ConicalGradient2围绕中心点插值 (QConicalGradient)。
QGradient::NoGradient3不使用梯度。

另请参见 type().

成员函数文档

QGradient::QGradient(QGradient::Preset preset)

根据预定义的preset 构建梯度。

生成的梯度坐标模式为QGradient::ObjectMode ,可将预设值应用于任意尺寸的对象。

QGradient::CoordinateMode QGradient::coordinateMode() const

返回此梯度的坐标模式。默认模式为LogicalMode

另请参见 setCoordinateMode().

void QGradient::setColorAt(qreal position, const QColor &color)

使用给定的color 在给定的position 处创建停止点。position 的范围必须在 0 到 1 之间。

另请参阅 setStops() 和stops()。

void QGradient::setCoordinateMode(QGradient::CoordinateMode mode)

将此渐变的坐标模式设置为mode 。默认模式为LogicalMode

另请参见 coordinateMode().

void QGradient::setSpread(QGradient::Spread method)

指定用于此梯度的扩展method

请注意,此函数只对线性和径向梯度有效。

另请参阅 spread().

void QGradient::setStops(const QGradientStops &stopPoints)

用给定的stopPoints 替换当前的停止点集合。点的位置必须在 0 到 1 的范围内,并且必须以最低点为先进行排序。

另请参阅 setColorAt() 和stops()。

QGradient::Spread QGradient::spread() const

返回此梯度使用的扩展方法。默认值是PadSpread

另请参见 setSpread().

QGradientStops QGradient::stops() const

返回此梯度的停止点。

如果没有指定停止点,则使用从 0 到 1 的黑白渐变。

另请参阅 setStops() 和setColorAt()。

QGradient::Type QGradient::type() const

返回梯度类型。

bool QGradient::operator!=(const QGradient &gradient) const

如果梯度与指定的其他gradient 相同,则返回true ;否则返回false

另请参阅 operator==() 。

bool QGradient::operator==(const QGradient &gradient) const

如果梯度与指定的其他gradient 相同,则返回true ;否则返回false

另请参阅 operator!=() 。

相关非会员

QGradientStop

std::pair<qreal,QColor> 的类型定义。

QGradientStops

QList<QGradientStop> 的类型定义。

© 2025 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.