mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-26 13:27:05 +08:00
update
This commit is contained in:
parent
7723ac97fb
commit
9354b8c0bf
@ -35,6 +35,6 @@ void SettingsHelper::init(char *argv[]){
|
||||
const QFileInfo fileInfo(applicationPath);
|
||||
const QString iniFileName = fileInfo.completeBaseName() + ".ini";
|
||||
const QString iniFilePath = fileInfo.dir().path() + "/" + iniFileName;
|
||||
qDebug()<<iniFilePath;
|
||||
qDebug()<<"Application configuration file path->"<<iniFilePath;
|
||||
m_settings.reset(new QSettings(iniFilePath, QSettings::IniFormat));
|
||||
}
|
||||
|
@ -24,6 +24,9 @@ FluPopup {
|
||||
anchors.fill: parent
|
||||
color: 'transparent'
|
||||
radius:5
|
||||
FluShadow{
|
||||
radius: 5
|
||||
}
|
||||
FluText{
|
||||
id:text_title
|
||||
font: FluTextStyle.TitleLarge
|
||||
|
@ -125,6 +125,9 @@ FluObject {
|
||||
return "#FFFFFF"
|
||||
}
|
||||
}
|
||||
FluShadow{
|
||||
radius: 4
|
||||
}
|
||||
radius: 4
|
||||
border.width: 1
|
||||
border.color: {
|
||||
|
@ -60,7 +60,7 @@ Popup{
|
||||
return d.window.height
|
||||
return 0
|
||||
}
|
||||
property var pos: Qt.point(0,0)
|
||||
property point pos: Qt.point(0,0)
|
||||
property var step : steps[index]
|
||||
property var target : step.target()
|
||||
}
|
||||
@ -123,6 +123,9 @@ Popup{
|
||||
x: Math.min(Math.max(0,d.pos.x+d.target.width/2-width/2),d.windowWidth-width)
|
||||
y: d.pos.y+d.target.height+control.targetMargins + 15
|
||||
border.width: 0
|
||||
FluShadow{
|
||||
radius: 5
|
||||
}
|
||||
FluText{
|
||||
text: d.step.title
|
||||
font: FluTextStyle.BodyStrong
|
||||
|
@ -24,6 +24,9 @@ FluPopup {
|
||||
anchors.fill: parent
|
||||
color: 'transparent'
|
||||
radius:5
|
||||
FluShadow{
|
||||
radius: 5
|
||||
}
|
||||
FluText{
|
||||
id:text_title
|
||||
font: FluTextStyle.TitleLarge
|
||||
|
@ -125,6 +125,9 @@ FluObject {
|
||||
return "#FFFFFF"
|
||||
}
|
||||
}
|
||||
FluShadow{
|
||||
radius: 4
|
||||
}
|
||||
radius: 4
|
||||
border.width: 1
|
||||
border.color: {
|
||||
|
@ -112,6 +112,9 @@ Popup{
|
||||
x: Math.min(Math.max(0,d.pos.x+d.target.width/2-width/2),d.window?.width-width)
|
||||
y: d.pos.y+d.target.height+control.targetMargins + 15
|
||||
border.width: 0
|
||||
FluShadow{
|
||||
radius: 5
|
||||
}
|
||||
FluText{
|
||||
text: d.step.title
|
||||
font: FluTextStyle.BodyStrong
|
||||
|
Loading…
Reference in New Issue
Block a user