forked from openkylin/qt5-ukui-platformtheme
修改控件最大圆角,不与窗口圆角挂钩
This commit is contained in:
parent
dfd7a0863f
commit
93dd094cbc
|
@ -1684,8 +1684,18 @@ void KyNativeFileDialog::paintEvent(QPaintEvent *e)
|
||||||
// sidebarPath.addRect(adjustedRect.adjusted(6, 0, 0, 0));
|
// sidebarPath.addRect(adjustedRect.adjusted(6, 0, 0, 0));
|
||||||
QPainter p(this);
|
QPainter p(this);
|
||||||
QPainterPath contentPath;
|
QPainterPath contentPath;
|
||||||
if(this && this->property("windowRadius").isValid())
|
|
||||||
radius = this->property("windowRadius").toInt();
|
|
||||||
|
if (UKUIStyleSettings::isSchemaInstalled("org.ukui.style")) {
|
||||||
|
auto settings = UKUIStyleSettings::globalInstance();
|
||||||
|
if(settings->keys().contains("windowRadius"))
|
||||||
|
radius = settings->get("windowRadius").toInt();
|
||||||
|
else if(this && this->property("maxRadius").isValid())
|
||||||
|
radius = this->property("maxRadius").toInt();
|
||||||
|
}
|
||||||
|
else if(this && this->property("maxRadius").isValid())
|
||||||
|
radius = this->property("maxRadius").toInt();
|
||||||
|
|
||||||
// qDebug() << "KyNativeFileDialog radius........" << radius;
|
// qDebug() << "KyNativeFileDialog radius........" << radius;
|
||||||
contentPath.addRoundedRect(this->rect(), radius, radius);
|
contentPath.addRoundedRect(this->rect(), radius, radius);
|
||||||
auto bgPath = contentPath - sidebarPath;
|
auto bgPath = contentPath - sidebarPath;
|
||||||
|
|
|
@ -282,8 +282,8 @@ void BlurHelper::delayUpdate(QWidget *w, bool updateBlurRegionOnly)
|
||||||
}
|
}
|
||||||
QPainterPath path;
|
QPainterPath path;
|
||||||
int radius = 8;
|
int radius = 8;
|
||||||
if(widget->property("windowRadius").isValid())
|
if(widget->property("maxRadius").isValid())
|
||||||
radius = widget->property("windowRadius").toInt();
|
radius = widget->property("maxRadius").toInt();
|
||||||
path.addRoundedRect(widget->rect(), radius, radius);
|
path.addRoundedRect(widget->rect(), radius, radius);
|
||||||
KWindowEffects::enableBlurBehind(widget->winId(), true, path.toFillPolygon().toPolygon());
|
KWindowEffects::enableBlurBehind(widget->winId(), true, path.toFillPolygon().toPolygon());
|
||||||
if (!updateBlurRegionOnly)
|
if (!updateBlurRegionOnly)
|
||||||
|
|
|
@ -155,8 +155,8 @@ QPixmap ConfigShadowHelper::getShadowPixmap(QColor color, /*ConfigShadowHelper::
|
||||||
QPoint currentPos;
|
QPoint currentPos;
|
||||||
|
|
||||||
int qAppMaxradius = maxRadius;
|
int qAppMaxradius = maxRadius;
|
||||||
if(widget && widget->property("windowRadius").isValid()){
|
if(widget && widget->property("maxRadius").isValid()){
|
||||||
qAppMaxradius = widget->property("windowRadius").toInt();
|
qAppMaxradius = widget->property("maxRadius").toInt();
|
||||||
// qDebug() << "radius...." << qAppMaxradius;
|
// qDebug() << "radius...." << qAppMaxradius;
|
||||||
}
|
}
|
||||||
// move to top left arc start point
|
// move to top left arc start point
|
||||||
|
@ -259,8 +259,8 @@ QPainterPath ConfigShadowHelper::caculateRelativePainterPath(QWidget *widget, qr
|
||||||
QPointF currentPos;
|
QPointF currentPos;
|
||||||
|
|
||||||
int qAppMaxradius = maxRadius;
|
int qAppMaxradius = maxRadius;
|
||||||
if(widget && widget->property("windowRadius").isValid()){
|
if(widget && widget->property("maxRadius").isValid()){
|
||||||
qAppMaxradius = widget->property("windowRadius").toInt();
|
qAppMaxradius = widget->property("maxRadius").toInt();
|
||||||
//qDebug() << "radius...." << qAppMaxradius;
|
//qDebug() << "radius...." << qAppMaxradius;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"Radius":{
|
"Radius":{
|
||||||
"Window_Radius" : {"value": "0", "type": "int"},
|
"Max_Radius" : {"value": "0", "type": "int"},
|
||||||
"Normal_Radius" : {"value": "0", "type": "int"},
|
"Normal_Radius" : {"value": "0", "type": "int"},
|
||||||
"Min_Radius" : {"value": "0", "type": "int"}
|
"Min_Radius" : {"value": "0", "type": "int"}
|
||||||
},
|
},
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"Radius":{
|
"Radius":{
|
||||||
"Window_Radius" : {"value": "8", "type": "int"},
|
"Max_Radius" : {"value": "8", "type": "int"},
|
||||||
"Normal_Radius" : {"value": "6", "type": "int"},
|
"Normal_Radius" : {"value": "6", "type": "int"},
|
||||||
"Min_Radius" : {"value": "4", "type": "int"}
|
"Min_Radius" : {"value": "4", "type": "int"}
|
||||||
},
|
},
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"Radius":{
|
"Radius":{
|
||||||
"Window_Radius" : {"value": "8", "type": "int"},
|
"Max_Radius" : {"value": "8", "type": "int"},
|
||||||
"Normal_Radius" : {"value": "6", "type": "int"},
|
"Normal_Radius" : {"value": "6", "type": "int"},
|
||||||
"Min_Radius" : {"value": "4", "type": "int"}
|
"Min_Radius" : {"value": "4", "type": "int"}
|
||||||
},
|
},
|
||||||
|
|
|
@ -3948,8 +3948,8 @@ void UKUIConfigStyleParameters::initConfigTabWidgetParameters(bool isDark, const
|
||||||
|
|
||||||
void UKUIConfigStyleParameters::initConfigMenuParameters(bool isDark, const QStyleOption *option, const QWidget *widget)
|
void UKUIConfigStyleParameters::initConfigMenuParameters(bool isDark, const QStyleOption *option, const QWidget *widget)
|
||||||
{
|
{
|
||||||
int frameradius = (widget && widget->property("windowRadius").isValid()) ?
|
int frameradius = (widget && widget->property("maxRadius").isValid()) ?
|
||||||
widget->property("windowRadius").toInt() : m_radiusStruct.maxRadius;
|
widget->property("maxRadius").toInt() : m_radiusStruct.maxRadius;
|
||||||
int itemradius = (widget && widget->property("normalRadius").isValid()) ?
|
int itemradius = (widget && widget->property("normalRadius").isValid()) ?
|
||||||
widget->property("normalRadius").toInt() : m_radiusStruct.normalRadius;
|
widget->property("normalRadius").toInt() : m_radiusStruct.normalRadius;
|
||||||
// QPixmap framePixmap(option->rect.size());
|
// QPixmap framePixmap(option->rect.size());
|
||||||
|
|
|
@ -265,13 +265,7 @@ UKUIConfigStyle::UKUIConfigStyle(bool dark, bool useDefault, QString type) : QPr
|
||||||
|
|
||||||
sp = new UKUIConfigStyleParameters(this, isUseDarkPalette(), m_widget_theme);
|
sp = new UKUIConfigStyleParameters(this, isUseDarkPalette(), m_widget_theme);
|
||||||
|
|
||||||
if (UKUIStyleSettings::isSchemaInstalled("org.ukui.style")) {
|
setProperty("maxRadius", sp->radiusProperty().maxRadius);
|
||||||
auto settings = UKUIStyleSettings::globalInstance();
|
|
||||||
if(settings->keys().contains("windowRadius"))
|
|
||||||
setProperty("windowRadius", settings->get("windowRadius").toInt());
|
|
||||||
else
|
|
||||||
setProperty("windowRadius", sp->radiusProperty().maxRadius);
|
|
||||||
}
|
|
||||||
setProperty("normalRadius", sp->radiusProperty().normalRadius);
|
setProperty("normalRadius", sp->radiusProperty().normalRadius);
|
||||||
setProperty("minRadius", sp->radiusProperty().minRadius);
|
setProperty("minRadius", sp->radiusProperty().minRadius);
|
||||||
}
|
}
|
||||||
|
@ -968,30 +962,9 @@ void UKUIConfigStyle::polish(QWidget *widget)
|
||||||
|
|
||||||
if(!widget)
|
if(!widget)
|
||||||
return;
|
return;
|
||||||
|
widget->setProperty("maxRadius", sp->radiusProperty().maxRadius);
|
||||||
if (UKUIStyleSettings::isSchemaInstalled("org.ukui.style")) {
|
widget->setProperty("normalRadius", sp->radiusProperty().normalRadius);
|
||||||
auto settings = UKUIStyleSettings::globalInstance();
|
widget->setProperty("minRadius", sp->radiusProperty().minRadius);
|
||||||
if(settings->keys().contains("windowRadius"))
|
|
||||||
widget->setProperty("windowRadius", settings->get("windowRadius").toInt());
|
|
||||||
else
|
|
||||||
widget->setProperty("windowRadius", sp->radiusProperty().maxRadius);
|
|
||||||
}
|
|
||||||
|
|
||||||
// if(settings->keys().contains("normalRadius"))
|
|
||||||
// widget->setProperty("normalRadius", settings->get("normalRadius").toInt());
|
|
||||||
// else
|
|
||||||
// widget->setProperty("normalRadius", sp->radiusProperty().normalRadius);
|
|
||||||
|
|
||||||
// if(settings->keys().contains("minRadius"))
|
|
||||||
// widget->setProperty("minRadius", settings->get("minRadius").toInt());
|
|
||||||
// else
|
|
||||||
// widget->setProperty("minRadius", sp->radiusProperty().minRadius);
|
|
||||||
// }
|
|
||||||
// else{
|
|
||||||
widget->setProperty("normalRadius", sp->radiusProperty().normalRadius);
|
|
||||||
widget->setProperty("minRadius", sp->radiusProperty().minRadius);
|
|
||||||
// }
|
|
||||||
|
|
||||||
|
|
||||||
Style::polish(widget);
|
Style::polish(widget);
|
||||||
|
|
||||||
|
|
|
@ -261,7 +261,7 @@ Qt5UKUIStyle::Qt5UKUIStyle(bool dark, bool useDefault, QString type) : QProxySty
|
||||||
sp = new KClassicalStyleParameters(this, isUseDarkPalette());
|
sp = new KClassicalStyleParameters(this, isUseDarkPalette());
|
||||||
|
|
||||||
qDebug() << "classical setproperty........" << sp->radiusProperty().maxRadius << sp->radiusProperty().normalRadius << sp->radiusProperty().minRadius;
|
qDebug() << "classical setproperty........" << sp->radiusProperty().maxRadius << sp->radiusProperty().normalRadius << sp->radiusProperty().minRadius;
|
||||||
setProperty("windowRadius", sp->radiusProperty().maxRadius);
|
setProperty("maxRadius", sp->radiusProperty().maxRadius);
|
||||||
setProperty("normalRadius", sp->radiusProperty().normalRadius);
|
setProperty("normalRadius", sp->radiusProperty().normalRadius);
|
||||||
setProperty("minRadius", sp->radiusProperty().minRadius);
|
setProperty("minRadius", sp->radiusProperty().minRadius);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"Radius":{
|
"Radius":{
|
||||||
"Window_Radius" : {"value": "0", "type": "int"},
|
"Max_Radius" : {"value": "0", "type": "int"},
|
||||||
"Normal_Radius" : {"value": "0", "type": "int"},
|
"Normal_Radius" : {"value": "0", "type": "int"},
|
||||||
"Min_Radius" : {"value": "0", "type": "int"}
|
"Min_Radius" : {"value": "0", "type": "int"}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1128,7 +1128,7 @@ UKUIRadiusInformation::UKUIRadiusStruct ReadThemeConfig::getRadiusStruct(QString
|
||||||
if(!m_loadConfig)
|
if(!m_loadConfig)
|
||||||
return m_radiusStruct;
|
return m_radiusStruct;
|
||||||
|
|
||||||
getRadius(Window_Radius, m_radiusStruct.maxRadius);
|
getRadius(Max_Radius, m_radiusStruct.maxRadius);
|
||||||
getRadius(Normal_Radius, m_radiusStruct.normalRadius);
|
getRadius(Normal_Radius, m_radiusStruct.normalRadius);
|
||||||
getRadius(Min_Radius, m_radiusStruct.minRadius);
|
getRadius(Min_Radius, m_radiusStruct.minRadius);
|
||||||
return m_radiusStruct;
|
return m_radiusStruct;
|
||||||
|
|
|
@ -43,7 +43,7 @@
|
||||||
#define Obj_PaletteRole_Type "paletterole"
|
#define Obj_PaletteRole_Type "paletterole"
|
||||||
|
|
||||||
#define UKUI_Radius "Radius"
|
#define UKUI_Radius "Radius"
|
||||||
#define Window_Radius "Window_Radius"
|
#define Max_Radius "Max_Radius"
|
||||||
#define Normal_Radius "Normal_Radius"
|
#define Normal_Radius "Normal_Radius"
|
||||||
#define Min_Radius "Min_Radius"
|
#define Min_Radius "Min_Radius"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue