setBoxBorderColors variation added
This commit is contained in:
parent
6bb65b5aeb
commit
3aae2ca47d
@ -325,6 +325,13 @@ void QskSkinHintTableEditor::setBoxBorderColors(
|
||||
setColorHint( aspectBorder( aspect ), borderColors );
|
||||
}
|
||||
|
||||
void QskSkinHintTableEditor::setBoxBorderColors( QskAspect aspect,
|
||||
const QColor& left, const QColor& top, const QColor& right, const QColor& bottom )
|
||||
{
|
||||
setColorHint( aspectBorder( aspect ),
|
||||
QskBoxBorderColors( left, top, right, bottom ) );
|
||||
}
|
||||
|
||||
void QskSkinHintTableEditor::removeBoxBorderColors( QskAspect aspect )
|
||||
{
|
||||
return removeColorHint( aspectBorder( aspect ) );
|
||||
|
@ -135,6 +135,8 @@ class QSK_EXPORT QskSkinHintTableEditor
|
||||
QskBoxBorderMetrics boxBorderMetrics( QskAspect ) const;
|
||||
|
||||
void setBoxBorderColors( QskAspect, const QskBoxBorderColors& );
|
||||
void setBoxBorderColors( QskAspect, const QColor& left, const QColor& top,
|
||||
const QColor& right, const QColor& bottom );
|
||||
void removeBoxBorderColors( QskAspect );
|
||||
QskBoxBorderColors boxBorderColors( QskAspect ) const;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user