Compare commits
3 Commits
ac52c2710c
...
326fbdeeb8
Author | SHA1 | Date |
---|---|---|
|
326fbdeeb8 | |
|
b0ab35c7b9 | |
|
8f0f42f62b |
|
@ -8,9 +8,10 @@ Item {
|
||||||
property int blur_radius: 32
|
property int blur_radius: 32
|
||||||
property alias target: effect.sourceItem
|
property alias target: effect.sourceItem
|
||||||
property rect target_rect : Qt.rect(control.x, control.y, control.width, control.height)
|
property rect target_rect : Qt.rect(control.x, control.y, control.width, control.height)
|
||||||
property color mask_color: RibbonTheme.dark_mode ? "#212629" : "white"
|
property color mask_color: RibbonTheme.dark_mode ? RibbonTheme.modern_style ? '#292929' : "#212629" : "white"
|
||||||
property double mask_opacity: 0.5
|
property double mask_opacity: 0.5
|
||||||
property alias mask_border: mask.border
|
property alias mask_border: mask.border
|
||||||
|
property bool use_solid_bg: true
|
||||||
|
|
||||||
ShaderEffectSource {
|
ShaderEffectSource {
|
||||||
id: effect
|
id: effect
|
||||||
|
@ -18,10 +19,6 @@ Item {
|
||||||
sourceRect: target_rect
|
sourceRect: target_rect
|
||||||
sourceItem: target
|
sourceItem: target
|
||||||
visible: false
|
visible: false
|
||||||
Rectangle{
|
|
||||||
radius: control.radius
|
|
||||||
visible: false
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
GaussianBlur{
|
GaussianBlur{
|
||||||
|
@ -34,6 +31,10 @@ Item {
|
||||||
visible: false
|
visible: false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Rectangle{
|
||||||
|
anchors.fill: parent
|
||||||
|
color: use_solid_bg ? mask_color : 'transparent'
|
||||||
|
radius: control.radius
|
||||||
OpacityMask {
|
OpacityMask {
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
source: blur
|
source: blur
|
||||||
|
@ -43,6 +44,7 @@ Item {
|
||||||
radius: control.radius
|
radius: control.radius
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Rectangle{
|
Rectangle{
|
||||||
id: mask
|
id: mask
|
||||||
|
@ -51,6 +53,4 @@ Item {
|
||||||
opacity: mask_opacity
|
opacity: mask_opacity
|
||||||
radius: control.radius
|
radius: control.radius
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -39,6 +39,7 @@ Item {
|
||||||
visible: top_padding
|
visible: top_padding
|
||||||
clip: true
|
clip: true
|
||||||
target_rect: Qt.rect(x,y-top_padding,width,height)
|
target_rect: Qt.rect(x,y-top_padding,width,height)
|
||||||
|
use_solid_bg: false
|
||||||
}
|
}
|
||||||
|
|
||||||
Item{
|
Item{
|
||||||
|
@ -72,5 +73,6 @@ Item {
|
||||||
visible: bottom_padding
|
visible: bottom_padding
|
||||||
clip: true
|
clip: true
|
||||||
target_rect: Qt.rect(x,y-top_padding,width,height)
|
target_rect: Qt.rect(x,y-top_padding,width,height)
|
||||||
|
use_solid_bg: false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -108,4 +108,28 @@ Window {
|
||||||
if (!comfirmed_quit)
|
if (!comfirmed_quit)
|
||||||
dialog.open()
|
dialog.open()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function show_popup(content_url, argument)
|
||||||
|
{
|
||||||
|
let component = Qt.createComponent(content_url,pop)
|
||||||
|
|
||||||
|
if (component.status === Component.Error) {
|
||||||
|
console.log(qsTr("Error loading component:"), component.errorString());
|
||||||
|
return
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if (typeof(argument)!='undefined')
|
||||||
|
pop.contentItem = component.createObject(pop,argument)
|
||||||
|
else
|
||||||
|
pop.contentItem = component.createObject(pop)
|
||||||
|
}
|
||||||
|
pop.open()
|
||||||
|
}
|
||||||
|
|
||||||
|
function close_popup()
|
||||||
|
{
|
||||||
|
pop.close()
|
||||||
|
pop.contentItem.destroy()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,8 +7,8 @@
|
||||||
RibbonUI::RibbonUI(QQuickItem *parent)
|
RibbonUI::RibbonUI(QQuickItem *parent)
|
||||||
: QQuickItem(parent)
|
: QQuickItem(parent)
|
||||||
{
|
{
|
||||||
version(VER_JOIN((RIBBONUI_VERSION)));
|
_version = VER_JOIN((RIBBONUI_VERSION));
|
||||||
qt_version(QString(qVersion()).replace('.',"").toInt());
|
_qt_version = QString(qVersion()).replace('.',"").toInt();
|
||||||
}
|
}
|
||||||
|
|
||||||
RibbonUI* RibbonUI::instance(){
|
RibbonUI* RibbonUI::instance(){
|
||||||
|
|
|
@ -13,8 +13,8 @@ class RibbonUI : public QQuickItem
|
||||||
QML_ELEMENT
|
QML_ELEMENT
|
||||||
QML_SINGLETON
|
QML_SINGLETON
|
||||||
QML_NAMED_ELEMENT(RibbonUI)
|
QML_NAMED_ELEMENT(RibbonUI)
|
||||||
Q_PROPERTY_RW(QString, version)
|
Q_PROPERTY_R(QString, version)
|
||||||
Q_PROPERTY_RW(int, qt_version)
|
Q_PROPERTY_R(int, qt_version)
|
||||||
public:
|
public:
|
||||||
static RibbonUI* instance();
|
static RibbonUI* instance();
|
||||||
static RibbonUI* create(QQmlEngine *qmlEngine, QJSEngine *jsEngine){return instance();}
|
static RibbonUI* create(QQmlEngine *qmlEngine, QJSEngine *jsEngine){return instance();}
|
||||||
|
|
Loading…
Reference in New Issue